styles.css 229 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1711px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u87721_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. #u87721 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u87721 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u87721_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u87722_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. #u87722 {
  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. #u87722 .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. #u87722_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u87723_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. #u87723 {
  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. #u87723 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u87723_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u87724 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u87725_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u87725 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u87725 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u87725_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u87726_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. #u87726 {
  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. #u87726 .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. #u87726_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u87727_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. #u87727 {
  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. #u87727 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u87727_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u87728 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u87729_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u87729_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u87729_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u87729 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u87729 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u87729_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u87729.disabled {
  356. }
  357. .u87729_input_option {
  358. font-size:14px;
  359. }
  360. #u87730_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u87730 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u87730 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u87730_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u87731_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u87731 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u87731 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u87731_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u87732_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u87732 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u87732 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u87732_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u87733 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u87734_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u87734 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u87734 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u87734_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u87735_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u87735 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u87735 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u87735_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u87736 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u87737_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u87737 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u87737 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u87737_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u87738_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u87738 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u87738 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u87738_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u87739 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u87740_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u87740 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u87740 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u87740_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u87741_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u87741 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u87741 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u87741_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u87742 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u87743_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u87743 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u87743 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u87743_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u87744_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u87744 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u87744 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u87744_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u87745 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u87746_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u87746 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u87746 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u87746_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u87747_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u87747 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u87747 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u87747_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u87748 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u87749_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u87749 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u87749 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u87749_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u87750_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u87750 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u87750 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u87750_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u87751 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u87752_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u87752 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u87752 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u87752_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u87753_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u87753 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u87753 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u87753_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u87754 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u87755_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u87755 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u87755 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u87755_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u87756_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u87756 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u87756 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u87756_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u87757 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u87758_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u87758 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u87758 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u87758_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u87759_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u87759 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u87759 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u87759_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u87760 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u87761_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u87761 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u87761 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u87761_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u87762_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u87762 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u87762 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u87762_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u87763_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u87763 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u87763 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u87763_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u87764_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u87764 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u87764 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u87764_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u87765_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u87765 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u87765 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u87765_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u87766_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u87766 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u87766 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u87766_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u87767 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u87768_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u87768 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u87768 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u87768_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u87769_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u87769 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u87769 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u87769_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u87770 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u87771_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u87771 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u87771 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u87771_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u87772_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u87772 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u87772 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u87772_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u87773_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1381px;
  1644. height:1522px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(215, 215, 215, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. text-align:left;
  1661. }
  1662. #u87773 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:330px;
  1666. top:50px;
  1667. width:1381px;
  1668. height:1522px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#FFFFFF;
  1675. text-align:left;
  1676. }
  1677. #u87773 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 50px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u87773_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u87774_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:73px;
  1696. height:50px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 0);
  1699. border:none;
  1700. border-left:0px;
  1701. border-top:0px;
  1702. border-right:0px;
  1703. border-radius:0px;
  1704. border-bottom-right-radius:0px;
  1705. border-bottom-left-radius:0px;
  1706. -moz-box-shadow:none;
  1707. -webkit-box-shadow:none;
  1708. box-shadow:none;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u87774 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:350px;
  1718. top:50px;
  1719. width:73px;
  1720. height:50px;
  1721. display:flex;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:18px;
  1726. }
  1727. #u87774 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:0px 0px 0px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u87774_text {
  1735. border-width:0px;
  1736. white-space:nowrap;
  1737. text-transform:none;
  1738. }
  1739. #u87775 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:351px;
  1743. top:271px;
  1744. width:1340px;
  1745. height:322px;
  1746. }
  1747. #u87776_img {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:115px;
  1753. height:38px;
  1754. }
  1755. #u87776 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:115px;
  1761. height:38px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#FFFFFF;
  1768. }
  1769. #u87776 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 0px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u87776_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. }
  1781. #u87777_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:115px;
  1787. height:38px;
  1788. }
  1789. #u87777 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:115px;
  1793. top:0px;
  1794. width:115px;
  1795. height:38px;
  1796. display:flex;
  1797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1798. font-weight:400;
  1799. font-style:normal;
  1800. font-size:12px;
  1801. color:#FFFFFF;
  1802. }
  1803. #u87777 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u87777_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. }
  1815. #u87778_img {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:115px;
  1821. height:38px;
  1822. }
  1823. #u87778 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:230px;
  1827. top:0px;
  1828. width:115px;
  1829. height:38px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:12px;
  1835. color:#FFFFFF;
  1836. }
  1837. #u87778 .text {
  1838. position:absolute;
  1839. align-self:center;
  1840. padding:2px 2px 2px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u87778_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. }
  1849. #u87779_img {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:115px;
  1855. height:38px;
  1856. }
  1857. #u87779 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:345px;
  1861. top:0px;
  1862. width:115px;
  1863. height:38px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. color:#FFFFFF;
  1870. }
  1871. #u87779 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 0px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u87779_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. }
  1883. #u87780_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:103px;
  1889. height:38px;
  1890. }
  1891. #u87780 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:460px;
  1895. top:0px;
  1896. width:103px;
  1897. height:38px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:12px;
  1903. color:#FFFFFF;
  1904. }
  1905. #u87780 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u87780_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. }
  1917. #u87781_img {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:103px;
  1923. height:38px;
  1924. }
  1925. #u87781 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:563px;
  1929. top:0px;
  1930. width:103px;
  1931. height:38px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:12px;
  1937. color:#FFFFFF;
  1938. }
  1939. #u87781 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 2px 2px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u87781_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. }
  1951. #u87782_img {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:103px;
  1957. height:38px;
  1958. }
  1959. #u87782 {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:666px;
  1963. top:0px;
  1964. width:103px;
  1965. height:38px;
  1966. display:flex;
  1967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1968. font-weight:400;
  1969. font-style:normal;
  1970. font-size:12px;
  1971. color:#FFFFFF;
  1972. }
  1973. #u87782 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 0px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u87782_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u87783_img {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:103px;
  1991. height:38px;
  1992. }
  1993. #u87783 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:769px;
  1997. top:0px;
  1998. width:103px;
  1999. height:38px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u87783 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u87783_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u87784_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:103px;
  2025. height:38px;
  2026. }
  2027. #u87784 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:872px;
  2031. top:0px;
  2032. width:103px;
  2033. height:38px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:12px;
  2039. color:#FFFFFF;
  2040. }
  2041. #u87784 .text {
  2042. position:absolute;
  2043. align-self:center;
  2044. padding:2px 2px 2px 0px;
  2045. box-sizing:border-box;
  2046. width:100%;
  2047. }
  2048. #u87784_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. }
  2053. #u87785_img {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:133px;
  2059. height:38px;
  2060. }
  2061. #u87785 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:975px;
  2065. top:0px;
  2066. width:133px;
  2067. height:38px;
  2068. display:flex;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:12px;
  2073. color:#FFFFFF;
  2074. }
  2075. #u87785 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 2px 2px 0px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u87785_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. }
  2087. #u87786_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:112px;
  2093. height:38px;
  2094. }
  2095. #u87786 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:1108px;
  2099. top:0px;
  2100. width:112px;
  2101. height:38px;
  2102. display:flex;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:12px;
  2107. color:#FFFFFF;
  2108. }
  2109. #u87786 .text {
  2110. position:absolute;
  2111. align-self:center;
  2112. padding:2px 2px 2px 0px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u87786_text {
  2117. border-width:0px;
  2118. word-wrap:break-word;
  2119. text-transform:none;
  2120. }
  2121. #u87787_img {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:120px;
  2127. height:38px;
  2128. }
  2129. #u87787 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:1220px;
  2133. top:0px;
  2134. width:120px;
  2135. height:38px;
  2136. display:flex;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:12px;
  2141. color:#FFFFFF;
  2142. }
  2143. #u87787 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u87787_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. }
  2155. #u87788_img {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:115px;
  2161. height:38px;
  2162. }
  2163. #u87788 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:38px;
  2168. width:115px;
  2169. height:38px;
  2170. display:flex;
  2171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2172. font-weight:400;
  2173. font-style:normal;
  2174. font-size:12px;
  2175. color:#333333;
  2176. }
  2177. #u87788 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 0px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u87788_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u87789_img {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:115px;
  2196. height:38px;
  2197. }
  2198. #u87789 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:115px;
  2202. top:38px;
  2203. width:115px;
  2204. height:38px;
  2205. display:flex;
  2206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:12px;
  2210. color:#333333;
  2211. }
  2212. #u87789 .text {
  2213. position:absolute;
  2214. align-self:center;
  2215. padding:2px 2px 2px 0px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u87789_text {
  2220. border-width:0px;
  2221. word-wrap:break-word;
  2222. text-transform:none;
  2223. visibility:hidden;
  2224. }
  2225. #u87790_img {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:115px;
  2231. height:38px;
  2232. }
  2233. #u87790 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:230px;
  2237. top:38px;
  2238. width:115px;
  2239. height:38px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:12px;
  2245. color:#333333;
  2246. }
  2247. #u87790 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 0px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u87790_text {
  2255. border-width:0px;
  2256. word-wrap:break-word;
  2257. text-transform:none;
  2258. visibility:hidden;
  2259. }
  2260. #u87791_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:115px;
  2266. height:38px;
  2267. }
  2268. #u87791 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:345px;
  2272. top:38px;
  2273. width:115px;
  2274. height:38px;
  2275. display:flex;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. color:#333333;
  2281. }
  2282. #u87791 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 2px 2px 0px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u87791_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. visibility:hidden;
  2294. }
  2295. #u87792_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:103px;
  2301. height:38px;
  2302. }
  2303. #u87792 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:460px;
  2307. top:38px;
  2308. width:103px;
  2309. height:38px;
  2310. display:flex;
  2311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:12px;
  2315. color:#333333;
  2316. }
  2317. #u87792 .text {
  2318. position:absolute;
  2319. align-self:center;
  2320. padding:2px 2px 2px 0px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u87792_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. visibility:hidden;
  2329. }
  2330. #u87793_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:103px;
  2336. height:38px;
  2337. }
  2338. #u87793 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:563px;
  2342. top:38px;
  2343. width:103px;
  2344. height:38px;
  2345. display:flex;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. font-size:12px;
  2350. color:#333333;
  2351. }
  2352. #u87793 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:2px 2px 2px 0px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u87793_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. visibility:hidden;
  2364. }
  2365. #u87794_img {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:103px;
  2371. height:38px;
  2372. }
  2373. #u87794 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:666px;
  2377. top:38px;
  2378. width:103px;
  2379. height:38px;
  2380. display:flex;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:12px;
  2385. color:#333333;
  2386. }
  2387. #u87794 .text {
  2388. position:absolute;
  2389. align-self:center;
  2390. padding:2px 2px 2px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u87794_text {
  2395. border-width:0px;
  2396. word-wrap:break-word;
  2397. text-transform:none;
  2398. visibility:hidden;
  2399. }
  2400. #u87795_img {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:103px;
  2406. height:38px;
  2407. }
  2408. #u87795 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:769px;
  2412. top:38px;
  2413. width:103px;
  2414. height:38px;
  2415. display:flex;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:12px;
  2420. color:#333333;
  2421. }
  2422. #u87795 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u87795_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u87796_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:103px;
  2441. height:38px;
  2442. }
  2443. #u87796 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:872px;
  2447. top:38px;
  2448. width:103px;
  2449. height:38px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:12px;
  2455. color:#333333;
  2456. }
  2457. #u87796 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u87796_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u87797_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:133px;
  2476. height:38px;
  2477. }
  2478. #u87797 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:975px;
  2482. top:38px;
  2483. width:133px;
  2484. height:38px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. color:#333333;
  2491. }
  2492. #u87797 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:2px 2px 2px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u87797_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. visibility:hidden;
  2504. }
  2505. #u87798_img {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:112px;
  2511. height:38px;
  2512. }
  2513. #u87798 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:1108px;
  2517. top:38px;
  2518. width:112px;
  2519. height:38px;
  2520. display:flex;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:12px;
  2525. color:#333333;
  2526. }
  2527. #u87798 .text {
  2528. position:absolute;
  2529. align-self:center;
  2530. padding:2px 2px 2px 0px;
  2531. box-sizing:border-box;
  2532. width:100%;
  2533. }
  2534. #u87798_text {
  2535. border-width:0px;
  2536. word-wrap:break-word;
  2537. text-transform:none;
  2538. visibility:hidden;
  2539. }
  2540. #u87799_img {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:120px;
  2546. height:38px;
  2547. }
  2548. #u87799 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:1220px;
  2552. top:38px;
  2553. width:120px;
  2554. height:38px;
  2555. display:flex;
  2556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:12px;
  2560. color:#0089FE;
  2561. }
  2562. #u87799 .text {
  2563. position:absolute;
  2564. align-self:center;
  2565. padding:2px 2px 2px 0px;
  2566. box-sizing:border-box;
  2567. width:100%;
  2568. }
  2569. #u87799_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. }
  2574. #u87800_img {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:115px;
  2580. height:38px;
  2581. }
  2582. #u87800 {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:76px;
  2587. width:115px;
  2588. height:38px;
  2589. display:flex;
  2590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2591. font-weight:400;
  2592. font-style:normal;
  2593. font-size:12px;
  2594. color:#333333;
  2595. }
  2596. #u87800 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 2px 2px 0px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u87800_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. visibility:hidden;
  2608. }
  2609. #u87801_img {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:115px;
  2615. height:38px;
  2616. }
  2617. #u87801 {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:115px;
  2621. top:76px;
  2622. width:115px;
  2623. height:38px;
  2624. display:flex;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:12px;
  2629. color:#333333;
  2630. }
  2631. #u87801 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 0px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u87801_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. visibility:hidden;
  2643. }
  2644. #u87802_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:115px;
  2650. height:38px;
  2651. }
  2652. #u87802 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:230px;
  2656. top:76px;
  2657. width:115px;
  2658. height:38px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:12px;
  2664. color:#333333;
  2665. }
  2666. #u87802 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u87802_text {
  2674. border-width:0px;
  2675. word-wrap:break-word;
  2676. text-transform:none;
  2677. visibility:hidden;
  2678. }
  2679. #u87803_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:115px;
  2685. height:38px;
  2686. }
  2687. #u87803 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:345px;
  2691. top:76px;
  2692. width:115px;
  2693. height:38px;
  2694. display:flex;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. font-size:12px;
  2699. color:#333333;
  2700. }
  2701. #u87803 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 0px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u87803_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u87804_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:103px;
  2720. height:38px;
  2721. }
  2722. #u87804 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:460px;
  2726. top:76px;
  2727. width:103px;
  2728. height:38px;
  2729. display:flex;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:12px;
  2734. color:#333333;
  2735. }
  2736. #u87804 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u87804_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. visibility:hidden;
  2748. }
  2749. #u87805_img {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:103px;
  2755. height:38px;
  2756. }
  2757. #u87805 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:563px;
  2761. top:76px;
  2762. width:103px;
  2763. height:38px;
  2764. display:flex;
  2765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:12px;
  2769. color:#333333;
  2770. }
  2771. #u87805 .text {
  2772. position:absolute;
  2773. align-self:center;
  2774. padding:2px 2px 2px 0px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u87805_text {
  2779. border-width:0px;
  2780. word-wrap:break-word;
  2781. text-transform:none;
  2782. visibility:hidden;
  2783. }
  2784. #u87806_img {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:103px;
  2790. height:38px;
  2791. }
  2792. #u87806 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:666px;
  2796. top:76px;
  2797. width:103px;
  2798. height:38px;
  2799. display:flex;
  2800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2801. font-weight:400;
  2802. font-style:normal;
  2803. font-size:12px;
  2804. color:#333333;
  2805. }
  2806. #u87806 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 0px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u87806_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u87807_img {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:103px;
  2825. height:38px;
  2826. }
  2827. #u87807 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:769px;
  2831. top:76px;
  2832. width:103px;
  2833. height:38px;
  2834. display:flex;
  2835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. font-size:12px;
  2839. color:#333333;
  2840. }
  2841. #u87807 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 2px 2px 0px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u87807_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. visibility:hidden;
  2853. }
  2854. #u87808_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:103px;
  2860. height:38px;
  2861. }
  2862. #u87808 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:872px;
  2866. top:76px;
  2867. width:103px;
  2868. height:38px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:12px;
  2874. color:#333333;
  2875. }
  2876. #u87808 .text {
  2877. position:absolute;
  2878. align-self:center;
  2879. padding:2px 2px 2px 0px;
  2880. box-sizing:border-box;
  2881. width:100%;
  2882. }
  2883. #u87808_text {
  2884. border-width:0px;
  2885. word-wrap:break-word;
  2886. text-transform:none;
  2887. visibility:hidden;
  2888. }
  2889. #u87809_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:133px;
  2895. height:38px;
  2896. }
  2897. #u87809 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:975px;
  2901. top:76px;
  2902. width:133px;
  2903. height:38px;
  2904. display:flex;
  2905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2906. font-weight:400;
  2907. font-style:normal;
  2908. font-size:12px;
  2909. color:#333333;
  2910. }
  2911. #u87809 .text {
  2912. position:absolute;
  2913. align-self:center;
  2914. padding:2px 2px 2px 0px;
  2915. box-sizing:border-box;
  2916. width:100%;
  2917. }
  2918. #u87809_text {
  2919. border-width:0px;
  2920. word-wrap:break-word;
  2921. text-transform:none;
  2922. visibility:hidden;
  2923. }
  2924. #u87810_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:112px;
  2930. height:38px;
  2931. }
  2932. #u87810 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:1108px;
  2936. top:76px;
  2937. width:112px;
  2938. height:38px;
  2939. display:flex;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:12px;
  2944. color:#333333;
  2945. }
  2946. #u87810 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 0px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u87810_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. visibility:hidden;
  2958. }
  2959. #u87811_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:120px;
  2965. height:38px;
  2966. }
  2967. #u87811 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:1220px;
  2971. top:76px;
  2972. width:120px;
  2973. height:38px;
  2974. display:flex;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. color:#0089FE;
  2980. }
  2981. #u87811 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 0px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u87811_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. visibility:hidden;
  2993. }
  2994. #u87812_img {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:0px;
  2999. width:115px;
  3000. height:38px;
  3001. }
  3002. #u87812 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:114px;
  3007. width:115px;
  3008. height:38px;
  3009. display:flex;
  3010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3011. font-weight:400;
  3012. font-style:normal;
  3013. font-size:12px;
  3014. color:#333333;
  3015. }
  3016. #u87812 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 0px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u87812_text {
  3024. border-width:0px;
  3025. word-wrap:break-word;
  3026. text-transform:none;
  3027. visibility:hidden;
  3028. }
  3029. #u87813_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:115px;
  3035. height:38px;
  3036. }
  3037. #u87813 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:115px;
  3041. top:114px;
  3042. width:115px;
  3043. height:38px;
  3044. display:flex;
  3045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:12px;
  3049. color:#333333;
  3050. }
  3051. #u87813 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 0px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u87813_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u87814_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:115px;
  3070. height:38px;
  3071. }
  3072. #u87814 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:230px;
  3076. top:114px;
  3077. width:115px;
  3078. height:38px;
  3079. display:flex;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:12px;
  3084. color:#333333;
  3085. }
  3086. #u87814 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 0px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u87814_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u87815_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:115px;
  3105. height:38px;
  3106. }
  3107. #u87815 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:345px;
  3111. top:114px;
  3112. width:115px;
  3113. height:38px;
  3114. display:flex;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. color:#333333;
  3120. }
  3121. #u87815 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 0px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u87815_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. visibility:hidden;
  3133. }
  3134. #u87816_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:103px;
  3140. height:38px;
  3141. }
  3142. #u87816 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:460px;
  3146. top:114px;
  3147. width:103px;
  3148. height:38px;
  3149. display:flex;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:12px;
  3154. color:#333333;
  3155. }
  3156. #u87816 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 0px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u87816_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u87817_img {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:103px;
  3175. height:38px;
  3176. }
  3177. #u87817 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:563px;
  3181. top:114px;
  3182. width:103px;
  3183. height:38px;
  3184. display:flex;
  3185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:12px;
  3189. color:#333333;
  3190. }
  3191. #u87817 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 0px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u87817_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u87818_img {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:103px;
  3210. height:38px;
  3211. }
  3212. #u87818 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:666px;
  3216. top:114px;
  3217. width:103px;
  3218. height:38px;
  3219. display:flex;
  3220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3221. font-weight:400;
  3222. font-style:normal;
  3223. font-size:12px;
  3224. color:#333333;
  3225. }
  3226. #u87818 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:2px 2px 2px 0px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u87818_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u87819_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:103px;
  3245. height:38px;
  3246. }
  3247. #u87819 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:769px;
  3251. top:114px;
  3252. width:103px;
  3253. height:38px;
  3254. display:flex;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:12px;
  3259. color:#333333;
  3260. }
  3261. #u87819 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u87819_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u87820_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:103px;
  3280. height:38px;
  3281. }
  3282. #u87820 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:872px;
  3286. top:114px;
  3287. width:103px;
  3288. height:38px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. color:#333333;
  3295. }
  3296. #u87820 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 2px 2px 0px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u87820_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u87821_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:133px;
  3315. height:38px;
  3316. }
  3317. #u87821 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:975px;
  3321. top:114px;
  3322. width:133px;
  3323. height:38px;
  3324. display:flex;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. font-size:12px;
  3329. color:#333333;
  3330. }
  3331. #u87821 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 2px 2px 0px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u87821_text {
  3339. border-width:0px;
  3340. word-wrap:break-word;
  3341. text-transform:none;
  3342. visibility:hidden;
  3343. }
  3344. #u87822_img {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:112px;
  3350. height:38px;
  3351. }
  3352. #u87822 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:1108px;
  3356. top:114px;
  3357. width:112px;
  3358. height:38px;
  3359. display:flex;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:12px;
  3364. color:#333333;
  3365. }
  3366. #u87822 .text {
  3367. position:absolute;
  3368. align-self:center;
  3369. padding:2px 2px 2px 0px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u87822_text {
  3374. border-width:0px;
  3375. word-wrap:break-word;
  3376. text-transform:none;
  3377. visibility:hidden;
  3378. }
  3379. #u87823_img {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:120px;
  3385. height:38px;
  3386. }
  3387. #u87823 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:1220px;
  3391. top:114px;
  3392. width:120px;
  3393. height:38px;
  3394. display:flex;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. font-size:12px;
  3399. color:#0089FE;
  3400. }
  3401. #u87823 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 0px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u87823_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. visibility:hidden;
  3413. }
  3414. #u87824_img {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:115px;
  3420. height:38px;
  3421. }
  3422. #u87824 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:152px;
  3427. width:115px;
  3428. height:38px;
  3429. display:flex;
  3430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. color:#333333;
  3435. }
  3436. #u87824 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 0px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u87824_text {
  3444. border-width:0px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. visibility:hidden;
  3448. }
  3449. #u87825_img {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:115px;
  3455. height:38px;
  3456. }
  3457. #u87825 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:115px;
  3461. top:152px;
  3462. width:115px;
  3463. height:38px;
  3464. display:flex;
  3465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:12px;
  3469. color:#333333;
  3470. }
  3471. #u87825 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 0px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u87825_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u87826_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:115px;
  3490. height:38px;
  3491. }
  3492. #u87826 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:230px;
  3496. top:152px;
  3497. width:115px;
  3498. height:38px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. color:#333333;
  3505. }
  3506. #u87826 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:2px 2px 2px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u87826_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. visibility:hidden;
  3518. }
  3519. #u87827_img {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:115px;
  3525. height:38px;
  3526. }
  3527. #u87827 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:345px;
  3531. top:152px;
  3532. width:115px;
  3533. height:38px;
  3534. display:flex;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. color:#333333;
  3540. }
  3541. #u87827 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u87827_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u87828_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:103px;
  3560. height:38px;
  3561. }
  3562. #u87828 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:460px;
  3566. top:152px;
  3567. width:103px;
  3568. height:38px;
  3569. display:flex;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#333333;
  3575. }
  3576. #u87828 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u87828_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u87829_img {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:103px;
  3595. height:38px;
  3596. }
  3597. #u87829 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:563px;
  3601. top:152px;
  3602. width:103px;
  3603. height:38px;
  3604. display:flex;
  3605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3606. font-weight:400;
  3607. font-style:normal;
  3608. font-size:12px;
  3609. color:#333333;
  3610. }
  3611. #u87829 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 0px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u87829_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u87830_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:103px;
  3630. height:38px;
  3631. }
  3632. #u87830 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:666px;
  3636. top:152px;
  3637. width:103px;
  3638. height:38px;
  3639. display:flex;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:12px;
  3644. color:#333333;
  3645. }
  3646. #u87830 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 2px 2px 0px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u87830_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. visibility:hidden;
  3658. }
  3659. #u87831_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:103px;
  3665. height:38px;
  3666. }
  3667. #u87831 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:769px;
  3671. top:152px;
  3672. width:103px;
  3673. height:38px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:12px;
  3679. color:#333333;
  3680. }
  3681. #u87831 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u87831_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u87832_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:103px;
  3700. height:38px;
  3701. }
  3702. #u87832 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:872px;
  3706. top:152px;
  3707. width:103px;
  3708. height:38px;
  3709. display:flex;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. color:#333333;
  3715. }
  3716. #u87832 .text {
  3717. position:absolute;
  3718. align-self:center;
  3719. padding:2px 2px 2px 0px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u87832_text {
  3724. border-width:0px;
  3725. word-wrap:break-word;
  3726. text-transform:none;
  3727. visibility:hidden;
  3728. }
  3729. #u87833_img {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:133px;
  3735. height:38px;
  3736. }
  3737. #u87833 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:975px;
  3741. top:152px;
  3742. width:133px;
  3743. height:38px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:12px;
  3749. color:#333333;
  3750. }
  3751. #u87833 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 0px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u87833_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. visibility:hidden;
  3763. }
  3764. #u87834_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:112px;
  3770. height:38px;
  3771. }
  3772. #u87834 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:1108px;
  3776. top:152px;
  3777. width:112px;
  3778. height:38px;
  3779. display:flex;
  3780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:12px;
  3784. color:#333333;
  3785. }
  3786. #u87834 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 2px 2px 0px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u87834_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u87835_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:120px;
  3805. height:38px;
  3806. }
  3807. #u87835 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:1220px;
  3811. top:152px;
  3812. width:120px;
  3813. height:38px;
  3814. display:flex;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:12px;
  3819. color:#AAAAAA;
  3820. }
  3821. #u87835 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 0px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u87835_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u87836_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:115px;
  3840. height:35px;
  3841. }
  3842. #u87836 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:190px;
  3847. width:115px;
  3848. height:35px;
  3849. display:flex;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:12px;
  3854. color:#333333;
  3855. }
  3856. #u87836 .text {
  3857. position:absolute;
  3858. align-self:center;
  3859. padding:2px 2px 2px 0px;
  3860. box-sizing:border-box;
  3861. width:100%;
  3862. }
  3863. #u87836_text {
  3864. border-width:0px;
  3865. word-wrap:break-word;
  3866. text-transform:none;
  3867. visibility:hidden;
  3868. }
  3869. #u87837_img {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:0px;
  3873. top:0px;
  3874. width:115px;
  3875. height:35px;
  3876. }
  3877. #u87837 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:115px;
  3881. top:190px;
  3882. width:115px;
  3883. height:35px;
  3884. display:flex;
  3885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3886. font-weight:400;
  3887. font-style:normal;
  3888. font-size:12px;
  3889. color:#333333;
  3890. }
  3891. #u87837 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 0px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u87837_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u87838_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:115px;
  3910. height:35px;
  3911. }
  3912. #u87838 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:230px;
  3916. top:190px;
  3917. width:115px;
  3918. height:35px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:#333333;
  3925. }
  3926. #u87838 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u87838_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u87839_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:115px;
  3945. height:35px;
  3946. }
  3947. #u87839 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:345px;
  3951. top:190px;
  3952. width:115px;
  3953. height:35px;
  3954. display:flex;
  3955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. color:#333333;
  3960. }
  3961. #u87839 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u87839_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u87840_img {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:103px;
  3980. height:35px;
  3981. }
  3982. #u87840 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:460px;
  3986. top:190px;
  3987. width:103px;
  3988. height:35px;
  3989. display:flex;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:12px;
  3994. color:#333333;
  3995. }
  3996. #u87840 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u87840_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u87841_img {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:103px;
  4015. height:35px;
  4016. }
  4017. #u87841 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:563px;
  4021. top:190px;
  4022. width:103px;
  4023. height:35px;
  4024. display:flex;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. color:#333333;
  4030. }
  4031. #u87841 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:2px 2px 2px 0px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u87841_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. visibility:hidden;
  4043. }
  4044. #u87842_img {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:103px;
  4050. height:35px;
  4051. }
  4052. #u87842 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:666px;
  4056. top:190px;
  4057. width:103px;
  4058. height:35px;
  4059. display:flex;
  4060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4061. font-weight:400;
  4062. font-style:normal;
  4063. font-size:12px;
  4064. color:#333333;
  4065. }
  4066. #u87842 .text {
  4067. position:absolute;
  4068. align-self:center;
  4069. padding:2px 2px 2px 0px;
  4070. box-sizing:border-box;
  4071. width:100%;
  4072. }
  4073. #u87842_text {
  4074. border-width:0px;
  4075. word-wrap:break-word;
  4076. text-transform:none;
  4077. visibility:hidden;
  4078. }
  4079. #u87843_img {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:103px;
  4085. height:35px;
  4086. }
  4087. #u87843 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:769px;
  4091. top:190px;
  4092. width:103px;
  4093. height:35px;
  4094. display:flex;
  4095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4096. font-weight:400;
  4097. font-style:normal;
  4098. font-size:12px;
  4099. color:#333333;
  4100. }
  4101. #u87843 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:2px 2px 2px 0px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u87843_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. visibility:hidden;
  4113. }
  4114. #u87844_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:103px;
  4120. height:35px;
  4121. }
  4122. #u87844 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:872px;
  4126. top:190px;
  4127. width:103px;
  4128. height:35px;
  4129. display:flex;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:12px;
  4134. color:#333333;
  4135. }
  4136. #u87844 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:2px 2px 2px 0px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u87844_text {
  4144. border-width:0px;
  4145. word-wrap:break-word;
  4146. text-transform:none;
  4147. visibility:hidden;
  4148. }
  4149. #u87845_img {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:133px;
  4155. height:35px;
  4156. }
  4157. #u87845 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:975px;
  4161. top:190px;
  4162. width:133px;
  4163. height:35px;
  4164. display:flex;
  4165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:12px;
  4169. color:#333333;
  4170. }
  4171. #u87845 .text {
  4172. position:absolute;
  4173. align-self:center;
  4174. padding:2px 2px 2px 0px;
  4175. box-sizing:border-box;
  4176. width:100%;
  4177. }
  4178. #u87845_text {
  4179. border-width:0px;
  4180. word-wrap:break-word;
  4181. text-transform:none;
  4182. visibility:hidden;
  4183. }
  4184. #u87846_img {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:112px;
  4190. height:35px;
  4191. }
  4192. #u87846 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:1108px;
  4196. top:190px;
  4197. width:112px;
  4198. height:35px;
  4199. display:flex;
  4200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4201. font-weight:400;
  4202. font-style:normal;
  4203. font-size:12px;
  4204. color:#333333;
  4205. }
  4206. #u87846 .text {
  4207. position:absolute;
  4208. align-self:center;
  4209. padding:2px 2px 2px 0px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u87846_text {
  4214. border-width:0px;
  4215. word-wrap:break-word;
  4216. text-transform:none;
  4217. visibility:hidden;
  4218. }
  4219. #u87847_img {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:120px;
  4225. height:35px;
  4226. }
  4227. #u87847 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:1220px;
  4231. top:190px;
  4232. width:120px;
  4233. height:35px;
  4234. display:flex;
  4235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4236. font-weight:400;
  4237. font-style:normal;
  4238. font-size:12px;
  4239. color:#AAAAAA;
  4240. }
  4241. #u87847 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 0px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u87847_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. visibility:hidden;
  4253. }
  4254. #u87848_img {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:115px;
  4260. height:35px;
  4261. }
  4262. #u87848 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:225px;
  4267. width:115px;
  4268. height:35px;
  4269. display:flex;
  4270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4271. font-weight:400;
  4272. font-style:normal;
  4273. font-size:12px;
  4274. color:#333333;
  4275. }
  4276. #u87848 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 0px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u87848_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u87849_img {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:115px;
  4295. height:35px;
  4296. }
  4297. #u87849 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:115px;
  4301. top:225px;
  4302. width:115px;
  4303. height:35px;
  4304. display:flex;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:12px;
  4309. color:#333333;
  4310. }
  4311. #u87849 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 0px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u87849_text {
  4319. border-width:0px;
  4320. word-wrap:break-word;
  4321. text-transform:none;
  4322. visibility:hidden;
  4323. }
  4324. #u87850_img {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:115px;
  4330. height:35px;
  4331. }
  4332. #u87850 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:230px;
  4336. top:225px;
  4337. width:115px;
  4338. height:35px;
  4339. display:flex;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:12px;
  4344. color:#333333;
  4345. }
  4346. #u87850 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 0px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u87850_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u87851_img {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:115px;
  4365. height:35px;
  4366. }
  4367. #u87851 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:345px;
  4371. top:225px;
  4372. width:115px;
  4373. height:35px;
  4374. display:flex;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:12px;
  4379. color:#333333;
  4380. }
  4381. #u87851 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:2px 2px 2px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u87851_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. visibility:hidden;
  4393. }
  4394. #u87852_img {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:103px;
  4400. height:35px;
  4401. }
  4402. #u87852 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:460px;
  4406. top:225px;
  4407. width:103px;
  4408. height:35px;
  4409. display:flex;
  4410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4411. font-weight:400;
  4412. font-style:normal;
  4413. font-size:12px;
  4414. color:#333333;
  4415. }
  4416. #u87852 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 2px 2px 0px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u87852_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u87853_img {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:103px;
  4435. height:35px;
  4436. }
  4437. #u87853 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:563px;
  4441. top:225px;
  4442. width:103px;
  4443. height:35px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:12px;
  4449. color:#333333;
  4450. }
  4451. #u87853 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:2px 2px 2px 0px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u87853_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. visibility:hidden;
  4463. }
  4464. #u87854_img {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:103px;
  4470. height:35px;
  4471. }
  4472. #u87854 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:666px;
  4476. top:225px;
  4477. width:103px;
  4478. height:35px;
  4479. display:flex;
  4480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4481. font-weight:400;
  4482. font-style:normal;
  4483. font-size:12px;
  4484. color:#333333;
  4485. }
  4486. #u87854 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:2px 2px 2px 0px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u87854_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u87855_img {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:103px;
  4505. height:35px;
  4506. }
  4507. #u87855 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:769px;
  4511. top:225px;
  4512. width:103px;
  4513. height:35px;
  4514. display:flex;
  4515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4516. font-weight:400;
  4517. font-style:normal;
  4518. font-size:12px;
  4519. color:#333333;
  4520. }
  4521. #u87855 .text {
  4522. position:absolute;
  4523. align-self:center;
  4524. padding:2px 2px 2px 0px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u87855_text {
  4529. border-width:0px;
  4530. word-wrap:break-word;
  4531. text-transform:none;
  4532. visibility:hidden;
  4533. }
  4534. #u87856_img {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:103px;
  4540. height:35px;
  4541. }
  4542. #u87856 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:872px;
  4546. top:225px;
  4547. width:103px;
  4548. height:35px;
  4549. display:flex;
  4550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4551. font-weight:400;
  4552. font-style:normal;
  4553. font-size:12px;
  4554. color:#333333;
  4555. }
  4556. #u87856 .text {
  4557. position:absolute;
  4558. align-self:center;
  4559. padding:2px 2px 2px 0px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u87856_text {
  4564. border-width:0px;
  4565. word-wrap:break-word;
  4566. text-transform:none;
  4567. visibility:hidden;
  4568. }
  4569. #u87857_img {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:133px;
  4575. height:35px;
  4576. }
  4577. #u87857 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:975px;
  4581. top:225px;
  4582. width:133px;
  4583. height:35px;
  4584. display:flex;
  4585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:12px;
  4589. color:#333333;
  4590. }
  4591. #u87857 .text {
  4592. position:absolute;
  4593. align-self:center;
  4594. padding:2px 2px 2px 0px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u87857_text {
  4599. border-width:0px;
  4600. word-wrap:break-word;
  4601. text-transform:none;
  4602. visibility:hidden;
  4603. }
  4604. #u87858_img {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:112px;
  4610. height:35px;
  4611. }
  4612. #u87858 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:1108px;
  4616. top:225px;
  4617. width:112px;
  4618. height:35px;
  4619. display:flex;
  4620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. font-size:12px;
  4624. color:#333333;
  4625. }
  4626. #u87858 .text {
  4627. position:absolute;
  4628. align-self:center;
  4629. padding:2px 2px 2px 0px;
  4630. box-sizing:border-box;
  4631. width:100%;
  4632. }
  4633. #u87858_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. visibility:hidden;
  4638. }
  4639. #u87859_img {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:120px;
  4645. height:35px;
  4646. }
  4647. #u87859 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:1220px;
  4651. top:225px;
  4652. width:120px;
  4653. height:35px;
  4654. display:flex;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:12px;
  4659. color:#333333;
  4660. }
  4661. #u87859 .text {
  4662. position:absolute;
  4663. align-self:center;
  4664. padding:2px 2px 2px 0px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u87859_text {
  4669. border-width:0px;
  4670. word-wrap:break-word;
  4671. text-transform:none;
  4672. visibility:hidden;
  4673. }
  4674. #u87860_img {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:0px;
  4678. top:0px;
  4679. width:115px;
  4680. height:32px;
  4681. }
  4682. #u87860 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:260px;
  4687. width:115px;
  4688. height:32px;
  4689. display:flex;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:12px;
  4694. color:#333333;
  4695. }
  4696. #u87860 .text {
  4697. position:absolute;
  4698. align-self:center;
  4699. padding:2px 2px 2px 0px;
  4700. box-sizing:border-box;
  4701. width:100%;
  4702. }
  4703. #u87860_text {
  4704. border-width:0px;
  4705. word-wrap:break-word;
  4706. text-transform:none;
  4707. visibility:hidden;
  4708. }
  4709. #u87861_img {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:115px;
  4715. height:32px;
  4716. }
  4717. #u87861 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:115px;
  4721. top:260px;
  4722. width:115px;
  4723. height:32px;
  4724. display:flex;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:12px;
  4729. color:#333333;
  4730. }
  4731. #u87861 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 0px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u87861_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u87862_img {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:115px;
  4750. height:32px;
  4751. }
  4752. #u87862 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:230px;
  4756. top:260px;
  4757. width:115px;
  4758. height:32px;
  4759. display:flex;
  4760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4761. font-weight:400;
  4762. font-style:normal;
  4763. font-size:12px;
  4764. color:#333333;
  4765. }
  4766. #u87862 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 0px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u87862_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u87863_img {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:115px;
  4785. height:32px;
  4786. }
  4787. #u87863 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:345px;
  4791. top:260px;
  4792. width:115px;
  4793. height:32px;
  4794. display:flex;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:12px;
  4799. color:#333333;
  4800. }
  4801. #u87863 .text {
  4802. position:absolute;
  4803. align-self:center;
  4804. padding:2px 2px 2px 0px;
  4805. box-sizing:border-box;
  4806. width:100%;
  4807. }
  4808. #u87863_text {
  4809. border-width:0px;
  4810. word-wrap:break-word;
  4811. text-transform:none;
  4812. visibility:hidden;
  4813. }
  4814. #u87864_img {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:0px;
  4818. top:0px;
  4819. width:103px;
  4820. height:32px;
  4821. }
  4822. #u87864 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:460px;
  4826. top:260px;
  4827. width:103px;
  4828. height:32px;
  4829. display:flex;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:12px;
  4834. color:#333333;
  4835. }
  4836. #u87864 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 0px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u87864_text {
  4844. border-width:0px;
  4845. word-wrap:break-word;
  4846. text-transform:none;
  4847. visibility:hidden;
  4848. }
  4849. #u87865_img {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:103px;
  4855. height:32px;
  4856. }
  4857. #u87865 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:563px;
  4861. top:260px;
  4862. width:103px;
  4863. height:32px;
  4864. display:flex;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:12px;
  4869. color:#333333;
  4870. }
  4871. #u87865 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 0px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u87865_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u87866_img {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:103px;
  4890. height:32px;
  4891. }
  4892. #u87866 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:666px;
  4896. top:260px;
  4897. width:103px;
  4898. height:32px;
  4899. display:flex;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:12px;
  4904. color:#333333;
  4905. }
  4906. #u87866 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 2px 2px 0px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u87866_text {
  4914. border-width:0px;
  4915. word-wrap:break-word;
  4916. text-transform:none;
  4917. visibility:hidden;
  4918. }
  4919. #u87867_img {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:103px;
  4925. height:32px;
  4926. }
  4927. #u87867 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:769px;
  4931. top:260px;
  4932. width:103px;
  4933. height:32px;
  4934. display:flex;
  4935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4936. font-weight:400;
  4937. font-style:normal;
  4938. font-size:12px;
  4939. color:#333333;
  4940. }
  4941. #u87867 .text {
  4942. position:absolute;
  4943. align-self:center;
  4944. padding:2px 2px 2px 0px;
  4945. box-sizing:border-box;
  4946. width:100%;
  4947. }
  4948. #u87867_text {
  4949. border-width:0px;
  4950. word-wrap:break-word;
  4951. text-transform:none;
  4952. visibility:hidden;
  4953. }
  4954. #u87868_img {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:103px;
  4960. height:32px;
  4961. }
  4962. #u87868 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:872px;
  4966. top:260px;
  4967. width:103px;
  4968. height:32px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:12px;
  4974. color:#333333;
  4975. }
  4976. #u87868 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:2px 2px 2px 0px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u87868_text {
  4984. border-width:0px;
  4985. word-wrap:break-word;
  4986. text-transform:none;
  4987. visibility:hidden;
  4988. }
  4989. #u87869_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:133px;
  4995. height:32px;
  4996. }
  4997. #u87869 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:975px;
  5001. top:260px;
  5002. width:133px;
  5003. height:32px;
  5004. display:flex;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:12px;
  5009. color:#333333;
  5010. }
  5011. #u87869 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:2px 2px 2px 0px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u87869_text {
  5019. border-width:0px;
  5020. word-wrap:break-word;
  5021. text-transform:none;
  5022. visibility:hidden;
  5023. }
  5024. #u87870_img {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:112px;
  5030. height:32px;
  5031. }
  5032. #u87870 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:1108px;
  5036. top:260px;
  5037. width:112px;
  5038. height:32px;
  5039. display:flex;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:12px;
  5044. color:#333333;
  5045. }
  5046. #u87870 .text {
  5047. position:absolute;
  5048. align-self:center;
  5049. padding:2px 2px 2px 0px;
  5050. box-sizing:border-box;
  5051. width:100%;
  5052. }
  5053. #u87870_text {
  5054. border-width:0px;
  5055. word-wrap:break-word;
  5056. text-transform:none;
  5057. visibility:hidden;
  5058. }
  5059. #u87871_img {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:120px;
  5065. height:32px;
  5066. }
  5067. #u87871 {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:1220px;
  5071. top:260px;
  5072. width:120px;
  5073. height:32px;
  5074. display:flex;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:12px;
  5079. color:#333333;
  5080. }
  5081. #u87871 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:2px 2px 2px 0px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u87871_text {
  5089. border-width:0px;
  5090. word-wrap:break-word;
  5091. text-transform:none;
  5092. visibility:hidden;
  5093. }
  5094. #u87872_img {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:115px;
  5100. height:30px;
  5101. }
  5102. #u87872 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:292px;
  5107. width:115px;
  5108. height:30px;
  5109. display:flex;
  5110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5111. font-weight:400;
  5112. font-style:normal;
  5113. font-size:12px;
  5114. color:#333333;
  5115. }
  5116. #u87872 .text {
  5117. position:absolute;
  5118. align-self:center;
  5119. padding:2px 2px 2px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u87872_text {
  5124. border-width:0px;
  5125. word-wrap:break-word;
  5126. text-transform:none;
  5127. visibility:hidden;
  5128. }
  5129. #u87873_img {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:115px;
  5135. height:30px;
  5136. }
  5137. #u87873 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:115px;
  5141. top:292px;
  5142. width:115px;
  5143. height:30px;
  5144. display:flex;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:12px;
  5149. color:#333333;
  5150. }
  5151. #u87873 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 0px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u87873_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. visibility:hidden;
  5163. }
  5164. #u87874_img {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:115px;
  5170. height:30px;
  5171. }
  5172. #u87874 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:230px;
  5176. top:292px;
  5177. width:115px;
  5178. height:30px;
  5179. display:flex;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:12px;
  5184. color:#333333;
  5185. }
  5186. #u87874 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:2px 2px 2px 0px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u87874_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. visibility:hidden;
  5198. }
  5199. #u87875_img {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:115px;
  5205. height:30px;
  5206. }
  5207. #u87875 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:345px;
  5211. top:292px;
  5212. width:115px;
  5213. height:30px;
  5214. display:flex;
  5215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:12px;
  5219. color:#333333;
  5220. }
  5221. #u87875 .text {
  5222. position:absolute;
  5223. align-self:center;
  5224. padding:2px 2px 2px 0px;
  5225. box-sizing:border-box;
  5226. width:100%;
  5227. }
  5228. #u87875_text {
  5229. border-width:0px;
  5230. word-wrap:break-word;
  5231. text-transform:none;
  5232. visibility:hidden;
  5233. }
  5234. #u87876_img {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:0px;
  5238. top:0px;
  5239. width:103px;
  5240. height:30px;
  5241. }
  5242. #u87876 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:460px;
  5246. top:292px;
  5247. width:103px;
  5248. height:30px;
  5249. display:flex;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:12px;
  5254. color:#333333;
  5255. }
  5256. #u87876 .text {
  5257. position:absolute;
  5258. align-self:center;
  5259. padding:2px 2px 2px 0px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u87876_text {
  5264. border-width:0px;
  5265. word-wrap:break-word;
  5266. text-transform:none;
  5267. visibility:hidden;
  5268. }
  5269. #u87877_img {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:103px;
  5275. height:30px;
  5276. }
  5277. #u87877 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:563px;
  5281. top:292px;
  5282. width:103px;
  5283. height:30px;
  5284. display:flex;
  5285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:12px;
  5289. color:#333333;
  5290. }
  5291. #u87877 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 0px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u87877_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. visibility:hidden;
  5303. }
  5304. #u87878_img {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:103px;
  5310. height:30px;
  5311. }
  5312. #u87878 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:666px;
  5316. top:292px;
  5317. width:103px;
  5318. height:30px;
  5319. display:flex;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:12px;
  5324. color:#333333;
  5325. }
  5326. #u87878 .text {
  5327. position:absolute;
  5328. align-self:center;
  5329. padding:2px 2px 2px 0px;
  5330. box-sizing:border-box;
  5331. width:100%;
  5332. }
  5333. #u87878_text {
  5334. border-width:0px;
  5335. word-wrap:break-word;
  5336. text-transform:none;
  5337. visibility:hidden;
  5338. }
  5339. #u87879_img {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:0px;
  5343. top:0px;
  5344. width:103px;
  5345. height:30px;
  5346. }
  5347. #u87879 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:769px;
  5351. top:292px;
  5352. width:103px;
  5353. height:30px;
  5354. display:flex;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:12px;
  5359. color:#333333;
  5360. }
  5361. #u87879 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 0px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u87879_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u87880_img {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:103px;
  5380. height:30px;
  5381. }
  5382. #u87880 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:872px;
  5386. top:292px;
  5387. width:103px;
  5388. height:30px;
  5389. display:flex;
  5390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. font-size:12px;
  5394. color:#333333;
  5395. }
  5396. #u87880 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:2px 2px 2px 0px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u87880_text {
  5404. border-width:0px;
  5405. word-wrap:break-word;
  5406. text-transform:none;
  5407. visibility:hidden;
  5408. }
  5409. #u87881_img {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:133px;
  5415. height:30px;
  5416. }
  5417. #u87881 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:975px;
  5421. top:292px;
  5422. width:133px;
  5423. height:30px;
  5424. display:flex;
  5425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5426. font-weight:400;
  5427. font-style:normal;
  5428. font-size:12px;
  5429. color:#333333;
  5430. }
  5431. #u87881 .text {
  5432. position:absolute;
  5433. align-self:center;
  5434. padding:2px 2px 2px 0px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u87881_text {
  5439. border-width:0px;
  5440. word-wrap:break-word;
  5441. text-transform:none;
  5442. visibility:hidden;
  5443. }
  5444. #u87882_img {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:112px;
  5450. height:30px;
  5451. }
  5452. #u87882 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:1108px;
  5456. top:292px;
  5457. width:112px;
  5458. height:30px;
  5459. display:flex;
  5460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5461. font-weight:400;
  5462. font-style:normal;
  5463. font-size:12px;
  5464. color:#333333;
  5465. }
  5466. #u87882 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 0px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u87882_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. visibility:hidden;
  5478. }
  5479. #u87883_img {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:120px;
  5485. height:30px;
  5486. }
  5487. #u87883 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:1220px;
  5491. top:292px;
  5492. width:120px;
  5493. height:30px;
  5494. display:flex;
  5495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5496. font-weight:400;
  5497. font-style:normal;
  5498. font-size:12px;
  5499. color:#333333;
  5500. }
  5501. #u87883 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 0px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u87883_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u87884 {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:0px;
  5520. height:0px;
  5521. }
  5522. #u87885_div {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:59px;
  5528. height:30px;
  5529. background:inherit;
  5530. background-color:rgba(24, 144, 255, 1);
  5531. box-sizing:border-box;
  5532. border-width:1px;
  5533. border-style:solid;
  5534. border-color:rgba(0, 153, 255, 1);
  5535. border-radius:4px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. font-family:'Microsoft YaHei', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:14px;
  5543. color:#FFFFFF;
  5544. }
  5545. #u87885 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:1551px;
  5549. top:178px;
  5550. width:59px;
  5551. height:30px;
  5552. display:flex;
  5553. font-family:'Microsoft YaHei', sans-serif;
  5554. font-weight:400;
  5555. font-style:normal;
  5556. font-size:14px;
  5557. color:#FFFFFF;
  5558. }
  5559. #u87885 .text {
  5560. position:absolute;
  5561. align-self:center;
  5562. padding:5px 15px 5px 15px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u87885_text {
  5567. border-width:0px;
  5568. white-space:nowrap;
  5569. text-transform:none;
  5570. }
  5571. #u87886_div {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:55px;
  5577. height:30px;
  5578. background:inherit;
  5579. background-color:rgba(255, 255, 255, 1);
  5580. box-sizing:border-box;
  5581. border-width:1px;
  5582. border-style:solid;
  5583. border-color:rgba(170, 170, 170, 1);
  5584. border-radius:4px;
  5585. -moz-box-shadow:none;
  5586. -webkit-box-shadow:none;
  5587. box-shadow:none;
  5588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:12px;
  5592. color:#555555;
  5593. }
  5594. #u87886 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:1620px;
  5598. top:178px;
  5599. width:55px;
  5600. height:30px;
  5601. display:flex;
  5602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. font-size:12px;
  5606. color:#555555;
  5607. }
  5608. #u87886 .text {
  5609. position:absolute;
  5610. align-self:center;
  5611. padding:5px 15px 5px 15px;
  5612. box-sizing:border-box;
  5613. width:100%;
  5614. }
  5615. #u87886_text {
  5616. border-width:0px;
  5617. white-space:nowrap;
  5618. text-transform:none;
  5619. }
  5620. #u87888 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:0px;
  5624. top:0px;
  5625. width:0px;
  5626. height:0px;
  5627. }
  5628. #u87889_div {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:30px;
  5634. height:30px;
  5635. background:inherit;
  5636. background-color:rgba(255, 255, 255, 1);
  5637. box-sizing:border-box;
  5638. border-width:1px;
  5639. border-style:solid;
  5640. border-color:rgba(228, 228, 228, 1);
  5641. border-radius:4px;
  5642. -moz-box-shadow:none;
  5643. -webkit-box-shadow:none;
  5644. box-shadow:none;
  5645. font-family:'Microsoft YaHei', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:14px;
  5649. }
  5650. #u87889 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:1126px;
  5654. top:602px;
  5655. width:30px;
  5656. height:30px;
  5657. display:flex;
  5658. font-family:'Microsoft YaHei', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:14px;
  5662. }
  5663. #u87889 .text {
  5664. position:absolute;
  5665. align-self:center;
  5666. padding:2px 2px 2px 2px;
  5667. box-sizing:border-box;
  5668. width:100%;
  5669. }
  5670. #u87889_text {
  5671. border-width:0px;
  5672. word-wrap:break-word;
  5673. text-transform:none;
  5674. }
  5675. #u87890_div {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:49px;
  5681. height:30px;
  5682. background:inherit;
  5683. background-color:rgba(255, 255, 255, 0);
  5684. box-sizing:border-box;
  5685. border-width:1px;
  5686. border-style:solid;
  5687. border-color:rgba(188, 188, 188, 1);
  5688. border-radius:4px;
  5689. -moz-box-shadow:none;
  5690. -webkit-box-shadow:none;
  5691. box-shadow:none;
  5692. font-family:'Microsoft YaHei', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:14px;
  5696. color:#1E1E1E;
  5697. }
  5698. #u87890 {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:1642px;
  5702. top:602px;
  5703. width:49px;
  5704. height:30px;
  5705. display:flex;
  5706. font-family:'Microsoft YaHei', sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. font-size:14px;
  5710. color:#1E1E1E;
  5711. }
  5712. #u87890 .text {
  5713. position:absolute;
  5714. align-self:center;
  5715. padding:5px 10px 5px 10px;
  5716. box-sizing:border-box;
  5717. width:100%;
  5718. }
  5719. #u87890_text {
  5720. border-width:0px;
  5721. white-space:nowrap;
  5722. text-transform:none;
  5723. }
  5724. #u87891 {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:0px;
  5730. height:0px;
  5731. }
  5732. #u87892_div {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:33px;
  5738. height:24px;
  5739. background:inherit;
  5740. background-color:rgba(255, 255, 255, 1);
  5741. border:none;
  5742. border-radius:0px;
  5743. -moz-box-shadow:none;
  5744. -webkit-box-shadow:none;
  5745. box-shadow:none;
  5746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:14px;
  5750. color:#BCBCBC;
  5751. text-align:left;
  5752. }
  5753. #u87892 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:1410px;
  5757. top:605px;
  5758. width:33px;
  5759. height:24px;
  5760. display:flex;
  5761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:14px;
  5765. color:#BCBCBC;
  5766. text-align:left;
  5767. }
  5768. #u87892 .text {
  5769. position:absolute;
  5770. align-self:center;
  5771. padding:2px 2px 2px 2px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u87892_text {
  5776. border-width:0px;
  5777. white-space:nowrap;
  5778. text-transform:none;
  5779. }
  5780. #u87893_div {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:40px;
  5786. height:30px;
  5787. background:inherit;
  5788. background-color:rgba(255, 255, 255, 1);
  5789. box-sizing:border-box;
  5790. border-width:1px;
  5791. border-style:solid;
  5792. border-color:rgba(228, 228, 228, 1);
  5793. border-radius:4px;
  5794. -moz-box-shadow:none;
  5795. -webkit-box-shadow:none;
  5796. box-shadow:none;
  5797. font-family:'Microsoft YaHei', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:14px;
  5801. }
  5802. #u87893 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:1445px;
  5806. top:602px;
  5807. width:40px;
  5808. height:30px;
  5809. display:flex;
  5810. font-family:'Microsoft YaHei', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:14px;
  5814. }
  5815. #u87893 .text {
  5816. position:absolute;
  5817. align-self:center;
  5818. padding:2px 2px 2px 2px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u87893_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. visibility:hidden;
  5827. }
  5828. #u87894_div {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:19px;
  5834. height:24px;
  5835. background:inherit;
  5836. background-color:rgba(255, 255, 255, 1);
  5837. border:none;
  5838. border-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-family:'Microsoft YaHei', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. color:#BCBCBC;
  5847. text-align:left;
  5848. }
  5849. #u87894 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:1487px;
  5853. top:606px;
  5854. width:19px;
  5855. height:24px;
  5856. display:flex;
  5857. font-family:'Microsoft YaHei', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:14px;
  5861. color:#BCBCBC;
  5862. text-align:left;
  5863. }
  5864. #u87894 .text {
  5865. position:absolute;
  5866. align-self:center;
  5867. padding:2px 2px 2px 2px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u87894_text {
  5872. border-width:0px;
  5873. white-space:nowrap;
  5874. text-transform:none;
  5875. }
  5876. #u87895_input {
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:34px;
  5881. height:25px;
  5882. padding:2px 2px 2px 2px;
  5883. font-family:'Microsoft YaHei', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. font-size:13px;
  5887. letter-spacing:normal;
  5888. color:#000000;
  5889. vertical-align:none;
  5890. text-align:left;
  5891. text-transform:none;
  5892. background-color:transparent;
  5893. border-color:transparent;
  5894. }
  5895. #u87895_input.disabled {
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:34px;
  5900. height:25px;
  5901. padding:2px 2px 2px 2px;
  5902. font-family:'Microsoft YaHei', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:13px;
  5906. letter-spacing:normal;
  5907. color:#000000;
  5908. vertical-align:none;
  5909. text-align:left;
  5910. text-transform:none;
  5911. background-color:transparent;
  5912. border-color:transparent;
  5913. }
  5914. #u87895_div {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:34px;
  5920. height:25px;
  5921. background:inherit;
  5922. background-color:rgba(255, 255, 255, 1);
  5923. border:none;
  5924. border-radius:0px;
  5925. -moz-box-shadow:none;
  5926. -webkit-box-shadow:none;
  5927. box-shadow:none;
  5928. font-family:'Microsoft YaHei', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. }
  5932. #u87895 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:1448px;
  5936. top:604px;
  5937. width:34px;
  5938. height:25px;
  5939. display:flex;
  5940. font-family:'Microsoft YaHei', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. }
  5944. #u87895 .text {
  5945. position:absolute;
  5946. align-self:center;
  5947. padding:2px 2px 2px 2px;
  5948. box-sizing:border-box;
  5949. width:100%;
  5950. }
  5951. #u87895_div.disabled {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:34px;
  5957. height:25px;
  5958. background:inherit;
  5959. background-color:rgba(240, 240, 240, 1);
  5960. border:none;
  5961. border-radius:0px;
  5962. -moz-box-shadow:none;
  5963. -webkit-box-shadow:none;
  5964. box-shadow:none;
  5965. font-family:'Microsoft YaHei', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. }
  5969. #u87895.disabled {
  5970. }
  5971. #u87896_div {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:30px;
  5977. height:30px;
  5978. background:inherit;
  5979. background-color:rgba(41, 143, 255, 1);
  5980. border:none;
  5981. border-radius:4px;
  5982. -moz-box-shadow:none;
  5983. -webkit-box-shadow:none;
  5984. box-shadow:none;
  5985. font-family:'Microsoft YaHei', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:14px;
  5989. color:#FFFFFF;
  5990. }
  5991. #u87896 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:1160px;
  5995. top:602px;
  5996. width:30px;
  5997. height:30px;
  5998. display:flex;
  5999. font-family:'Microsoft YaHei', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:14px;
  6003. color:#FFFFFF;
  6004. }
  6005. #u87896 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:2px 2px 2px 2px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u87896_text {
  6013. border-width:0px;
  6014. word-wrap:break-word;
  6015. text-transform:none;
  6016. }
  6017. #u87897_div {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:30px;
  6023. height:30px;
  6024. background:inherit;
  6025. background-color:rgba(255, 255, 255, 1);
  6026. box-sizing:border-box;
  6027. border-width:1px;
  6028. border-style:solid;
  6029. border-color:rgba(228, 228, 228, 1);
  6030. border-radius:4px;
  6031. -moz-box-shadow:none;
  6032. -webkit-box-shadow:none;
  6033. box-shadow:none;
  6034. font-family:'Microsoft YaHei', sans-serif;
  6035. font-weight:400;
  6036. font-style:normal;
  6037. font-size:14px;
  6038. }
  6039. #u87897 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:1194px;
  6043. top:602px;
  6044. width:30px;
  6045. height:30px;
  6046. display:flex;
  6047. font-family:'Microsoft YaHei', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:14px;
  6051. }
  6052. #u87897 .text {
  6053. position:absolute;
  6054. align-self:center;
  6055. padding:2px 2px 2px 2px;
  6056. box-sizing:border-box;
  6057. width:100%;
  6058. }
  6059. #u87897_text {
  6060. border-width:0px;
  6061. word-wrap:break-word;
  6062. text-transform:none;
  6063. }
  6064. #u87898_div {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:30px;
  6070. height:30px;
  6071. background:inherit;
  6072. background-color:rgba(255, 255, 255, 1);
  6073. box-sizing:border-box;
  6074. border-width:1px;
  6075. border-style:solid;
  6076. border-color:rgba(228, 228, 228, 1);
  6077. border-radius:4px;
  6078. -moz-box-shadow:none;
  6079. -webkit-box-shadow:none;
  6080. box-shadow:none;
  6081. font-family:'Microsoft YaHei', sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. font-size:14px;
  6085. }
  6086. #u87898 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:1228px;
  6090. top:602px;
  6091. width:30px;
  6092. height:30px;
  6093. display:flex;
  6094. font-family:'Microsoft YaHei', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:14px;
  6098. }
  6099. #u87898 .text {
  6100. position:absolute;
  6101. align-self:center;
  6102. padding:2px 2px 2px 2px;
  6103. box-sizing:border-box;
  6104. width:100%;
  6105. }
  6106. #u87898_text {
  6107. border-width:0px;
  6108. word-wrap:break-word;
  6109. text-transform:none;
  6110. }
  6111. #u87899_div {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:30px;
  6117. height:30px;
  6118. background:inherit;
  6119. background-color:rgba(255, 255, 255, 1);
  6120. border:none;
  6121. border-radius:4px;
  6122. -moz-box-shadow:none;
  6123. -webkit-box-shadow:none;
  6124. box-shadow:none;
  6125. font-family:'Microsoft YaHei', sans-serif;
  6126. font-weight:400;
  6127. font-style:normal;
  6128. font-size:14px;
  6129. }
  6130. #u87899 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:1258px;
  6134. top:602px;
  6135. width:30px;
  6136. height:30px;
  6137. display:flex;
  6138. font-family:'Microsoft YaHei', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:14px;
  6142. }
  6143. #u87899 .text {
  6144. position:absolute;
  6145. align-self:center;
  6146. padding:2px 2px 2px 2px;
  6147. box-sizing:border-box;
  6148. width:100%;
  6149. }
  6150. #u87899_text {
  6151. border-width:0px;
  6152. word-wrap:break-word;
  6153. text-transform:none;
  6154. }
  6155. #u87900_div {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:30px;
  6161. height:30px;
  6162. background:inherit;
  6163. background-color:rgba(255, 255, 255, 1);
  6164. box-sizing:border-box;
  6165. border-width:1px;
  6166. border-style:solid;
  6167. border-color:rgba(228, 228, 228, 1);
  6168. border-radius:4px;
  6169. -moz-box-shadow:none;
  6170. -webkit-box-shadow:none;
  6171. box-shadow:none;
  6172. font-family:'Microsoft YaHei', sans-serif;
  6173. font-weight:400;
  6174. font-style:normal;
  6175. font-size:14px;
  6176. }
  6177. #u87900 {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:1292px;
  6181. top:602px;
  6182. width:30px;
  6183. height:30px;
  6184. display:flex;
  6185. font-family:'Microsoft YaHei', sans-serif;
  6186. font-weight:400;
  6187. font-style:normal;
  6188. font-size:14px;
  6189. }
  6190. #u87900 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:2px 2px 2px 2px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u87900_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. }
  6202. #u87901_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:32px;
  6208. height:21px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. border:none;
  6212. border-radius:15px;
  6213. -moz-box-shadow:none;
  6214. -webkit-box-shadow:none;
  6215. box-shadow:none;
  6216. font-family:'Microsoft YaHei', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:14px;
  6220. color:#1E1E1E;
  6221. }
  6222. #u87901 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:1366px;
  6226. top:607px;
  6227. width:32px;
  6228. height:21px;
  6229. display:flex;
  6230. font-family:'Microsoft YaHei', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:14px;
  6234. color:#1E1E1E;
  6235. }
  6236. #u87901 .text {
  6237. position:absolute;
  6238. align-self:center;
  6239. padding:2px 2px 2px 2px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u87901_text {
  6244. border-width:0px;
  6245. white-space:nowrap;
  6246. text-transform:none;
  6247. }
  6248. #u87902 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:0px;
  6254. height:0px;
  6255. }
  6256. #u87903_div {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:31px;
  6262. height:30px;
  6263. background:inherit;
  6264. background-color:rgba(255, 255, 255, 1);
  6265. box-sizing:border-box;
  6266. border-width:1px;
  6267. border-style:solid;
  6268. border-color:rgba(228, 228, 228, 1);
  6269. border-radius:4px;
  6270. -moz-box-shadow:none;
  6271. -webkit-box-shadow:none;
  6272. box-shadow:none;
  6273. font-family:'Microsoft YaHei', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:12px;
  6277. }
  6278. #u87903 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:1091px;
  6282. top:602px;
  6283. width:31px;
  6284. height:30px;
  6285. display:flex;
  6286. font-family:'Microsoft YaHei', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:12px;
  6290. }
  6291. #u87903 .text {
  6292. position:absolute;
  6293. align-self:center;
  6294. padding:2px 2px 2px 2px;
  6295. box-sizing:border-box;
  6296. width:100%;
  6297. }
  6298. #u87903_text {
  6299. border-width:0px;
  6300. word-wrap:break-word;
  6301. text-transform:none;
  6302. visibility:hidden;
  6303. }
  6304. #u87904_img {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:0px;
  6308. top:0px;
  6309. width:8px;
  6310. height:14px;
  6311. }
  6312. #u87904 {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:1103px;
  6316. top:610px;
  6317. width:8px;
  6318. height:14px;
  6319. display:flex;
  6320. font-family:'Microsoft YaHei', sans-serif;
  6321. font-weight:400;
  6322. font-style:normal;
  6323. font-size:12px;
  6324. }
  6325. #u87904 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 2px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u87904_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u87905 {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:0px;
  6344. height:0px;
  6345. }
  6346. #u87906_div {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:31px;
  6352. height:30px;
  6353. background:inherit;
  6354. background-color:rgba(255, 255, 255, 1);
  6355. box-sizing:border-box;
  6356. border-width:1px;
  6357. border-style:solid;
  6358. border-color:rgba(228, 228, 228, 1);
  6359. border-radius:4px;
  6360. -moz-box-shadow:none;
  6361. -webkit-box-shadow:none;
  6362. box-shadow:none;
  6363. font-family:'Microsoft YaHei', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:12px;
  6367. }
  6368. #u87906 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:1325px;
  6372. top:602px;
  6373. width:31px;
  6374. height:30px;
  6375. display:flex;
  6376. font-family:'Microsoft YaHei', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:12px;
  6380. }
  6381. #u87906 .text {
  6382. position:absolute;
  6383. align-self:center;
  6384. padding:2px 2px 2px 2px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u87906_text {
  6389. border-width:0px;
  6390. word-wrap:break-word;
  6391. text-transform:none;
  6392. visibility:hidden;
  6393. }
  6394. #u87907_img {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:0px;
  6398. top:0px;
  6399. width:8px;
  6400. height:14px;
  6401. }
  6402. #u87907 {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:1338px;
  6406. top:610px;
  6407. width:8px;
  6408. height:14px;
  6409. display:flex;
  6410. font-family:'Microsoft YaHei', sans-serif;
  6411. font-weight:400;
  6412. font-style:normal;
  6413. font-size:12px;
  6414. }
  6415. #u87907 .text {
  6416. position:absolute;
  6417. align-self:center;
  6418. padding:2px 2px 2px 2px;
  6419. box-sizing:border-box;
  6420. width:100%;
  6421. }
  6422. #u87907_text {
  6423. border-width:0px;
  6424. word-wrap:break-word;
  6425. text-transform:none;
  6426. visibility:hidden;
  6427. }
  6428. #u87908 {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:0px;
  6434. height:0px;
  6435. }
  6436. #u87909_div {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:33px;
  6442. height:24px;
  6443. background:inherit;
  6444. background-color:rgba(255, 255, 255, 1);
  6445. border:none;
  6446. border-radius:0px;
  6447. -moz-box-shadow:none;
  6448. -webkit-box-shadow:none;
  6449. box-shadow:none;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:14px;
  6454. color:#BCBCBC;
  6455. text-align:left;
  6456. }
  6457. #u87909 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:1526px;
  6461. top:605px;
  6462. width:33px;
  6463. height:24px;
  6464. display:flex;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:14px;
  6469. color:#BCBCBC;
  6470. text-align:left;
  6471. }
  6472. #u87909 .text {
  6473. position:absolute;
  6474. align-self:center;
  6475. padding:2px 2px 2px 2px;
  6476. box-sizing:border-box;
  6477. width:100%;
  6478. }
  6479. #u87909_text {
  6480. border-width:0px;
  6481. white-space:nowrap;
  6482. text-transform:none;
  6483. }
  6484. #u87910_div {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:40px;
  6490. height:30px;
  6491. background:inherit;
  6492. background-color:rgba(255, 255, 255, 1);
  6493. box-sizing:border-box;
  6494. border-width:1px;
  6495. border-style:solid;
  6496. border-color:rgba(228, 228, 228, 1);
  6497. border-radius:4px;
  6498. -moz-box-shadow:none;
  6499. -webkit-box-shadow:none;
  6500. box-shadow:none;
  6501. font-family:'Microsoft YaHei', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:14px;
  6505. }
  6506. #u87910 {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:1561px;
  6510. top:602px;
  6511. width:40px;
  6512. height:30px;
  6513. display:flex;
  6514. font-family:'Microsoft YaHei', sans-serif;
  6515. font-weight:400;
  6516. font-style:normal;
  6517. font-size:14px;
  6518. }
  6519. #u87910 .text {
  6520. position:absolute;
  6521. align-self:center;
  6522. padding:2px 2px 2px 2px;
  6523. box-sizing:border-box;
  6524. width:100%;
  6525. }
  6526. #u87910_text {
  6527. border-width:0px;
  6528. word-wrap:break-word;
  6529. text-transform:none;
  6530. visibility:hidden;
  6531. }
  6532. #u87911_div {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:19px;
  6538. height:24px;
  6539. background:inherit;
  6540. background-color:rgba(255, 255, 255, 1);
  6541. border:none;
  6542. border-radius:0px;
  6543. -moz-box-shadow:none;
  6544. -webkit-box-shadow:none;
  6545. box-shadow:none;
  6546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6547. font-weight:400;
  6548. font-style:normal;
  6549. font-size:14px;
  6550. color:#BCBCBC;
  6551. text-align:left;
  6552. }
  6553. #u87911 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:1603px;
  6557. top:606px;
  6558. width:19px;
  6559. height:24px;
  6560. display:flex;
  6561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:14px;
  6565. color:#BCBCBC;
  6566. text-align:left;
  6567. }
  6568. #u87911 .text {
  6569. position:absolute;
  6570. align-self:center;
  6571. padding:2px 2px 2px 2px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u87911_text {
  6576. border-width:0px;
  6577. white-space:nowrap;
  6578. text-transform:none;
  6579. }
  6580. #u87912_input {
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:34px;
  6585. height:25px;
  6586. padding:2px 2px 2px 2px;
  6587. font-family:'Microsoft YaHei', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:13px;
  6591. letter-spacing:normal;
  6592. color:#000000;
  6593. vertical-align:none;
  6594. text-align:left;
  6595. text-transform:none;
  6596. background-color:transparent;
  6597. border-color:transparent;
  6598. }
  6599. #u87912_input.disabled {
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:34px;
  6604. height:25px;
  6605. padding:2px 2px 2px 2px;
  6606. font-family:'Microsoft YaHei', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:13px;
  6610. letter-spacing:normal;
  6611. color:#000000;
  6612. vertical-align:none;
  6613. text-align:left;
  6614. text-transform:none;
  6615. background-color:transparent;
  6616. border-color:transparent;
  6617. }
  6618. #u87912_div {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:34px;
  6624. height:25px;
  6625. background:inherit;
  6626. background-color:rgba(255, 255, 255, 1);
  6627. border:none;
  6628. border-radius:0px;
  6629. -moz-box-shadow:none;
  6630. -webkit-box-shadow:none;
  6631. box-shadow:none;
  6632. font-family:'Microsoft YaHei', sans-serif;
  6633. font-weight:400;
  6634. font-style:normal;
  6635. }
  6636. #u87912 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:1564px;
  6640. top:604px;
  6641. width:34px;
  6642. height:25px;
  6643. display:flex;
  6644. font-family:'Microsoft YaHei', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. }
  6648. #u87912 .text {
  6649. position:absolute;
  6650. align-self:center;
  6651. padding:2px 2px 2px 2px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u87912_div.disabled {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:34px;
  6661. height:25px;
  6662. background:inherit;
  6663. background-color:rgba(240, 240, 240, 1);
  6664. border:none;
  6665. border-radius:0px;
  6666. -moz-box-shadow:none;
  6667. -webkit-box-shadow:none;
  6668. box-shadow:none;
  6669. font-family:'Microsoft YaHei', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. }
  6673. #u87912.disabled {
  6674. }
  6675. #u87913 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:0px;
  6681. height:0px;
  6682. }
  6683. #u87914_div {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:140px;
  6689. height:28px;
  6690. background:inherit;
  6691. background-color:rgba(255, 255, 255, 1);
  6692. box-sizing:border-box;
  6693. border-width:1px;
  6694. border-style:solid;
  6695. border-color:rgba(201, 201, 201, 1);
  6696. border-radius:4px;
  6697. -moz-box-shadow:none;
  6698. -webkit-box-shadow:none;
  6699. box-shadow:none;
  6700. font-family:'Microsoft YaHei', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. font-size:14px;
  6704. color:#CCCCCC;
  6705. text-align:left;
  6706. }
  6707. #u87914 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:651px;
  6711. top:101px;
  6712. width:140px;
  6713. height:28px;
  6714. display:flex;
  6715. font-family:'Microsoft YaHei', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:14px;
  6719. color:#CCCCCC;
  6720. text-align:left;
  6721. }
  6722. #u87914 .text {
  6723. position:absolute;
  6724. align-self:center;
  6725. padding:2px 8px 2px 8px;
  6726. box-sizing:border-box;
  6727. width:100%;
  6728. }
  6729. #u87914_text {
  6730. border-width:0px;
  6731. word-wrap:break-word;
  6732. text-transform:none;
  6733. visibility:hidden;
  6734. }
  6735. #u87915_input {
  6736. position:absolute;
  6737. left:0px;
  6738. top:0px;
  6739. width:114px;
  6740. height:26px;
  6741. padding:2px 2px 2px 2px;
  6742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:14px;
  6746. letter-spacing:normal;
  6747. color:#000000;
  6748. vertical-align:none;
  6749. text-align:left;
  6750. text-transform:none;
  6751. background-color:transparent;
  6752. border-color:transparent;
  6753. }
  6754. #u87915_input.disabled {
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:114px;
  6759. height:26px;
  6760. padding:2px 2px 2px 2px;
  6761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6762. font-weight:400;
  6763. font-style:normal;
  6764. font-size:14px;
  6765. letter-spacing:normal;
  6766. color:#000000;
  6767. vertical-align:none;
  6768. text-align:left;
  6769. text-transform:none;
  6770. background-color:transparent;
  6771. border-color:transparent;
  6772. }
  6773. #u87915_div {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:114px;
  6779. height:26px;
  6780. background:inherit;
  6781. background-color:rgba(255, 255, 255, 1);
  6782. border:none;
  6783. border-radius:0px;
  6784. -moz-box-shadow:none;
  6785. -webkit-box-shadow:none;
  6786. box-shadow:none;
  6787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:14px;
  6791. }
  6792. #u87915 {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:657px;
  6796. top:102px;
  6797. width:114px;
  6798. height:26px;
  6799. display:flex;
  6800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6801. font-weight:400;
  6802. font-style:normal;
  6803. font-size:14px;
  6804. }
  6805. #u87915 .text {
  6806. position:absolute;
  6807. align-self:center;
  6808. padding:2px 2px 2px 2px;
  6809. box-sizing:border-box;
  6810. width:100%;
  6811. }
  6812. #u87915_div.disabled {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:114px;
  6818. height:26px;
  6819. background:inherit;
  6820. background-color:rgba(240, 240, 240, 1);
  6821. border:none;
  6822. border-radius:0px;
  6823. -moz-box-shadow:none;
  6824. -webkit-box-shadow:none;
  6825. box-shadow:none;
  6826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6827. font-weight:400;
  6828. font-style:normal;
  6829. font-size:14px;
  6830. }
  6831. #u87915.disabled {
  6832. }
  6833. #u87916_img {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:13px;
  6839. height:15px;
  6840. }
  6841. #u87916 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:771px;
  6845. top:108px;
  6846. width:13px;
  6847. height:15px;
  6848. display:flex;
  6849. }
  6850. #u87916 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 2px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u87916_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. visibility:hidden;
  6862. }
  6863. #u87917 {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:0px;
  6869. height:0px;
  6870. }
  6871. #u87918_div {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:140px;
  6877. height:30px;
  6878. background:inherit;
  6879. background-color:rgba(255, 255, 255, 1);
  6880. box-sizing:border-box;
  6881. border-width:1px;
  6882. border-style:solid;
  6883. border-color:rgba(201, 201, 201, 1);
  6884. border-radius:4px;
  6885. -moz-box-shadow:none;
  6886. -webkit-box-shadow:none;
  6887. box-shadow:none;
  6888. font-family:'Microsoft YaHei', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:14px;
  6892. color:#CCCCCC;
  6893. text-align:left;
  6894. }
  6895. #u87918 {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:501px;
  6899. top:100px;
  6900. width:140px;
  6901. height:30px;
  6902. display:flex;
  6903. font-family:'Microsoft YaHei', sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:14px;
  6907. color:#CCCCCC;
  6908. text-align:left;
  6909. }
  6910. #u87918 .text {
  6911. position:absolute;
  6912. align-self:center;
  6913. padding:2px 8px 2px 8px;
  6914. box-sizing:border-box;
  6915. width:100%;
  6916. }
  6917. #u87918_text {
  6918. border-width:0px;
  6919. word-wrap:break-word;
  6920. text-transform:none;
  6921. visibility:hidden;
  6922. }
  6923. #u87919_input {
  6924. position:absolute;
  6925. left:0px;
  6926. top:0px;
  6927. width:127px;
  6928. height:25px;
  6929. padding:2px 2px 2px 2px;
  6930. font-family:'Microsoft YaHei', sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:10px;
  6934. letter-spacing:normal;
  6935. color:#000000;
  6936. vertical-align:none;
  6937. text-align:left;
  6938. text-transform:none;
  6939. background-color:transparent;
  6940. border-color:transparent;
  6941. }
  6942. #u87919_input.disabled {
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:127px;
  6947. height:25px;
  6948. padding:2px 2px 2px 2px;
  6949. font-family:'Microsoft YaHei', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:10px;
  6953. letter-spacing:normal;
  6954. color:#000000;
  6955. vertical-align:none;
  6956. text-align:left;
  6957. text-transform:none;
  6958. background-color:transparent;
  6959. border-color:transparent;
  6960. }
  6961. #u87919_div {
  6962. border-width:0px;
  6963. position:absolute;
  6964. left:0px;
  6965. top:0px;
  6966. width:127px;
  6967. height:25px;
  6968. background:inherit;
  6969. background-color:rgba(255, 255, 255, 1);
  6970. border:none;
  6971. border-radius:0px;
  6972. -moz-box-shadow:none;
  6973. -webkit-box-shadow:none;
  6974. box-shadow:none;
  6975. font-family:'Microsoft YaHei', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. font-size:10px;
  6979. }
  6980. #u87919 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:509px;
  6984. top:101px;
  6985. width:127px;
  6986. height:25px;
  6987. display:flex;
  6988. font-family:'Microsoft YaHei', sans-serif;
  6989. font-weight:400;
  6990. font-style:normal;
  6991. font-size:10px;
  6992. }
  6993. #u87919 .text {
  6994. position:absolute;
  6995. align-self:center;
  6996. padding:2px 2px 2px 2px;
  6997. box-sizing:border-box;
  6998. width:100%;
  6999. }
  7000. #u87919_div.disabled {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:127px;
  7006. height:25px;
  7007. background:inherit;
  7008. background-color:rgba(240, 240, 240, 1);
  7009. border:none;
  7010. border-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'Microsoft YaHei', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:10px;
  7018. }
  7019. #u87919.disabled {
  7020. }
  7021. #u87920 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:0px;
  7025. top:0px;
  7026. width:0px;
  7027. height:0px;
  7028. }
  7029. #u87921_div {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:0px;
  7033. top:0px;
  7034. width:140px;
  7035. height:30px;
  7036. background:inherit;
  7037. background-color:rgba(255, 255, 255, 1);
  7038. box-sizing:border-box;
  7039. border-width:1px;
  7040. border-style:solid;
  7041. border-color:rgba(215, 215, 215, 1);
  7042. border-radius:4px;
  7043. -moz-box-shadow:none;
  7044. -webkit-box-shadow:none;
  7045. box-shadow:none;
  7046. font-size:11px;
  7047. }
  7048. #u87921 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:351px;
  7052. top:101px;
  7053. width:140px;
  7054. height:30px;
  7055. display:flex;
  7056. font-size:11px;
  7057. }
  7058. #u87921 .text {
  7059. position:absolute;
  7060. align-self:center;
  7061. padding:2px 2px 2px 2px;
  7062. box-sizing:border-box;
  7063. width:100%;
  7064. }
  7065. #u87921_text {
  7066. border-width:0px;
  7067. word-wrap:break-word;
  7068. text-transform:none;
  7069. visibility:hidden;
  7070. }
  7071. #u87922_input {
  7072. position:absolute;
  7073. left:0px;
  7074. top:0px;
  7075. width:126px;
  7076. height:23px;
  7077. padding:2px 2px 2px 2px;
  7078. font-family:'ArialMT', 'Arial', sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. font-size:11px;
  7082. letter-spacing:normal;
  7083. color:#AAAAAA;
  7084. vertical-align:none;
  7085. text-align:left;
  7086. text-transform:none;
  7087. background-color:transparent;
  7088. border-color:transparent;
  7089. }
  7090. #u87922_input.disabled {
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:126px;
  7095. height:23px;
  7096. padding:2px 2px 2px 2px;
  7097. font-family:'ArialMT', 'Arial', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:11px;
  7101. letter-spacing:normal;
  7102. color:#AAAAAA;
  7103. vertical-align:none;
  7104. text-align:left;
  7105. text-transform:none;
  7106. background-color:transparent;
  7107. border-color:transparent;
  7108. }
  7109. #u87922_div {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:0px;
  7113. top:0px;
  7114. width:126px;
  7115. height:23px;
  7116. background:inherit;
  7117. background-color:rgba(255, 255, 255, 1);
  7118. border:none;
  7119. border-radius:0px;
  7120. -moz-box-shadow:none;
  7121. -webkit-box-shadow:none;
  7122. box-shadow:none;
  7123. font-size:11px;
  7124. color:#AAAAAA;
  7125. }
  7126. #u87922 {
  7127. border-width:0px;
  7128. position:absolute;
  7129. left:358px;
  7130. top:103px;
  7131. width:126px;
  7132. height:23px;
  7133. display:flex;
  7134. font-size:11px;
  7135. color:#AAAAAA;
  7136. }
  7137. #u87922 .text {
  7138. position:absolute;
  7139. align-self:flex-start;
  7140. padding:2px 2px 2px 2px;
  7141. box-sizing:border-box;
  7142. width:100%;
  7143. }
  7144. #u87922_div.disabled {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:0px;
  7148. top:0px;
  7149. width:126px;
  7150. height:23px;
  7151. background:inherit;
  7152. background-color:rgba(240, 240, 240, 1);
  7153. border:none;
  7154. border-radius:0px;
  7155. -moz-box-shadow:none;
  7156. -webkit-box-shadow:none;
  7157. box-shadow:none;
  7158. font-size:11px;
  7159. color:#AAAAAA;
  7160. }
  7161. #u87922.disabled {
  7162. }
  7163. .u87922_input_option {
  7164. font-size:11px;
  7165. }
  7166. #u87923 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:0px;
  7172. height:0px;
  7173. }
  7174. #u87924_div {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:140px;
  7180. height:30px;
  7181. background:inherit;
  7182. background-color:rgba(255, 255, 255, 1);
  7183. box-sizing:border-box;
  7184. border-width:1px;
  7185. border-style:solid;
  7186. border-color:rgba(201, 201, 201, 1);
  7187. border-radius:4px;
  7188. -moz-box-shadow:none;
  7189. -webkit-box-shadow:none;
  7190. box-shadow:none;
  7191. font-family:'Microsoft YaHei', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:14px;
  7195. color:#CCCCCC;
  7196. text-align:left;
  7197. }
  7198. #u87924 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:801px;
  7202. top:100px;
  7203. width:140px;
  7204. height:30px;
  7205. display:flex;
  7206. font-family:'Microsoft YaHei', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:14px;
  7210. color:#CCCCCC;
  7211. text-align:left;
  7212. }
  7213. #u87924 .text {
  7214. position:absolute;
  7215. align-self:center;
  7216. padding:2px 8px 2px 8px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u87924_text {
  7221. border-width:0px;
  7222. word-wrap:break-word;
  7223. text-transform:none;
  7224. visibility:hidden;
  7225. }
  7226. #u87925_input {
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:127px;
  7231. height:25px;
  7232. padding:2px 2px 2px 2px;
  7233. font-family:'Microsoft YaHei', sans-serif;
  7234. font-weight:400;
  7235. font-style:normal;
  7236. font-size:10px;
  7237. letter-spacing:normal;
  7238. color:#000000;
  7239. vertical-align:none;
  7240. text-align:left;
  7241. text-transform:none;
  7242. background-color:transparent;
  7243. border-color:transparent;
  7244. }
  7245. #u87925_input.disabled {
  7246. position:absolute;
  7247. left:0px;
  7248. top:0px;
  7249. width:127px;
  7250. height:25px;
  7251. padding:2px 2px 2px 2px;
  7252. font-family:'Microsoft YaHei', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:10px;
  7256. letter-spacing:normal;
  7257. color:#000000;
  7258. vertical-align:none;
  7259. text-align:left;
  7260. text-transform:none;
  7261. background-color:transparent;
  7262. border-color:transparent;
  7263. }
  7264. #u87925_div {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:0px;
  7268. top:0px;
  7269. width:127px;
  7270. height:25px;
  7271. background:inherit;
  7272. background-color:rgba(255, 255, 255, 1);
  7273. border:none;
  7274. border-radius:0px;
  7275. -moz-box-shadow:none;
  7276. -webkit-box-shadow:none;
  7277. box-shadow:none;
  7278. font-family:'Microsoft YaHei', sans-serif;
  7279. font-weight:400;
  7280. font-style:normal;
  7281. font-size:10px;
  7282. }
  7283. #u87925 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:809px;
  7287. top:101px;
  7288. width:127px;
  7289. height:25px;
  7290. display:flex;
  7291. font-family:'Microsoft YaHei', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:10px;
  7295. }
  7296. #u87925 .text {
  7297. position:absolute;
  7298. align-self:center;
  7299. padding:2px 2px 2px 2px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u87925_div.disabled {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:127px;
  7309. height:25px;
  7310. background:inherit;
  7311. background-color:rgba(240, 240, 240, 1);
  7312. border:none;
  7313. border-radius:0px;
  7314. -moz-box-shadow:none;
  7315. -webkit-box-shadow:none;
  7316. box-shadow:none;
  7317. font-family:'Microsoft YaHei', sans-serif;
  7318. font-weight:400;
  7319. font-style:normal;
  7320. font-size:10px;
  7321. }
  7322. #u87925.disabled {
  7323. }
  7324. #u87926 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:0px;
  7330. height:0px;
  7331. }
  7332. #u87927_div {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:0px;
  7336. top:0px;
  7337. width:140px;
  7338. height:30px;
  7339. background:inherit;
  7340. background-color:rgba(255, 255, 255, 1);
  7341. box-sizing:border-box;
  7342. border-width:1px;
  7343. border-style:solid;
  7344. border-color:rgba(201, 201, 201, 1);
  7345. border-radius:4px;
  7346. -moz-box-shadow:none;
  7347. -webkit-box-shadow:none;
  7348. box-shadow:none;
  7349. font-family:'Microsoft YaHei', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. font-size:14px;
  7353. color:#CCCCCC;
  7354. text-align:left;
  7355. }
  7356. #u87927 {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:501px;
  7360. top:140px;
  7361. width:140px;
  7362. height:30px;
  7363. display:flex;
  7364. font-family:'Microsoft YaHei', sans-serif;
  7365. font-weight:400;
  7366. font-style:normal;
  7367. font-size:14px;
  7368. color:#CCCCCC;
  7369. text-align:left;
  7370. }
  7371. #u87927 .text {
  7372. position:absolute;
  7373. align-self:center;
  7374. padding:2px 8px 2px 8px;
  7375. box-sizing:border-box;
  7376. width:100%;
  7377. }
  7378. #u87927_text {
  7379. border-width:0px;
  7380. word-wrap:break-word;
  7381. text-transform:none;
  7382. visibility:hidden;
  7383. }
  7384. #u87928_input {
  7385. position:absolute;
  7386. left:0px;
  7387. top:0px;
  7388. width:127px;
  7389. height:25px;
  7390. padding:2px 2px 2px 2px;
  7391. font-family:'Microsoft YaHei', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:10px;
  7395. letter-spacing:normal;
  7396. color:#000000;
  7397. vertical-align:none;
  7398. text-align:left;
  7399. text-transform:none;
  7400. background-color:transparent;
  7401. border-color:transparent;
  7402. }
  7403. #u87928_input.disabled {
  7404. position:absolute;
  7405. left:0px;
  7406. top:0px;
  7407. width:127px;
  7408. height:25px;
  7409. padding:2px 2px 2px 2px;
  7410. font-family:'Microsoft YaHei', sans-serif;
  7411. font-weight:400;
  7412. font-style:normal;
  7413. font-size:10px;
  7414. letter-spacing:normal;
  7415. color:#000000;
  7416. vertical-align:none;
  7417. text-align:left;
  7418. text-transform:none;
  7419. background-color:transparent;
  7420. border-color:transparent;
  7421. }
  7422. #u87928_div {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:127px;
  7428. height:25px;
  7429. background:inherit;
  7430. background-color:rgba(255, 255, 255, 1);
  7431. border:none;
  7432. border-radius:0px;
  7433. -moz-box-shadow:none;
  7434. -webkit-box-shadow:none;
  7435. box-shadow:none;
  7436. font-family:'Microsoft YaHei', sans-serif;
  7437. font-weight:400;
  7438. font-style:normal;
  7439. font-size:10px;
  7440. }
  7441. #u87928 {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:509px;
  7445. top:141px;
  7446. width:127px;
  7447. height:25px;
  7448. display:flex;
  7449. font-family:'Microsoft YaHei', sans-serif;
  7450. font-weight:400;
  7451. font-style:normal;
  7452. font-size:10px;
  7453. }
  7454. #u87928 .text {
  7455. position:absolute;
  7456. align-self:center;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u87928_div.disabled {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:127px;
  7467. height:25px;
  7468. background:inherit;
  7469. background-color:rgba(240, 240, 240, 1);
  7470. border:none;
  7471. border-radius:0px;
  7472. -moz-box-shadow:none;
  7473. -webkit-box-shadow:none;
  7474. box-shadow:none;
  7475. font-family:'Microsoft YaHei', sans-serif;
  7476. font-weight:400;
  7477. font-style:normal;
  7478. font-size:10px;
  7479. }
  7480. #u87928.disabled {
  7481. }
  7482. #u87929 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:0px;
  7488. height:0px;
  7489. }
  7490. #u87930_div {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:0px;
  7494. top:0px;
  7495. width:140px;
  7496. height:30px;
  7497. background:inherit;
  7498. background-color:rgba(255, 255, 255, 1);
  7499. box-sizing:border-box;
  7500. border-width:1px;
  7501. border-style:solid;
  7502. border-color:rgba(201, 201, 201, 1);
  7503. border-radius:4px;
  7504. -moz-box-shadow:none;
  7505. -webkit-box-shadow:none;
  7506. box-shadow:none;
  7507. font-family:'Microsoft YaHei', sans-serif;
  7508. font-weight:400;
  7509. font-style:normal;
  7510. font-size:14px;
  7511. color:#CCCCCC;
  7512. text-align:left;
  7513. }
  7514. #u87930 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:651px;
  7518. top:139px;
  7519. width:140px;
  7520. height:30px;
  7521. display:flex;
  7522. font-family:'Microsoft YaHei', sans-serif;
  7523. font-weight:400;
  7524. font-style:normal;
  7525. font-size:14px;
  7526. color:#CCCCCC;
  7527. text-align:left;
  7528. }
  7529. #u87930 .text {
  7530. position:absolute;
  7531. align-self:center;
  7532. padding:2px 8px 2px 8px;
  7533. box-sizing:border-box;
  7534. width:100%;
  7535. }
  7536. #u87930_text {
  7537. border-width:0px;
  7538. word-wrap:break-word;
  7539. text-transform:none;
  7540. visibility:hidden;
  7541. }
  7542. #u87931_input {
  7543. position:absolute;
  7544. left:0px;
  7545. top:0px;
  7546. width:127px;
  7547. height:25px;
  7548. padding:2px 2px 2px 2px;
  7549. font-family:'Microsoft YaHei', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:10px;
  7553. letter-spacing:normal;
  7554. color:#000000;
  7555. vertical-align:none;
  7556. text-align:left;
  7557. text-transform:none;
  7558. background-color:transparent;
  7559. border-color:transparent;
  7560. }
  7561. #u87931_input.disabled {
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:127px;
  7566. height:25px;
  7567. padding:2px 2px 2px 2px;
  7568. font-family:'Microsoft YaHei', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:10px;
  7572. letter-spacing:normal;
  7573. color:#000000;
  7574. vertical-align:none;
  7575. text-align:left;
  7576. text-transform:none;
  7577. background-color:transparent;
  7578. border-color:transparent;
  7579. }
  7580. #u87931_div {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:0px;
  7584. top:0px;
  7585. width:127px;
  7586. height:25px;
  7587. background:inherit;
  7588. background-color:rgba(255, 255, 255, 1);
  7589. border:none;
  7590. border-radius:0px;
  7591. -moz-box-shadow:none;
  7592. -webkit-box-shadow:none;
  7593. box-shadow:none;
  7594. font-family:'Microsoft YaHei', sans-serif;
  7595. font-weight:400;
  7596. font-style:normal;
  7597. font-size:10px;
  7598. }
  7599. #u87931 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:659px;
  7603. top:140px;
  7604. width:127px;
  7605. height:25px;
  7606. display:flex;
  7607. font-family:'Microsoft YaHei', sans-serif;
  7608. font-weight:400;
  7609. font-style:normal;
  7610. font-size:10px;
  7611. }
  7612. #u87931 .text {
  7613. position:absolute;
  7614. align-self:center;
  7615. padding:2px 2px 2px 2px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u87931_div.disabled {
  7620. border-width:0px;
  7621. position:absolute;
  7622. left:0px;
  7623. top:0px;
  7624. width:127px;
  7625. height:25px;
  7626. background:inherit;
  7627. background-color:rgba(240, 240, 240, 1);
  7628. border:none;
  7629. border-radius:0px;
  7630. -moz-box-shadow:none;
  7631. -webkit-box-shadow:none;
  7632. box-shadow:none;
  7633. font-family:'Microsoft YaHei', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:10px;
  7637. }
  7638. #u87931.disabled {
  7639. }
  7640. #u87932 {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:0px;
  7644. top:0px;
  7645. width:0px;
  7646. height:0px;
  7647. }
  7648. #u87933_div {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:140px;
  7654. height:30px;
  7655. background:inherit;
  7656. background-color:rgba(255, 255, 255, 1);
  7657. box-sizing:border-box;
  7658. border-width:1px;
  7659. border-style:solid;
  7660. border-color:rgba(215, 215, 215, 1);
  7661. border-radius:4px;
  7662. -moz-box-shadow:none;
  7663. -webkit-box-shadow:none;
  7664. box-shadow:none;
  7665. font-size:11px;
  7666. }
  7667. #u87933 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:951px;
  7671. top:101px;
  7672. width:140px;
  7673. height:30px;
  7674. display:flex;
  7675. font-size:11px;
  7676. }
  7677. #u87933 .text {
  7678. position:absolute;
  7679. align-self:center;
  7680. padding:2px 2px 2px 2px;
  7681. box-sizing:border-box;
  7682. width:100%;
  7683. }
  7684. #u87933_text {
  7685. border-width:0px;
  7686. word-wrap:break-word;
  7687. text-transform:none;
  7688. visibility:hidden;
  7689. }
  7690. #u87934_input {
  7691. position:absolute;
  7692. left:0px;
  7693. top:0px;
  7694. width:126px;
  7695. height:23px;
  7696. padding:2px 2px 2px 2px;
  7697. font-family:'ArialMT', 'Arial', sans-serif;
  7698. font-weight:400;
  7699. font-style:normal;
  7700. font-size:11px;
  7701. letter-spacing:normal;
  7702. color:#AAAAAA;
  7703. vertical-align:none;
  7704. text-align:left;
  7705. text-transform:none;
  7706. background-color:transparent;
  7707. border-color:transparent;
  7708. }
  7709. #u87934_input.disabled {
  7710. position:absolute;
  7711. left:0px;
  7712. top:0px;
  7713. width:126px;
  7714. height:23px;
  7715. padding:2px 2px 2px 2px;
  7716. font-family:'ArialMT', 'Arial', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:11px;
  7720. letter-spacing:normal;
  7721. color:#AAAAAA;
  7722. vertical-align:none;
  7723. text-align:left;
  7724. text-transform:none;
  7725. background-color:transparent;
  7726. border-color:transparent;
  7727. }
  7728. #u87934_div {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:126px;
  7734. height:23px;
  7735. background:inherit;
  7736. background-color:rgba(255, 255, 255, 1);
  7737. border:none;
  7738. border-radius:0px;
  7739. -moz-box-shadow:none;
  7740. -webkit-box-shadow:none;
  7741. box-shadow:none;
  7742. font-size:11px;
  7743. color:#AAAAAA;
  7744. }
  7745. #u87934 {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:958px;
  7749. top:103px;
  7750. width:126px;
  7751. height:23px;
  7752. display:flex;
  7753. font-size:11px;
  7754. color:#AAAAAA;
  7755. }
  7756. #u87934 .text {
  7757. position:absolute;
  7758. align-self:flex-start;
  7759. padding:2px 2px 2px 2px;
  7760. box-sizing:border-box;
  7761. width:100%;
  7762. }
  7763. #u87934_div.disabled {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:0px;
  7767. top:0px;
  7768. width:126px;
  7769. height:23px;
  7770. background:inherit;
  7771. background-color:rgba(240, 240, 240, 1);
  7772. border:none;
  7773. border-radius:0px;
  7774. -moz-box-shadow:none;
  7775. -webkit-box-shadow:none;
  7776. box-shadow:none;
  7777. font-size:11px;
  7778. color:#AAAAAA;
  7779. }
  7780. #u87934.disabled {
  7781. }
  7782. .u87934_input_option {
  7783. font-size:11px;
  7784. }
  7785. #u87935_div {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:0px;
  7789. top:0px;
  7790. width:55px;
  7791. height:30px;
  7792. background:inherit;
  7793. background-color:rgba(255, 255, 255, 1);
  7794. box-sizing:border-box;
  7795. border-width:1px;
  7796. border-style:solid;
  7797. border-color:rgba(170, 170, 170, 1);
  7798. border-radius:4px;
  7799. -moz-box-shadow:none;
  7800. -webkit-box-shadow:none;
  7801. box-shadow:none;
  7802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7803. font-weight:400;
  7804. font-style:normal;
  7805. font-size:12px;
  7806. color:#555555;
  7807. }
  7808. #u87935 {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:464px;
  7812. top:231px;
  7813. width:55px;
  7814. height:30px;
  7815. display:flex;
  7816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7817. font-weight:400;
  7818. font-style:normal;
  7819. font-size:12px;
  7820. color:#555555;
  7821. }
  7822. #u87935 .text {
  7823. position:absolute;
  7824. align-self:center;
  7825. padding:5px 15px 5px 15px;
  7826. box-sizing:border-box;
  7827. width:100%;
  7828. }
  7829. #u87935_text {
  7830. border-width:0px;
  7831. white-space:nowrap;
  7832. text-transform:none;
  7833. }
  7834. #u87936 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:0px;
  7840. height:0px;
  7841. }
  7842. #u87937_div {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:140px;
  7848. height:30px;
  7849. background:inherit;
  7850. background-color:rgba(255, 255, 255, 1);
  7851. box-sizing:border-box;
  7852. border-width:1px;
  7853. border-style:solid;
  7854. border-color:rgba(201, 201, 201, 1);
  7855. border-radius:4px;
  7856. -moz-box-shadow:none;
  7857. -webkit-box-shadow:none;
  7858. box-shadow:none;
  7859. font-family:'Microsoft YaHei', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:14px;
  7863. color:#CCCCCC;
  7864. text-align:left;
  7865. }
  7866. #u87937 {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:801px;
  7870. top:138px;
  7871. width:140px;
  7872. height:30px;
  7873. display:flex;
  7874. font-family:'Microsoft YaHei', sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:14px;
  7878. color:#CCCCCC;
  7879. text-align:left;
  7880. }
  7881. #u87937 .text {
  7882. position:absolute;
  7883. align-self:center;
  7884. padding:2px 8px 2px 8px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u87937_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. visibility:hidden;
  7893. }
  7894. #u87938_input {
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:127px;
  7899. height:25px;
  7900. padding:2px 2px 2px 2px;
  7901. font-family:'Microsoft YaHei', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:10px;
  7905. letter-spacing:normal;
  7906. color:#000000;
  7907. vertical-align:none;
  7908. text-align:left;
  7909. text-transform:none;
  7910. background-color:transparent;
  7911. border-color:transparent;
  7912. }
  7913. #u87938_input.disabled {
  7914. position:absolute;
  7915. left:0px;
  7916. top:0px;
  7917. width:127px;
  7918. height:25px;
  7919. padding:2px 2px 2px 2px;
  7920. font-family:'Microsoft YaHei', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:10px;
  7924. letter-spacing:normal;
  7925. color:#000000;
  7926. vertical-align:none;
  7927. text-align:left;
  7928. text-transform:none;
  7929. background-color:transparent;
  7930. border-color:transparent;
  7931. }
  7932. #u87938_div {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:127px;
  7938. height:25px;
  7939. background:inherit;
  7940. background-color:rgba(255, 255, 255, 1);
  7941. border:none;
  7942. border-radius:0px;
  7943. -moz-box-shadow:none;
  7944. -webkit-box-shadow:none;
  7945. box-shadow:none;
  7946. font-family:'Microsoft YaHei', sans-serif;
  7947. font-weight:400;
  7948. font-style:normal;
  7949. font-size:10px;
  7950. }
  7951. #u87938 {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:809px;
  7955. top:139px;
  7956. width:127px;
  7957. height:25px;
  7958. display:flex;
  7959. font-family:'Microsoft YaHei', sans-serif;
  7960. font-weight:400;
  7961. font-style:normal;
  7962. font-size:10px;
  7963. }
  7964. #u87938 .text {
  7965. position:absolute;
  7966. align-self:center;
  7967. padding:2px 2px 2px 2px;
  7968. box-sizing:border-box;
  7969. width:100%;
  7970. }
  7971. #u87938_div.disabled {
  7972. border-width:0px;
  7973. position:absolute;
  7974. left:0px;
  7975. top:0px;
  7976. width:127px;
  7977. height:25px;
  7978. background:inherit;
  7979. background-color:rgba(240, 240, 240, 1);
  7980. border:none;
  7981. border-radius:0px;
  7982. -moz-box-shadow:none;
  7983. -webkit-box-shadow:none;
  7984. box-shadow:none;
  7985. font-family:'Microsoft YaHei', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:10px;
  7989. }
  7990. #u87938.disabled {
  7991. }
  7992. #u87939 {
  7993. border-width:0px;
  7994. position:absolute;
  7995. left:0px;
  7996. top:0px;
  7997. width:0px;
  7998. height:0px;
  7999. }
  8000. #u87940_div {
  8001. border-width:0px;
  8002. position:absolute;
  8003. left:0px;
  8004. top:0px;
  8005. width:140px;
  8006. height:30px;
  8007. background:inherit;
  8008. background-color:rgba(255, 255, 255, 1);
  8009. box-sizing:border-box;
  8010. border-width:1px;
  8011. border-style:solid;
  8012. border-color:rgba(201, 201, 201, 1);
  8013. border-radius:4px;
  8014. -moz-box-shadow:none;
  8015. -webkit-box-shadow:none;
  8016. box-shadow:none;
  8017. font-family:'Microsoft YaHei', sans-serif;
  8018. font-weight:400;
  8019. font-style:normal;
  8020. font-size:14px;
  8021. color:#CCCCCC;
  8022. text-align:left;
  8023. }
  8024. #u87940 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:351px;
  8028. top:178px;
  8029. width:140px;
  8030. height:30px;
  8031. display:flex;
  8032. font-family:'Microsoft YaHei', sans-serif;
  8033. font-weight:400;
  8034. font-style:normal;
  8035. font-size:14px;
  8036. color:#CCCCCC;
  8037. text-align:left;
  8038. }
  8039. #u87940 .text {
  8040. position:absolute;
  8041. align-self:center;
  8042. padding:2px 8px 2px 8px;
  8043. box-sizing:border-box;
  8044. width:100%;
  8045. }
  8046. #u87940_text {
  8047. border-width:0px;
  8048. word-wrap:break-word;
  8049. text-transform:none;
  8050. visibility:hidden;
  8051. }
  8052. #u87941_input {
  8053. position:absolute;
  8054. left:0px;
  8055. top:0px;
  8056. width:127px;
  8057. height:25px;
  8058. padding:2px 2px 2px 2px;
  8059. font-family:'Microsoft YaHei', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. font-size:10px;
  8063. letter-spacing:normal;
  8064. color:#000000;
  8065. vertical-align:none;
  8066. text-align:left;
  8067. text-transform:none;
  8068. background-color:transparent;
  8069. border-color:transparent;
  8070. }
  8071. #u87941_input.disabled {
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:127px;
  8076. height:25px;
  8077. padding:2px 2px 2px 2px;
  8078. font-family:'Microsoft YaHei', sans-serif;
  8079. font-weight:400;
  8080. font-style:normal;
  8081. font-size:10px;
  8082. letter-spacing:normal;
  8083. color:#000000;
  8084. vertical-align:none;
  8085. text-align:left;
  8086. text-transform:none;
  8087. background-color:transparent;
  8088. border-color:transparent;
  8089. }
  8090. #u87941_div {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:0px;
  8094. top:0px;
  8095. width:127px;
  8096. height:25px;
  8097. background:inherit;
  8098. background-color:rgba(255, 255, 255, 1);
  8099. border:none;
  8100. border-radius:0px;
  8101. -moz-box-shadow:none;
  8102. -webkit-box-shadow:none;
  8103. box-shadow:none;
  8104. font-family:'Microsoft YaHei', sans-serif;
  8105. font-weight:400;
  8106. font-style:normal;
  8107. font-size:10px;
  8108. }
  8109. #u87941 {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:359px;
  8113. top:179px;
  8114. width:127px;
  8115. height:25px;
  8116. display:flex;
  8117. font-family:'Microsoft YaHei', sans-serif;
  8118. font-weight:400;
  8119. font-style:normal;
  8120. font-size:10px;
  8121. }
  8122. #u87941 .text {
  8123. position:absolute;
  8124. align-self:center;
  8125. padding:2px 2px 2px 2px;
  8126. box-sizing:border-box;
  8127. width:100%;
  8128. }
  8129. #u87941_div.disabled {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:0px;
  8133. top:0px;
  8134. width:127px;
  8135. height:25px;
  8136. background:inherit;
  8137. background-color:rgba(240, 240, 240, 1);
  8138. border:none;
  8139. border-radius:0px;
  8140. -moz-box-shadow:none;
  8141. -webkit-box-shadow:none;
  8142. box-shadow:none;
  8143. font-family:'Microsoft YaHei', sans-serif;
  8144. font-weight:400;
  8145. font-style:normal;
  8146. font-size:10px;
  8147. }
  8148. #u87941.disabled {
  8149. }
  8150. #u87942 {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:0px;
  8156. height:0px;
  8157. }
  8158. #u87943_div {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:140px;
  8164. height:30px;
  8165. background:inherit;
  8166. background-color:rgba(255, 255, 255, 1);
  8167. box-sizing:border-box;
  8168. border-width:1px;
  8169. border-style:solid;
  8170. border-color:rgba(201, 201, 201, 1);
  8171. border-radius:4px;
  8172. -moz-box-shadow:none;
  8173. -webkit-box-shadow:none;
  8174. box-shadow:none;
  8175. font-family:'Microsoft YaHei', sans-serif;
  8176. font-weight:400;
  8177. font-style:normal;
  8178. font-size:14px;
  8179. color:#CCCCCC;
  8180. text-align:left;
  8181. }
  8182. #u87943 {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:501px;
  8186. top:178px;
  8187. width:140px;
  8188. height:30px;
  8189. display:flex;
  8190. font-family:'Microsoft YaHei', sans-serif;
  8191. font-weight:400;
  8192. font-style:normal;
  8193. font-size:14px;
  8194. color:#CCCCCC;
  8195. text-align:left;
  8196. }
  8197. #u87943 .text {
  8198. position:absolute;
  8199. align-self:center;
  8200. padding:2px 8px 2px 8px;
  8201. box-sizing:border-box;
  8202. width:100%;
  8203. }
  8204. #u87943_text {
  8205. border-width:0px;
  8206. word-wrap:break-word;
  8207. text-transform:none;
  8208. visibility:hidden;
  8209. }
  8210. #u87944_input {
  8211. position:absolute;
  8212. left:0px;
  8213. top:0px;
  8214. width:127px;
  8215. height:25px;
  8216. padding:2px 2px 2px 2px;
  8217. font-family:'Microsoft YaHei', sans-serif;
  8218. font-weight:400;
  8219. font-style:normal;
  8220. font-size:10px;
  8221. letter-spacing:normal;
  8222. color:#000000;
  8223. vertical-align:none;
  8224. text-align:left;
  8225. text-transform:none;
  8226. background-color:transparent;
  8227. border-color:transparent;
  8228. }
  8229. #u87944_input.disabled {
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:127px;
  8234. height:25px;
  8235. padding:2px 2px 2px 2px;
  8236. font-family:'Microsoft YaHei', sans-serif;
  8237. font-weight:400;
  8238. font-style:normal;
  8239. font-size:10px;
  8240. letter-spacing:normal;
  8241. color:#000000;
  8242. vertical-align:none;
  8243. text-align:left;
  8244. text-transform:none;
  8245. background-color:transparent;
  8246. border-color:transparent;
  8247. }
  8248. #u87944_div {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:127px;
  8254. height:25px;
  8255. background:inherit;
  8256. background-color:rgba(255, 255, 255, 1);
  8257. border:none;
  8258. border-radius:0px;
  8259. -moz-box-shadow:none;
  8260. -webkit-box-shadow:none;
  8261. box-shadow:none;
  8262. font-family:'Microsoft YaHei', sans-serif;
  8263. font-weight:400;
  8264. font-style:normal;
  8265. font-size:10px;
  8266. }
  8267. #u87944 {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:509px;
  8271. top:179px;
  8272. width:127px;
  8273. height:25px;
  8274. display:flex;
  8275. font-family:'Microsoft YaHei', sans-serif;
  8276. font-weight:400;
  8277. font-style:normal;
  8278. font-size:10px;
  8279. }
  8280. #u87944 .text {
  8281. position:absolute;
  8282. align-self:center;
  8283. padding:2px 2px 2px 2px;
  8284. box-sizing:border-box;
  8285. width:100%;
  8286. }
  8287. #u87944_div.disabled {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:0px;
  8292. width:127px;
  8293. height:25px;
  8294. background:inherit;
  8295. background-color:rgba(240, 240, 240, 1);
  8296. border:none;
  8297. border-radius:0px;
  8298. -moz-box-shadow:none;
  8299. -webkit-box-shadow:none;
  8300. box-shadow:none;
  8301. font-family:'Microsoft YaHei', sans-serif;
  8302. font-weight:400;
  8303. font-style:normal;
  8304. font-size:10px;
  8305. }
  8306. #u87944.disabled {
  8307. }
  8308. #u87945 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:0px;
  8312. top:0px;
  8313. width:0px;
  8314. height:0px;
  8315. }
  8316. #u87946_div {
  8317. border-width:0px;
  8318. position:absolute;
  8319. left:0px;
  8320. top:0px;
  8321. width:140px;
  8322. height:30px;
  8323. background:inherit;
  8324. background-color:rgba(255, 255, 255, 1);
  8325. box-sizing:border-box;
  8326. border-width:1px;
  8327. border-style:solid;
  8328. border-color:rgba(201, 201, 201, 1);
  8329. border-radius:4px;
  8330. -moz-box-shadow:none;
  8331. -webkit-box-shadow:none;
  8332. box-shadow:none;
  8333. font-family:'Microsoft YaHei', sans-serif;
  8334. font-weight:400;
  8335. font-style:normal;
  8336. font-size:14px;
  8337. color:#CCCCCC;
  8338. text-align:left;
  8339. }
  8340. #u87946 {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:1101px;
  8344. top:139px;
  8345. width:140px;
  8346. height:30px;
  8347. display:flex;
  8348. font-family:'Microsoft YaHei', sans-serif;
  8349. font-weight:400;
  8350. font-style:normal;
  8351. font-size:14px;
  8352. color:#CCCCCC;
  8353. text-align:left;
  8354. }
  8355. #u87946 .text {
  8356. position:absolute;
  8357. align-self:center;
  8358. padding:2px 8px 2px 8px;
  8359. box-sizing:border-box;
  8360. width:100%;
  8361. }
  8362. #u87946_text {
  8363. border-width:0px;
  8364. word-wrap:break-word;
  8365. text-transform:none;
  8366. visibility:hidden;
  8367. }
  8368. #u87947_input {
  8369. position:absolute;
  8370. left:0px;
  8371. top:0px;
  8372. width:127px;
  8373. height:25px;
  8374. padding:2px 2px 2px 2px;
  8375. font-family:'Microsoft YaHei', sans-serif;
  8376. font-weight:400;
  8377. font-style:normal;
  8378. font-size:10px;
  8379. letter-spacing:normal;
  8380. color:#000000;
  8381. vertical-align:none;
  8382. text-align:left;
  8383. text-transform:none;
  8384. background-color:transparent;
  8385. border-color:transparent;
  8386. }
  8387. #u87947_input.disabled {
  8388. position:absolute;
  8389. left:0px;
  8390. top:0px;
  8391. width:127px;
  8392. height:25px;
  8393. padding:2px 2px 2px 2px;
  8394. font-family:'Microsoft YaHei', sans-serif;
  8395. font-weight:400;
  8396. font-style:normal;
  8397. font-size:10px;
  8398. letter-spacing:normal;
  8399. color:#000000;
  8400. vertical-align:none;
  8401. text-align:left;
  8402. text-transform:none;
  8403. background-color:transparent;
  8404. border-color:transparent;
  8405. }
  8406. #u87947_div {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:0px;
  8410. top:0px;
  8411. width:127px;
  8412. height:25px;
  8413. background:inherit;
  8414. background-color:rgba(255, 255, 255, 1);
  8415. border:none;
  8416. border-radius:0px;
  8417. -moz-box-shadow:none;
  8418. -webkit-box-shadow:none;
  8419. box-shadow:none;
  8420. font-family:'Microsoft YaHei', sans-serif;
  8421. font-weight:400;
  8422. font-style:normal;
  8423. font-size:10px;
  8424. }
  8425. #u87947 {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:1109px;
  8429. top:140px;
  8430. width:127px;
  8431. height:25px;
  8432. display:flex;
  8433. font-family:'Microsoft YaHei', sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:10px;
  8437. }
  8438. #u87947 .text {
  8439. position:absolute;
  8440. align-self:center;
  8441. padding:2px 2px 2px 2px;
  8442. box-sizing:border-box;
  8443. width:100%;
  8444. }
  8445. #u87947_div.disabled {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:0px;
  8449. top:0px;
  8450. width:127px;
  8451. height:25px;
  8452. background:inherit;
  8453. background-color:rgba(240, 240, 240, 1);
  8454. border:none;
  8455. border-radius:0px;
  8456. -moz-box-shadow:none;
  8457. -webkit-box-shadow:none;
  8458. box-shadow:none;
  8459. font-family:'Microsoft YaHei', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:10px;
  8463. }
  8464. #u87947.disabled {
  8465. }
  8466. #u87948 {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:0px;
  8470. top:0px;
  8471. width:0px;
  8472. height:0px;
  8473. }
  8474. #u87949_div {
  8475. border-width:0px;
  8476. position:absolute;
  8477. left:0px;
  8478. top:0px;
  8479. width:140px;
  8480. height:28px;
  8481. background:inherit;
  8482. background-color:rgba(255, 255, 255, 1);
  8483. box-sizing:border-box;
  8484. border-width:1px;
  8485. border-style:solid;
  8486. border-color:rgba(201, 201, 201, 1);
  8487. border-radius:4px;
  8488. -moz-box-shadow:none;
  8489. -webkit-box-shadow:none;
  8490. box-shadow:none;
  8491. font-family:'Microsoft YaHei', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:14px;
  8495. color:#CCCCCC;
  8496. text-align:left;
  8497. }
  8498. #u87949 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:1251px;
  8502. top:102px;
  8503. width:140px;
  8504. height:28px;
  8505. display:flex;
  8506. font-family:'Microsoft YaHei', sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:14px;
  8510. color:#CCCCCC;
  8511. text-align:left;
  8512. }
  8513. #u87949 .text {
  8514. position:absolute;
  8515. align-self:center;
  8516. padding:2px 8px 2px 8px;
  8517. box-sizing:border-box;
  8518. width:100%;
  8519. }
  8520. #u87949_text {
  8521. border-width:0px;
  8522. word-wrap:break-word;
  8523. text-transform:none;
  8524. visibility:hidden;
  8525. }
  8526. #u87950_input {
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:114px;
  8531. height:26px;
  8532. padding:2px 2px 2px 2px;
  8533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8534. font-weight:400;
  8535. font-style:normal;
  8536. font-size:14px;
  8537. letter-spacing:normal;
  8538. color:#000000;
  8539. vertical-align:none;
  8540. text-align:left;
  8541. text-transform:none;
  8542. background-color:transparent;
  8543. border-color:transparent;
  8544. }
  8545. #u87950_input.disabled {
  8546. position:absolute;
  8547. left:0px;
  8548. top:0px;
  8549. width:114px;
  8550. height:26px;
  8551. padding:2px 2px 2px 2px;
  8552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8553. font-weight:400;
  8554. font-style:normal;
  8555. font-size:14px;
  8556. letter-spacing:normal;
  8557. color:#000000;
  8558. vertical-align:none;
  8559. text-align:left;
  8560. text-transform:none;
  8561. background-color:transparent;
  8562. border-color:transparent;
  8563. }
  8564. #u87950_div {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:0px;
  8568. top:0px;
  8569. width:114px;
  8570. height:26px;
  8571. background:inherit;
  8572. background-color:rgba(255, 255, 255, 1);
  8573. border:none;
  8574. border-radius:0px;
  8575. -moz-box-shadow:none;
  8576. -webkit-box-shadow:none;
  8577. box-shadow:none;
  8578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8579. font-weight:400;
  8580. font-style:normal;
  8581. font-size:14px;
  8582. }
  8583. #u87950 {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:1257px;
  8587. top:103px;
  8588. width:114px;
  8589. height:26px;
  8590. display:flex;
  8591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8592. font-weight:400;
  8593. font-style:normal;
  8594. font-size:14px;
  8595. }
  8596. #u87950 .text {
  8597. position:absolute;
  8598. align-self:center;
  8599. padding:2px 2px 2px 2px;
  8600. box-sizing:border-box;
  8601. width:100%;
  8602. }
  8603. #u87950_div.disabled {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:114px;
  8609. height:26px;
  8610. background:inherit;
  8611. background-color:rgba(240, 240, 240, 1);
  8612. border:none;
  8613. border-radius:0px;
  8614. -moz-box-shadow:none;
  8615. -webkit-box-shadow:none;
  8616. box-shadow:none;
  8617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8618. font-weight:400;
  8619. font-style:normal;
  8620. font-size:14px;
  8621. }
  8622. #u87950.disabled {
  8623. }
  8624. #u87951_img {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:0px;
  8628. top:0px;
  8629. width:13px;
  8630. height:15px;
  8631. }
  8632. #u87951 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:1371px;
  8636. top:109px;
  8637. width:13px;
  8638. height:15px;
  8639. display:flex;
  8640. }
  8641. #u87951 .text {
  8642. position:absolute;
  8643. align-self:center;
  8644. padding:2px 2px 2px 2px;
  8645. box-sizing:border-box;
  8646. width:100%;
  8647. }
  8648. #u87951_text {
  8649. border-width:0px;
  8650. word-wrap:break-word;
  8651. text-transform:none;
  8652. visibility:hidden;
  8653. }
  8654. #u87952 {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:0px;
  8660. height:0px;
  8661. }
  8662. #u87953_div {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:0px;
  8666. top:0px;
  8667. width:140px;
  8668. height:30px;
  8669. background:inherit;
  8670. background-color:rgba(255, 255, 255, 1);
  8671. box-sizing:border-box;
  8672. border-width:1px;
  8673. border-style:solid;
  8674. border-color:rgba(215, 215, 215, 1);
  8675. border-radius:4px;
  8676. -moz-box-shadow:none;
  8677. -webkit-box-shadow:none;
  8678. box-shadow:none;
  8679. font-size:11px;
  8680. }
  8681. #u87953 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:1551px;
  8685. top:139px;
  8686. width:140px;
  8687. height:30px;
  8688. display:flex;
  8689. font-size:11px;
  8690. }
  8691. #u87953 .text {
  8692. position:absolute;
  8693. align-self:center;
  8694. padding:2px 2px 2px 2px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u87953_text {
  8699. border-width:0px;
  8700. word-wrap:break-word;
  8701. text-transform:none;
  8702. visibility:hidden;
  8703. }
  8704. #u87954_input {
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:126px;
  8709. height:23px;
  8710. padding:2px 2px 2px 2px;
  8711. font-family:'ArialMT', 'Arial', sans-serif;
  8712. font-weight:400;
  8713. font-style:normal;
  8714. font-size:11px;
  8715. letter-spacing:normal;
  8716. color:#AAAAAA;
  8717. vertical-align:none;
  8718. text-align:left;
  8719. text-transform:none;
  8720. background-color:transparent;
  8721. border-color:transparent;
  8722. }
  8723. #u87954_input.disabled {
  8724. position:absolute;
  8725. left:0px;
  8726. top:0px;
  8727. width:126px;
  8728. height:23px;
  8729. padding:2px 2px 2px 2px;
  8730. font-family:'ArialMT', 'Arial', sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. font-size:11px;
  8734. letter-spacing:normal;
  8735. color:#AAAAAA;
  8736. vertical-align:none;
  8737. text-align:left;
  8738. text-transform:none;
  8739. background-color:transparent;
  8740. border-color:transparent;
  8741. }
  8742. #u87954_div {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:0px;
  8746. top:0px;
  8747. width:126px;
  8748. height:23px;
  8749. background:inherit;
  8750. background-color:rgba(255, 255, 255, 1);
  8751. border:none;
  8752. border-radius:0px;
  8753. -moz-box-shadow:none;
  8754. -webkit-box-shadow:none;
  8755. box-shadow:none;
  8756. font-size:11px;
  8757. color:#AAAAAA;
  8758. }
  8759. #u87954 {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:1558px;
  8763. top:141px;
  8764. width:126px;
  8765. height:23px;
  8766. display:flex;
  8767. font-size:11px;
  8768. color:#AAAAAA;
  8769. }
  8770. #u87954 .text {
  8771. position:absolute;
  8772. align-self:flex-start;
  8773. padding:2px 2px 2px 2px;
  8774. box-sizing:border-box;
  8775. width:100%;
  8776. }
  8777. #u87954_div.disabled {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:0px;
  8781. top:0px;
  8782. width:126px;
  8783. height:23px;
  8784. background:inherit;
  8785. background-color:rgba(240, 240, 240, 1);
  8786. border:none;
  8787. border-radius:0px;
  8788. -moz-box-shadow:none;
  8789. -webkit-box-shadow:none;
  8790. box-shadow:none;
  8791. font-size:11px;
  8792. color:#AAAAAA;
  8793. }
  8794. #u87954.disabled {
  8795. }
  8796. .u87954_input_option {
  8797. font-size:11px;
  8798. }
  8799. #u87955_div {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:100px;
  8805. height:30px;
  8806. background:inherit;
  8807. background-color:rgba(24, 144, 255, 1);
  8808. box-sizing:border-box;
  8809. border-width:1px;
  8810. border-style:solid;
  8811. border-color:rgba(0, 153, 255, 1);
  8812. border-radius:4px;
  8813. -moz-box-shadow:none;
  8814. -webkit-box-shadow:none;
  8815. box-shadow:none;
  8816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8817. font-weight:400;
  8818. font-style:normal;
  8819. font-size:14px;
  8820. color:#FFFFFF;
  8821. }
  8822. #u87955 {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:354px;
  8826. top:231px;
  8827. width:100px;
  8828. height:30px;
  8829. display:flex;
  8830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8831. font-weight:400;
  8832. font-style:normal;
  8833. font-size:14px;
  8834. color:#FFFFFF;
  8835. }
  8836. #u87955 .text {
  8837. position:absolute;
  8838. align-self:center;
  8839. padding:5px 0px 5px 0px;
  8840. box-sizing:border-box;
  8841. width:100%;
  8842. }
  8843. #u87955_text {
  8844. border-width:0px;
  8845. word-wrap:break-word;
  8846. text-transform:none;
  8847. }
  8848. #u87956 {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:0px;
  8854. height:0px;
  8855. }
  8856. #u87957_div {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:0px;
  8860. top:0px;
  8861. width:140px;
  8862. height:30px;
  8863. background:inherit;
  8864. background-color:rgba(255, 255, 255, 1);
  8865. box-sizing:border-box;
  8866. border-width:1px;
  8867. border-style:solid;
  8868. border-color:rgba(215, 215, 215, 1);
  8869. border-radius:4px;
  8870. -moz-box-shadow:none;
  8871. -webkit-box-shadow:none;
  8872. box-shadow:none;
  8873. font-size:11px;
  8874. }
  8875. #u87957 {
  8876. border-width:0px;
  8877. position:absolute;
  8878. left:1401px;
  8879. top:101px;
  8880. width:140px;
  8881. height:30px;
  8882. display:flex;
  8883. font-size:11px;
  8884. }
  8885. #u87957 .text {
  8886. position:absolute;
  8887. align-self:center;
  8888. padding:2px 2px 2px 2px;
  8889. box-sizing:border-box;
  8890. width:100%;
  8891. }
  8892. #u87957_text {
  8893. border-width:0px;
  8894. word-wrap:break-word;
  8895. text-transform:none;
  8896. visibility:hidden;
  8897. }
  8898. #u87958_input {
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:126px;
  8903. height:23px;
  8904. padding:2px 2px 2px 2px;
  8905. font-family:'ArialMT', 'Arial', sans-serif;
  8906. font-weight:400;
  8907. font-style:normal;
  8908. font-size:11px;
  8909. letter-spacing:normal;
  8910. color:#AAAAAA;
  8911. vertical-align:none;
  8912. text-align:left;
  8913. text-transform:none;
  8914. background-color:transparent;
  8915. border-color:transparent;
  8916. }
  8917. #u87958_input.disabled {
  8918. position:absolute;
  8919. left:0px;
  8920. top:0px;
  8921. width:126px;
  8922. height:23px;
  8923. padding:2px 2px 2px 2px;
  8924. font-family:'ArialMT', 'Arial', sans-serif;
  8925. font-weight:400;
  8926. font-style:normal;
  8927. font-size:11px;
  8928. letter-spacing:normal;
  8929. color:#AAAAAA;
  8930. vertical-align:none;
  8931. text-align:left;
  8932. text-transform:none;
  8933. background-color:transparent;
  8934. border-color:transparent;
  8935. }
  8936. #u87958_div {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:0px;
  8940. top:0px;
  8941. width:126px;
  8942. height:23px;
  8943. background:inherit;
  8944. background-color:rgba(255, 255, 255, 1);
  8945. border:none;
  8946. border-radius:0px;
  8947. -moz-box-shadow:none;
  8948. -webkit-box-shadow:none;
  8949. box-shadow:none;
  8950. font-size:11px;
  8951. color:#AAAAAA;
  8952. }
  8953. #u87958 {
  8954. border-width:0px;
  8955. position:absolute;
  8956. left:1408px;
  8957. top:103px;
  8958. width:126px;
  8959. height:23px;
  8960. display:flex;
  8961. font-size:11px;
  8962. color:#AAAAAA;
  8963. }
  8964. #u87958 .text {
  8965. position:absolute;
  8966. align-self:flex-start;
  8967. padding:2px 2px 2px 2px;
  8968. box-sizing:border-box;
  8969. width:100%;
  8970. }
  8971. #u87958_div.disabled {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:126px;
  8977. height:23px;
  8978. background:inherit;
  8979. background-color:rgba(240, 240, 240, 1);
  8980. border:none;
  8981. border-radius:0px;
  8982. -moz-box-shadow:none;
  8983. -webkit-box-shadow:none;
  8984. box-shadow:none;
  8985. font-size:11px;
  8986. color:#AAAAAA;
  8987. }
  8988. #u87958.disabled {
  8989. }
  8990. .u87958_input_option {
  8991. font-size:11px;
  8992. }
  8993. #u87959 {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:0px;
  8997. top:0px;
  8998. width:0px;
  8999. height:0px;
  9000. }
  9001. #u87960_div {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:140px;
  9007. height:30px;
  9008. background:inherit;
  9009. background-color:rgba(255, 255, 255, 1);
  9010. box-sizing:border-box;
  9011. border-width:1px;
  9012. border-style:solid;
  9013. border-color:rgba(215, 215, 215, 1);
  9014. border-radius:4px;
  9015. -moz-box-shadow:none;
  9016. -webkit-box-shadow:none;
  9017. box-shadow:none;
  9018. font-size:11px;
  9019. }
  9020. #u87960 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:1101px;
  9024. top:178px;
  9025. width:140px;
  9026. height:30px;
  9027. display:flex;
  9028. font-size:11px;
  9029. }
  9030. #u87960 .text {
  9031. position:absolute;
  9032. align-self:center;
  9033. padding:2px 2px 2px 2px;
  9034. box-sizing:border-box;
  9035. width:100%;
  9036. }
  9037. #u87960_text {
  9038. border-width:0px;
  9039. word-wrap:break-word;
  9040. text-transform:none;
  9041. visibility:hidden;
  9042. }
  9043. #u87961_input {
  9044. position:absolute;
  9045. left:0px;
  9046. top:0px;
  9047. width:126px;
  9048. height:23px;
  9049. padding:2px 2px 2px 2px;
  9050. font-family:'ArialMT', 'Arial', sans-serif;
  9051. font-weight:400;
  9052. font-style:normal;
  9053. font-size:11px;
  9054. letter-spacing:normal;
  9055. color:#AAAAAA;
  9056. vertical-align:none;
  9057. text-align:left;
  9058. text-transform:none;
  9059. background-color:transparent;
  9060. border-color:transparent;
  9061. }
  9062. #u87961_input.disabled {
  9063. position:absolute;
  9064. left:0px;
  9065. top:0px;
  9066. width:126px;
  9067. height:23px;
  9068. padding:2px 2px 2px 2px;
  9069. font-family:'ArialMT', 'Arial', sans-serif;
  9070. font-weight:400;
  9071. font-style:normal;
  9072. font-size:11px;
  9073. letter-spacing:normal;
  9074. color:#AAAAAA;
  9075. vertical-align:none;
  9076. text-align:left;
  9077. text-transform:none;
  9078. background-color:transparent;
  9079. border-color:transparent;
  9080. }
  9081. #u87961_div {
  9082. border-width:0px;
  9083. position:absolute;
  9084. left:0px;
  9085. top:0px;
  9086. width:126px;
  9087. height:23px;
  9088. background:inherit;
  9089. background-color:rgba(255, 255, 255, 1);
  9090. border:none;
  9091. border-radius:0px;
  9092. -moz-box-shadow:none;
  9093. -webkit-box-shadow:none;
  9094. box-shadow:none;
  9095. font-size:11px;
  9096. color:#AAAAAA;
  9097. }
  9098. #u87961 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:1108px;
  9102. top:180px;
  9103. width:126px;
  9104. height:23px;
  9105. display:flex;
  9106. font-size:11px;
  9107. color:#AAAAAA;
  9108. }
  9109. #u87961 .text {
  9110. position:absolute;
  9111. align-self:flex-start;
  9112. padding:2px 2px 2px 2px;
  9113. box-sizing:border-box;
  9114. width:100%;
  9115. }
  9116. #u87961_div.disabled {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:0px;
  9120. top:0px;
  9121. width:126px;
  9122. height:23px;
  9123. background:inherit;
  9124. background-color:rgba(240, 240, 240, 1);
  9125. border:none;
  9126. border-radius:0px;
  9127. -moz-box-shadow:none;
  9128. -webkit-box-shadow:none;
  9129. box-shadow:none;
  9130. font-size:11px;
  9131. color:#AAAAAA;
  9132. }
  9133. #u87961.disabled {
  9134. }
  9135. .u87961_input_option {
  9136. font-size:11px;
  9137. }
  9138. #u87962 {
  9139. border-width:0px;
  9140. position:absolute;
  9141. left:0px;
  9142. top:0px;
  9143. width:0px;
  9144. height:0px;
  9145. }
  9146. #u87963_div {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:0px;
  9150. top:0px;
  9151. width:140px;
  9152. height:30px;
  9153. background:inherit;
  9154. background-color:rgba(255, 255, 255, 1);
  9155. box-sizing:border-box;
  9156. border-width:1px;
  9157. border-style:solid;
  9158. border-color:rgba(215, 215, 215, 1);
  9159. border-radius:4px;
  9160. -moz-box-shadow:none;
  9161. -webkit-box-shadow:none;
  9162. box-shadow:none;
  9163. font-size:11px;
  9164. }
  9165. #u87963 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:1251px;
  9169. top:178px;
  9170. width:140px;
  9171. height:30px;
  9172. display:flex;
  9173. font-size:11px;
  9174. }
  9175. #u87963 .text {
  9176. position:absolute;
  9177. align-self:center;
  9178. padding:2px 2px 2px 2px;
  9179. box-sizing:border-box;
  9180. width:100%;
  9181. }
  9182. #u87963_text {
  9183. border-width:0px;
  9184. word-wrap:break-word;
  9185. text-transform:none;
  9186. visibility:hidden;
  9187. }
  9188. #u87964_input {
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:126px;
  9193. height:23px;
  9194. padding:2px 2px 2px 2px;
  9195. font-family:'ArialMT', 'Arial', sans-serif;
  9196. font-weight:400;
  9197. font-style:normal;
  9198. font-size:11px;
  9199. letter-spacing:normal;
  9200. color:#AAAAAA;
  9201. vertical-align:none;
  9202. text-align:left;
  9203. text-transform:none;
  9204. background-color:transparent;
  9205. border-color:transparent;
  9206. }
  9207. #u87964_input.disabled {
  9208. position:absolute;
  9209. left:0px;
  9210. top:0px;
  9211. width:126px;
  9212. height:23px;
  9213. padding:2px 2px 2px 2px;
  9214. font-family:'ArialMT', 'Arial', sans-serif;
  9215. font-weight:400;
  9216. font-style:normal;
  9217. font-size:11px;
  9218. letter-spacing:normal;
  9219. color:#AAAAAA;
  9220. vertical-align:none;
  9221. text-align:left;
  9222. text-transform:none;
  9223. background-color:transparent;
  9224. border-color:transparent;
  9225. }
  9226. #u87964_div {
  9227. border-width:0px;
  9228. position:absolute;
  9229. left:0px;
  9230. top:0px;
  9231. width:126px;
  9232. height:23px;
  9233. background:inherit;
  9234. background-color:rgba(255, 255, 255, 1);
  9235. border:none;
  9236. border-radius:0px;
  9237. -moz-box-shadow:none;
  9238. -webkit-box-shadow:none;
  9239. box-shadow:none;
  9240. font-size:11px;
  9241. color:#AAAAAA;
  9242. }
  9243. #u87964 {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:1258px;
  9247. top:180px;
  9248. width:126px;
  9249. height:23px;
  9250. display:flex;
  9251. font-size:11px;
  9252. color:#AAAAAA;
  9253. }
  9254. #u87964 .text {
  9255. position:absolute;
  9256. align-self:flex-start;
  9257. padding:2px 2px 2px 2px;
  9258. box-sizing:border-box;
  9259. width:100%;
  9260. }
  9261. #u87964_div.disabled {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:0px;
  9265. top:0px;
  9266. width:126px;
  9267. height:23px;
  9268. background:inherit;
  9269. background-color:rgba(240, 240, 240, 1);
  9270. border:none;
  9271. border-radius:0px;
  9272. -moz-box-shadow:none;
  9273. -webkit-box-shadow:none;
  9274. box-shadow:none;
  9275. font-size:11px;
  9276. color:#AAAAAA;
  9277. }
  9278. #u87964.disabled {
  9279. }
  9280. .u87964_input_option {
  9281. font-size:11px;
  9282. }
  9283. #u87965 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:0px;
  9287. top:0px;
  9288. width:0px;
  9289. height:0px;
  9290. }
  9291. #u87966_div {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:0px;
  9295. top:0px;
  9296. width:140px;
  9297. height:30px;
  9298. background:inherit;
  9299. background-color:rgba(255, 255, 255, 1);
  9300. box-sizing:border-box;
  9301. border-width:1px;
  9302. border-style:solid;
  9303. border-color:rgba(215, 215, 215, 1);
  9304. border-radius:4px;
  9305. -moz-box-shadow:none;
  9306. -webkit-box-shadow:none;
  9307. box-shadow:none;
  9308. font-size:11px;
  9309. }
  9310. #u87966 {
  9311. border-width:0px;
  9312. position:absolute;
  9313. left:951px;
  9314. top:178px;
  9315. width:140px;
  9316. height:30px;
  9317. display:flex;
  9318. font-size:11px;
  9319. }
  9320. #u87966 .text {
  9321. position:absolute;
  9322. align-self:center;
  9323. padding:2px 2px 2px 2px;
  9324. box-sizing:border-box;
  9325. width:100%;
  9326. }
  9327. #u87966_text {
  9328. border-width:0px;
  9329. word-wrap:break-word;
  9330. text-transform:none;
  9331. visibility:hidden;
  9332. }
  9333. #u87967_input {
  9334. position:absolute;
  9335. left:0px;
  9336. top:0px;
  9337. width:126px;
  9338. height:23px;
  9339. padding:2px 2px 2px 2px;
  9340. font-family:'ArialMT', 'Arial', sans-serif;
  9341. font-weight:400;
  9342. font-style:normal;
  9343. font-size:11px;
  9344. letter-spacing:normal;
  9345. color:#AAAAAA;
  9346. vertical-align:none;
  9347. text-align:left;
  9348. text-transform:none;
  9349. background-color:transparent;
  9350. border-color:transparent;
  9351. }
  9352. #u87967_input.disabled {
  9353. position:absolute;
  9354. left:0px;
  9355. top:0px;
  9356. width:126px;
  9357. height:23px;
  9358. padding:2px 2px 2px 2px;
  9359. font-family:'ArialMT', 'Arial', sans-serif;
  9360. font-weight:400;
  9361. font-style:normal;
  9362. font-size:11px;
  9363. letter-spacing:normal;
  9364. color:#AAAAAA;
  9365. vertical-align:none;
  9366. text-align:left;
  9367. text-transform:none;
  9368. background-color:transparent;
  9369. border-color:transparent;
  9370. }
  9371. #u87967_div {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:0px;
  9375. top:0px;
  9376. width:126px;
  9377. height:23px;
  9378. background:inherit;
  9379. background-color:rgba(255, 255, 255, 1);
  9380. border:none;
  9381. border-radius:0px;
  9382. -moz-box-shadow:none;
  9383. -webkit-box-shadow:none;
  9384. box-shadow:none;
  9385. font-size:11px;
  9386. color:#AAAAAA;
  9387. }
  9388. #u87967 {
  9389. border-width:0px;
  9390. position:absolute;
  9391. left:958px;
  9392. top:180px;
  9393. width:126px;
  9394. height:23px;
  9395. display:flex;
  9396. font-size:11px;
  9397. color:#AAAAAA;
  9398. }
  9399. #u87967 .text {
  9400. position:absolute;
  9401. align-self:flex-start;
  9402. padding:2px 2px 2px 2px;
  9403. box-sizing:border-box;
  9404. width:100%;
  9405. }
  9406. #u87967_div.disabled {
  9407. border-width:0px;
  9408. position:absolute;
  9409. left:0px;
  9410. top:0px;
  9411. width:126px;
  9412. height:23px;
  9413. background:inherit;
  9414. background-color:rgba(240, 240, 240, 1);
  9415. border:none;
  9416. border-radius:0px;
  9417. -moz-box-shadow:none;
  9418. -webkit-box-shadow:none;
  9419. box-shadow:none;
  9420. font-size:11px;
  9421. color:#AAAAAA;
  9422. }
  9423. #u87967.disabled {
  9424. }
  9425. .u87967_input_option {
  9426. font-size:11px;
  9427. }
  9428. #u87968 {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:0px;
  9432. top:0px;
  9433. width:0px;
  9434. height:0px;
  9435. }
  9436. #u87969_div {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:0px;
  9440. top:0px;
  9441. width:140px;
  9442. height:30px;
  9443. background:inherit;
  9444. background-color:rgba(255, 255, 255, 1);
  9445. box-sizing:border-box;
  9446. border-width:1px;
  9447. border-style:solid;
  9448. border-color:rgba(215, 215, 215, 1);
  9449. border-radius:4px;
  9450. -moz-box-shadow:none;
  9451. -webkit-box-shadow:none;
  9452. box-shadow:none;
  9453. font-size:11px;
  9454. }
  9455. #u87969 {
  9456. border-width:0px;
  9457. position:absolute;
  9458. left:1101px;
  9459. top:101px;
  9460. width:140px;
  9461. height:30px;
  9462. display:flex;
  9463. font-size:11px;
  9464. }
  9465. #u87969 .text {
  9466. position:absolute;
  9467. align-self:center;
  9468. padding:2px 2px 2px 2px;
  9469. box-sizing:border-box;
  9470. width:100%;
  9471. }
  9472. #u87969_text {
  9473. border-width:0px;
  9474. word-wrap:break-word;
  9475. text-transform:none;
  9476. visibility:hidden;
  9477. }
  9478. #u87970_input {
  9479. position:absolute;
  9480. left:0px;
  9481. top:0px;
  9482. width:126px;
  9483. height:23px;
  9484. padding:2px 2px 2px 2px;
  9485. font-family:'ArialMT', 'Arial', sans-serif;
  9486. font-weight:400;
  9487. font-style:normal;
  9488. font-size:11px;
  9489. letter-spacing:normal;
  9490. color:#AAAAAA;
  9491. vertical-align:none;
  9492. text-align:left;
  9493. text-transform:none;
  9494. background-color:transparent;
  9495. border-color:transparent;
  9496. }
  9497. #u87970_input.disabled {
  9498. position:absolute;
  9499. left:0px;
  9500. top:0px;
  9501. width:126px;
  9502. height:23px;
  9503. padding:2px 2px 2px 2px;
  9504. font-family:'ArialMT', 'Arial', sans-serif;
  9505. font-weight:400;
  9506. font-style:normal;
  9507. font-size:11px;
  9508. letter-spacing:normal;
  9509. color:#AAAAAA;
  9510. vertical-align:none;
  9511. text-align:left;
  9512. text-transform:none;
  9513. background-color:transparent;
  9514. border-color:transparent;
  9515. }
  9516. #u87970_div {
  9517. border-width:0px;
  9518. position:absolute;
  9519. left:0px;
  9520. top:0px;
  9521. width:126px;
  9522. height:23px;
  9523. background:inherit;
  9524. background-color:rgba(255, 255, 255, 1);
  9525. border:none;
  9526. border-radius:0px;
  9527. -moz-box-shadow:none;
  9528. -webkit-box-shadow:none;
  9529. box-shadow:none;
  9530. font-size:11px;
  9531. color:#AAAAAA;
  9532. }
  9533. #u87970 {
  9534. border-width:0px;
  9535. position:absolute;
  9536. left:1108px;
  9537. top:103px;
  9538. width:126px;
  9539. height:23px;
  9540. display:flex;
  9541. font-size:11px;
  9542. color:#AAAAAA;
  9543. }
  9544. #u87970 .text {
  9545. position:absolute;
  9546. align-self:flex-start;
  9547. padding:2px 2px 2px 2px;
  9548. box-sizing:border-box;
  9549. width:100%;
  9550. }
  9551. #u87970_div.disabled {
  9552. border-width:0px;
  9553. position:absolute;
  9554. left:0px;
  9555. top:0px;
  9556. width:126px;
  9557. height:23px;
  9558. background:inherit;
  9559. background-color:rgba(240, 240, 240, 1);
  9560. border:none;
  9561. border-radius:0px;
  9562. -moz-box-shadow:none;
  9563. -webkit-box-shadow:none;
  9564. box-shadow:none;
  9565. font-size:11px;
  9566. color:#AAAAAA;
  9567. }
  9568. #u87970.disabled {
  9569. }
  9570. .u87970_input_option {
  9571. font-size:11px;
  9572. }
  9573. #u87971 {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:0px;
  9577. top:0px;
  9578. width:0px;
  9579. height:0px;
  9580. }
  9581. #u87972_div {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:0px;
  9585. top:0px;
  9586. width:140px;
  9587. height:30px;
  9588. background:inherit;
  9589. background-color:rgba(255, 255, 255, 1);
  9590. box-sizing:border-box;
  9591. border-width:1px;
  9592. border-style:solid;
  9593. border-color:rgba(201, 201, 201, 1);
  9594. border-radius:4px;
  9595. -moz-box-shadow:none;
  9596. -webkit-box-shadow:none;
  9597. box-shadow:none;
  9598. font-family:'Microsoft YaHei', sans-serif;
  9599. font-weight:400;
  9600. font-style:normal;
  9601. font-size:14px;
  9602. color:#CCCCCC;
  9603. text-align:left;
  9604. }
  9605. #u87972 {
  9606. border-width:0px;
  9607. position:absolute;
  9608. left:351px;
  9609. top:138px;
  9610. width:140px;
  9611. height:30px;
  9612. display:flex;
  9613. font-family:'Microsoft YaHei', sans-serif;
  9614. font-weight:400;
  9615. font-style:normal;
  9616. font-size:14px;
  9617. color:#CCCCCC;
  9618. text-align:left;
  9619. }
  9620. #u87972 .text {
  9621. position:absolute;
  9622. align-self:center;
  9623. padding:2px 8px 2px 8px;
  9624. box-sizing:border-box;
  9625. width:100%;
  9626. }
  9627. #u87972_text {
  9628. border-width:0px;
  9629. word-wrap:break-word;
  9630. text-transform:none;
  9631. visibility:hidden;
  9632. }
  9633. #u87973_input {
  9634. position:absolute;
  9635. left:0px;
  9636. top:0px;
  9637. width:127px;
  9638. height:25px;
  9639. padding:2px 2px 2px 2px;
  9640. font-family:'Microsoft YaHei', sans-serif;
  9641. font-weight:400;
  9642. font-style:normal;
  9643. font-size:10px;
  9644. letter-spacing:normal;
  9645. color:#000000;
  9646. vertical-align:none;
  9647. text-align:left;
  9648. text-transform:none;
  9649. background-color:transparent;
  9650. border-color:transparent;
  9651. }
  9652. #u87973_input.disabled {
  9653. position:absolute;
  9654. left:0px;
  9655. top:0px;
  9656. width:127px;
  9657. height:25px;
  9658. padding:2px 2px 2px 2px;
  9659. font-family:'Microsoft YaHei', sans-serif;
  9660. font-weight:400;
  9661. font-style:normal;
  9662. font-size:10px;
  9663. letter-spacing:normal;
  9664. color:#000000;
  9665. vertical-align:none;
  9666. text-align:left;
  9667. text-transform:none;
  9668. background-color:transparent;
  9669. border-color:transparent;
  9670. }
  9671. #u87973_div {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:0px;
  9675. top:0px;
  9676. width:127px;
  9677. height:25px;
  9678. background:inherit;
  9679. background-color:rgba(255, 255, 255, 1);
  9680. border:none;
  9681. border-radius:0px;
  9682. -moz-box-shadow:none;
  9683. -webkit-box-shadow:none;
  9684. box-shadow:none;
  9685. font-family:'Microsoft YaHei', sans-serif;
  9686. font-weight:400;
  9687. font-style:normal;
  9688. font-size:10px;
  9689. }
  9690. #u87973 {
  9691. border-width:0px;
  9692. position:absolute;
  9693. left:359px;
  9694. top:139px;
  9695. width:127px;
  9696. height:25px;
  9697. display:flex;
  9698. font-family:'Microsoft YaHei', sans-serif;
  9699. font-weight:400;
  9700. font-style:normal;
  9701. font-size:10px;
  9702. }
  9703. #u87973 .text {
  9704. position:absolute;
  9705. align-self:center;
  9706. padding:2px 2px 2px 2px;
  9707. box-sizing:border-box;
  9708. width:100%;
  9709. }
  9710. #u87973_div.disabled {
  9711. border-width:0px;
  9712. position:absolute;
  9713. left:0px;
  9714. top:0px;
  9715. width:127px;
  9716. height:25px;
  9717. background:inherit;
  9718. background-color:rgba(240, 240, 240, 1);
  9719. border:none;
  9720. border-radius:0px;
  9721. -moz-box-shadow:none;
  9722. -webkit-box-shadow:none;
  9723. box-shadow:none;
  9724. font-family:'Microsoft YaHei', sans-serif;
  9725. font-weight:400;
  9726. font-style:normal;
  9727. font-size:10px;
  9728. }
  9729. #u87973.disabled {
  9730. }
  9731. #u87974 {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:0px;
  9735. top:0px;
  9736. width:0px;
  9737. height:0px;
  9738. }
  9739. #u87975_div {
  9740. border-width:0px;
  9741. position:absolute;
  9742. left:0px;
  9743. top:0px;
  9744. width:140px;
  9745. height:30px;
  9746. background:inherit;
  9747. background-color:rgba(255, 255, 255, 1);
  9748. box-sizing:border-box;
  9749. border-width:1px;
  9750. border-style:solid;
  9751. border-color:rgba(201, 201, 201, 1);
  9752. border-radius:4px;
  9753. -moz-box-shadow:none;
  9754. -webkit-box-shadow:none;
  9755. box-shadow:none;
  9756. font-family:'Microsoft YaHei', sans-serif;
  9757. font-weight:400;
  9758. font-style:normal;
  9759. font-size:14px;
  9760. color:#CCCCCC;
  9761. text-align:left;
  9762. }
  9763. #u87975 {
  9764. border-width:0px;
  9765. position:absolute;
  9766. left:1551px;
  9767. top:101px;
  9768. width:140px;
  9769. height:30px;
  9770. display:flex;
  9771. font-family:'Microsoft YaHei', sans-serif;
  9772. font-weight:400;
  9773. font-style:normal;
  9774. font-size:14px;
  9775. color:#CCCCCC;
  9776. text-align:left;
  9777. }
  9778. #u87975 .text {
  9779. position:absolute;
  9780. align-self:center;
  9781. padding:2px 8px 2px 8px;
  9782. box-sizing:border-box;
  9783. width:100%;
  9784. }
  9785. #u87975_text {
  9786. border-width:0px;
  9787. word-wrap:break-word;
  9788. text-transform:none;
  9789. visibility:hidden;
  9790. }
  9791. #u87976_input {
  9792. position:absolute;
  9793. left:0px;
  9794. top:0px;
  9795. width:127px;
  9796. height:25px;
  9797. padding:2px 2px 2px 2px;
  9798. font-family:'Microsoft YaHei', sans-serif;
  9799. font-weight:400;
  9800. font-style:normal;
  9801. font-size:10px;
  9802. letter-spacing:normal;
  9803. color:#000000;
  9804. vertical-align:none;
  9805. text-align:left;
  9806. text-transform:none;
  9807. background-color:transparent;
  9808. border-color:transparent;
  9809. }
  9810. #u87976_input.disabled {
  9811. position:absolute;
  9812. left:0px;
  9813. top:0px;
  9814. width:127px;
  9815. height:25px;
  9816. padding:2px 2px 2px 2px;
  9817. font-family:'Microsoft YaHei', sans-serif;
  9818. font-weight:400;
  9819. font-style:normal;
  9820. font-size:10px;
  9821. letter-spacing:normal;
  9822. color:#000000;
  9823. vertical-align:none;
  9824. text-align:left;
  9825. text-transform:none;
  9826. background-color:transparent;
  9827. border-color:transparent;
  9828. }
  9829. #u87976_div {
  9830. border-width:0px;
  9831. position:absolute;
  9832. left:0px;
  9833. top:0px;
  9834. width:127px;
  9835. height:25px;
  9836. background:inherit;
  9837. background-color:rgba(255, 255, 255, 1);
  9838. border:none;
  9839. border-radius:0px;
  9840. -moz-box-shadow:none;
  9841. -webkit-box-shadow:none;
  9842. box-shadow:none;
  9843. font-family:'Microsoft YaHei', sans-serif;
  9844. font-weight:400;
  9845. font-style:normal;
  9846. font-size:10px;
  9847. }
  9848. #u87976 {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:1559px;
  9852. top:102px;
  9853. width:127px;
  9854. height:25px;
  9855. display:flex;
  9856. font-family:'Microsoft YaHei', sans-serif;
  9857. font-weight:400;
  9858. font-style:normal;
  9859. font-size:10px;
  9860. }
  9861. #u87976 .text {
  9862. position:absolute;
  9863. align-self:center;
  9864. padding:2px 2px 2px 2px;
  9865. box-sizing:border-box;
  9866. width:100%;
  9867. }
  9868. #u87976_div.disabled {
  9869. border-width:0px;
  9870. position:absolute;
  9871. left:0px;
  9872. top:0px;
  9873. width:127px;
  9874. height:25px;
  9875. background:inherit;
  9876. background-color:rgba(240, 240, 240, 1);
  9877. border:none;
  9878. border-radius:0px;
  9879. -moz-box-shadow:none;
  9880. -webkit-box-shadow:none;
  9881. box-shadow:none;
  9882. font-family:'Microsoft YaHei', sans-serif;
  9883. font-weight:400;
  9884. font-style:normal;
  9885. font-size:10px;
  9886. }
  9887. #u87976.disabled {
  9888. }
  9889. #u87977 {
  9890. border-width:0px;
  9891. position:absolute;
  9892. left:0px;
  9893. top:0px;
  9894. width:0px;
  9895. height:0px;
  9896. }
  9897. #u87978_div {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:0px;
  9901. top:0px;
  9902. width:140px;
  9903. height:30px;
  9904. background:inherit;
  9905. background-color:rgba(255, 255, 255, 1);
  9906. box-sizing:border-box;
  9907. border-width:1px;
  9908. border-style:solid;
  9909. border-color:rgba(215, 215, 215, 1);
  9910. border-radius:4px;
  9911. -moz-box-shadow:none;
  9912. -webkit-box-shadow:none;
  9913. box-shadow:none;
  9914. font-size:11px;
  9915. }
  9916. #u87978 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:951px;
  9920. top:139px;
  9921. width:140px;
  9922. height:30px;
  9923. display:flex;
  9924. font-size:11px;
  9925. }
  9926. #u87978 .text {
  9927. position:absolute;
  9928. align-self:center;
  9929. padding:2px 2px 2px 2px;
  9930. box-sizing:border-box;
  9931. width:100%;
  9932. }
  9933. #u87978_text {
  9934. border-width:0px;
  9935. word-wrap:break-word;
  9936. text-transform:none;
  9937. visibility:hidden;
  9938. }
  9939. #u87979_input {
  9940. position:absolute;
  9941. left:0px;
  9942. top:0px;
  9943. width:126px;
  9944. height:23px;
  9945. padding:2px 2px 2px 2px;
  9946. font-family:'ArialMT', 'Arial', sans-serif;
  9947. font-weight:400;
  9948. font-style:normal;
  9949. font-size:11px;
  9950. letter-spacing:normal;
  9951. color:#AAAAAA;
  9952. vertical-align:none;
  9953. text-align:left;
  9954. text-transform:none;
  9955. background-color:transparent;
  9956. border-color:transparent;
  9957. }
  9958. #u87979_input.disabled {
  9959. position:absolute;
  9960. left:0px;
  9961. top:0px;
  9962. width:126px;
  9963. height:23px;
  9964. padding:2px 2px 2px 2px;
  9965. font-family:'ArialMT', 'Arial', sans-serif;
  9966. font-weight:400;
  9967. font-style:normal;
  9968. font-size:11px;
  9969. letter-spacing:normal;
  9970. color:#AAAAAA;
  9971. vertical-align:none;
  9972. text-align:left;
  9973. text-transform:none;
  9974. background-color:transparent;
  9975. border-color:transparent;
  9976. }
  9977. #u87979_div {
  9978. border-width:0px;
  9979. position:absolute;
  9980. left:0px;
  9981. top:0px;
  9982. width:126px;
  9983. height:23px;
  9984. background:inherit;
  9985. background-color:rgba(255, 255, 255, 1);
  9986. border:none;
  9987. border-radius:0px;
  9988. -moz-box-shadow:none;
  9989. -webkit-box-shadow:none;
  9990. box-shadow:none;
  9991. font-size:11px;
  9992. color:#AAAAAA;
  9993. }
  9994. #u87979 {
  9995. border-width:0px;
  9996. position:absolute;
  9997. left:958px;
  9998. top:141px;
  9999. width:126px;
  10000. height:23px;
  10001. display:flex;
  10002. font-size:11px;
  10003. color:#AAAAAA;
  10004. }
  10005. #u87979 .text {
  10006. position:absolute;
  10007. align-self:flex-start;
  10008. padding:2px 2px 2px 2px;
  10009. box-sizing:border-box;
  10010. width:100%;
  10011. }
  10012. #u87979_div.disabled {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:0px;
  10016. top:0px;
  10017. width:126px;
  10018. height:23px;
  10019. background:inherit;
  10020. background-color:rgba(240, 240, 240, 1);
  10021. border:none;
  10022. border-radius:0px;
  10023. -moz-box-shadow:none;
  10024. -webkit-box-shadow:none;
  10025. box-shadow:none;
  10026. font-size:11px;
  10027. color:#AAAAAA;
  10028. }
  10029. #u87979.disabled {
  10030. }
  10031. .u87979_input_option {
  10032. font-size:11px;
  10033. }
  10034. #u87980 {
  10035. border-width:0px;
  10036. position:absolute;
  10037. left:0px;
  10038. top:0px;
  10039. width:0px;
  10040. height:0px;
  10041. }
  10042. #u87981_div {
  10043. border-width:0px;
  10044. position:absolute;
  10045. left:0px;
  10046. top:0px;
  10047. width:140px;
  10048. height:30px;
  10049. background:inherit;
  10050. background-color:rgba(255, 255, 255, 1);
  10051. box-sizing:border-box;
  10052. border-width:1px;
  10053. border-style:solid;
  10054. border-color:rgba(201, 201, 201, 1);
  10055. border-radius:4px;
  10056. -moz-box-shadow:none;
  10057. -webkit-box-shadow:none;
  10058. box-shadow:none;
  10059. font-family:'Microsoft YaHei', sans-serif;
  10060. font-weight:400;
  10061. font-style:normal;
  10062. font-size:14px;
  10063. color:#CCCCCC;
  10064. text-align:left;
  10065. }
  10066. #u87981 {
  10067. border-width:0px;
  10068. position:absolute;
  10069. left:1251px;
  10070. top:139px;
  10071. width:140px;
  10072. height:30px;
  10073. display:flex;
  10074. font-family:'Microsoft YaHei', sans-serif;
  10075. font-weight:400;
  10076. font-style:normal;
  10077. font-size:14px;
  10078. color:#CCCCCC;
  10079. text-align:left;
  10080. }
  10081. #u87981 .text {
  10082. position:absolute;
  10083. align-self:center;
  10084. padding:2px 8px 2px 8px;
  10085. box-sizing:border-box;
  10086. width:100%;
  10087. }
  10088. #u87981_text {
  10089. border-width:0px;
  10090. word-wrap:break-word;
  10091. text-transform:none;
  10092. visibility:hidden;
  10093. }
  10094. #u87982_input {
  10095. position:absolute;
  10096. left:0px;
  10097. top:0px;
  10098. width:127px;
  10099. height:25px;
  10100. padding:2px 2px 2px 2px;
  10101. font-family:'Microsoft YaHei', sans-serif;
  10102. font-weight:400;
  10103. font-style:normal;
  10104. font-size:10px;
  10105. letter-spacing:normal;
  10106. color:#000000;
  10107. vertical-align:none;
  10108. text-align:left;
  10109. text-transform:none;
  10110. background-color:transparent;
  10111. border-color:transparent;
  10112. }
  10113. #u87982_input.disabled {
  10114. position:absolute;
  10115. left:0px;
  10116. top:0px;
  10117. width:127px;
  10118. height:25px;
  10119. padding:2px 2px 2px 2px;
  10120. font-family:'Microsoft YaHei', sans-serif;
  10121. font-weight:400;
  10122. font-style:normal;
  10123. font-size:10px;
  10124. letter-spacing:normal;
  10125. color:#000000;
  10126. vertical-align:none;
  10127. text-align:left;
  10128. text-transform:none;
  10129. background-color:transparent;
  10130. border-color:transparent;
  10131. }
  10132. #u87982_div {
  10133. border-width:0px;
  10134. position:absolute;
  10135. left:0px;
  10136. top:0px;
  10137. width:127px;
  10138. height:25px;
  10139. background:inherit;
  10140. background-color:rgba(255, 255, 255, 1);
  10141. border:none;
  10142. border-radius:0px;
  10143. -moz-box-shadow:none;
  10144. -webkit-box-shadow:none;
  10145. box-shadow:none;
  10146. font-family:'Microsoft YaHei', sans-serif;
  10147. font-weight:400;
  10148. font-style:normal;
  10149. font-size:10px;
  10150. }
  10151. #u87982 {
  10152. border-width:0px;
  10153. position:absolute;
  10154. left:1259px;
  10155. top:140px;
  10156. width:127px;
  10157. height:25px;
  10158. display:flex;
  10159. font-family:'Microsoft YaHei', sans-serif;
  10160. font-weight:400;
  10161. font-style:normal;
  10162. font-size:10px;
  10163. }
  10164. #u87982 .text {
  10165. position:absolute;
  10166. align-self:center;
  10167. padding:2px 2px 2px 2px;
  10168. box-sizing:border-box;
  10169. width:100%;
  10170. }
  10171. #u87982_div.disabled {
  10172. border-width:0px;
  10173. position:absolute;
  10174. left:0px;
  10175. top:0px;
  10176. width:127px;
  10177. height:25px;
  10178. background:inherit;
  10179. background-color:rgba(240, 240, 240, 1);
  10180. border:none;
  10181. border-radius:0px;
  10182. -moz-box-shadow:none;
  10183. -webkit-box-shadow:none;
  10184. box-shadow:none;
  10185. font-family:'Microsoft YaHei', sans-serif;
  10186. font-weight:400;
  10187. font-style:normal;
  10188. font-size:10px;
  10189. }
  10190. #u87982.disabled {
  10191. }
  10192. #u87983 {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:0px;
  10196. top:0px;
  10197. width:0px;
  10198. height:0px;
  10199. }
  10200. #u87984_div {
  10201. border-width:0px;
  10202. position:absolute;
  10203. left:0px;
  10204. top:0px;
  10205. width:140px;
  10206. height:30px;
  10207. background:inherit;
  10208. background-color:rgba(255, 255, 255, 1);
  10209. box-sizing:border-box;
  10210. border-width:1px;
  10211. border-style:solid;
  10212. border-color:rgba(201, 201, 201, 1);
  10213. border-radius:4px;
  10214. -moz-box-shadow:none;
  10215. -webkit-box-shadow:none;
  10216. box-shadow:none;
  10217. font-family:'Microsoft YaHei', sans-serif;
  10218. font-weight:400;
  10219. font-style:normal;
  10220. font-size:14px;
  10221. color:#CCCCCC;
  10222. text-align:left;
  10223. }
  10224. #u87984 {
  10225. border-width:0px;
  10226. position:absolute;
  10227. left:1401px;
  10228. top:139px;
  10229. width:140px;
  10230. height:30px;
  10231. display:flex;
  10232. font-family:'Microsoft YaHei', sans-serif;
  10233. font-weight:400;
  10234. font-style:normal;
  10235. font-size:14px;
  10236. color:#CCCCCC;
  10237. text-align:left;
  10238. }
  10239. #u87984 .text {
  10240. position:absolute;
  10241. align-self:center;
  10242. padding:2px 8px 2px 8px;
  10243. box-sizing:border-box;
  10244. width:100%;
  10245. }
  10246. #u87984_text {
  10247. border-width:0px;
  10248. word-wrap:break-word;
  10249. text-transform:none;
  10250. visibility:hidden;
  10251. }
  10252. #u87985_input {
  10253. position:absolute;
  10254. left:0px;
  10255. top:0px;
  10256. width:127px;
  10257. height:25px;
  10258. padding:2px 2px 2px 2px;
  10259. font-family:'Microsoft YaHei', sans-serif;
  10260. font-weight:400;
  10261. font-style:normal;
  10262. font-size:10px;
  10263. letter-spacing:normal;
  10264. color:#000000;
  10265. vertical-align:none;
  10266. text-align:left;
  10267. text-transform:none;
  10268. background-color:transparent;
  10269. border-color:transparent;
  10270. }
  10271. #u87985_input.disabled {
  10272. position:absolute;
  10273. left:0px;
  10274. top:0px;
  10275. width:127px;
  10276. height:25px;
  10277. padding:2px 2px 2px 2px;
  10278. font-family:'Microsoft YaHei', sans-serif;
  10279. font-weight:400;
  10280. font-style:normal;
  10281. font-size:10px;
  10282. letter-spacing:normal;
  10283. color:#000000;
  10284. vertical-align:none;
  10285. text-align:left;
  10286. text-transform:none;
  10287. background-color:transparent;
  10288. border-color:transparent;
  10289. }
  10290. #u87985_div {
  10291. border-width:0px;
  10292. position:absolute;
  10293. left:0px;
  10294. top:0px;
  10295. width:127px;
  10296. height:25px;
  10297. background:inherit;
  10298. background-color:rgba(255, 255, 255, 1);
  10299. border:none;
  10300. border-radius:0px;
  10301. -moz-box-shadow:none;
  10302. -webkit-box-shadow:none;
  10303. box-shadow:none;
  10304. font-family:'Microsoft YaHei', sans-serif;
  10305. font-weight:400;
  10306. font-style:normal;
  10307. font-size:10px;
  10308. }
  10309. #u87985 {
  10310. border-width:0px;
  10311. position:absolute;
  10312. left:1409px;
  10313. top:140px;
  10314. width:127px;
  10315. height:25px;
  10316. display:flex;
  10317. font-family:'Microsoft YaHei', sans-serif;
  10318. font-weight:400;
  10319. font-style:normal;
  10320. font-size:10px;
  10321. }
  10322. #u87985 .text {
  10323. position:absolute;
  10324. align-self:center;
  10325. padding:2px 2px 2px 2px;
  10326. box-sizing:border-box;
  10327. width:100%;
  10328. }
  10329. #u87985_div.disabled {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:0px;
  10333. top:0px;
  10334. width:127px;
  10335. height:25px;
  10336. background:inherit;
  10337. background-color:rgba(240, 240, 240, 1);
  10338. border:none;
  10339. border-radius:0px;
  10340. -moz-box-shadow:none;
  10341. -webkit-box-shadow:none;
  10342. box-shadow:none;
  10343. font-family:'Microsoft YaHei', sans-serif;
  10344. font-weight:400;
  10345. font-style:normal;
  10346. font-size:10px;
  10347. }
  10348. #u87985.disabled {
  10349. }
  10350. #u87986 {
  10351. border-width:0px;
  10352. position:absolute;
  10353. left:0px;
  10354. top:0px;
  10355. width:0px;
  10356. height:0px;
  10357. }
  10358. #u87987_div {
  10359. border-width:0px;
  10360. position:absolute;
  10361. left:0px;
  10362. top:0px;
  10363. width:140px;
  10364. height:30px;
  10365. background:inherit;
  10366. background-color:rgba(255, 255, 255, 1);
  10367. box-sizing:border-box;
  10368. border-width:1px;
  10369. border-style:solid;
  10370. border-color:rgba(215, 215, 215, 1);
  10371. border-radius:4px;
  10372. -moz-box-shadow:none;
  10373. -webkit-box-shadow:none;
  10374. box-shadow:none;
  10375. font-size:11px;
  10376. }
  10377. #u87987 {
  10378. border-width:0px;
  10379. position:absolute;
  10380. left:1401px;
  10381. top:178px;
  10382. width:140px;
  10383. height:30px;
  10384. display:flex;
  10385. font-size:11px;
  10386. }
  10387. #u87987 .text {
  10388. position:absolute;
  10389. align-self:center;
  10390. padding:2px 2px 2px 2px;
  10391. box-sizing:border-box;
  10392. width:100%;
  10393. }
  10394. #u87987_text {
  10395. border-width:0px;
  10396. word-wrap:break-word;
  10397. text-transform:none;
  10398. visibility:hidden;
  10399. }
  10400. #u87988_input {
  10401. position:absolute;
  10402. left:0px;
  10403. top:0px;
  10404. width:126px;
  10405. height:23px;
  10406. padding:2px 2px 2px 2px;
  10407. font-family:'ArialMT', 'Arial', sans-serif;
  10408. font-weight:400;
  10409. font-style:normal;
  10410. font-size:11px;
  10411. letter-spacing:normal;
  10412. color:#AAAAAA;
  10413. vertical-align:none;
  10414. text-align:left;
  10415. text-transform:none;
  10416. background-color:transparent;
  10417. border-color:transparent;
  10418. }
  10419. #u87988_input.disabled {
  10420. position:absolute;
  10421. left:0px;
  10422. top:0px;
  10423. width:126px;
  10424. height:23px;
  10425. padding:2px 2px 2px 2px;
  10426. font-family:'ArialMT', 'Arial', sans-serif;
  10427. font-weight:400;
  10428. font-style:normal;
  10429. font-size:11px;
  10430. letter-spacing:normal;
  10431. color:#AAAAAA;
  10432. vertical-align:none;
  10433. text-align:left;
  10434. text-transform:none;
  10435. background-color:transparent;
  10436. border-color:transparent;
  10437. }
  10438. #u87988_div {
  10439. border-width:0px;
  10440. position:absolute;
  10441. left:0px;
  10442. top:0px;
  10443. width:126px;
  10444. height:23px;
  10445. background:inherit;
  10446. background-color:rgba(255, 255, 255, 1);
  10447. border:none;
  10448. border-radius:0px;
  10449. -moz-box-shadow:none;
  10450. -webkit-box-shadow:none;
  10451. box-shadow:none;
  10452. font-size:11px;
  10453. color:#AAAAAA;
  10454. }
  10455. #u87988 {
  10456. border-width:0px;
  10457. position:absolute;
  10458. left:1408px;
  10459. top:180px;
  10460. width:126px;
  10461. height:23px;
  10462. display:flex;
  10463. font-size:11px;
  10464. color:#AAAAAA;
  10465. }
  10466. #u87988 .text {
  10467. position:absolute;
  10468. align-self:flex-start;
  10469. padding:2px 2px 2px 2px;
  10470. box-sizing:border-box;
  10471. width:100%;
  10472. }
  10473. #u87988_div.disabled {
  10474. border-width:0px;
  10475. position:absolute;
  10476. left:0px;
  10477. top:0px;
  10478. width:126px;
  10479. height:23px;
  10480. background:inherit;
  10481. background-color:rgba(240, 240, 240, 1);
  10482. border:none;
  10483. border-radius:0px;
  10484. -moz-box-shadow:none;
  10485. -webkit-box-shadow:none;
  10486. box-shadow:none;
  10487. font-size:11px;
  10488. color:#AAAAAA;
  10489. }
  10490. #u87988.disabled {
  10491. }
  10492. .u87988_input_option {
  10493. font-size:11px;
  10494. }
  10495. #u87989 {
  10496. border-width:0px;
  10497. position:absolute;
  10498. left:0px;
  10499. top:0px;
  10500. width:0px;
  10501. height:0px;
  10502. }
  10503. #u87990_div {
  10504. border-width:0px;
  10505. position:absolute;
  10506. left:0px;
  10507. top:0px;
  10508. width:140px;
  10509. height:30px;
  10510. background:inherit;
  10511. background-color:rgba(255, 255, 255, 1);
  10512. box-sizing:border-box;
  10513. border-width:1px;
  10514. border-style:solid;
  10515. border-color:rgba(201, 201, 201, 1);
  10516. border-radius:4px;
  10517. -moz-box-shadow:none;
  10518. -webkit-box-shadow:none;
  10519. box-shadow:none;
  10520. font-family:'Microsoft YaHei', sans-serif;
  10521. font-weight:400;
  10522. font-style:normal;
  10523. font-size:14px;
  10524. color:#CCCCCC;
  10525. text-align:left;
  10526. }
  10527. #u87990 {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:651px;
  10531. top:178px;
  10532. width:140px;
  10533. height:30px;
  10534. display:flex;
  10535. font-family:'Microsoft YaHei', sans-serif;
  10536. font-weight:400;
  10537. font-style:normal;
  10538. font-size:14px;
  10539. color:#CCCCCC;
  10540. text-align:left;
  10541. }
  10542. #u87990 .text {
  10543. position:absolute;
  10544. align-self:center;
  10545. padding:2px 8px 2px 8px;
  10546. box-sizing:border-box;
  10547. width:100%;
  10548. }
  10549. #u87990_text {
  10550. border-width:0px;
  10551. word-wrap:break-word;
  10552. text-transform:none;
  10553. visibility:hidden;
  10554. }
  10555. #u87991_input {
  10556. position:absolute;
  10557. left:0px;
  10558. top:0px;
  10559. width:127px;
  10560. height:25px;
  10561. padding:2px 2px 2px 2px;
  10562. font-family:'Microsoft YaHei', sans-serif;
  10563. font-weight:400;
  10564. font-style:normal;
  10565. font-size:10px;
  10566. letter-spacing:normal;
  10567. color:#000000;
  10568. vertical-align:none;
  10569. text-align:left;
  10570. text-transform:none;
  10571. background-color:transparent;
  10572. border-color:transparent;
  10573. }
  10574. #u87991_input.disabled {
  10575. position:absolute;
  10576. left:0px;
  10577. top:0px;
  10578. width:127px;
  10579. height:25px;
  10580. padding:2px 2px 2px 2px;
  10581. font-family:'Microsoft YaHei', sans-serif;
  10582. font-weight:400;
  10583. font-style:normal;
  10584. font-size:10px;
  10585. letter-spacing:normal;
  10586. color:#000000;
  10587. vertical-align:none;
  10588. text-align:left;
  10589. text-transform:none;
  10590. background-color:transparent;
  10591. border-color:transparent;
  10592. }
  10593. #u87991_div {
  10594. border-width:0px;
  10595. position:absolute;
  10596. left:0px;
  10597. top:0px;
  10598. width:127px;
  10599. height:25px;
  10600. background:inherit;
  10601. background-color:rgba(255, 255, 255, 1);
  10602. border:none;
  10603. border-radius:0px;
  10604. -moz-box-shadow:none;
  10605. -webkit-box-shadow:none;
  10606. box-shadow:none;
  10607. font-family:'Microsoft YaHei', sans-serif;
  10608. font-weight:400;
  10609. font-style:normal;
  10610. font-size:10px;
  10611. }
  10612. #u87991 {
  10613. border-width:0px;
  10614. position:absolute;
  10615. left:659px;
  10616. top:179px;
  10617. width:127px;
  10618. height:25px;
  10619. display:flex;
  10620. font-family:'Microsoft YaHei', sans-serif;
  10621. font-weight:400;
  10622. font-style:normal;
  10623. font-size:10px;
  10624. }
  10625. #u87991 .text {
  10626. position:absolute;
  10627. align-self:center;
  10628. padding:2px 2px 2px 2px;
  10629. box-sizing:border-box;
  10630. width:100%;
  10631. }
  10632. #u87991_div.disabled {
  10633. border-width:0px;
  10634. position:absolute;
  10635. left:0px;
  10636. top:0px;
  10637. width:127px;
  10638. height:25px;
  10639. background:inherit;
  10640. background-color:rgba(240, 240, 240, 1);
  10641. border:none;
  10642. border-radius:0px;
  10643. -moz-box-shadow:none;
  10644. -webkit-box-shadow:none;
  10645. box-shadow:none;
  10646. font-family:'Microsoft YaHei', sans-serif;
  10647. font-weight:400;
  10648. font-style:normal;
  10649. font-size:10px;
  10650. }
  10651. #u87991.disabled {
  10652. }
  10653. #u87992 {
  10654. border-width:0px;
  10655. position:absolute;
  10656. left:0px;
  10657. top:0px;
  10658. width:0px;
  10659. height:0px;
  10660. }
  10661. #u87993_div {
  10662. border-width:0px;
  10663. position:absolute;
  10664. left:0px;
  10665. top:0px;
  10666. width:140px;
  10667. height:30px;
  10668. background:inherit;
  10669. background-color:rgba(255, 255, 255, 1);
  10670. box-sizing:border-box;
  10671. border-width:1px;
  10672. border-style:solid;
  10673. border-color:rgba(201, 201, 201, 1);
  10674. border-radius:4px;
  10675. -moz-box-shadow:none;
  10676. -webkit-box-shadow:none;
  10677. box-shadow:none;
  10678. font-family:'Microsoft YaHei', sans-serif;
  10679. font-weight:400;
  10680. font-style:normal;
  10681. font-size:14px;
  10682. color:#CCCCCC;
  10683. text-align:left;
  10684. }
  10685. #u87993 {
  10686. border-width:0px;
  10687. position:absolute;
  10688. left:801px;
  10689. top:178px;
  10690. width:140px;
  10691. height:30px;
  10692. display:flex;
  10693. font-family:'Microsoft YaHei', sans-serif;
  10694. font-weight:400;
  10695. font-style:normal;
  10696. font-size:14px;
  10697. color:#CCCCCC;
  10698. text-align:left;
  10699. }
  10700. #u87993 .text {
  10701. position:absolute;
  10702. align-self:center;
  10703. padding:2px 8px 2px 8px;
  10704. box-sizing:border-box;
  10705. width:100%;
  10706. }
  10707. #u87993_text {
  10708. border-width:0px;
  10709. word-wrap:break-word;
  10710. text-transform:none;
  10711. visibility:hidden;
  10712. }
  10713. #u87994_input {
  10714. position:absolute;
  10715. left:0px;
  10716. top:0px;
  10717. width:127px;
  10718. height:25px;
  10719. padding:2px 2px 2px 2px;
  10720. font-family:'Microsoft YaHei', sans-serif;
  10721. font-weight:400;
  10722. font-style:normal;
  10723. font-size:10px;
  10724. letter-spacing:normal;
  10725. color:#000000;
  10726. vertical-align:none;
  10727. text-align:left;
  10728. text-transform:none;
  10729. background-color:transparent;
  10730. border-color:transparent;
  10731. }
  10732. #u87994_input.disabled {
  10733. position:absolute;
  10734. left:0px;
  10735. top:0px;
  10736. width:127px;
  10737. height:25px;
  10738. padding:2px 2px 2px 2px;
  10739. font-family:'Microsoft YaHei', sans-serif;
  10740. font-weight:400;
  10741. font-style:normal;
  10742. font-size:10px;
  10743. letter-spacing:normal;
  10744. color:#000000;
  10745. vertical-align:none;
  10746. text-align:left;
  10747. text-transform:none;
  10748. background-color:transparent;
  10749. border-color:transparent;
  10750. }
  10751. #u87994_div {
  10752. border-width:0px;
  10753. position:absolute;
  10754. left:0px;
  10755. top:0px;
  10756. width:127px;
  10757. height:25px;
  10758. background:inherit;
  10759. background-color:rgba(255, 255, 255, 1);
  10760. border:none;
  10761. border-radius:0px;
  10762. -moz-box-shadow:none;
  10763. -webkit-box-shadow:none;
  10764. box-shadow:none;
  10765. font-family:'Microsoft YaHei', sans-serif;
  10766. font-weight:400;
  10767. font-style:normal;
  10768. font-size:10px;
  10769. }
  10770. #u87994 {
  10771. border-width:0px;
  10772. position:absolute;
  10773. left:809px;
  10774. top:179px;
  10775. width:127px;
  10776. height:25px;
  10777. display:flex;
  10778. font-family:'Microsoft YaHei', sans-serif;
  10779. font-weight:400;
  10780. font-style:normal;
  10781. font-size:10px;
  10782. }
  10783. #u87994 .text {
  10784. position:absolute;
  10785. align-self:center;
  10786. padding:2px 2px 2px 2px;
  10787. box-sizing:border-box;
  10788. width:100%;
  10789. }
  10790. #u87994_div.disabled {
  10791. border-width:0px;
  10792. position:absolute;
  10793. left:0px;
  10794. top:0px;
  10795. width:127px;
  10796. height:25px;
  10797. background:inherit;
  10798. background-color:rgba(240, 240, 240, 1);
  10799. border:none;
  10800. border-radius:0px;
  10801. -moz-box-shadow:none;
  10802. -webkit-box-shadow:none;
  10803. box-shadow:none;
  10804. font-family:'Microsoft YaHei', sans-serif;
  10805. font-weight:400;
  10806. font-style:normal;
  10807. font-size:10px;
  10808. }
  10809. #u87994.disabled {
  10810. }
  10811. #u87995_div {
  10812. border-width:0px;
  10813. position:absolute;
  10814. left:0px;
  10815. top:0px;
  10816. width:1305px;
  10817. height:120px;
  10818. background:inherit;
  10819. background-color:rgba(255, 255, 255, 0);
  10820. box-sizing:border-box;
  10821. border-width:1px;
  10822. border-style:solid;
  10823. border-color:rgba(217, 0, 27, 1);
  10824. border-radius:3px;
  10825. -moz-box-shadow:none;
  10826. -webkit-box-shadow:none;
  10827. box-shadow:none;
  10828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10829. font-weight:400;
  10830. font-style:normal;
  10831. color:#D9001B;
  10832. line-height:25px;
  10833. }
  10834. #u87995 {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:370px;
  10838. top:678px;
  10839. width:1305px;
  10840. height:120px;
  10841. display:flex;
  10842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10843. font-weight:400;
  10844. font-style:normal;
  10845. color:#D9001B;
  10846. line-height:25px;
  10847. }
  10848. #u87995 .text {
  10849. position:absolute;
  10850. align-self:flex-start;
  10851. padding:10px 10px 10px 10px;
  10852. box-sizing:border-box;
  10853. width:100%;
  10854. }
  10855. #u87995_text {
  10856. border-width:0px;
  10857. word-wrap:break-word;
  10858. text-transform:none;
  10859. }
  10860. #u87996_div {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:0px;
  10864. top:0px;
  10865. width:79px;
  10866. height:30px;
  10867. background:inherit;
  10868. background-color:rgba(255, 255, 255, 1);
  10869. box-sizing:border-box;
  10870. border-width:1px;
  10871. border-style:solid;
  10872. border-color:rgba(170, 170, 170, 1);
  10873. border-radius:4px;
  10874. -moz-box-shadow:none;
  10875. -webkit-box-shadow:none;
  10876. box-shadow:none;
  10877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10878. font-weight:400;
  10879. font-style:normal;
  10880. font-size:12px;
  10881. color:#555555;
  10882. }
  10883. #u87996 {
  10884. border-width:0px;
  10885. position:absolute;
  10886. left:1612px;
  10887. top:231px;
  10888. width:79px;
  10889. height:30px;
  10890. display:flex;
  10891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10892. font-weight:400;
  10893. font-style:normal;
  10894. font-size:12px;
  10895. color:#555555;
  10896. }
  10897. #u87996 .text {
  10898. position:absolute;
  10899. align-self:center;
  10900. padding:5px 15px 5px 15px;
  10901. box-sizing:border-box;
  10902. width:100%;
  10903. }
  10904. #u87996_text {
  10905. border-width:0px;
  10906. white-space:nowrap;
  10907. text-transform:none;
  10908. }
  10909. #u87997 {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:0px;
  10913. top:0px;
  10914. width:0px;
  10915. height:0px;
  10916. }
  10917. #u87998_div {
  10918. border-width:0px;
  10919. position:absolute;
  10920. left:0px;
  10921. top:0px;
  10922. width:200px;
  10923. height:1702px;
  10924. background:inherit;
  10925. background-color:rgba(255, 255, 255, 1);
  10926. box-sizing:border-box;
  10927. border-width:1px;
  10928. border-style:solid;
  10929. border-color:rgba(215, 215, 215, 1);
  10930. border-radius:0px;
  10931. -moz-box-shadow:none;
  10932. -webkit-box-shadow:none;
  10933. box-shadow:none;
  10934. }
  10935. #u87998 {
  10936. border-width:0px;
  10937. position:absolute;
  10938. left:120px;
  10939. top:50px;
  10940. width:200px;
  10941. height:1702px;
  10942. display:flex;
  10943. }
  10944. #u87998 .text {
  10945. position:absolute;
  10946. align-self:center;
  10947. padding:2px 2px 2px 2px;
  10948. box-sizing:border-box;
  10949. width:100%;
  10950. }
  10951. #u87998_text {
  10952. border-width:0px;
  10953. word-wrap:break-word;
  10954. text-transform:none;
  10955. visibility:hidden;
  10956. }
  10957. #u87999_div {
  10958. border-width:0px;
  10959. position:absolute;
  10960. left:0px;
  10961. top:0px;
  10962. width:200px;
  10963. height:60px;
  10964. background:inherit;
  10965. background-color:rgba(224, 231, 247, 1);
  10966. border:none;
  10967. border-radius:0px;
  10968. -moz-box-shadow:none;
  10969. -webkit-box-shadow:none;
  10970. box-shadow:none;
  10971. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10972. font-weight:500;
  10973. font-style:normal;
  10974. font-size:18px;
  10975. }
  10976. #u87999 {
  10977. border-width:0px;
  10978. position:absolute;
  10979. left:120px;
  10980. top:50px;
  10981. width:200px;
  10982. height:60px;
  10983. display:flex;
  10984. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10985. font-weight:500;
  10986. font-style:normal;
  10987. font-size:18px;
  10988. }
  10989. #u87999 .text {
  10990. position:absolute;
  10991. align-self:center;
  10992. padding:0px 0px 0px 20px;
  10993. box-sizing:border-box;
  10994. width:100%;
  10995. }
  10996. #u87999_text {
  10997. border-width:0px;
  10998. word-wrap:break-word;
  10999. text-transform:none;
  11000. }
  11001. #u88000_img {
  11002. border-width:0px;
  11003. position:absolute;
  11004. left:0px;
  11005. top:0px;
  11006. width:201px;
  11007. height:2px;
  11008. }
  11009. #u88000 {
  11010. border-width:0px;
  11011. position:absolute;
  11012. left:120px;
  11013. top:1180px;
  11014. width:200px;
  11015. height:1px;
  11016. display:flex;
  11017. }
  11018. #u88000 .text {
  11019. position:absolute;
  11020. align-self:center;
  11021. padding:2px 2px 2px 2px;
  11022. box-sizing:border-box;
  11023. width:100%;
  11024. }
  11025. #u88000_text {
  11026. border-width:0px;
  11027. word-wrap:break-word;
  11028. text-transform:none;
  11029. visibility:hidden;
  11030. }
  11031. #u88001_div {
  11032. border-width:0px;
  11033. position:absolute;
  11034. left:0px;
  11035. top:0px;
  11036. width:97px;
  11037. height:22px;
  11038. background:inherit;
  11039. background-color:rgba(255, 255, 255, 0);
  11040. border:none;
  11041. border-radius:0px;
  11042. -moz-box-shadow:none;
  11043. -webkit-box-shadow:none;
  11044. box-shadow:none;
  11045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11046. font-weight:400;
  11047. font-style:normal;
  11048. font-size:16px;
  11049. }
  11050. #u88001 {
  11051. border-width:0px;
  11052. position:absolute;
  11053. left:147px;
  11054. top:1459px;
  11055. width:97px;
  11056. height:22px;
  11057. display:flex;
  11058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11059. font-weight:400;
  11060. font-style:normal;
  11061. font-size:16px;
  11062. }
  11063. #u88001 .text {
  11064. position:absolute;
  11065. align-self:flex-start;
  11066. padding:0px 0px 0px 0px;
  11067. box-sizing:border-box;
  11068. width:100%;
  11069. }
  11070. #u88001_text {
  11071. border-width:0px;
  11072. word-wrap:break-word;
  11073. text-transform:none;
  11074. }
  11075. #u88002_div {
  11076. border-width:0px;
  11077. position:absolute;
  11078. left:0px;
  11079. top:0px;
  11080. width:49px;
  11081. height:17px;
  11082. background:inherit;
  11083. background-color:rgba(255, 255, 255, 0);
  11084. border:none;
  11085. border-radius:0px;
  11086. -moz-box-shadow:none;
  11087. -webkit-box-shadow:none;
  11088. box-shadow:none;
  11089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11090. font-weight:400;
  11091. font-style:normal;
  11092. font-size:12px;
  11093. color:#AAAAAA;
  11094. }
  11095. #u88002 {
  11096. border-width:0px;
  11097. position:absolute;
  11098. left:147px;
  11099. top:1423px;
  11100. width:49px;
  11101. height:17px;
  11102. display:flex;
  11103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11104. font-weight:400;
  11105. font-style:normal;
  11106. font-size:12px;
  11107. color:#AAAAAA;
  11108. }
  11109. #u88002 .text {
  11110. position:absolute;
  11111. align-self:flex-start;
  11112. padding:0px 0px 0px 0px;
  11113. box-sizing:border-box;
  11114. width:100%;
  11115. }
  11116. #u88002_text {
  11117. border-width:0px;
  11118. white-space:nowrap;
  11119. text-transform:none;
  11120. }
  11121. #u88003_div {
  11122. border-width:0px;
  11123. position:absolute;
  11124. left:0px;
  11125. top:0px;
  11126. width:97px;
  11127. height:22px;
  11128. background:inherit;
  11129. background-color:rgba(255, 255, 255, 0);
  11130. border:none;
  11131. border-radius:0px;
  11132. -moz-box-shadow:none;
  11133. -webkit-box-shadow:none;
  11134. box-shadow:none;
  11135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11136. font-weight:400;
  11137. font-style:normal;
  11138. font-size:16px;
  11139. }
  11140. #u88003 {
  11141. border-width:0px;
  11142. position:absolute;
  11143. left:147px;
  11144. top:340px;
  11145. width:97px;
  11146. height:22px;
  11147. display:flex;
  11148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11149. font-weight:400;
  11150. font-style:normal;
  11151. font-size:16px;
  11152. }
  11153. #u88003 .text {
  11154. position:absolute;
  11155. align-self:flex-start;
  11156. padding:0px 0px 0px 0px;
  11157. box-sizing:border-box;
  11158. width:100%;
  11159. }
  11160. #u88003_text {
  11161. border-width:0px;
  11162. word-wrap:break-word;
  11163. text-transform:none;
  11164. }
  11165. #u88004_div {
  11166. border-width:0px;
  11167. position:absolute;
  11168. left:0px;
  11169. top:0px;
  11170. width:97px;
  11171. height:22px;
  11172. background:inherit;
  11173. background-color:rgba(255, 255, 255, 0);
  11174. border:none;
  11175. border-radius:0px;
  11176. -moz-box-shadow:none;
  11177. -webkit-box-shadow:none;
  11178. box-shadow:none;
  11179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11180. font-weight:400;
  11181. font-style:normal;
  11182. font-size:16px;
  11183. }
  11184. #u88004 {
  11185. border-width:0px;
  11186. position:absolute;
  11187. left:147px;
  11188. top:424px;
  11189. width:97px;
  11190. height:22px;
  11191. display:flex;
  11192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11193. font-weight:400;
  11194. font-style:normal;
  11195. font-size:16px;
  11196. }
  11197. #u88004 .text {
  11198. position:absolute;
  11199. align-self:flex-start;
  11200. padding:0px 0px 0px 0px;
  11201. box-sizing:border-box;
  11202. width:100%;
  11203. }
  11204. #u88004_text {
  11205. border-width:0px;
  11206. word-wrap:break-word;
  11207. text-transform:none;
  11208. }
  11209. #u88005_div {
  11210. border-width:0px;
  11211. position:absolute;
  11212. left:0px;
  11213. top:0px;
  11214. width:97px;
  11215. height:22px;
  11216. background:inherit;
  11217. background-color:rgba(255, 255, 255, 0);
  11218. border:none;
  11219. border-radius:0px;
  11220. -moz-box-shadow:none;
  11221. -webkit-box-shadow:none;
  11222. box-shadow:none;
  11223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11224. font-weight:400;
  11225. font-style:normal;
  11226. font-size:16px;
  11227. }
  11228. #u88005 {
  11229. border-width:0px;
  11230. position:absolute;
  11231. left:147px;
  11232. top:1501px;
  11233. width:97px;
  11234. height:22px;
  11235. display:flex;
  11236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11237. font-weight:400;
  11238. font-style:normal;
  11239. font-size:16px;
  11240. }
  11241. #u88005 .text {
  11242. position:absolute;
  11243. align-self:flex-start;
  11244. padding:0px 0px 0px 0px;
  11245. box-sizing:border-box;
  11246. width:100%;
  11247. }
  11248. #u88005_text {
  11249. border-width:0px;
  11250. word-wrap:break-word;
  11251. text-transform:none;
  11252. }
  11253. #u88006_div {
  11254. border-width:0px;
  11255. position:absolute;
  11256. left:0px;
  11257. top:0px;
  11258. width:129px;
  11259. height:22px;
  11260. background:inherit;
  11261. background-color:rgba(255, 255, 255, 0);
  11262. border:none;
  11263. border-radius:0px;
  11264. -moz-box-shadow:none;
  11265. -webkit-box-shadow:none;
  11266. box-shadow:none;
  11267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11268. font-weight:400;
  11269. font-style:normal;
  11270. font-size:16px;
  11271. }
  11272. #u88006 {
  11273. border-width:0px;
  11274. position:absolute;
  11275. left:147px;
  11276. top:1543px;
  11277. width:129px;
  11278. height:22px;
  11279. display:flex;
  11280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11281. font-weight:400;
  11282. font-style:normal;
  11283. font-size:16px;
  11284. }
  11285. #u88006 .text {
  11286. position:absolute;
  11287. align-self:flex-start;
  11288. padding:0px 0px 0px 0px;
  11289. box-sizing:border-box;
  11290. width:100%;
  11291. }
  11292. #u88006_text {
  11293. border-width:0px;
  11294. white-space:nowrap;
  11295. text-transform:none;
  11296. }
  11297. #u88007_div {
  11298. border-width:0px;
  11299. position:absolute;
  11300. left:0px;
  11301. top:0px;
  11302. width:49px;
  11303. height:17px;
  11304. background:inherit;
  11305. background-color:rgba(255, 255, 255, 0);
  11306. border:none;
  11307. border-radius:0px;
  11308. -moz-box-shadow:none;
  11309. -webkit-box-shadow:none;
  11310. box-shadow:none;
  11311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11312. font-weight:400;
  11313. font-style:normal;
  11314. font-size:12px;
  11315. color:#AAAAAA;
  11316. }
  11317. #u88007 {
  11318. border-width:0px;
  11319. position:absolute;
  11320. left:147px;
  11321. top:120px;
  11322. width:49px;
  11323. height:17px;
  11324. display:flex;
  11325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11326. font-weight:400;
  11327. font-style:normal;
  11328. font-size:12px;
  11329. color:#AAAAAA;
  11330. }
  11331. #u88007 .text {
  11332. position:absolute;
  11333. align-self:flex-start;
  11334. padding:0px 0px 0px 0px;
  11335. box-sizing:border-box;
  11336. width:100%;
  11337. }
  11338. #u88007_text {
  11339. border-width:0px;
  11340. white-space:nowrap;
  11341. text-transform:none;
  11342. }
  11343. #u88008_div {
  11344. border-width:0px;
  11345. position:absolute;
  11346. left:0px;
  11347. top:0px;
  11348. width:97px;
  11349. height:22px;
  11350. background:inherit;
  11351. background-color:rgba(255, 255, 255, 0);
  11352. border:none;
  11353. border-radius:0px;
  11354. -moz-box-shadow:none;
  11355. -webkit-box-shadow:none;
  11356. box-shadow:none;
  11357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11358. font-weight:400;
  11359. font-style:normal;
  11360. font-size:16px;
  11361. }
  11362. #u88008 {
  11363. border-width:0px;
  11364. position:absolute;
  11365. left:147px;
  11366. top:157px;
  11367. width:97px;
  11368. height:22px;
  11369. display:flex;
  11370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11371. font-weight:400;
  11372. font-style:normal;
  11373. font-size:16px;
  11374. }
  11375. #u88008 .text {
  11376. position:absolute;
  11377. align-self:flex-start;
  11378. padding:0px 0px 0px 0px;
  11379. box-sizing:border-box;
  11380. width:100%;
  11381. }
  11382. #u88008_text {
  11383. border-width:0px;
  11384. word-wrap:break-word;
  11385. text-transform:none;
  11386. }
  11387. #u88009_img {
  11388. border-width:0px;
  11389. position:absolute;
  11390. left:0px;
  11391. top:0px;
  11392. width:201px;
  11393. height:2px;
  11394. }
  11395. #u88009 {
  11396. border-width:0px;
  11397. position:absolute;
  11398. left:120px;
  11399. top:241px;
  11400. width:200px;
  11401. height:1px;
  11402. display:flex;
  11403. }
  11404. #u88009 .text {
  11405. position:absolute;
  11406. align-self:center;
  11407. padding:2px 2px 2px 2px;
  11408. box-sizing:border-box;
  11409. width:100%;
  11410. }
  11411. #u88009_text {
  11412. border-width:0px;
  11413. word-wrap:break-word;
  11414. text-transform:none;
  11415. visibility:hidden;
  11416. }
  11417. #u88010_div {
  11418. border-width:0px;
  11419. position:absolute;
  11420. left:0px;
  11421. top:0px;
  11422. width:49px;
  11423. height:17px;
  11424. background:inherit;
  11425. background-color:rgba(255, 255, 255, 0);
  11426. border:none;
  11427. border-radius:0px;
  11428. -moz-box-shadow:none;
  11429. -webkit-box-shadow:none;
  11430. box-shadow:none;
  11431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11432. font-weight:400;
  11433. font-style:normal;
  11434. font-size:12px;
  11435. color:#AAAAAA;
  11436. }
  11437. #u88010 {
  11438. border-width:0px;
  11439. position:absolute;
  11440. left:147px;
  11441. top:261px;
  11442. width:49px;
  11443. height:17px;
  11444. display:flex;
  11445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11446. font-weight:400;
  11447. font-style:normal;
  11448. font-size:12px;
  11449. color:#AAAAAA;
  11450. }
  11451. #u88010 .text {
  11452. position:absolute;
  11453. align-self:flex-start;
  11454. padding:0px 0px 0px 0px;
  11455. box-sizing:border-box;
  11456. width:100%;
  11457. }
  11458. #u88010_text {
  11459. border-width:0px;
  11460. white-space:nowrap;
  11461. text-transform:none;
  11462. }
  11463. #u88011_div {
  11464. border-width:0px;
  11465. position:absolute;
  11466. left:0px;
  11467. top:0px;
  11468. width:97px;
  11469. height:22px;
  11470. background:inherit;
  11471. background-color:rgba(255, 255, 255, 0);
  11472. border:none;
  11473. border-radius:0px;
  11474. -moz-box-shadow:none;
  11475. -webkit-box-shadow:none;
  11476. box-shadow:none;
  11477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11478. font-weight:400;
  11479. font-style:normal;
  11480. font-size:16px;
  11481. }
  11482. #u88011 {
  11483. border-width:0px;
  11484. position:absolute;
  11485. left:147px;
  11486. top:298px;
  11487. width:97px;
  11488. height:22px;
  11489. display:flex;
  11490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11491. font-weight:400;
  11492. font-style:normal;
  11493. font-size:16px;
  11494. }
  11495. #u88011 .text {
  11496. position:absolute;
  11497. align-self:flex-start;
  11498. padding:0px 0px 0px 0px;
  11499. box-sizing:border-box;
  11500. width:100%;
  11501. }
  11502. #u88011_text {
  11503. border-width:0px;
  11504. word-wrap:break-word;
  11505. text-transform:none;
  11506. }
  11507. #u88012_div {
  11508. border-width:0px;
  11509. position:absolute;
  11510. left:0px;
  11511. top:0px;
  11512. width:97px;
  11513. height:22px;
  11514. background:inherit;
  11515. background-color:rgba(255, 255, 255, 0);
  11516. border:none;
  11517. border-radius:0px;
  11518. -moz-box-shadow:none;
  11519. -webkit-box-shadow:none;
  11520. box-shadow:none;
  11521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11522. font-weight:400;
  11523. font-style:normal;
  11524. font-size:16px;
  11525. }
  11526. #u88012 {
  11527. border-width:0px;
  11528. position:absolute;
  11529. left:147px;
  11530. top:199px;
  11531. width:97px;
  11532. height:22px;
  11533. display:flex;
  11534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11535. font-weight:400;
  11536. font-style:normal;
  11537. font-size:16px;
  11538. }
  11539. #u88012 .text {
  11540. position:absolute;
  11541. align-self:flex-start;
  11542. padding:0px 0px 0px 0px;
  11543. box-sizing:border-box;
  11544. width:100%;
  11545. }
  11546. #u88012_text {
  11547. border-width:0px;
  11548. word-wrap:break-word;
  11549. text-transform:none;
  11550. }
  11551. #u88013_div {
  11552. border-width:0px;
  11553. position:absolute;
  11554. left:0px;
  11555. top:0px;
  11556. width:97px;
  11557. height:22px;
  11558. background:inherit;
  11559. background-color:rgba(255, 255, 255, 0);
  11560. border:none;
  11561. border-radius:0px;
  11562. -moz-box-shadow:none;
  11563. -webkit-box-shadow:none;
  11564. box-shadow:none;
  11565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11566. font-weight:400;
  11567. font-style:normal;
  11568. font-size:16px;
  11569. }
  11570. #u88013 {
  11571. border-width:0px;
  11572. position:absolute;
  11573. left:147px;
  11574. top:382px;
  11575. width:97px;
  11576. height:22px;
  11577. display:flex;
  11578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11579. font-weight:400;
  11580. font-style:normal;
  11581. font-size:16px;
  11582. }
  11583. #u88013 .text {
  11584. position:absolute;
  11585. align-self:flex-start;
  11586. padding:0px 0px 0px 0px;
  11587. box-sizing:border-box;
  11588. width:100%;
  11589. }
  11590. #u88013_text {
  11591. border-width:0px;
  11592. word-wrap:break-word;
  11593. text-transform:none;
  11594. }
  11595. #u88014_div {
  11596. border-width:0px;
  11597. position:absolute;
  11598. left:0px;
  11599. top:0px;
  11600. width:97px;
  11601. height:22px;
  11602. background:inherit;
  11603. background-color:rgba(255, 255, 255, 0);
  11604. border:none;
  11605. border-radius:0px;
  11606. -moz-box-shadow:none;
  11607. -webkit-box-shadow:none;
  11608. box-shadow:none;
  11609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11610. font-weight:400;
  11611. font-style:normal;
  11612. font-size:16px;
  11613. }
  11614. #u88014 {
  11615. border-width:0px;
  11616. position:absolute;
  11617. left:147px;
  11618. top:466px;
  11619. width:97px;
  11620. height:22px;
  11621. display:flex;
  11622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11623. font-weight:400;
  11624. font-style:normal;
  11625. font-size:16px;
  11626. }
  11627. #u88014 .text {
  11628. position:absolute;
  11629. align-self:flex-start;
  11630. padding:0px 0px 0px 0px;
  11631. box-sizing:border-box;
  11632. width:100%;
  11633. }
  11634. #u88014_text {
  11635. border-width:0px;
  11636. word-wrap:break-word;
  11637. text-transform:none;
  11638. }
  11639. #u88015_div {
  11640. border-width:0px;
  11641. position:absolute;
  11642. left:0px;
  11643. top:0px;
  11644. width:97px;
  11645. height:22px;
  11646. background:inherit;
  11647. background-color:rgba(255, 255, 255, 0);
  11648. border:none;
  11649. border-radius:0px;
  11650. -moz-box-shadow:none;
  11651. -webkit-box-shadow:none;
  11652. box-shadow:none;
  11653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11654. font-weight:400;
  11655. font-style:normal;
  11656. font-size:16px;
  11657. }
  11658. #u88015 {
  11659. border-width:0px;
  11660. position:absolute;
  11661. left:147px;
  11662. top:508px;
  11663. width:97px;
  11664. height:22px;
  11665. display:flex;
  11666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11667. font-weight:400;
  11668. font-style:normal;
  11669. font-size:16px;
  11670. }
  11671. #u88015 .text {
  11672. position:absolute;
  11673. align-self:flex-start;
  11674. padding:0px 0px 0px 0px;
  11675. box-sizing:border-box;
  11676. width:100%;
  11677. }
  11678. #u88015_text {
  11679. border-width:0px;
  11680. word-wrap:break-word;
  11681. text-transform:none;
  11682. }
  11683. #u88016_div {
  11684. border-width:0px;
  11685. position:absolute;
  11686. left:0px;
  11687. top:0px;
  11688. width:97px;
  11689. height:22px;
  11690. background:inherit;
  11691. background-color:rgba(255, 255, 255, 0);
  11692. border:none;
  11693. border-radius:0px;
  11694. -moz-box-shadow:none;
  11695. -webkit-box-shadow:none;
  11696. box-shadow:none;
  11697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11698. font-weight:400;
  11699. font-style:normal;
  11700. font-size:16px;
  11701. }
  11702. #u88016 {
  11703. border-width:0px;
  11704. position:absolute;
  11705. left:147px;
  11706. top:550px;
  11707. width:97px;
  11708. height:22px;
  11709. display:flex;
  11710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11711. font-weight:400;
  11712. font-style:normal;
  11713. font-size:16px;
  11714. }
  11715. #u88016 .text {
  11716. position:absolute;
  11717. align-self:flex-start;
  11718. padding:0px 0px 0px 0px;
  11719. box-sizing:border-box;
  11720. width:100%;
  11721. }
  11722. #u88016_text {
  11723. border-width:0px;
  11724. word-wrap:break-word;
  11725. text-transform:none;
  11726. }
  11727. #u88017_div {
  11728. border-width:0px;
  11729. position:absolute;
  11730. left:0px;
  11731. top:0px;
  11732. width:97px;
  11733. height:22px;
  11734. background:inherit;
  11735. background-color:rgba(255, 255, 255, 0);
  11736. border:none;
  11737. border-radius:0px;
  11738. -moz-box-shadow:none;
  11739. -webkit-box-shadow:none;
  11740. box-shadow:none;
  11741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11742. font-weight:400;
  11743. font-style:normal;
  11744. font-size:16px;
  11745. }
  11746. #u88017 {
  11747. border-width:0px;
  11748. position:absolute;
  11749. left:147px;
  11750. top:592px;
  11751. width:97px;
  11752. height:22px;
  11753. display:flex;
  11754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11755. font-weight:400;
  11756. font-style:normal;
  11757. font-size:16px;
  11758. }
  11759. #u88017 .text {
  11760. position:absolute;
  11761. align-self:flex-start;
  11762. padding:0px 0px 0px 0px;
  11763. box-sizing:border-box;
  11764. width:100%;
  11765. }
  11766. #u88017_text {
  11767. border-width:0px;
  11768. word-wrap:break-word;
  11769. text-transform:none;
  11770. }
  11771. #u88018_div {
  11772. border-width:0px;
  11773. position:absolute;
  11774. left:0px;
  11775. top:0px;
  11776. width:97px;
  11777. height:22px;
  11778. background:inherit;
  11779. background-color:rgba(255, 255, 255, 0);
  11780. border:none;
  11781. border-radius:0px;
  11782. -moz-box-shadow:none;
  11783. -webkit-box-shadow:none;
  11784. box-shadow:none;
  11785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11786. font-weight:400;
  11787. font-style:normal;
  11788. font-size:16px;
  11789. }
  11790. #u88018 {
  11791. border-width:0px;
  11792. position:absolute;
  11793. left:147px;
  11794. top:634px;
  11795. width:97px;
  11796. height:22px;
  11797. display:flex;
  11798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11799. font-weight:400;
  11800. font-style:normal;
  11801. font-size:16px;
  11802. }
  11803. #u88018 .text {
  11804. position:absolute;
  11805. align-self:flex-start;
  11806. padding:0px 0px 0px 0px;
  11807. box-sizing:border-box;
  11808. width:100%;
  11809. }
  11810. #u88018_text {
  11811. border-width:0px;
  11812. word-wrap:break-word;
  11813. text-transform:none;
  11814. }
  11815. #u88019_img {
  11816. border-width:0px;
  11817. position:absolute;
  11818. left:0px;
  11819. top:0px;
  11820. width:201px;
  11821. height:2px;
  11822. }
  11823. #u88019 {
  11824. border-width:0px;
  11825. position:absolute;
  11826. left:120px;
  11827. top:680px;
  11828. width:200px;
  11829. height:1px;
  11830. display:flex;
  11831. }
  11832. #u88019 .text {
  11833. position:absolute;
  11834. align-self:center;
  11835. padding:2px 2px 2px 2px;
  11836. box-sizing:border-box;
  11837. width:100%;
  11838. }
  11839. #u88019_text {
  11840. border-width:0px;
  11841. word-wrap:break-word;
  11842. text-transform:none;
  11843. visibility:hidden;
  11844. }
  11845. #u88020_div {
  11846. border-width:0px;
  11847. position:absolute;
  11848. left:0px;
  11849. top:0px;
  11850. width:49px;
  11851. height:17px;
  11852. background:inherit;
  11853. background-color:rgba(255, 255, 255, 0);
  11854. border:none;
  11855. border-radius:0px;
  11856. -moz-box-shadow:none;
  11857. -webkit-box-shadow:none;
  11858. box-shadow:none;
  11859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11860. font-weight:400;
  11861. font-style:normal;
  11862. font-size:12px;
  11863. color:#AAAAAA;
  11864. }
  11865. #u88020 {
  11866. border-width:0px;
  11867. position:absolute;
  11868. left:147px;
  11869. top:886px;
  11870. width:49px;
  11871. height:17px;
  11872. display:flex;
  11873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11874. font-weight:400;
  11875. font-style:normal;
  11876. font-size:12px;
  11877. color:#AAAAAA;
  11878. }
  11879. #u88020 .text {
  11880. position:absolute;
  11881. align-self:flex-start;
  11882. padding:0px 0px 0px 0px;
  11883. box-sizing:border-box;
  11884. width:100%;
  11885. }
  11886. #u88020_text {
  11887. border-width:0px;
  11888. white-space:nowrap;
  11889. text-transform:none;
  11890. }
  11891. #u88021_div {
  11892. border-width:0px;
  11893. position:absolute;
  11894. left:0px;
  11895. top:0px;
  11896. width:113px;
  11897. height:22px;
  11898. background:inherit;
  11899. background-color:rgba(255, 255, 255, 0);
  11900. border:none;
  11901. border-radius:0px;
  11902. -moz-box-shadow:none;
  11903. -webkit-box-shadow:none;
  11904. box-shadow:none;
  11905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11906. font-weight:400;
  11907. font-style:normal;
  11908. font-size:16px;
  11909. }
  11910. #u88021 {
  11911. border-width:0px;
  11912. position:absolute;
  11913. left:147px;
  11914. top:923px;
  11915. width:113px;
  11916. height:22px;
  11917. display:flex;
  11918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11919. font-weight:400;
  11920. font-style:normal;
  11921. font-size:16px;
  11922. }
  11923. #u88021 .text {
  11924. position:absolute;
  11925. align-self:flex-start;
  11926. padding:0px 0px 0px 0px;
  11927. box-sizing:border-box;
  11928. width:100%;
  11929. }
  11930. #u88021_text {
  11931. border-width:0px;
  11932. white-space:nowrap;
  11933. text-transform:none;
  11934. }
  11935. #u88022_div {
  11936. border-width:0px;
  11937. position:absolute;
  11938. left:0px;
  11939. top:0px;
  11940. width:145px;
  11941. height:22px;
  11942. background:inherit;
  11943. background-color:rgba(255, 255, 255, 0);
  11944. border:none;
  11945. border-radius:0px;
  11946. -moz-box-shadow:none;
  11947. -webkit-box-shadow:none;
  11948. box-shadow:none;
  11949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11950. font-weight:400;
  11951. font-style:normal;
  11952. font-size:16px;
  11953. }
  11954. #u88022 {
  11955. border-width:0px;
  11956. position:absolute;
  11957. left:147px;
  11958. top:965px;
  11959. width:145px;
  11960. height:22px;
  11961. display:flex;
  11962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11963. font-weight:400;
  11964. font-style:normal;
  11965. font-size:16px;
  11966. }
  11967. #u88022 .text {
  11968. position:absolute;
  11969. align-self:flex-start;
  11970. padding:0px 0px 0px 0px;
  11971. box-sizing:border-box;
  11972. width:100%;
  11973. }
  11974. #u88022_text {
  11975. border-width:0px;
  11976. white-space:nowrap;
  11977. text-transform:none;
  11978. }
  11979. #u88023_div {
  11980. border-width:0px;
  11981. position:absolute;
  11982. left:0px;
  11983. top:0px;
  11984. width:145px;
  11985. height:22px;
  11986. background:inherit;
  11987. background-color:rgba(255, 255, 255, 0);
  11988. border:none;
  11989. border-radius:0px;
  11990. -moz-box-shadow:none;
  11991. -webkit-box-shadow:none;
  11992. box-shadow:none;
  11993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11994. font-weight:400;
  11995. font-style:normal;
  11996. font-size:16px;
  11997. }
  11998. #u88023 {
  11999. border-width:0px;
  12000. position:absolute;
  12001. left:147px;
  12002. top:1007px;
  12003. width:145px;
  12004. height:22px;
  12005. display:flex;
  12006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12007. font-weight:400;
  12008. font-style:normal;
  12009. font-size:16px;
  12010. }
  12011. #u88023 .text {
  12012. position:absolute;
  12013. align-self:flex-start;
  12014. padding:0px 0px 0px 0px;
  12015. box-sizing:border-box;
  12016. width:100%;
  12017. }
  12018. #u88023_text {
  12019. border-width:0px;
  12020. white-space:nowrap;
  12021. text-transform:none;
  12022. }
  12023. #u88024_div {
  12024. border-width:0px;
  12025. position:absolute;
  12026. left:0px;
  12027. top:0px;
  12028. width:145px;
  12029. height:22px;
  12030. background:inherit;
  12031. background-color:rgba(255, 255, 255, 0);
  12032. border:none;
  12033. border-radius:0px;
  12034. -moz-box-shadow:none;
  12035. -webkit-box-shadow:none;
  12036. box-shadow:none;
  12037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12038. font-weight:400;
  12039. font-style:normal;
  12040. font-size:16px;
  12041. }
  12042. #u88024 {
  12043. border-width:0px;
  12044. position:absolute;
  12045. left:147px;
  12046. top:1049px;
  12047. width:145px;
  12048. height:22px;
  12049. display:flex;
  12050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12051. font-weight:400;
  12052. font-style:normal;
  12053. font-size:16px;
  12054. }
  12055. #u88024 .text {
  12056. position:absolute;
  12057. align-self:flex-start;
  12058. padding:0px 0px 0px 0px;
  12059. box-sizing:border-box;
  12060. width:100%;
  12061. }
  12062. #u88024_text {
  12063. border-width:0px;
  12064. white-space:nowrap;
  12065. text-transform:none;
  12066. }
  12067. #u88025_div {
  12068. border-width:0px;
  12069. position:absolute;
  12070. left:0px;
  12071. top:0px;
  12072. width:145px;
  12073. height:22px;
  12074. background:inherit;
  12075. background-color:rgba(255, 255, 255, 0);
  12076. border:none;
  12077. border-radius:0px;
  12078. -moz-box-shadow:none;
  12079. -webkit-box-shadow:none;
  12080. box-shadow:none;
  12081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12082. font-weight:400;
  12083. font-style:normal;
  12084. font-size:16px;
  12085. }
  12086. #u88025 {
  12087. border-width:0px;
  12088. position:absolute;
  12089. left:147px;
  12090. top:1091px;
  12091. width:145px;
  12092. height:22px;
  12093. display:flex;
  12094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12095. font-weight:400;
  12096. font-style:normal;
  12097. font-size:16px;
  12098. }
  12099. #u88025 .text {
  12100. position:absolute;
  12101. align-self:flex-start;
  12102. padding:0px 0px 0px 0px;
  12103. box-sizing:border-box;
  12104. width:100%;
  12105. }
  12106. #u88025_text {
  12107. border-width:0px;
  12108. white-space:nowrap;
  12109. text-transform:none;
  12110. }
  12111. #u88026_div {
  12112. border-width:0px;
  12113. position:absolute;
  12114. left:0px;
  12115. top:0px;
  12116. width:113px;
  12117. height:22px;
  12118. background:inherit;
  12119. background-color:rgba(255, 255, 255, 0);
  12120. border:none;
  12121. border-radius:0px;
  12122. -moz-box-shadow:none;
  12123. -webkit-box-shadow:none;
  12124. box-shadow:none;
  12125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12126. font-weight:400;
  12127. font-style:normal;
  12128. font-size:16px;
  12129. }
  12130. #u88026 {
  12131. border-width:0px;
  12132. position:absolute;
  12133. left:147px;
  12134. top:1133px;
  12135. width:113px;
  12136. height:22px;
  12137. display:flex;
  12138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12139. font-weight:400;
  12140. font-style:normal;
  12141. font-size:16px;
  12142. }
  12143. #u88026 .text {
  12144. position:absolute;
  12145. align-self:flex-start;
  12146. padding:0px 0px 0px 0px;
  12147. box-sizing:border-box;
  12148. width:100%;
  12149. }
  12150. #u88026_text {
  12151. border-width:0px;
  12152. white-space:nowrap;
  12153. text-transform:none;
  12154. }
  12155. #u88027_div {
  12156. border-width:0px;
  12157. position:absolute;
  12158. left:0px;
  12159. top:0px;
  12160. width:97px;
  12161. height:22px;
  12162. background:inherit;
  12163. background-color:rgba(255, 255, 255, 0);
  12164. border:none;
  12165. border-radius:0px;
  12166. -moz-box-shadow:none;
  12167. -webkit-box-shadow:none;
  12168. box-shadow:none;
  12169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12170. font-weight:400;
  12171. font-style:normal;
  12172. font-size:16px;
  12173. }
  12174. #u88027 {
  12175. border-width:0px;
  12176. position:absolute;
  12177. left:147px;
  12178. top:1585px;
  12179. width:97px;
  12180. height:22px;
  12181. display:flex;
  12182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12183. font-weight:400;
  12184. font-style:normal;
  12185. font-size:16px;
  12186. }
  12187. #u88027 .text {
  12188. position:absolute;
  12189. align-self:flex-start;
  12190. padding:0px 0px 0px 0px;
  12191. box-sizing:border-box;
  12192. width:100%;
  12193. }
  12194. #u88027_text {
  12195. border-width:0px;
  12196. white-space:nowrap;
  12197. text-transform:none;
  12198. }
  12199. #u88028_div {
  12200. border-width:0px;
  12201. position:absolute;
  12202. left:0px;
  12203. top:0px;
  12204. width:97px;
  12205. height:22px;
  12206. background:inherit;
  12207. background-color:rgba(255, 255, 255, 0);
  12208. border:none;
  12209. border-radius:0px;
  12210. -moz-box-shadow:none;
  12211. -webkit-box-shadow:none;
  12212. box-shadow:none;
  12213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12214. font-weight:400;
  12215. font-style:normal;
  12216. font-size:16px;
  12217. }
  12218. #u88028 {
  12219. border-width:0px;
  12220. position:absolute;
  12221. left:147px;
  12222. top:1627px;
  12223. width:97px;
  12224. height:22px;
  12225. display:flex;
  12226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12227. font-weight:400;
  12228. font-style:normal;
  12229. font-size:16px;
  12230. }
  12231. #u88028 .text {
  12232. position:absolute;
  12233. align-self:flex-start;
  12234. padding:0px 0px 0px 0px;
  12235. box-sizing:border-box;
  12236. width:100%;
  12237. }
  12238. #u88028_text {
  12239. border-width:0px;
  12240. white-space:nowrap;
  12241. text-transform:none;
  12242. }
  12243. #u88029_div {
  12244. border-width:0px;
  12245. position:absolute;
  12246. left:0px;
  12247. top:0px;
  12248. width:97px;
  12249. height:22px;
  12250. background:inherit;
  12251. background-color:rgba(255, 255, 255, 0);
  12252. border:none;
  12253. border-radius:0px;
  12254. -moz-box-shadow:none;
  12255. -webkit-box-shadow:none;
  12256. box-shadow:none;
  12257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12258. font-weight:400;
  12259. font-style:normal;
  12260. font-size:16px;
  12261. }
  12262. #u88029 {
  12263. border-width:0px;
  12264. position:absolute;
  12265. left:147px;
  12266. top:1669px;
  12267. width:97px;
  12268. height:22px;
  12269. display:flex;
  12270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12271. font-weight:400;
  12272. font-style:normal;
  12273. font-size:16px;
  12274. }
  12275. #u88029 .text {
  12276. position:absolute;
  12277. align-self:flex-start;
  12278. padding:0px 0px 0px 0px;
  12279. box-sizing:border-box;
  12280. width:100%;
  12281. }
  12282. #u88029_text {
  12283. border-width:0px;
  12284. white-space:nowrap;
  12285. text-transform:none;
  12286. }
  12287. #u88030_div {
  12288. border-width:0px;
  12289. position:absolute;
  12290. left:0px;
  12291. top:0px;
  12292. width:97px;
  12293. height:22px;
  12294. background:inherit;
  12295. background-color:rgba(255, 255, 255, 0);
  12296. border:none;
  12297. border-radius:0px;
  12298. -moz-box-shadow:none;
  12299. -webkit-box-shadow:none;
  12300. box-shadow:none;
  12301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12302. font-weight:400;
  12303. font-style:normal;
  12304. font-size:16px;
  12305. }
  12306. #u88030 {
  12307. border-width:0px;
  12308. position:absolute;
  12309. left:147px;
  12310. top:1711px;
  12311. width:97px;
  12312. height:22px;
  12313. display:flex;
  12314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12315. font-weight:400;
  12316. font-style:normal;
  12317. font-size:16px;
  12318. }
  12319. #u88030 .text {
  12320. position:absolute;
  12321. align-self:flex-start;
  12322. padding:0px 0px 0px 0px;
  12323. box-sizing:border-box;
  12324. width:100%;
  12325. }
  12326. #u88030_text {
  12327. border-width:0px;
  12328. white-space:nowrap;
  12329. text-transform:none;
  12330. }
  12331. #u88031_div {
  12332. border-width:0px;
  12333. position:absolute;
  12334. left:0px;
  12335. top:0px;
  12336. width:97px;
  12337. height:22px;
  12338. background:inherit;
  12339. background-color:rgba(255, 255, 255, 0);
  12340. border:none;
  12341. border-radius:0px;
  12342. -moz-box-shadow:none;
  12343. -webkit-box-shadow:none;
  12344. box-shadow:none;
  12345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12346. font-weight:400;
  12347. font-style:normal;
  12348. font-size:16px;
  12349. }
  12350. #u88031 {
  12351. border-width:0px;
  12352. position:absolute;
  12353. left:147px;
  12354. top:824px;
  12355. width:97px;
  12356. height:22px;
  12357. display:flex;
  12358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12359. font-weight:400;
  12360. font-style:normal;
  12361. font-size:16px;
  12362. }
  12363. #u88031 .text {
  12364. position:absolute;
  12365. align-self:flex-start;
  12366. padding:0px 0px 0px 0px;
  12367. box-sizing:border-box;
  12368. width:100%;
  12369. }
  12370. #u88031_text {
  12371. border-width:0px;
  12372. word-wrap:break-word;
  12373. text-transform:none;
  12374. }
  12375. #u88032_div {
  12376. border-width:0px;
  12377. position:absolute;
  12378. left:0px;
  12379. top:0px;
  12380. width:97px;
  12381. height:22px;
  12382. background:inherit;
  12383. background-color:rgba(255, 255, 255, 0);
  12384. border:none;
  12385. border-radius:0px;
  12386. -moz-box-shadow:none;
  12387. -webkit-box-shadow:none;
  12388. box-shadow:none;
  12389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12390. font-weight:400;
  12391. font-style:normal;
  12392. font-size:16px;
  12393. }
  12394. #u88032 {
  12395. border-width:0px;
  12396. position:absolute;
  12397. left:147px;
  12398. top:738px;
  12399. width:97px;
  12400. height:22px;
  12401. display:flex;
  12402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12403. font-weight:400;
  12404. font-style:normal;
  12405. font-size:16px;
  12406. }
  12407. #u88032 .text {
  12408. position:absolute;
  12409. align-self:flex-start;
  12410. padding:0px 0px 0px 0px;
  12411. box-sizing:border-box;
  12412. width:100%;
  12413. }
  12414. #u88032_text {
  12415. border-width:0px;
  12416. word-wrap:break-word;
  12417. text-transform:none;
  12418. }
  12419. #u88033_div {
  12420. border-width:0px;
  12421. position:absolute;
  12422. left:0px;
  12423. top:0px;
  12424. width:49px;
  12425. height:17px;
  12426. background:inherit;
  12427. background-color:rgba(255, 255, 255, 0);
  12428. border:none;
  12429. border-radius:0px;
  12430. -moz-box-shadow:none;
  12431. -webkit-box-shadow:none;
  12432. box-shadow:none;
  12433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12434. font-weight:400;
  12435. font-style:normal;
  12436. font-size:12px;
  12437. color:#AAAAAA;
  12438. }
  12439. #u88033 {
  12440. border-width:0px;
  12441. position:absolute;
  12442. left:147px;
  12443. top:701px;
  12444. width:49px;
  12445. height:17px;
  12446. display:flex;
  12447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12448. font-weight:400;
  12449. font-style:normal;
  12450. font-size:12px;
  12451. color:#AAAAAA;
  12452. }
  12453. #u88033 .text {
  12454. position:absolute;
  12455. align-self:flex-start;
  12456. padding:0px 0px 0px 0px;
  12457. box-sizing:border-box;
  12458. width:100%;
  12459. }
  12460. #u88033_text {
  12461. border-width:0px;
  12462. white-space:nowrap;
  12463. text-transform:none;
  12464. }
  12465. #u88034_div {
  12466. border-width:0px;
  12467. position:absolute;
  12468. left:0px;
  12469. top:0px;
  12470. width:97px;
  12471. height:22px;
  12472. background:inherit;
  12473. background-color:rgba(255, 255, 255, 0);
  12474. border:none;
  12475. border-radius:0px;
  12476. -moz-box-shadow:none;
  12477. -webkit-box-shadow:none;
  12478. box-shadow:none;
  12479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12480. font-weight:400;
  12481. font-style:normal;
  12482. font-size:16px;
  12483. }
  12484. #u88034 {
  12485. border-width:0px;
  12486. position:absolute;
  12487. left:147px;
  12488. top:780px;
  12489. width:97px;
  12490. height:22px;
  12491. display:flex;
  12492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12493. font-weight:400;
  12494. font-style:normal;
  12495. font-size:16px;
  12496. }
  12497. #u88034 .text {
  12498. position:absolute;
  12499. align-self:flex-start;
  12500. padding:0px 0px 0px 0px;
  12501. box-sizing:border-box;
  12502. width:100%;
  12503. }
  12504. #u88034_text {
  12505. border-width:0px;
  12506. word-wrap:break-word;
  12507. text-transform:none;
  12508. }
  12509. #u88035_img {
  12510. border-width:0px;
  12511. position:absolute;
  12512. left:0px;
  12513. top:0px;
  12514. width:201px;
  12515. height:2px;
  12516. }
  12517. #u88035 {
  12518. border-width:0px;
  12519. position:absolute;
  12520. left:120px;
  12521. top:866px;
  12522. width:200px;
  12523. height:1px;
  12524. display:flex;
  12525. }
  12526. #u88035 .text {
  12527. position:absolute;
  12528. align-self:center;
  12529. padding:2px 2px 2px 2px;
  12530. box-sizing:border-box;
  12531. width:100%;
  12532. }
  12533. #u88035_text {
  12534. border-width:0px;
  12535. word-wrap:break-word;
  12536. text-transform:none;
  12537. visibility:hidden;
  12538. }
  12539. #u88036_div {
  12540. border-width:0px;
  12541. position:absolute;
  12542. left:0px;
  12543. top:0px;
  12544. width:97px;
  12545. height:22px;
  12546. background:inherit;
  12547. background-color:rgba(255, 255, 255, 0);
  12548. border:none;
  12549. border-radius:0px;
  12550. -moz-box-shadow:none;
  12551. -webkit-box-shadow:none;
  12552. box-shadow:none;
  12553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12554. font-weight:400;
  12555. font-style:normal;
  12556. font-size:16px;
  12557. }
  12558. #u88036 {
  12559. border-width:0px;
  12560. position:absolute;
  12561. left:147px;
  12562. top:1237px;
  12563. width:97px;
  12564. height:22px;
  12565. display:flex;
  12566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12567. font-weight:400;
  12568. font-style:normal;
  12569. font-size:16px;
  12570. }
  12571. #u88036 .text {
  12572. position:absolute;
  12573. align-self:flex-start;
  12574. padding:0px 0px 0px 0px;
  12575. box-sizing:border-box;
  12576. width:100%;
  12577. }
  12578. #u88036_text {
  12579. border-width:0px;
  12580. word-wrap:break-word;
  12581. text-transform:none;
  12582. }
  12583. #u88037_div {
  12584. border-width:0px;
  12585. position:absolute;
  12586. left:0px;
  12587. top:0px;
  12588. width:49px;
  12589. height:17px;
  12590. background:inherit;
  12591. background-color:rgba(255, 255, 255, 0);
  12592. border:none;
  12593. border-radius:0px;
  12594. -moz-box-shadow:none;
  12595. -webkit-box-shadow:none;
  12596. box-shadow:none;
  12597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12598. font-weight:400;
  12599. font-style:normal;
  12600. font-size:12px;
  12601. color:#AAAAAA;
  12602. }
  12603. #u88037 {
  12604. border-width:0px;
  12605. position:absolute;
  12606. left:147px;
  12607. top:1201px;
  12608. width:49px;
  12609. height:17px;
  12610. display:flex;
  12611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12612. font-weight:400;
  12613. font-style:normal;
  12614. font-size:12px;
  12615. color:#AAAAAA;
  12616. }
  12617. #u88037 .text {
  12618. position:absolute;
  12619. align-self:flex-start;
  12620. padding:0px 0px 0px 0px;
  12621. box-sizing:border-box;
  12622. width:100%;
  12623. }
  12624. #u88037_text {
  12625. border-width:0px;
  12626. white-space:nowrap;
  12627. text-transform:none;
  12628. }
  12629. #u88038_div {
  12630. border-width:0px;
  12631. position:absolute;
  12632. left:0px;
  12633. top:0px;
  12634. width:97px;
  12635. height:22px;
  12636. background:inherit;
  12637. background-color:rgba(255, 255, 255, 0);
  12638. border:none;
  12639. border-radius:0px;
  12640. -moz-box-shadow:none;
  12641. -webkit-box-shadow:none;
  12642. box-shadow:none;
  12643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12644. font-weight:400;
  12645. font-style:normal;
  12646. font-size:16px;
  12647. }
  12648. #u88038 {
  12649. border-width:0px;
  12650. position:absolute;
  12651. left:147px;
  12652. top:1279px;
  12653. width:97px;
  12654. height:22px;
  12655. display:flex;
  12656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12657. font-weight:400;
  12658. font-style:normal;
  12659. font-size:16px;
  12660. }
  12661. #u88038 .text {
  12662. position:absolute;
  12663. align-self:flex-start;
  12664. padding:0px 0px 0px 0px;
  12665. box-sizing:border-box;
  12666. width:100%;
  12667. }
  12668. #u88038_text {
  12669. border-width:0px;
  12670. word-wrap:break-word;
  12671. text-transform:none;
  12672. }
  12673. #u88039_div {
  12674. border-width:0px;
  12675. position:absolute;
  12676. left:0px;
  12677. top:0px;
  12678. width:97px;
  12679. height:22px;
  12680. background:inherit;
  12681. background-color:rgba(255, 255, 255, 0);
  12682. border:none;
  12683. border-radius:0px;
  12684. -moz-box-shadow:none;
  12685. -webkit-box-shadow:none;
  12686. box-shadow:none;
  12687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12688. font-weight:400;
  12689. font-style:normal;
  12690. font-size:16px;
  12691. }
  12692. #u88039 {
  12693. border-width:0px;
  12694. position:absolute;
  12695. left:147px;
  12696. top:1321px;
  12697. width:97px;
  12698. height:22px;
  12699. display:flex;
  12700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12701. font-weight:400;
  12702. font-style:normal;
  12703. font-size:16px;
  12704. }
  12705. #u88039 .text {
  12706. position:absolute;
  12707. align-self:flex-start;
  12708. padding:0px 0px 0px 0px;
  12709. box-sizing:border-box;
  12710. width:100%;
  12711. }
  12712. #u88039_text {
  12713. border-width:0px;
  12714. word-wrap:break-word;
  12715. text-transform:none;
  12716. }
  12717. #u88040_div {
  12718. border-width:0px;
  12719. position:absolute;
  12720. left:0px;
  12721. top:0px;
  12722. width:97px;
  12723. height:22px;
  12724. background:inherit;
  12725. background-color:rgba(255, 255, 255, 0);
  12726. border:none;
  12727. border-radius:0px;
  12728. -moz-box-shadow:none;
  12729. -webkit-box-shadow:none;
  12730. box-shadow:none;
  12731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12732. font-weight:400;
  12733. font-style:normal;
  12734. font-size:16px;
  12735. }
  12736. #u88040 {
  12737. border-width:0px;
  12738. position:absolute;
  12739. left:147px;
  12740. top:1363px;
  12741. width:97px;
  12742. height:22px;
  12743. display:flex;
  12744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12745. font-weight:400;
  12746. font-style:normal;
  12747. font-size:16px;
  12748. }
  12749. #u88040 .text {
  12750. position:absolute;
  12751. align-self:flex-start;
  12752. padding:0px 0px 0px 0px;
  12753. box-sizing:border-box;
  12754. width:100%;
  12755. }
  12756. #u88040_text {
  12757. border-width:0px;
  12758. word-wrap:break-word;
  12759. text-transform:none;
  12760. }
  12761. #u88041_img {
  12762. border-width:0px;
  12763. position:absolute;
  12764. left:0px;
  12765. top:0px;
  12766. width:201px;
  12767. height:2px;
  12768. }
  12769. #u88041 {
  12770. border-width:0px;
  12771. position:absolute;
  12772. left:120px;
  12773. top:1403px;
  12774. width:200px;
  12775. height:1px;
  12776. display:flex;
  12777. }
  12778. #u88041 .text {
  12779. position:absolute;
  12780. align-self:center;
  12781. padding:2px 2px 2px 2px;
  12782. box-sizing:border-box;
  12783. width:100%;
  12784. }
  12785. #u88041_text {
  12786. border-width:0px;
  12787. word-wrap:break-word;
  12788. text-transform:none;
  12789. visibility:hidden;
  12790. }