styles.css 140 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2444px;
  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. #u87700_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. #u87700 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u87700 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u87700_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u87701_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. #u87701 {
  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. #u87701 .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. #u87701_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u87702_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. #u87702 {
  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. #u87702 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u87702_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u87703 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u87704_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u87704 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u87704 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u87704_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u87705_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. #u87705 {
  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. #u87705 .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. #u87705_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u87706_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. #u87706 {
  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. #u87706 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u87706_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u87707 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u87708_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u87708 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u87708 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u87708_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u87709_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u87709 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u87709 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u87709_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u87710 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u87711_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u87711 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u87711 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u87711_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u87712_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u87712 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u87712 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u87712_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u87713 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u87714_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u87714 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u87714 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u87714_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u87715_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u87715 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u87715 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u87715_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u87716 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u87717_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u87717 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u87717 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u87717_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u87718_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u87718 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u87718 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u87718_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u87719 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u87720_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u87720 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u87720 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u87720_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u87721_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u87721 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u87721 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u87721_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u87722 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u87723_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u87723 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u87723 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u87723_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u87724_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u87724 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u87724 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u87724_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u87725 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u87726_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u87726 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u87726 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u87726_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u87727_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u87727 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u87727 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u87727_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u87728 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u87729_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u87729 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u87729 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u87729_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u87730_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u87730 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u87730 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u87730_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u87731 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u87732_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u87732 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u87732 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u87732_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u87733_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u87733 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u87733 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u87733_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u87734_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u87734 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u87734 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u87734_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u87735_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u87735 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u87735 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u87735_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u87736_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u87736 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u87736 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u87736_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u87737_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u87737 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u87737 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u87737_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u87738 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u87739_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u87739 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u87739 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u87739_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u87740_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u87740 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u87740 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u87740_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u87741 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u87742_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u87742 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u87742 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u87742_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u87743_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u87743 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u87743 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u87743_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u87744 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u87745_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u87745_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u87745_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u87745 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u87745 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u87745_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u87745.disabled {
  1428. }
  1429. .u87745_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u87746_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u87746 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u87746 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u87746_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u87747_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u87747 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u87747 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u87747_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u87748_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u87748 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u87748 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u87748_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u87749_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1259px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u87749 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1259px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u87749 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u87749_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u87750 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:350px;
  1579. top:193px;
  1580. width:1219px;
  1581. height:313px;
  1582. }
  1583. #u87751_img {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:212px;
  1589. height:35px;
  1590. }
  1591. #u87751 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:212px;
  1597. height:35px;
  1598. display:flex;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:12px;
  1603. color:#FFFFFF;
  1604. }
  1605. #u87751 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u87751_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. }
  1617. #u87752_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:135px;
  1623. height:35px;
  1624. }
  1625. #u87752 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:212px;
  1629. top:0px;
  1630. width:135px;
  1631. height:35px;
  1632. display:flex;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:12px;
  1637. color:#FFFFFF;
  1638. }
  1639. #u87752 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 2px 2px 0px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u87752_text {
  1647. border-width:0px;
  1648. word-wrap:break-word;
  1649. text-transform:none;
  1650. }
  1651. #u87753_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:125px;
  1657. height:35px;
  1658. }
  1659. #u87753 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:347px;
  1663. top:0px;
  1664. width:125px;
  1665. height:35px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. }
  1673. #u87753 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 0px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u87753_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. }
  1685. #u87754_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:125px;
  1691. height:35px;
  1692. }
  1693. #u87754 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:472px;
  1697. top:0px;
  1698. width:125px;
  1699. height:35px;
  1700. display:flex;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:12px;
  1705. color:#FFFFFF;
  1706. }
  1707. #u87754 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u87754_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u87755_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:125px;
  1725. height:35px;
  1726. }
  1727. #u87755 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:597px;
  1731. top:0px;
  1732. width:125px;
  1733. height:35px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:12px;
  1739. color:#FFFFFF;
  1740. }
  1741. #u87755 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 0px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u87755_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. }
  1753. #u87756_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:135px;
  1759. height:35px;
  1760. }
  1761. #u87756 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:722px;
  1765. top:0px;
  1766. width:135px;
  1767. height:35px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:12px;
  1773. color:#FFFFFF;
  1774. }
  1775. #u87756 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:2px 2px 2px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u87756_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. }
  1787. #u87757_img {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:125px;
  1793. height:35px;
  1794. }
  1795. #u87757 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:857px;
  1799. top:0px;
  1800. width:125px;
  1801. height:35px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:12px;
  1807. color:#FFFFFF;
  1808. }
  1809. #u87757 .text {
  1810. position:absolute;
  1811. align-self:center;
  1812. padding:2px 2px 2px 0px;
  1813. box-sizing:border-box;
  1814. width:100%;
  1815. }
  1816. #u87757_text {
  1817. border-width:0px;
  1818. word-wrap:break-word;
  1819. text-transform:none;
  1820. }
  1821. #u87758_img {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:130px;
  1827. height:35px;
  1828. }
  1829. #u87758 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:982px;
  1833. top:0px;
  1834. width:130px;
  1835. height:35px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:12px;
  1841. color:#FFFFFF;
  1842. }
  1843. #u87758 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u87758_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u87759_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:107px;
  1861. height:35px;
  1862. }
  1863. #u87759 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:1112px;
  1867. top:0px;
  1868. width:107px;
  1869. height:35px;
  1870. display:flex;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:12px;
  1875. color:#FFFFFF;
  1876. }
  1877. #u87759 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:2px 2px 2px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u87759_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. }
  1889. #u87760_img {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:212px;
  1895. height:44px;
  1896. }
  1897. #u87760 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:35px;
  1902. width:212px;
  1903. height:44px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:12px;
  1909. color:#333333;
  1910. line-height:40px;
  1911. }
  1912. #u87760 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 0px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u87760_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u87761_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:135px;
  1930. height:44px;
  1931. }
  1932. #u87761 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:212px;
  1936. top:35px;
  1937. width:135px;
  1938. height:44px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:12px;
  1944. color:#333333;
  1945. line-height:40px;
  1946. }
  1947. #u87761 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u87761_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. visibility:hidden;
  1959. }
  1960. #u87762_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:125px;
  1966. height:44px;
  1967. }
  1968. #u87762 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:347px;
  1972. top:35px;
  1973. width:125px;
  1974. height:44px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:12px;
  1980. color:#333333;
  1981. line-height:40px;
  1982. }
  1983. #u87762 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 2px 2px 0px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u87762_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. visibility:hidden;
  1995. }
  1996. #u87763_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:125px;
  2002. height:44px;
  2003. }
  2004. #u87763 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:472px;
  2008. top:35px;
  2009. width:125px;
  2010. height:44px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:12px;
  2016. color:#333333;
  2017. line-height:40px;
  2018. }
  2019. #u87763 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 2px 2px 0px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u87763_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. visibility:hidden;
  2031. }
  2032. #u87764_img {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:125px;
  2038. height:44px;
  2039. }
  2040. #u87764 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:597px;
  2044. top:35px;
  2045. width:125px;
  2046. height:44px;
  2047. display:flex;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:12px;
  2052. color:#333333;
  2053. line-height:40px;
  2054. }
  2055. #u87764 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u87764_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u87765_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:135px;
  2074. height:44px;
  2075. }
  2076. #u87765 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:722px;
  2080. top:35px;
  2081. width:135px;
  2082. height:44px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:12px;
  2088. color:#333333;
  2089. line-height:40px;
  2090. }
  2091. #u87765 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u87765_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u87766_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:125px;
  2110. height:44px;
  2111. }
  2112. #u87766 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:857px;
  2116. top:35px;
  2117. width:125px;
  2118. height:44px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:12px;
  2124. color:#333333;
  2125. line-height:40px;
  2126. }
  2127. #u87766 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u87766_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u87767_img {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:130px;
  2146. height:44px;
  2147. }
  2148. #u87767 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:982px;
  2152. top:35px;
  2153. width:130px;
  2154. height:44px;
  2155. display:flex;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:12px;
  2160. color:#333333;
  2161. line-height:40px;
  2162. }
  2163. #u87767 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u87767_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u87768_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:107px;
  2182. height:44px;
  2183. }
  2184. #u87768 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:1112px;
  2188. top:35px;
  2189. width:107px;
  2190. height:44px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. color:#298FFF;
  2197. line-height:35px;
  2198. }
  2199. #u87768 .text {
  2200. position:absolute;
  2201. align-self:center;
  2202. padding:2px 2px 2px 0px;
  2203. box-sizing:border-box;
  2204. width:100%;
  2205. }
  2206. #u87768_text {
  2207. border-width:0px;
  2208. word-wrap:break-word;
  2209. text-transform:none;
  2210. }
  2211. #u87769_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:212px;
  2217. height:44px;
  2218. }
  2219. #u87769 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:79px;
  2224. width:212px;
  2225. height:44px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. color:#333333;
  2232. line-height:40px;
  2233. }
  2234. #u87769 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:2px 2px 2px 0px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u87769_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. }
  2246. #u87770_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:135px;
  2252. height:44px;
  2253. }
  2254. #u87770 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:212px;
  2258. top:79px;
  2259. width:135px;
  2260. height:44px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:12px;
  2266. color:#333333;
  2267. line-height:40px;
  2268. }
  2269. #u87770 .text {
  2270. position:absolute;
  2271. align-self:center;
  2272. padding:2px 2px 2px 0px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u87770_text {
  2277. border-width:0px;
  2278. word-wrap:break-word;
  2279. text-transform:none;
  2280. visibility:hidden;
  2281. }
  2282. #u87771_img {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:125px;
  2288. height:44px;
  2289. }
  2290. #u87771 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:347px;
  2294. top:79px;
  2295. width:125px;
  2296. height:44px;
  2297. display:flex;
  2298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:12px;
  2302. color:#333333;
  2303. line-height:40px;
  2304. }
  2305. #u87771 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 2px 2px 0px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u87771_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u87772_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:125px;
  2324. height:44px;
  2325. }
  2326. #u87772 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:472px;
  2330. top:79px;
  2331. width:125px;
  2332. height:44px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. color:#333333;
  2339. line-height:40px;
  2340. }
  2341. #u87772 .text {
  2342. position:absolute;
  2343. align-self:center;
  2344. padding:2px 2px 2px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u87772_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. visibility:hidden;
  2353. }
  2354. #u87773_img {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:125px;
  2360. height:44px;
  2361. }
  2362. #u87773 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:597px;
  2366. top:79px;
  2367. width:125px;
  2368. height:44px;
  2369. display:flex;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. font-size:12px;
  2374. color:#333333;
  2375. line-height:40px;
  2376. }
  2377. #u87773 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:2px 2px 2px 0px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u87773_text {
  2385. border-width:0px;
  2386. word-wrap:break-word;
  2387. text-transform:none;
  2388. visibility:hidden;
  2389. }
  2390. #u87774_img {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:135px;
  2396. height:44px;
  2397. }
  2398. #u87774 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:722px;
  2402. top:79px;
  2403. width:135px;
  2404. height:44px;
  2405. display:flex;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:12px;
  2410. color:#333333;
  2411. line-height:40px;
  2412. }
  2413. #u87774 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u87774_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. visibility:hidden;
  2425. }
  2426. #u87775_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:125px;
  2432. height:44px;
  2433. }
  2434. #u87775 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:857px;
  2438. top:79px;
  2439. width:125px;
  2440. height:44px;
  2441. display:flex;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:12px;
  2446. color:#333333;
  2447. line-height:40px;
  2448. }
  2449. #u87775 .text {
  2450. position:absolute;
  2451. align-self:center;
  2452. padding:2px 2px 2px 0px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u87775_text {
  2457. border-width:0px;
  2458. word-wrap:break-word;
  2459. text-transform:none;
  2460. visibility:hidden;
  2461. }
  2462. #u87776_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:130px;
  2468. height:44px;
  2469. }
  2470. #u87776 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:982px;
  2474. top:79px;
  2475. width:130px;
  2476. height:44px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. color:#333333;
  2483. line-height:40px;
  2484. }
  2485. #u87776 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 0px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u87776_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. visibility:hidden;
  2497. }
  2498. #u87777_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:107px;
  2504. height:44px;
  2505. }
  2506. #u87777 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:1112px;
  2510. top:79px;
  2511. width:107px;
  2512. height:44px;
  2513. display:flex;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. color:#1890FF;
  2519. }
  2520. #u87777 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u87777_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. visibility:hidden;
  2532. }
  2533. #u87778_img {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:212px;
  2539. height:38px;
  2540. }
  2541. #u87778 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:123px;
  2546. width:212px;
  2547. height:38px;
  2548. display:flex;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:12px;
  2553. color:#333333;
  2554. line-height:40px;
  2555. }
  2556. #u87778 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 0px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u87778_text {
  2564. border-width:0px;
  2565. word-wrap:break-word;
  2566. text-transform:none;
  2567. visibility:hidden;
  2568. }
  2569. #u87779_img {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:135px;
  2575. height:38px;
  2576. }
  2577. #u87779 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:212px;
  2581. top:123px;
  2582. width:135px;
  2583. height:38px;
  2584. display:flex;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:12px;
  2589. color:#333333;
  2590. line-height:40px;
  2591. }
  2592. #u87779 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:2px 2px 2px 0px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u87779_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. visibility:hidden;
  2604. }
  2605. #u87780_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:125px;
  2611. height:38px;
  2612. }
  2613. #u87780 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:347px;
  2617. top:123px;
  2618. width:125px;
  2619. height:38px;
  2620. display:flex;
  2621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2622. font-weight:400;
  2623. font-style:normal;
  2624. font-size:12px;
  2625. color:#333333;
  2626. line-height:40px;
  2627. }
  2628. #u87780 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:2px 2px 2px 0px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u87780_text {
  2636. border-width:0px;
  2637. word-wrap:break-word;
  2638. text-transform:none;
  2639. visibility:hidden;
  2640. }
  2641. #u87781_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:125px;
  2647. height:38px;
  2648. }
  2649. #u87781 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:472px;
  2653. top:123px;
  2654. width:125px;
  2655. height:38px;
  2656. display:flex;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:12px;
  2661. color:#333333;
  2662. line-height:40px;
  2663. }
  2664. #u87781 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u87781_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u87782_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:125px;
  2683. height:38px;
  2684. }
  2685. #u87782 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:597px;
  2689. top:123px;
  2690. width:125px;
  2691. height:38px;
  2692. display:flex;
  2693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:12px;
  2697. color:#333333;
  2698. line-height:40px;
  2699. }
  2700. #u87782 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u87782_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. visibility:hidden;
  2712. }
  2713. #u87783_img {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:135px;
  2719. height:38px;
  2720. }
  2721. #u87783 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:722px;
  2725. top:123px;
  2726. width:135px;
  2727. height:38px;
  2728. display:flex;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:12px;
  2733. color:#333333;
  2734. line-height:40px;
  2735. }
  2736. #u87783 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u87783_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. visibility:hidden;
  2748. }
  2749. #u87784_img {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:125px;
  2755. height:38px;
  2756. }
  2757. #u87784 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:857px;
  2761. top:123px;
  2762. width:125px;
  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. line-height:40px;
  2771. }
  2772. #u87784 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 0px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u87784_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u87785_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:130px;
  2791. height:38px;
  2792. }
  2793. #u87785 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:982px;
  2797. top:123px;
  2798. width:130px;
  2799. height:38px;
  2800. display:flex;
  2801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:12px;
  2805. color:#333333;
  2806. line-height:40px;
  2807. }
  2808. #u87785 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 2px 2px 0px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u87785_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u87786_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:107px;
  2827. height:38px;
  2828. }
  2829. #u87786 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:1112px;
  2833. top:123px;
  2834. width:107px;
  2835. height:38px;
  2836. display:flex;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:12px;
  2841. color:#1890FF;
  2842. }
  2843. #u87786 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 2px 2px 0px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u87786_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. visibility:hidden;
  2855. }
  2856. #u87787_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:212px;
  2862. height:38px;
  2863. }
  2864. #u87787 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:161px;
  2869. width:212px;
  2870. height:38px;
  2871. display:flex;
  2872. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:12px;
  2876. color:#606266;
  2877. }
  2878. #u87787 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 0px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u87787_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. visibility:hidden;
  2890. }
  2891. #u87788_img {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:135px;
  2897. height:38px;
  2898. }
  2899. #u87788 {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:212px;
  2903. top:161px;
  2904. width:135px;
  2905. height:38px;
  2906. display:flex;
  2907. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:12px;
  2911. color:#606266;
  2912. }
  2913. #u87788 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u87788_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. visibility:hidden;
  2925. }
  2926. #u87789_img {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:125px;
  2932. height:38px;
  2933. }
  2934. #u87789 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:347px;
  2938. top:161px;
  2939. width:125px;
  2940. height:38px;
  2941. display:flex;
  2942. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:12px;
  2946. color:#606266;
  2947. }
  2948. #u87789 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u87789_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u87790_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:125px;
  2967. height:38px;
  2968. }
  2969. #u87790 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:472px;
  2973. top:161px;
  2974. width:125px;
  2975. height:38px;
  2976. display:flex;
  2977. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. color:#606266;
  2982. }
  2983. #u87790 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 0px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u87790_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u87791_img {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:125px;
  3002. height:38px;
  3003. }
  3004. #u87791 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:597px;
  3008. top:161px;
  3009. width:125px;
  3010. height:38px;
  3011. display:flex;
  3012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. font-size:12px;
  3016. color:#606266;
  3017. }
  3018. #u87791 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 0px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u87791_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u87792_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:135px;
  3037. height:38px;
  3038. }
  3039. #u87792 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:722px;
  3043. top:161px;
  3044. width:135px;
  3045. height:38px;
  3046. display:flex;
  3047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. color:#606266;
  3052. }
  3053. #u87792 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u87792_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u87793_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:125px;
  3072. height:38px;
  3073. }
  3074. #u87793 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:857px;
  3078. top:161px;
  3079. width:125px;
  3080. height:38px;
  3081. display:flex;
  3082. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. color:#606266;
  3087. }
  3088. #u87793 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u87793_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. visibility:hidden;
  3100. }
  3101. #u87794_img {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:0px;
  3105. top:0px;
  3106. width:130px;
  3107. height:38px;
  3108. }
  3109. #u87794 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:982px;
  3113. top:161px;
  3114. width:130px;
  3115. height:38px;
  3116. display:flex;
  3117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:12px;
  3121. color:#606266;
  3122. }
  3123. #u87794 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u87794_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u87795_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:107px;
  3142. height:38px;
  3143. }
  3144. #u87795 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:1112px;
  3148. top:161px;
  3149. width:107px;
  3150. height:38px;
  3151. display:flex;
  3152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:12px;
  3156. color:#606266;
  3157. }
  3158. #u87795 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 0px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u87795_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. visibility:hidden;
  3170. }
  3171. #u87796_img {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:212px;
  3177. height:38px;
  3178. }
  3179. #u87796 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:199px;
  3184. width:212px;
  3185. height:38px;
  3186. display:flex;
  3187. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3188. font-weight:400;
  3189. font-style:normal;
  3190. font-size:12px;
  3191. color:#606266;
  3192. }
  3193. #u87796 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u87796_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u87797_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:135px;
  3212. height:38px;
  3213. }
  3214. #u87797 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:212px;
  3218. top:199px;
  3219. width:135px;
  3220. height:38px;
  3221. display:flex;
  3222. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. color:#606266;
  3227. }
  3228. #u87797 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u87797_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u87798_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:125px;
  3247. height:38px;
  3248. }
  3249. #u87798 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:347px;
  3253. top:199px;
  3254. width:125px;
  3255. height:38px;
  3256. display:flex;
  3257. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:12px;
  3261. color:#606266;
  3262. }
  3263. #u87798 .text {
  3264. position:absolute;
  3265. align-self:center;
  3266. padding:2px 2px 2px 0px;
  3267. box-sizing:border-box;
  3268. width:100%;
  3269. }
  3270. #u87798_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u87799_img {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:125px;
  3282. height:38px;
  3283. }
  3284. #u87799 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:472px;
  3288. top:199px;
  3289. width:125px;
  3290. height:38px;
  3291. display:flex;
  3292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3293. font-weight:400;
  3294. font-style:normal;
  3295. font-size:12px;
  3296. color:#606266;
  3297. }
  3298. #u87799 .text {
  3299. position:absolute;
  3300. align-self:center;
  3301. padding:2px 2px 2px 0px;
  3302. box-sizing:border-box;
  3303. width:100%;
  3304. }
  3305. #u87799_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u87800_img {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:0px;
  3316. width:125px;
  3317. height:38px;
  3318. }
  3319. #u87800 {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:597px;
  3323. top:199px;
  3324. width:125px;
  3325. height:38px;
  3326. display:flex;
  3327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. font-size:12px;
  3331. color:#606266;
  3332. }
  3333. #u87800 .text {
  3334. position:absolute;
  3335. align-self:center;
  3336. padding:2px 2px 2px 0px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u87800_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. visibility:hidden;
  3345. }
  3346. #u87801_img {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:135px;
  3352. height:38px;
  3353. }
  3354. #u87801 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:722px;
  3358. top:199px;
  3359. width:135px;
  3360. height:38px;
  3361. display:flex;
  3362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. font-size:12px;
  3366. color:#606266;
  3367. }
  3368. #u87801 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 2px 2px 0px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u87801_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. visibility:hidden;
  3380. }
  3381. #u87802_img {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:125px;
  3387. height:38px;
  3388. }
  3389. #u87802 {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:857px;
  3393. top:199px;
  3394. width:125px;
  3395. height:38px;
  3396. display:flex;
  3397. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:12px;
  3401. color:#606266;
  3402. }
  3403. #u87802 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 0px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u87802_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u87803_img {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:130px;
  3422. height:38px;
  3423. }
  3424. #u87803 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:982px;
  3428. top:199px;
  3429. width:130px;
  3430. height:38px;
  3431. display:flex;
  3432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:12px;
  3436. color:#606266;
  3437. }
  3438. #u87803 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:2px 2px 2px 0px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u87803_text {
  3446. border-width:0px;
  3447. word-wrap:break-word;
  3448. text-transform:none;
  3449. visibility:hidden;
  3450. }
  3451. #u87804_img {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:107px;
  3457. height:38px;
  3458. }
  3459. #u87804 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:1112px;
  3463. top:199px;
  3464. width:107px;
  3465. height:38px;
  3466. display:flex;
  3467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:12px;
  3471. color:#606266;
  3472. }
  3473. #u87804 .text {
  3474. position:absolute;
  3475. align-self:center;
  3476. padding:2px 2px 2px 0px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u87804_text {
  3481. border-width:0px;
  3482. word-wrap:break-word;
  3483. text-transform:none;
  3484. visibility:hidden;
  3485. }
  3486. #u87805_img {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:212px;
  3492. height:38px;
  3493. }
  3494. #u87805 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:237px;
  3499. width:212px;
  3500. height:38px;
  3501. display:flex;
  3502. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:12px;
  3506. color:#606266;
  3507. }
  3508. #u87805 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:2px 2px 2px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u87805_text {
  3516. border-width:0px;
  3517. word-wrap:break-word;
  3518. text-transform:none;
  3519. visibility:hidden;
  3520. }
  3521. #u87806_img {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:135px;
  3527. height:38px;
  3528. }
  3529. #u87806 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:212px;
  3533. top:237px;
  3534. width:135px;
  3535. height:38px;
  3536. display:flex;
  3537. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:12px;
  3541. color:#606266;
  3542. }
  3543. #u87806 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 0px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u87806_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u87807_img {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:125px;
  3562. height:38px;
  3563. }
  3564. #u87807 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:347px;
  3568. top:237px;
  3569. width:125px;
  3570. height:38px;
  3571. display:flex;
  3572. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:12px;
  3576. color:#606266;
  3577. }
  3578. #u87807 .text {
  3579. position:absolute;
  3580. align-self:center;
  3581. padding:2px 2px 2px 0px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u87807_text {
  3586. border-width:0px;
  3587. word-wrap:break-word;
  3588. text-transform:none;
  3589. visibility:hidden;
  3590. }
  3591. #u87808_img {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:125px;
  3597. height:38px;
  3598. }
  3599. #u87808 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:472px;
  3603. top:237px;
  3604. width:125px;
  3605. height:38px;
  3606. display:flex;
  3607. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:12px;
  3611. color:#606266;
  3612. }
  3613. #u87808 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:2px 2px 2px 0px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. #u87808_text {
  3621. border-width:0px;
  3622. word-wrap:break-word;
  3623. text-transform:none;
  3624. visibility:hidden;
  3625. }
  3626. #u87809_img {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:125px;
  3632. height:38px;
  3633. }
  3634. #u87809 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:597px;
  3638. top:237px;
  3639. width:125px;
  3640. height:38px;
  3641. display:flex;
  3642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3643. font-weight:400;
  3644. font-style:normal;
  3645. font-size:12px;
  3646. color:#606266;
  3647. }
  3648. #u87809 .text {
  3649. position:absolute;
  3650. align-self:center;
  3651. padding:2px 2px 2px 0px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u87809_text {
  3656. border-width:0px;
  3657. word-wrap:break-word;
  3658. text-transform:none;
  3659. visibility:hidden;
  3660. }
  3661. #u87810_img {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:0px;
  3665. top:0px;
  3666. width:135px;
  3667. height:38px;
  3668. }
  3669. #u87810 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:722px;
  3673. top:237px;
  3674. width:135px;
  3675. height:38px;
  3676. display:flex;
  3677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3678. font-weight:400;
  3679. font-style:normal;
  3680. font-size:12px;
  3681. color:#606266;
  3682. }
  3683. #u87810 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 2px 2px 0px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u87810_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. visibility:hidden;
  3695. }
  3696. #u87811_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:125px;
  3702. height:38px;
  3703. }
  3704. #u87811 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:857px;
  3708. top:237px;
  3709. width:125px;
  3710. height:38px;
  3711. display:flex;
  3712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:12px;
  3716. color:#606266;
  3717. }
  3718. #u87811 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:2px 2px 2px 0px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u87811_text {
  3726. border-width:0px;
  3727. word-wrap:break-word;
  3728. text-transform:none;
  3729. visibility:hidden;
  3730. }
  3731. #u87812_img {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:130px;
  3737. height:38px;
  3738. }
  3739. #u87812 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:982px;
  3743. top:237px;
  3744. width:130px;
  3745. height:38px;
  3746. display:flex;
  3747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. font-size:12px;
  3751. color:#606266;
  3752. }
  3753. #u87812 .text {
  3754. position:absolute;
  3755. align-self:center;
  3756. padding:2px 2px 2px 0px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u87812_text {
  3761. border-width:0px;
  3762. word-wrap:break-word;
  3763. text-transform:none;
  3764. visibility:hidden;
  3765. }
  3766. #u87813_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:107px;
  3772. height:38px;
  3773. }
  3774. #u87813 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:1112px;
  3778. top:237px;
  3779. width:107px;
  3780. height:38px;
  3781. display:flex;
  3782. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3783. font-weight:400;
  3784. font-style:normal;
  3785. font-size:12px;
  3786. color:#606266;
  3787. }
  3788. #u87813 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:2px 2px 2px 0px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u87813_text {
  3796. border-width:0px;
  3797. word-wrap:break-word;
  3798. text-transform:none;
  3799. visibility:hidden;
  3800. }
  3801. #u87814_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:212px;
  3807. height:38px;
  3808. }
  3809. #u87814 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:275px;
  3814. width:212px;
  3815. height:38px;
  3816. display:flex;
  3817. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:12px;
  3821. color:#606266;
  3822. }
  3823. #u87814 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 0px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u87814_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u87815_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:135px;
  3842. height:38px;
  3843. }
  3844. #u87815 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:212px;
  3848. top:275px;
  3849. width:135px;
  3850. height:38px;
  3851. display:flex;
  3852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:12px;
  3856. color:#606266;
  3857. }
  3858. #u87815 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:2px 2px 2px 0px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u87815_text {
  3866. border-width:0px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. visibility:hidden;
  3870. }
  3871. #u87816_img {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:125px;
  3877. height:38px;
  3878. }
  3879. #u87816 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:347px;
  3883. top:275px;
  3884. width:125px;
  3885. height:38px;
  3886. display:flex;
  3887. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. color:#606266;
  3892. }
  3893. #u87816 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 0px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u87816_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u87817_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:125px;
  3912. height:38px;
  3913. }
  3914. #u87817 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:472px;
  3918. top:275px;
  3919. width:125px;
  3920. height:38px;
  3921. display:flex;
  3922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:12px;
  3926. color:#606266;
  3927. }
  3928. #u87817 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u87817_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u87818_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:125px;
  3947. height:38px;
  3948. }
  3949. #u87818 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:597px;
  3953. top:275px;
  3954. width:125px;
  3955. height:38px;
  3956. display:flex;
  3957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:12px;
  3961. color:#606266;
  3962. }
  3963. #u87818 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 0px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u87818_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. visibility:hidden;
  3975. }
  3976. #u87819_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:135px;
  3982. height:38px;
  3983. }
  3984. #u87819 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:722px;
  3988. top:275px;
  3989. width:135px;
  3990. height:38px;
  3991. display:flex;
  3992. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:12px;
  3996. color:#606266;
  3997. }
  3998. #u87819 .text {
  3999. position:absolute;
  4000. align-self:center;
  4001. padding:2px 2px 2px 0px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u87819_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. visibility:hidden;
  4010. }
  4011. #u87820_img {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:125px;
  4017. height:38px;
  4018. }
  4019. #u87820 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:857px;
  4023. top:275px;
  4024. width:125px;
  4025. height:38px;
  4026. display:flex;
  4027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:12px;
  4031. color:#606266;
  4032. }
  4033. #u87820 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 2px 2px 0px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u87820_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u87821_img {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:130px;
  4052. height:38px;
  4053. }
  4054. #u87821 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:982px;
  4058. top:275px;
  4059. width:130px;
  4060. height:38px;
  4061. display:flex;
  4062. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:12px;
  4066. color:#606266;
  4067. }
  4068. #u87821 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 2px 2px 0px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u87821_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u87822_img {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:107px;
  4087. height:38px;
  4088. }
  4089. #u87822 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:1112px;
  4093. top:275px;
  4094. width:107px;
  4095. height:38px;
  4096. display:flex;
  4097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:12px;
  4101. color:#606266;
  4102. }
  4103. #u87822 .text {
  4104. position:absolute;
  4105. align-self:center;
  4106. padding:2px 2px 2px 0px;
  4107. box-sizing:border-box;
  4108. width:100%;
  4109. }
  4110. #u87822_text {
  4111. border-width:0px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u87823_div {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:60px;
  4122. height:30px;
  4123. background:inherit;
  4124. background-color:rgba(255, 255, 255, 1);
  4125. box-sizing:border-box;
  4126. border-width:1px;
  4127. border-style:solid;
  4128. border-color:rgba(170, 170, 170, 1);
  4129. border-radius:4px;
  4130. -moz-box-shadow:none;
  4131. -webkit-box-shadow:none;
  4132. box-shadow:none;
  4133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:14px;
  4137. }
  4138. #u87823 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:490px;
  4142. top:153px;
  4143. width:60px;
  4144. height:30px;
  4145. display:flex;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. }
  4151. #u87823 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u87823_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. }
  4163. #u87824_div {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:60px;
  4169. height:30px;
  4170. background:inherit;
  4171. background-color:rgba(255, 255, 255, 1);
  4172. box-sizing:border-box;
  4173. border-width:1px;
  4174. border-style:solid;
  4175. border-color:rgba(170, 170, 170, 1);
  4176. border-radius:4px;
  4177. -moz-box-shadow:none;
  4178. -webkit-box-shadow:none;
  4179. box-shadow:none;
  4180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:14px;
  4184. }
  4185. #u87824 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:420px;
  4189. top:153px;
  4190. width:60px;
  4191. height:30px;
  4192. display:flex;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. }
  4198. #u87824 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 2px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u87824_text {
  4206. border-width:0px;
  4207. word-wrap:break-word;
  4208. text-transform:none;
  4209. }
  4210. #u87825_div {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:60px;
  4216. height:30px;
  4217. background:inherit;
  4218. background-color:rgba(24, 144, 255, 1);
  4219. border:none;
  4220. border-radius:4px;
  4221. -moz-box-shadow:none;
  4222. -webkit-box-shadow:none;
  4223. box-shadow:none;
  4224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4225. font-weight:400;
  4226. font-style:normal;
  4227. font-size:14px;
  4228. color:#FFFFFF;
  4229. }
  4230. #u87825 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:350px;
  4234. top:153px;
  4235. width:60px;
  4236. height:30px;
  4237. display:flex;
  4238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4239. font-weight:400;
  4240. font-style:normal;
  4241. font-size:14px;
  4242. color:#FFFFFF;
  4243. }
  4244. #u87825 .text {
  4245. position:absolute;
  4246. align-self:center;
  4247. padding:2px 2px 2px 2px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u87825_text {
  4252. border-width:0px;
  4253. word-wrap:break-word;
  4254. text-transform:none;
  4255. }
  4256. #u87826_div {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:73px;
  4262. height:50px;
  4263. background:inherit;
  4264. background-color:rgba(255, 255, 255, 0);
  4265. border:none;
  4266. border-left:0px;
  4267. border-top:0px;
  4268. border-right:0px;
  4269. border-radius:0px;
  4270. border-bottom-right-radius:0px;
  4271. border-bottom-left-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:18px;
  4279. }
  4280. #u87826 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:349px;
  4284. top:52px;
  4285. width:73px;
  4286. height:50px;
  4287. display:flex;
  4288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:18px;
  4292. }
  4293. #u87826 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:0px 0px 0px 0px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u87826_text {
  4301. border-width:0px;
  4302. white-space:nowrap;
  4303. text-transform:none;
  4304. }
  4305. #u87827 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:0px;
  4311. height:0px;
  4312. }
  4313. #u87828_div {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:100px;
  4319. height:100px;
  4320. background:inherit;
  4321. background-color:rgba(255, 255, 255, 1);
  4322. box-sizing:border-box;
  4323. border-width:1px;
  4324. border-style:solid;
  4325. border-color:rgba(242, 242, 242, 1);
  4326. border-radius:4px;
  4327. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4328. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4329. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:14px;
  4334. text-align:left;
  4335. }
  4336. #u87828 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:1437px;
  4340. top:259px;
  4341. width:100px;
  4342. height:100px;
  4343. display:flex;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:14px;
  4348. text-align:left;
  4349. }
  4350. #u87828 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 2px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u87828_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. visibility:hidden;
  4362. }
  4363. #u87829_div {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:83px;
  4369. height:40px;
  4370. background:inherit;
  4371. background-color:rgba(255, 255, 255, 1);
  4372. box-sizing:border-box;
  4373. border-width:1px;
  4374. border-style:solid;
  4375. border-color:rgba(215, 215, 215, 1);
  4376. border-left:0px;
  4377. border-top:0px;
  4378. border-right:0px;
  4379. border-radius:0px;
  4380. border-bottom-right-radius:0px;
  4381. border-bottom-left-radius:0px;
  4382. -moz-box-shadow:none;
  4383. -webkit-box-shadow:none;
  4384. box-shadow:none;
  4385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. font-size:14px;
  4389. }
  4390. #u87829 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:1445px;
  4394. top:269px;
  4395. width:83px;
  4396. height:40px;
  4397. display:flex;
  4398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:14px;
  4402. }
  4403. #u87829 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 2px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u87829_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. }
  4415. #u87830_div {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:83px;
  4421. height:40px;
  4422. background:inherit;
  4423. background-color:rgba(255, 255, 255, 1);
  4424. border:none;
  4425. border-left:0px;
  4426. border-top:0px;
  4427. border-right:0px;
  4428. border-radius:0px;
  4429. border-bottom-right-radius:0px;
  4430. border-bottom-left-radius:0px;
  4431. -moz-box-shadow:none;
  4432. -webkit-box-shadow:none;
  4433. box-shadow:none;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. }
  4439. #u87830 {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:1445px;
  4443. top:309px;
  4444. width:83px;
  4445. height:40px;
  4446. display:flex;
  4447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4448. font-weight:400;
  4449. font-style:normal;
  4450. font-size:14px;
  4451. }
  4452. #u87830 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u87830_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. }
  4464. #u87831_div {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:60px;
  4470. height:30px;
  4471. background:inherit;
  4472. background-color:rgba(24, 144, 255, 1);
  4473. border:none;
  4474. border-radius:4px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:14px;
  4482. color:#FFFFFF;
  4483. }
  4484. #u87831 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:1102px;
  4488. top:102px;
  4489. width:60px;
  4490. height:30px;
  4491. display:flex;
  4492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4493. font-weight:400;
  4494. font-style:normal;
  4495. font-size:14px;
  4496. color:#FFFFFF;
  4497. }
  4498. #u87831 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u87831_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. }
  4510. #u87832_div {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:60px;
  4516. height:30px;
  4517. background:inherit;
  4518. background-color:rgba(255, 255, 255, 1);
  4519. box-sizing:border-box;
  4520. border-width:1px;
  4521. border-style:solid;
  4522. border-color:rgba(170, 170, 170, 1);
  4523. border-radius:4px;
  4524. -moz-box-shadow:none;
  4525. -webkit-box-shadow:none;
  4526. box-shadow:none;
  4527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4528. font-weight:400;
  4529. font-style:normal;
  4530. font-size:14px;
  4531. }
  4532. #u87832 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:1172px;
  4536. top:102px;
  4537. width:60px;
  4538. height:30px;
  4539. display:flex;
  4540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:14px;
  4544. }
  4545. #u87832 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 2px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u87832_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. }
  4557. #u87833 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:0px;
  4563. height:0px;
  4564. }
  4565. #u87834_div {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:140px;
  4571. height:30px;
  4572. background:inherit;
  4573. background-color:rgba(255, 255, 255, 1);
  4574. box-sizing:border-box;
  4575. border-width:1px;
  4576. border-style:solid;
  4577. border-color:rgba(215, 215, 215, 1);
  4578. border-radius:4px;
  4579. -moz-box-shadow:none;
  4580. -webkit-box-shadow:none;
  4581. box-shadow:none;
  4582. font-size:14px;
  4583. }
  4584. #u87834 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:350px;
  4588. top:103px;
  4589. width:140px;
  4590. height:30px;
  4591. display:flex;
  4592. font-size:14px;
  4593. }
  4594. #u87834 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 2px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u87834_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u87835_input {
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:134px;
  4612. height:23px;
  4613. padding:2px 2px 2px 2px;
  4614. font-family:'ArialMT', 'Arial', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:14px;
  4618. letter-spacing:normal;
  4619. color:#AAAAAA;
  4620. vertical-align:none;
  4621. text-align:left;
  4622. text-transform:none;
  4623. background-color:transparent;
  4624. border-color:transparent;
  4625. }
  4626. #u87835_input.disabled {
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:134px;
  4631. height:23px;
  4632. padding:2px 2px 2px 2px;
  4633. font-family:'ArialMT', 'Arial', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:14px;
  4637. letter-spacing:normal;
  4638. color:#AAAAAA;
  4639. vertical-align:none;
  4640. text-align:left;
  4641. text-transform:none;
  4642. background-color:transparent;
  4643. border-color:transparent;
  4644. }
  4645. #u87835_div {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:134px;
  4651. height:23px;
  4652. background:inherit;
  4653. background-color:rgba(255, 255, 255, 1);
  4654. border:none;
  4655. border-radius:0px;
  4656. -moz-box-shadow:none;
  4657. -webkit-box-shadow:none;
  4658. box-shadow:none;
  4659. font-size:14px;
  4660. color:#AAAAAA;
  4661. }
  4662. #u87835 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:354px;
  4666. top:105px;
  4667. width:134px;
  4668. height:23px;
  4669. display:flex;
  4670. font-size:14px;
  4671. color:#AAAAAA;
  4672. }
  4673. #u87835 .text {
  4674. position:absolute;
  4675. align-self:flex-start;
  4676. padding:2px 2px 2px 2px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u87835_div.disabled {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:134px;
  4686. height:23px;
  4687. background:inherit;
  4688. background-color:rgba(240, 240, 240, 1);
  4689. border:none;
  4690. border-radius:0px;
  4691. -moz-box-shadow:none;
  4692. -webkit-box-shadow:none;
  4693. box-shadow:none;
  4694. font-size:14px;
  4695. color:#AAAAAA;
  4696. }
  4697. #u87835.disabled {
  4698. }
  4699. .u87835_input_option {
  4700. font-size:14px;
  4701. }
  4702. #u87836 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:0px;
  4708. height:0px;
  4709. }
  4710. #u87837_div {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:140px;
  4716. height:30px;
  4717. background:inherit;
  4718. background-color:rgba(255, 255, 255, 1);
  4719. box-sizing:border-box;
  4720. border-width:1px;
  4721. border-style:solid;
  4722. border-color:rgba(201, 201, 201, 1);
  4723. border-radius:4px;
  4724. -moz-box-shadow:none;
  4725. -webkit-box-shadow:none;
  4726. box-shadow:none;
  4727. font-family:'Microsoft YaHei', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:14px;
  4731. color:#CCCCCC;
  4732. text-align:left;
  4733. }
  4734. #u87837 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:502px;
  4738. top:103px;
  4739. width:140px;
  4740. height:30px;
  4741. display:flex;
  4742. font-family:'Microsoft YaHei', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:14px;
  4746. color:#CCCCCC;
  4747. text-align:left;
  4748. }
  4749. #u87837 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 8px 2px 8px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u87837_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u87838_input {
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:127px;
  4767. height:25px;
  4768. padding:2px 2px 2px 2px;
  4769. font-family:'Microsoft YaHei', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:10px;
  4773. letter-spacing:normal;
  4774. color:#000000;
  4775. vertical-align:none;
  4776. text-align:left;
  4777. text-transform:none;
  4778. background-color:transparent;
  4779. border-color:transparent;
  4780. }
  4781. #u87838_input.disabled {
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:127px;
  4786. height:25px;
  4787. padding:2px 2px 2px 2px;
  4788. font-family:'Microsoft YaHei', sans-serif;
  4789. font-weight:400;
  4790. font-style:normal;
  4791. font-size:10px;
  4792. letter-spacing:normal;
  4793. color:#000000;
  4794. vertical-align:none;
  4795. text-align:left;
  4796. text-transform:none;
  4797. background-color:transparent;
  4798. border-color:transparent;
  4799. }
  4800. #u87838_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:127px;
  4806. height:25px;
  4807. background:inherit;
  4808. background-color:rgba(255, 255, 255, 1);
  4809. border:none;
  4810. border-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-family:'Microsoft YaHei', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:10px;
  4818. }
  4819. #u87838 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:510px;
  4823. top:104px;
  4824. width:127px;
  4825. height:25px;
  4826. display:flex;
  4827. font-family:'Microsoft YaHei', sans-serif;
  4828. font-weight:400;
  4829. font-style:normal;
  4830. font-size:10px;
  4831. }
  4832. #u87838 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 2px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u87838_div.disabled {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:127px;
  4845. height:25px;
  4846. background:inherit;
  4847. background-color:rgba(240, 240, 240, 1);
  4848. border:none;
  4849. border-radius:0px;
  4850. -moz-box-shadow:none;
  4851. -webkit-box-shadow:none;
  4852. box-shadow:none;
  4853. font-family:'Microsoft YaHei', sans-serif;
  4854. font-weight:400;
  4855. font-style:normal;
  4856. font-size:10px;
  4857. }
  4858. #u87838.disabled {
  4859. }
  4860. #u87839 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:0px;
  4866. height:0px;
  4867. }
  4868. #u87840_div {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:140px;
  4874. height:30px;
  4875. background:inherit;
  4876. background-color:rgba(255, 255, 255, 1);
  4877. box-sizing:border-box;
  4878. border-width:1px;
  4879. border-style:solid;
  4880. border-color:rgba(201, 201, 201, 1);
  4881. border-radius:4px;
  4882. -moz-box-shadow:none;
  4883. -webkit-box-shadow:none;
  4884. box-shadow:none;
  4885. font-family:'Microsoft YaHei', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:14px;
  4889. color:#CCCCCC;
  4890. text-align:left;
  4891. }
  4892. #u87840 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:652px;
  4896. top:103px;
  4897. width:140px;
  4898. height:30px;
  4899. display:flex;
  4900. font-family:'Microsoft YaHei', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:14px;
  4904. color:#CCCCCC;
  4905. text-align:left;
  4906. }
  4907. #u87840 .text {
  4908. position:absolute;
  4909. align-self:center;
  4910. padding:2px 8px 2px 8px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u87840_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. visibility:hidden;
  4919. }
  4920. #u87841_input {
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:127px;
  4925. height:25px;
  4926. padding:2px 2px 2px 2px;
  4927. font-family:'Microsoft YaHei', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:10px;
  4931. letter-spacing:normal;
  4932. color:#000000;
  4933. vertical-align:none;
  4934. text-align:left;
  4935. text-transform:none;
  4936. background-color:transparent;
  4937. border-color:transparent;
  4938. }
  4939. #u87841_input.disabled {
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:127px;
  4944. height:25px;
  4945. padding:2px 2px 2px 2px;
  4946. font-family:'Microsoft YaHei', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:10px;
  4950. letter-spacing:normal;
  4951. color:#000000;
  4952. vertical-align:none;
  4953. text-align:left;
  4954. text-transform:none;
  4955. background-color:transparent;
  4956. border-color:transparent;
  4957. }
  4958. #u87841_div {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:127px;
  4964. height:25px;
  4965. background:inherit;
  4966. background-color:rgba(255, 255, 255, 1);
  4967. border:none;
  4968. border-radius:0px;
  4969. -moz-box-shadow:none;
  4970. -webkit-box-shadow:none;
  4971. box-shadow:none;
  4972. font-family:'Microsoft YaHei', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:10px;
  4976. }
  4977. #u87841 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:660px;
  4981. top:104px;
  4982. width:127px;
  4983. height:25px;
  4984. display:flex;
  4985. font-family:'Microsoft YaHei', sans-serif;
  4986. font-weight:400;
  4987. font-style:normal;
  4988. font-size:10px;
  4989. }
  4990. #u87841 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:2px 2px 2px 2px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u87841_div.disabled {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:127px;
  5003. height:25px;
  5004. background:inherit;
  5005. background-color:rgba(240, 240, 240, 1);
  5006. border:none;
  5007. border-radius:0px;
  5008. -moz-box-shadow:none;
  5009. -webkit-box-shadow:none;
  5010. box-shadow:none;
  5011. font-family:'Microsoft YaHei', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. font-size:10px;
  5015. }
  5016. #u87841.disabled {
  5017. }
  5018. #u87842 {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:0px;
  5024. height:0px;
  5025. }
  5026. #u87843_div {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:140px;
  5032. height:30px;
  5033. background:inherit;
  5034. background-color:rgba(255, 255, 255, 1);
  5035. box-sizing:border-box;
  5036. border-width:1px;
  5037. border-style:solid;
  5038. border-color:rgba(215, 215, 215, 1);
  5039. border-radius:4px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. font-size:14px;
  5044. }
  5045. #u87843 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:952px;
  5049. top:103px;
  5050. width:140px;
  5051. height:30px;
  5052. display:flex;
  5053. font-size:14px;
  5054. }
  5055. #u87843 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 2px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u87843_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. visibility:hidden;
  5067. }
  5068. #u87844_input {
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:134px;
  5073. height:23px;
  5074. padding:2px 2px 2px 2px;
  5075. font-family:'ArialMT', 'Arial', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:14px;
  5079. letter-spacing:normal;
  5080. color:#AAAAAA;
  5081. vertical-align:none;
  5082. text-align:left;
  5083. text-transform:none;
  5084. background-color:transparent;
  5085. border-color:transparent;
  5086. }
  5087. #u87844_input.disabled {
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:134px;
  5092. height:23px;
  5093. padding:2px 2px 2px 2px;
  5094. font-family:'ArialMT', 'Arial', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:14px;
  5098. letter-spacing:normal;
  5099. color:#AAAAAA;
  5100. vertical-align:none;
  5101. text-align:left;
  5102. text-transform:none;
  5103. background-color:transparent;
  5104. border-color:transparent;
  5105. }
  5106. #u87844_div {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:134px;
  5112. height:23px;
  5113. background:inherit;
  5114. background-color:rgba(255, 255, 255, 1);
  5115. border:none;
  5116. border-radius:0px;
  5117. -moz-box-shadow:none;
  5118. -webkit-box-shadow:none;
  5119. box-shadow:none;
  5120. font-size:14px;
  5121. color:#AAAAAA;
  5122. }
  5123. #u87844 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:956px;
  5127. top:105px;
  5128. width:134px;
  5129. height:23px;
  5130. display:flex;
  5131. font-size:14px;
  5132. color:#AAAAAA;
  5133. }
  5134. #u87844 .text {
  5135. position:absolute;
  5136. align-self:flex-start;
  5137. padding:2px 2px 2px 2px;
  5138. box-sizing:border-box;
  5139. width:100%;
  5140. }
  5141. #u87844_div.disabled {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:134px;
  5147. height:23px;
  5148. background:inherit;
  5149. background-color:rgba(240, 240, 240, 1);
  5150. border:none;
  5151. border-radius:0px;
  5152. -moz-box-shadow:none;
  5153. -webkit-box-shadow:none;
  5154. box-shadow:none;
  5155. font-size:14px;
  5156. color:#AAAAAA;
  5157. }
  5158. #u87844.disabled {
  5159. }
  5160. .u87844_input_option {
  5161. font-size:14px;
  5162. }
  5163. #u87845 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:0px;
  5169. height:0px;
  5170. }
  5171. #u87846_div {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:140px;
  5177. height:30px;
  5178. background:inherit;
  5179. background-color:rgba(255, 255, 255, 1);
  5180. box-sizing:border-box;
  5181. border-width:1px;
  5182. border-style:solid;
  5183. border-color:rgba(201, 201, 201, 1);
  5184. border-radius:4px;
  5185. -moz-box-shadow:none;
  5186. -webkit-box-shadow:none;
  5187. box-shadow:none;
  5188. font-family:'Microsoft YaHei', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. color:#CCCCCC;
  5193. text-align:left;
  5194. }
  5195. #u87846 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:802px;
  5199. top:103px;
  5200. width:140px;
  5201. height:30px;
  5202. display:flex;
  5203. font-family:'Microsoft YaHei', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:14px;
  5207. color:#CCCCCC;
  5208. text-align:left;
  5209. }
  5210. #u87846 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 8px 2px 8px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u87846_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. visibility:hidden;
  5222. }
  5223. #u87847_input {
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:127px;
  5228. height:25px;
  5229. padding:2px 2px 2px 2px;
  5230. font-family:'Microsoft YaHei', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:10px;
  5234. letter-spacing:normal;
  5235. color:#000000;
  5236. vertical-align:none;
  5237. text-align:left;
  5238. text-transform:none;
  5239. background-color:transparent;
  5240. border-color:transparent;
  5241. }
  5242. #u87847_input.disabled {
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:127px;
  5247. height:25px;
  5248. padding:2px 2px 2px 2px;
  5249. font-family:'Microsoft YaHei', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:10px;
  5253. letter-spacing:normal;
  5254. color:#000000;
  5255. vertical-align:none;
  5256. text-align:left;
  5257. text-transform:none;
  5258. background-color:transparent;
  5259. border-color:transparent;
  5260. }
  5261. #u87847_div {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:127px;
  5267. height:25px;
  5268. background:inherit;
  5269. background-color:rgba(255, 255, 255, 1);
  5270. border:none;
  5271. border-radius:0px;
  5272. -moz-box-shadow:none;
  5273. -webkit-box-shadow:none;
  5274. box-shadow:none;
  5275. font-family:'Microsoft YaHei', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:10px;
  5279. }
  5280. #u87847 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:810px;
  5284. top:104px;
  5285. width:127px;
  5286. height:25px;
  5287. display:flex;
  5288. font-family:'Microsoft YaHei', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:10px;
  5292. }
  5293. #u87847 .text {
  5294. position:absolute;
  5295. align-self:center;
  5296. padding:2px 2px 2px 2px;
  5297. box-sizing:border-box;
  5298. width:100%;
  5299. }
  5300. #u87847_div.disabled {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:127px;
  5306. height:25px;
  5307. background:inherit;
  5308. background-color:rgba(240, 240, 240, 1);
  5309. border:none;
  5310. border-radius:0px;
  5311. -moz-box-shadow:none;
  5312. -webkit-box-shadow:none;
  5313. box-shadow:none;
  5314. font-family:'Microsoft YaHei', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. font-size:10px;
  5318. }
  5319. #u87847.disabled {
  5320. }
  5321. #u87848 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:0px;
  5327. height:0px;
  5328. }
  5329. #u87849_div {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:800px;
  5335. height:1142px;
  5336. background:inherit;
  5337. background-color:rgba(255, 255, 255, 1);
  5338. box-sizing:border-box;
  5339. border-width:1px;
  5340. border-style:solid;
  5341. border-color:rgba(242, 242, 242, 1);
  5342. border-radius:0px;
  5343. -moz-box-shadow:none;
  5344. -webkit-box-shadow:none;
  5345. box-shadow:none;
  5346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:14px;
  5350. color:#AAAAAA;
  5351. text-align:center;
  5352. line-height:30px;
  5353. }
  5354. #u87849 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:1644px;
  5358. top:84px;
  5359. width:800px;
  5360. height:1142px;
  5361. display:flex;
  5362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:14px;
  5366. color:#AAAAAA;
  5367. text-align:center;
  5368. line-height:30px;
  5369. }
  5370. #u87849 .text {
  5371. position:absolute;
  5372. align-self:center;
  5373. padding:5px 10px 5px 10px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u87849_text {
  5378. border-width:0px;
  5379. word-wrap:break-word;
  5380. text-transform:none;
  5381. visibility:hidden;
  5382. }
  5383. #u87850_div {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:800px;
  5389. height:60px;
  5390. background:inherit;
  5391. background-color:rgba(255, 255, 255, 1);
  5392. box-sizing:border-box;
  5393. border-width:1px;
  5394. border-style:solid;
  5395. border-color:rgba(242, 242, 242, 1);
  5396. border-radius:0px;
  5397. -moz-box-shadow:none;
  5398. -webkit-box-shadow:none;
  5399. box-shadow:none;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:14px;
  5404. color:#AAAAAA;
  5405. text-align:center;
  5406. line-height:30px;
  5407. }
  5408. #u87850 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:1644px;
  5412. top:25px;
  5413. width:800px;
  5414. height:60px;
  5415. display:flex;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:14px;
  5420. color:#AAAAAA;
  5421. text-align:center;
  5422. line-height:30px;
  5423. }
  5424. #u87850 .text {
  5425. position:absolute;
  5426. align-self:center;
  5427. padding:5px 10px 5px 10px;
  5428. box-sizing:border-box;
  5429. width:100%;
  5430. }
  5431. #u87850_text {
  5432. border-width:0px;
  5433. word-wrap:break-word;
  5434. text-transform:none;
  5435. visibility:hidden;
  5436. }
  5437. #u87851_div {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:92px;
  5443. height:35px;
  5444. background:inherit;
  5445. background-color:rgba(255, 255, 255, 0);
  5446. border:none;
  5447. border-top:0px;
  5448. border-right:0px;
  5449. border-bottom:0px;
  5450. border-radius:0px;
  5451. border-top-left-radius:0px;
  5452. border-bottom-left-radius:0px;
  5453. -moz-box-shadow:none;
  5454. -webkit-box-shadow:none;
  5455. box-shadow:none;
  5456. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5457. font-weight:500;
  5458. font-style:normal;
  5459. font-size:18px;
  5460. }
  5461. #u87851 {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:1675px;
  5465. top:38px;
  5466. width:92px;
  5467. height:35px;
  5468. display:flex;
  5469. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5470. font-weight:500;
  5471. font-style:normal;
  5472. font-size:18px;
  5473. }
  5474. #u87851 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:5px 10px 5px 0px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u87851_text {
  5482. border-width:0px;
  5483. white-space:nowrap;
  5484. text-transform:none;
  5485. }
  5486. #u87852 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:0px;
  5492. height:0px;
  5493. }
  5494. #u87853_div {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:800px;
  5500. height:60px;
  5501. background:inherit;
  5502. background-color:rgba(255, 255, 255, 1);
  5503. box-sizing:border-box;
  5504. border-width:1px;
  5505. border-style:solid;
  5506. border-color:rgba(215, 215, 215, 1);
  5507. border-radius:0px;
  5508. -moz-box-shadow:none;
  5509. -webkit-box-shadow:none;
  5510. box-shadow:none;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:14px;
  5515. color:#AAAAAA;
  5516. text-align:center;
  5517. line-height:30px;
  5518. }
  5519. #u87853 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:1644px;
  5523. top:1166px;
  5524. width:800px;
  5525. height:60px;
  5526. display:flex;
  5527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:14px;
  5531. color:#AAAAAA;
  5532. text-align:center;
  5533. line-height:30px;
  5534. }
  5535. #u87853 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:5px 10px 5px 10px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u87853_text {
  5543. border-width:0px;
  5544. word-wrap:break-word;
  5545. text-transform:none;
  5546. visibility:hidden;
  5547. }
  5548. #u87854_img {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:80px;
  5554. height:30px;
  5555. }
  5556. #u87854 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:2324px;
  5560. top:1181px;
  5561. width:80px;
  5562. height:30px;
  5563. display:flex;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:14px;
  5568. color:#FFFFFF;
  5569. }
  5570. #u87854 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 2px 2px 2px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u87854_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. }
  5582. #u87855_div {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:80px;
  5588. height:30px;
  5589. background:inherit;
  5590. background-color:rgba(255, 255, 255, 1);
  5591. box-sizing:border-box;
  5592. border-width:1px;
  5593. border-style:solid;
  5594. border-color:rgba(170, 170, 170, 1);
  5595. border-radius:4px;
  5596. -moz-box-shadow:none;
  5597. -webkit-box-shadow:none;
  5598. box-shadow:none;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:14px;
  5603. }
  5604. #u87855 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:2234px;
  5608. top:1181px;
  5609. width:80px;
  5610. height:30px;
  5611. display:flex;
  5612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5613. font-weight:400;
  5614. font-style:normal;
  5615. font-size:14px;
  5616. }
  5617. #u87855 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 2px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u87855_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. }
  5629. #u87856 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:0px;
  5635. height:0px;
  5636. }
  5637. #u87857_div {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:300px;
  5643. height:40px;
  5644. background:inherit;
  5645. background-color:rgba(255, 255, 255, 1);
  5646. box-sizing:border-box;
  5647. border-width:1px;
  5648. border-style:solid;
  5649. border-color:rgba(201, 201, 201, 1);
  5650. border-radius:4px;
  5651. -moz-box-shadow:none;
  5652. -webkit-box-shadow:none;
  5653. box-shadow:none;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. text-align:right;
  5659. }
  5660. #u87857 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:1893px;
  5664. top:163px;
  5665. width:300px;
  5666. height:40px;
  5667. display:flex;
  5668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5669. font-weight:400;
  5670. font-style:normal;
  5671. font-size:14px;
  5672. text-align:right;
  5673. }
  5674. #u87857 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:2px 8px 2px 8px;
  5678. box-sizing:border-box;
  5679. width:100%;
  5680. }
  5681. #u87857_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. visibility:hidden;
  5686. }
  5687. #u87858_input {
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:242px;
  5692. height:33px;
  5693. padding:2px 2px 2px 2px;
  5694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5695. font-weight:400;
  5696. font-style:normal;
  5697. font-size:14px;
  5698. letter-spacing:normal;
  5699. color:#D7D7D7;
  5700. vertical-align:none;
  5701. text-align:left;
  5702. text-transform:none;
  5703. background-color:transparent;
  5704. border-color:transparent;
  5705. }
  5706. #u87858_input.disabled {
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:242px;
  5711. height:33px;
  5712. padding:2px 2px 2px 2px;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:14px;
  5717. letter-spacing:normal;
  5718. color:#D7D7D7;
  5719. vertical-align:none;
  5720. text-align:left;
  5721. text-transform:none;
  5722. background-color:transparent;
  5723. border-color:transparent;
  5724. }
  5725. #u87858_div {
  5726. border-width:0px;
  5727. position:absolute;
  5728. left:0px;
  5729. top:0px;
  5730. width:242px;
  5731. height:33px;
  5732. background:inherit;
  5733. background-color:rgba(255, 255, 255, 0);
  5734. border:none;
  5735. border-radius:0px;
  5736. -moz-box-shadow:none;
  5737. -webkit-box-shadow:none;
  5738. box-shadow:none;
  5739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:14px;
  5743. color:#D7D7D7;
  5744. }
  5745. #u87858 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:1905px;
  5749. top:166px;
  5750. width:242px;
  5751. height:33px;
  5752. display:flex;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:14px;
  5757. color:#D7D7D7;
  5758. }
  5759. #u87858 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u87858_div.disabled {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:242px;
  5772. height:33px;
  5773. background:inherit;
  5774. background-color:rgba(240, 240, 240, 1);
  5775. border:none;
  5776. border-radius:0px;
  5777. -moz-box-shadow:none;
  5778. -webkit-box-shadow:none;
  5779. box-shadow:none;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. color:#D7D7D7;
  5785. }
  5786. #u87858.disabled {
  5787. }
  5788. #u87859_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:40px;
  5794. height:40px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 0);
  5797. border:none;
  5798. border-top:0px;
  5799. border-right:0px;
  5800. border-bottom:0px;
  5801. border-radius:0px;
  5802. border-top-left-radius:0px;
  5803. border-bottom-left-radius:0px;
  5804. -moz-box-shadow:none;
  5805. -webkit-box-shadow:none;
  5806. box-shadow:none;
  5807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5808. font-weight:500;
  5809. font-style:normal;
  5810. font-size:24px;
  5811. text-align:center;
  5812. }
  5813. #u87859 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:2404px;
  5817. top:25px;
  5818. width:40px;
  5819. height:40px;
  5820. display:flex;
  5821. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5822. font-weight:500;
  5823. font-style:normal;
  5824. font-size:24px;
  5825. text-align:center;
  5826. }
  5827. #u87859 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:5px 10px 5px 0px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u87859_text {
  5835. border-width:0px;
  5836. word-wrap:break-word;
  5837. text-transform:none;
  5838. }
  5839. #u87860 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:0px;
  5845. height:0px;
  5846. }
  5847. #u87861_div {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:300px;
  5853. height:80px;
  5854. background:inherit;
  5855. background-color:rgba(255, 255, 255, 1);
  5856. box-sizing:border-box;
  5857. border-width:1px;
  5858. border-style:solid;
  5859. border-color:rgba(201, 201, 201, 1);
  5860. border-radius:4px;
  5861. -moz-box-shadow:none;
  5862. -webkit-box-shadow:none;
  5863. box-shadow:none;
  5864. font-family:'Microsoft YaHei', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:14px;
  5868. color:#CCCCCC;
  5869. text-align:left;
  5870. }
  5871. #u87861 {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:1893px;
  5875. top:650px;
  5876. width:300px;
  5877. height:80px;
  5878. display:flex;
  5879. font-family:'Microsoft YaHei', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:14px;
  5883. color:#CCCCCC;
  5884. text-align:left;
  5885. }
  5886. #u87861 .text {
  5887. position:absolute;
  5888. align-self:center;
  5889. padding:2px 8px 2px 8px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u87861_text {
  5894. border-width:0px;
  5895. word-wrap:break-word;
  5896. text-transform:none;
  5897. visibility:hidden;
  5898. }
  5899. #u87862_input {
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:273px;
  5904. height:33px;
  5905. padding:2px 2px 2px 2px;
  5906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:14px;
  5910. letter-spacing:normal;
  5911. color:#D7D7D7;
  5912. vertical-align:none;
  5913. text-align:left;
  5914. text-transform:none;
  5915. background-color:transparent;
  5916. border-color:transparent;
  5917. }
  5918. #u87862_input.disabled {
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:273px;
  5923. height:33px;
  5924. padding:2px 2px 2px 2px;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:14px;
  5929. letter-spacing:normal;
  5930. color:#D7D7D7;
  5931. vertical-align:none;
  5932. text-align:left;
  5933. text-transform:none;
  5934. background-color:transparent;
  5935. border-color:transparent;
  5936. }
  5937. #u87862_div {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:273px;
  5943. height:33px;
  5944. background:inherit;
  5945. background-color:rgba(255, 255, 255, 0);
  5946. border:none;
  5947. border-radius:0px;
  5948. -moz-box-shadow:none;
  5949. -webkit-box-shadow:none;
  5950. box-shadow:none;
  5951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5952. font-weight:400;
  5953. font-style:normal;
  5954. font-size:14px;
  5955. color:#D7D7D7;
  5956. }
  5957. #u87862 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:1905px;
  5961. top:653px;
  5962. width:273px;
  5963. height:33px;
  5964. display:flex;
  5965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. font-size:14px;
  5969. color:#D7D7D7;
  5970. }
  5971. #u87862 .text {
  5972. position:absolute;
  5973. align-self:center;
  5974. padding:2px 2px 2px 2px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u87862_div.disabled {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:0px;
  5982. top:0px;
  5983. width:273px;
  5984. height:33px;
  5985. background:inherit;
  5986. background-color:rgba(240, 240, 240, 1);
  5987. border:none;
  5988. border-radius:0px;
  5989. -moz-box-shadow:none;
  5990. -webkit-box-shadow:none;
  5991. box-shadow:none;
  5992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:14px;
  5996. color:#D7D7D7;
  5997. }
  5998. #u87862.disabled {
  5999. }
  6000. #u87863_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:71px;
  6006. height:40px;
  6007. background:inherit;
  6008. background-color:rgba(255, 255, 255, 0);
  6009. border:none;
  6010. border-left:0px;
  6011. border-top:0px;
  6012. border-right:0px;
  6013. border-radius:0px;
  6014. border-bottom-right-radius:0px;
  6015. border-bottom-left-radius:0px;
  6016. -moz-box-shadow:none;
  6017. -webkit-box-shadow:none;
  6018. box-shadow:none;
  6019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:14px;
  6023. }
  6024. #u87863 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:1893px;
  6028. top:610px;
  6029. width:71px;
  6030. height:40px;
  6031. display:flex;
  6032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:14px;
  6036. }
  6037. #u87863 .text {
  6038. position:absolute;
  6039. align-self:center;
  6040. padding:0px 0px 0px 0px;
  6041. box-sizing:border-box;
  6042. width:100%;
  6043. }
  6044. #u87863_text {
  6045. border-width:0px;
  6046. white-space:nowrap;
  6047. text-transform:none;
  6048. }
  6049. #u87864_div {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:36px;
  6055. height:40px;
  6056. background:inherit;
  6057. background-color:rgba(255, 255, 255, 0);
  6058. border:none;
  6059. border-left:0px;
  6060. border-top:0px;
  6061. border-right:0px;
  6062. border-radius:0px;
  6063. border-bottom-right-radius:0px;
  6064. border-bottom-left-radius:0px;
  6065. -moz-box-shadow:none;
  6066. -webkit-box-shadow:none;
  6067. box-shadow:none;
  6068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:14px;
  6072. }
  6073. #u87864 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:1893px;
  6077. top:124px;
  6078. width:36px;
  6079. height:40px;
  6080. display:flex;
  6081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. font-size:14px;
  6085. }
  6086. #u87864 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:0px 0px 0px 0px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u87864_text {
  6094. border-width:0px;
  6095. white-space:nowrap;
  6096. text-transform:none;
  6097. }
  6098. #u87865 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:0px;
  6104. height:0px;
  6105. }
  6106. #u87866_div {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:300px;
  6112. height:40px;
  6113. background:inherit;
  6114. background-color:rgba(255, 255, 255, 1);
  6115. box-sizing:border-box;
  6116. border-width:1px;
  6117. border-style:solid;
  6118. border-color:rgba(201, 201, 201, 1);
  6119. border-radius:4px;
  6120. -moz-box-shadow:none;
  6121. -webkit-box-shadow:none;
  6122. box-shadow:none;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:14px;
  6127. text-align:right;
  6128. }
  6129. #u87866 {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:1893px;
  6133. top:252px;
  6134. width:300px;
  6135. height:40px;
  6136. display:flex;
  6137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6138. font-weight:400;
  6139. font-style:normal;
  6140. font-size:14px;
  6141. text-align:right;
  6142. }
  6143. #u87866 .text {
  6144. position:absolute;
  6145. align-self:center;
  6146. padding:2px 8px 2px 8px;
  6147. box-sizing:border-box;
  6148. width:100%;
  6149. }
  6150. #u87866_text {
  6151. border-width:0px;
  6152. word-wrap:break-word;
  6153. text-transform:none;
  6154. visibility:hidden;
  6155. }
  6156. #u87867_input {
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:242px;
  6161. height:33px;
  6162. padding:2px 2px 2px 2px;
  6163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:14px;
  6167. letter-spacing:normal;
  6168. color:#D7D7D7;
  6169. vertical-align:none;
  6170. text-align:left;
  6171. text-transform:none;
  6172. background-color:transparent;
  6173. border-color:transparent;
  6174. }
  6175. #u87867_input.disabled {
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:242px;
  6180. height:33px;
  6181. padding:2px 2px 2px 2px;
  6182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6183. font-weight:400;
  6184. font-style:normal;
  6185. font-size:14px;
  6186. letter-spacing:normal;
  6187. color:#D7D7D7;
  6188. vertical-align:none;
  6189. text-align:left;
  6190. text-transform:none;
  6191. background-color:transparent;
  6192. border-color:transparent;
  6193. }
  6194. #u87867_div {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:242px;
  6200. height:33px;
  6201. background:inherit;
  6202. background-color:rgba(255, 255, 255, 0);
  6203. border:none;
  6204. border-radius:0px;
  6205. -moz-box-shadow:none;
  6206. -webkit-box-shadow:none;
  6207. box-shadow:none;
  6208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:14px;
  6212. color:#D7D7D7;
  6213. }
  6214. #u87867 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:1905px;
  6218. top:255px;
  6219. width:242px;
  6220. height:33px;
  6221. display:flex;
  6222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:14px;
  6226. color:#D7D7D7;
  6227. }
  6228. #u87867 .text {
  6229. position:absolute;
  6230. align-self:center;
  6231. padding:2px 2px 2px 2px;
  6232. box-sizing:border-box;
  6233. width:100%;
  6234. }
  6235. #u87867_div.disabled {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:242px;
  6241. height:33px;
  6242. background:inherit;
  6243. background-color:rgba(240, 240, 240, 1);
  6244. border:none;
  6245. border-radius:0px;
  6246. -moz-box-shadow:none;
  6247. -webkit-box-shadow:none;
  6248. box-shadow:none;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:14px;
  6253. color:#D7D7D7;
  6254. }
  6255. #u87867.disabled {
  6256. }
  6257. #u87868_div {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:36px;
  6263. height:40px;
  6264. background:inherit;
  6265. background-color:rgba(255, 255, 255, 0);
  6266. border:none;
  6267. border-left:0px;
  6268. border-top:0px;
  6269. border-right:0px;
  6270. border-radius:0px;
  6271. border-bottom-right-radius:0px;
  6272. border-bottom-left-radius:0px;
  6273. -moz-box-shadow:none;
  6274. -webkit-box-shadow:none;
  6275. box-shadow:none;
  6276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6277. font-weight:400;
  6278. font-style:normal;
  6279. font-size:14px;
  6280. }
  6281. #u87868 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:1893px;
  6285. top:292px;
  6286. width:36px;
  6287. height:40px;
  6288. display:flex;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:14px;
  6293. }
  6294. #u87868 .text {
  6295. position:absolute;
  6296. align-self:center;
  6297. padding:0px 0px 0px 0px;
  6298. box-sizing:border-box;
  6299. width:100%;
  6300. }
  6301. #u87868_text {
  6302. border-width:0px;
  6303. white-space:nowrap;
  6304. text-transform:none;
  6305. }
  6306. #u87869 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:0px;
  6312. height:0px;
  6313. }
  6314. #u87870_div {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:300px;
  6320. height:40px;
  6321. background:inherit;
  6322. background-color:rgba(255, 255, 255, 1);
  6323. box-sizing:border-box;
  6324. border-width:1px;
  6325. border-style:solid;
  6326. border-color:rgba(215, 215, 215, 1);
  6327. border-radius:4px;
  6328. -moz-box-shadow:none;
  6329. -webkit-box-shadow:none;
  6330. box-shadow:none;
  6331. font-size:14px;
  6332. }
  6333. #u87870 {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:1893px;
  6337. top:332px;
  6338. width:300px;
  6339. height:40px;
  6340. display:flex;
  6341. font-size:14px;
  6342. }
  6343. #u87870 .text {
  6344. position:absolute;
  6345. align-self:center;
  6346. padding:2px 2px 2px 2px;
  6347. box-sizing:border-box;
  6348. width:100%;
  6349. }
  6350. #u87870_text {
  6351. border-width:0px;
  6352. word-wrap:break-word;
  6353. text-transform:none;
  6354. visibility:hidden;
  6355. }
  6356. #u87871_input {
  6357. position:absolute;
  6358. left:0px;
  6359. top:0px;
  6360. width:286px;
  6361. height:31px;
  6362. padding:2px 2px 2px 2px;
  6363. font-family:'ArialMT', 'Arial', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:14px;
  6367. letter-spacing:normal;
  6368. color:#AAAAAA;
  6369. vertical-align:none;
  6370. text-align:left;
  6371. text-transform:none;
  6372. background-color:transparent;
  6373. border-color:transparent;
  6374. }
  6375. #u87871_input.disabled {
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:286px;
  6380. height:31px;
  6381. padding:2px 2px 2px 2px;
  6382. font-family:'ArialMT', 'Arial', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. font-size:14px;
  6386. letter-spacing:normal;
  6387. color:#AAAAAA;
  6388. vertical-align:none;
  6389. text-align:left;
  6390. text-transform:none;
  6391. background-color:transparent;
  6392. border-color:transparent;
  6393. }
  6394. #u87871_div {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:0px;
  6398. top:0px;
  6399. width:286px;
  6400. height:31px;
  6401. background:inherit;
  6402. background-color:rgba(255, 255, 255, 1);
  6403. border:none;
  6404. border-radius:0px;
  6405. -moz-box-shadow:none;
  6406. -webkit-box-shadow:none;
  6407. box-shadow:none;
  6408. font-size:14px;
  6409. color:#AAAAAA;
  6410. }
  6411. #u87871 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:1902px;
  6415. top:335px;
  6416. width:286px;
  6417. height:31px;
  6418. display:flex;
  6419. font-size:14px;
  6420. color:#AAAAAA;
  6421. }
  6422. #u87871 .text {
  6423. position:absolute;
  6424. align-self:flex-start;
  6425. padding:2px 2px 2px 2px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u87871_div.disabled {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:286px;
  6435. height:31px;
  6436. background:inherit;
  6437. background-color:rgba(240, 240, 240, 1);
  6438. border:none;
  6439. border-radius:0px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-size:14px;
  6444. color:#AAAAAA;
  6445. }
  6446. #u87871.disabled {
  6447. }
  6448. .u87871_input_option {
  6449. font-size:14px;
  6450. }
  6451. #u87872_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:50px;
  6457. height:40px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-left:0px;
  6462. border-top:0px;
  6463. border-right:0px;
  6464. border-radius:0px;
  6465. border-bottom-right-radius:0px;
  6466. border-bottom-left-radius:0px;
  6467. -moz-box-shadow:none;
  6468. -webkit-box-shadow:none;
  6469. box-shadow:none;
  6470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6471. font-weight:400;
  6472. font-style:normal;
  6473. font-size:14px;
  6474. }
  6475. #u87872 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:1893px;
  6479. top:213px;
  6480. width:50px;
  6481. height:40px;
  6482. display:flex;
  6483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6484. font-weight:400;
  6485. font-style:normal;
  6486. font-size:14px;
  6487. }
  6488. #u87872 .text {
  6489. position:absolute;
  6490. align-self:center;
  6491. padding:0px 0px 0px 0px;
  6492. box-sizing:border-box;
  6493. width:100%;
  6494. }
  6495. #u87872_text {
  6496. border-width:0px;
  6497. white-space:nowrap;
  6498. text-transform:none;
  6499. }
  6500. #u87873 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:0px;
  6506. height:0px;
  6507. }
  6508. #u87874_div {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:300px;
  6514. height:40px;
  6515. background:inherit;
  6516. background-color:rgba(255, 255, 255, 1);
  6517. box-sizing:border-box;
  6518. border-width:1px;
  6519. border-style:solid;
  6520. border-color:rgba(201, 201, 201, 1);
  6521. border-radius:4px;
  6522. -moz-box-shadow:none;
  6523. -webkit-box-shadow:none;
  6524. box-shadow:none;
  6525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. font-size:14px;
  6529. text-align:right;
  6530. }
  6531. #u87874 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:1893px;
  6535. top:411px;
  6536. width:300px;
  6537. height:40px;
  6538. display:flex;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:14px;
  6543. text-align:right;
  6544. }
  6545. #u87874 .text {
  6546. position:absolute;
  6547. align-self:center;
  6548. padding:2px 8px 2px 8px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u87874_text {
  6553. border-width:0px;
  6554. word-wrap:break-word;
  6555. text-transform:none;
  6556. visibility:hidden;
  6557. }
  6558. #u87875_input {
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:242px;
  6563. height:33px;
  6564. padding:2px 2px 2px 2px;
  6565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:14px;
  6569. letter-spacing:normal;
  6570. color:#D7D7D7;
  6571. vertical-align:none;
  6572. text-align:left;
  6573. text-transform:none;
  6574. background-color:transparent;
  6575. border-color:transparent;
  6576. }
  6577. #u87875_input.disabled {
  6578. position:absolute;
  6579. left:0px;
  6580. top:0px;
  6581. width:242px;
  6582. height:33px;
  6583. padding:2px 2px 2px 2px;
  6584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. font-size:14px;
  6588. letter-spacing:normal;
  6589. color:#D7D7D7;
  6590. vertical-align:none;
  6591. text-align:left;
  6592. text-transform:none;
  6593. background-color:transparent;
  6594. border-color:transparent;
  6595. }
  6596. #u87875_div {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:242px;
  6602. height:33px;
  6603. background:inherit;
  6604. background-color:rgba(255, 255, 255, 0);
  6605. border:none;
  6606. border-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:14px;
  6614. color:#D7D7D7;
  6615. }
  6616. #u87875 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:1905px;
  6620. top:414px;
  6621. width:242px;
  6622. height:33px;
  6623. display:flex;
  6624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6625. font-weight:400;
  6626. font-style:normal;
  6627. font-size:14px;
  6628. color:#D7D7D7;
  6629. }
  6630. #u87875 .text {
  6631. position:absolute;
  6632. align-self:center;
  6633. padding:2px 2px 2px 2px;
  6634. box-sizing:border-box;
  6635. width:100%;
  6636. }
  6637. #u87875_div.disabled {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:0px;
  6641. top:0px;
  6642. width:242px;
  6643. height:33px;
  6644. background:inherit;
  6645. background-color:rgba(240, 240, 240, 1);
  6646. border:none;
  6647. border-radius:0px;
  6648. -moz-box-shadow:none;
  6649. -webkit-box-shadow:none;
  6650. box-shadow:none;
  6651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6652. font-weight:400;
  6653. font-style:normal;
  6654. font-size:14px;
  6655. color:#D7D7D7;
  6656. }
  6657. #u87875.disabled {
  6658. }
  6659. #u87876_div {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:64px;
  6665. height:40px;
  6666. background:inherit;
  6667. background-color:rgba(255, 255, 255, 0);
  6668. border:none;
  6669. border-left:0px;
  6670. border-top:0px;
  6671. border-right:0px;
  6672. border-radius:0px;
  6673. border-bottom-right-radius:0px;
  6674. border-bottom-left-radius:0px;
  6675. -moz-box-shadow:none;
  6676. -webkit-box-shadow:none;
  6677. box-shadow:none;
  6678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6679. font-weight:400;
  6680. font-style:normal;
  6681. font-size:14px;
  6682. }
  6683. #u87876 {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:1893px;
  6687. top:372px;
  6688. width:64px;
  6689. height:40px;
  6690. display:flex;
  6691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6692. font-weight:400;
  6693. font-style:normal;
  6694. font-size:14px;
  6695. }
  6696. #u87876 .text {
  6697. position:absolute;
  6698. align-self:center;
  6699. padding:0px 0px 0px 0px;
  6700. box-sizing:border-box;
  6701. width:100%;
  6702. }
  6703. #u87876_text {
  6704. border-width:0px;
  6705. white-space:nowrap;
  6706. text-transform:none;
  6707. }
  6708. #u87877_div {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:0px;
  6712. top:0px;
  6713. width:160px;
  6714. height:160px;
  6715. background:inherit;
  6716. background-color:rgba(255, 255, 255, 1);
  6717. box-sizing:border-box;
  6718. border-width:1px;
  6719. border-style:solid;
  6720. border-color:rgba(201, 201, 201, 1);
  6721. border-radius:4px;
  6722. -moz-box-shadow:none;
  6723. -webkit-box-shadow:none;
  6724. box-shadow:none;
  6725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6726. font-weight:400;
  6727. font-style:normal;
  6728. }
  6729. #u87877 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:1683px;
  6733. top:123px;
  6734. width:160px;
  6735. height:160px;
  6736. display:flex;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. }
  6741. #u87877 .text {
  6742. position:absolute;
  6743. align-self:center;
  6744. padding:2px 8px 2px 8px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u87877_text {
  6749. border-width:0px;
  6750. word-wrap:break-word;
  6751. text-transform:none;
  6752. }
  6753. #u87878_div {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:29px;
  6759. height:40px;
  6760. background:inherit;
  6761. background-color:rgba(255, 255, 255, 0);
  6762. border:none;
  6763. border-left:0px;
  6764. border-top:0px;
  6765. border-right:0px;
  6766. border-radius:0px;
  6767. border-bottom-right-radius:0px;
  6768. border-bottom-left-radius:0px;
  6769. -moz-box-shadow:none;
  6770. -webkit-box-shadow:none;
  6771. box-shadow:none;
  6772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:14px;
  6776. }
  6777. #u87878 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:1893px;
  6781. top:531px;
  6782. width:29px;
  6783. height:40px;
  6784. display:flex;
  6785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:14px;
  6789. }
  6790. #u87878 .text {
  6791. position:absolute;
  6792. align-self:center;
  6793. padding:0px 0px 0px 0px;
  6794. box-sizing:border-box;
  6795. width:100%;
  6796. }
  6797. #u87878_text {
  6798. border-width:0px;
  6799. white-space:nowrap;
  6800. text-transform:none;
  6801. }
  6802. #u87879_img {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:50px;
  6808. height:31px;
  6809. }
  6810. #u87879 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:1893px;
  6814. top:571px;
  6815. width:50px;
  6816. height:31px;
  6817. display:flex;
  6818. }
  6819. #u87879 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 2px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u87879_text {
  6827. border-width:0px;
  6828. word-wrap:break-word;
  6829. text-transform:none;
  6830. visibility:hidden;
  6831. }
  6832. #u87880 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:0px;
  6838. height:0px;
  6839. }
  6840. #u87881_div {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:0px;
  6844. top:0px;
  6845. width:300px;
  6846. height:40px;
  6847. background:inherit;
  6848. background-color:rgba(255, 255, 255, 1);
  6849. box-sizing:border-box;
  6850. border-width:1px;
  6851. border-style:solid;
  6852. border-color:rgba(201, 201, 201, 1);
  6853. border-radius:4px;
  6854. -moz-box-shadow:none;
  6855. -webkit-box-shadow:none;
  6856. box-shadow:none;
  6857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:14px;
  6861. text-align:right;
  6862. }
  6863. #u87881 {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:1893px;
  6867. top:490px;
  6868. width:300px;
  6869. height:40px;
  6870. display:flex;
  6871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6872. font-weight:400;
  6873. font-style:normal;
  6874. font-size:14px;
  6875. text-align:right;
  6876. }
  6877. #u87881 .text {
  6878. position:absolute;
  6879. align-self:center;
  6880. padding:2px 8px 2px 8px;
  6881. box-sizing:border-box;
  6882. width:100%;
  6883. }
  6884. #u87881_text {
  6885. border-width:0px;
  6886. word-wrap:break-word;
  6887. text-transform:none;
  6888. visibility:hidden;
  6889. }
  6890. #u87882_input {
  6891. position:absolute;
  6892. left:0px;
  6893. top:0px;
  6894. width:242px;
  6895. height:33px;
  6896. padding:2px 2px 2px 2px;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:14px;
  6901. letter-spacing:normal;
  6902. color:#D7D7D7;
  6903. vertical-align:none;
  6904. text-align:left;
  6905. text-transform:none;
  6906. background-color:transparent;
  6907. border-color:transparent;
  6908. }
  6909. #u87882_input.disabled {
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:242px;
  6914. height:33px;
  6915. padding:2px 2px 2px 2px;
  6916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:14px;
  6920. letter-spacing:normal;
  6921. color:#D7D7D7;
  6922. vertical-align:none;
  6923. text-align:left;
  6924. text-transform:none;
  6925. background-color:transparent;
  6926. border-color:transparent;
  6927. }
  6928. #u87882_div {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:242px;
  6934. height:33px;
  6935. background:inherit;
  6936. background-color:rgba(255, 255, 255, 0);
  6937. border:none;
  6938. border-radius:0px;
  6939. -moz-box-shadow:none;
  6940. -webkit-box-shadow:none;
  6941. box-shadow:none;
  6942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:14px;
  6946. color:#D7D7D7;
  6947. }
  6948. #u87882 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:1905px;
  6952. top:493px;
  6953. width:242px;
  6954. height:33px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:14px;
  6960. color:#D7D7D7;
  6961. }
  6962. #u87882 .text {
  6963. position:absolute;
  6964. align-self:center;
  6965. padding:2px 2px 2px 2px;
  6966. box-sizing:border-box;
  6967. width:100%;
  6968. }
  6969. #u87882_div.disabled {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:0px;
  6973. top:0px;
  6974. width:242px;
  6975. height:33px;
  6976. background:inherit;
  6977. background-color:rgba(240, 240, 240, 1);
  6978. border:none;
  6979. border-radius:0px;
  6980. -moz-box-shadow:none;
  6981. -webkit-box-shadow:none;
  6982. box-shadow:none;
  6983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:14px;
  6987. color:#D7D7D7;
  6988. }
  6989. #u87882.disabled {
  6990. }
  6991. #u87883_div {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:57px;
  6997. height:40px;
  6998. background:inherit;
  6999. background-color:rgba(255, 255, 255, 0);
  7000. border:none;
  7001. border-left:0px;
  7002. border-top:0px;
  7003. border-right:0px;
  7004. border-radius:0px;
  7005. border-bottom-right-radius:0px;
  7006. border-bottom-left-radius:0px;
  7007. -moz-box-shadow:none;
  7008. -webkit-box-shadow:none;
  7009. box-shadow:none;
  7010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7011. font-weight:400;
  7012. font-style:normal;
  7013. font-size:14px;
  7014. }
  7015. #u87883 {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:1893px;
  7019. top:451px;
  7020. width:57px;
  7021. height:40px;
  7022. display:flex;
  7023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:14px;
  7027. }
  7028. #u87883 .text {
  7029. position:absolute;
  7030. align-self:center;
  7031. padding:0px 0px 0px 0px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u87883_text {
  7036. border-width:0px;
  7037. white-space:nowrap;
  7038. text-transform:none;
  7039. }
  7040. #u87884_div {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:73px;
  7046. height:40px;
  7047. background:inherit;
  7048. background-color:rgba(255, 255, 255, 0);
  7049. border:none;
  7050. border-left:0px;
  7051. border-top:0px;
  7052. border-right:0px;
  7053. border-radius:0px;
  7054. border-bottom-right-radius:0px;
  7055. border-bottom-left-radius:0px;
  7056. -moz-box-shadow:none;
  7057. -webkit-box-shadow:none;
  7058. box-shadow:none;
  7059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7060. font-weight:400;
  7061. font-style:normal;
  7062. font-size:12px;
  7063. color:#1890FF;
  7064. }
  7065. #u87884 {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:2203px;
  7069. top:163px;
  7070. width:73px;
  7071. height:40px;
  7072. display:flex;
  7073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7074. font-weight:400;
  7075. font-style:normal;
  7076. font-size:12px;
  7077. color:#1890FF;
  7078. }
  7079. #u87884 .text {
  7080. position:absolute;
  7081. align-self:center;
  7082. padding:0px 0px 0px 0px;
  7083. box-sizing:border-box;
  7084. width:100%;
  7085. }
  7086. #u87884_text {
  7087. border-width:0px;
  7088. white-space:nowrap;
  7089. text-transform:none;
  7090. }
  7091. #u87885 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:0px;
  7095. top:0px;
  7096. width:0px;
  7097. height:0px;
  7098. }
  7099. #u87886_div {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:0px;
  7103. top:0px;
  7104. width:200px;
  7105. height:1180px;
  7106. background:inherit;
  7107. background-color:rgba(255, 255, 255, 1);
  7108. border:none;
  7109. border-radius:0px;
  7110. -moz-box-shadow:none;
  7111. -webkit-box-shadow:none;
  7112. box-shadow:none;
  7113. }
  7114. #u87886 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:120px;
  7118. top:50px;
  7119. width:200px;
  7120. height:1180px;
  7121. display:flex;
  7122. }
  7123. #u87886 .text {
  7124. position:absolute;
  7125. align-self:center;
  7126. padding:2px 2px 2px 2px;
  7127. box-sizing:border-box;
  7128. width:100%;
  7129. }
  7130. #u87886_text {
  7131. border-width:0px;
  7132. word-wrap:break-word;
  7133. text-transform:none;
  7134. visibility:hidden;
  7135. }
  7136. #u87887_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:200px;
  7142. height:60px;
  7143. background:inherit;
  7144. background-color:rgba(224, 231, 247, 1);
  7145. border:none;
  7146. border-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7151. font-weight:500;
  7152. font-style:normal;
  7153. font-size:18px;
  7154. }
  7155. #u87887 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:120px;
  7159. top:50px;
  7160. width:200px;
  7161. height:60px;
  7162. display:flex;
  7163. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7164. font-weight:500;
  7165. font-style:normal;
  7166. font-size:18px;
  7167. }
  7168. #u87887 .text {
  7169. position:absolute;
  7170. align-self:center;
  7171. padding:0px 0px 0px 20px;
  7172. box-sizing:border-box;
  7173. width:100%;
  7174. }
  7175. #u87887_text {
  7176. border-width:0px;
  7177. word-wrap:break-word;
  7178. text-transform:none;
  7179. }
  7180. #u87888_div {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:65px;
  7186. height:22px;
  7187. background:inherit;
  7188. background-color:rgba(255, 255, 255, 0);
  7189. border:none;
  7190. border-radius:0px;
  7191. -moz-box-shadow:none;
  7192. -webkit-box-shadow:none;
  7193. box-shadow:none;
  7194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:16px;
  7198. }
  7199. #u87888 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:145px;
  7203. top:163px;
  7204. width:65px;
  7205. height:22px;
  7206. display:flex;
  7207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7208. font-weight:400;
  7209. font-style:normal;
  7210. font-size:16px;
  7211. }
  7212. #u87888 .text {
  7213. position:absolute;
  7214. align-self:flex-start;
  7215. padding:0px 0px 0px 0px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u87888_text {
  7220. border-width:0px;
  7221. white-space:nowrap;
  7222. text-transform:none;
  7223. }
  7224. #u87889_div {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:0px;
  7228. top:0px;
  7229. width:65px;
  7230. height:22px;
  7231. background:inherit;
  7232. background-color:rgba(255, 255, 255, 0);
  7233. border:none;
  7234. border-radius:0px;
  7235. -moz-box-shadow:none;
  7236. -webkit-box-shadow:none;
  7237. box-shadow:none;
  7238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7239. font-weight:400;
  7240. font-style:normal;
  7241. font-size:16px;
  7242. }
  7243. #u87889 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:145px;
  7247. top:205px;
  7248. width:65px;
  7249. height:22px;
  7250. display:flex;
  7251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7252. font-weight:400;
  7253. font-style:normal;
  7254. font-size:16px;
  7255. }
  7256. #u87889 .text {
  7257. position:absolute;
  7258. align-self:flex-start;
  7259. padding:0px 0px 0px 0px;
  7260. box-sizing:border-box;
  7261. width:100%;
  7262. }
  7263. #u87889_text {
  7264. border-width:0px;
  7265. white-space:nowrap;
  7266. text-transform:none;
  7267. }
  7268. #u87890_div {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:0px;
  7272. top:0px;
  7273. width:65px;
  7274. height:22px;
  7275. background:inherit;
  7276. background-color:rgba(255, 255, 255, 0);
  7277. border:none;
  7278. border-radius:0px;
  7279. -moz-box-shadow:none;
  7280. -webkit-box-shadow:none;
  7281. box-shadow:none;
  7282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:16px;
  7286. }
  7287. #u87890 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:145px;
  7291. top:247px;
  7292. width:65px;
  7293. height:22px;
  7294. display:flex;
  7295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:16px;
  7299. }
  7300. #u87890 .text {
  7301. position:absolute;
  7302. align-self:flex-start;
  7303. padding:0px 0px 0px 0px;
  7304. box-sizing:border-box;
  7305. width:100%;
  7306. }
  7307. #u87890_text {
  7308. border-width:0px;
  7309. white-space:nowrap;
  7310. text-transform:none;
  7311. }
  7312. #u87891_div {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:0px;
  7316. top:0px;
  7317. width:81px;
  7318. height:22px;
  7319. background:inherit;
  7320. background-color:rgba(255, 255, 255, 0);
  7321. border:none;
  7322. border-radius:0px;
  7323. -moz-box-shadow:none;
  7324. -webkit-box-shadow:none;
  7325. box-shadow:none;
  7326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7327. font-weight:400;
  7328. font-style:normal;
  7329. font-size:16px;
  7330. }
  7331. #u87891 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:145px;
  7335. top:289px;
  7336. width:81px;
  7337. height:22px;
  7338. display:flex;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:16px;
  7343. }
  7344. #u87891 .text {
  7345. position:absolute;
  7346. align-self:flex-start;
  7347. padding:0px 0px 0px 0px;
  7348. box-sizing:border-box;
  7349. width:100%;
  7350. }
  7351. #u87891_text {
  7352. border-width:0px;
  7353. white-space:nowrap;
  7354. text-transform:none;
  7355. }
  7356. #u87892_div {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:65px;
  7362. height:22px;
  7363. background:inherit;
  7364. background-color:rgba(255, 255, 255, 0);
  7365. border:none;
  7366. border-radius:0px;
  7367. -moz-box-shadow:none;
  7368. -webkit-box-shadow:none;
  7369. box-shadow:none;
  7370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7371. font-weight:400;
  7372. font-style:normal;
  7373. font-size:16px;
  7374. }
  7375. #u87892 {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:145px;
  7379. top:331px;
  7380. width:65px;
  7381. height:22px;
  7382. display:flex;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:16px;
  7387. }
  7388. #u87892 .text {
  7389. position:absolute;
  7390. align-self:flex-start;
  7391. padding:0px 0px 0px 0px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u87892_text {
  7396. border-width:0px;
  7397. white-space:nowrap;
  7398. text-transform:none;
  7399. }
  7400. #u87893_div {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:0px;
  7404. top:0px;
  7405. width:65px;
  7406. height:22px;
  7407. background:inherit;
  7408. background-color:rgba(255, 255, 255, 0);
  7409. border:none;
  7410. border-radius:0px;
  7411. -moz-box-shadow:none;
  7412. -webkit-box-shadow:none;
  7413. box-shadow:none;
  7414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:16px;
  7418. }
  7419. #u87893 {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:143px;
  7423. top:426px;
  7424. width:65px;
  7425. height:22px;
  7426. display:flex;
  7427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:16px;
  7431. }
  7432. #u87893 .text {
  7433. position:absolute;
  7434. align-self:flex-start;
  7435. padding:0px 0px 0px 0px;
  7436. box-sizing:border-box;
  7437. width:100%;
  7438. }
  7439. #u87893_text {
  7440. border-width:0px;
  7441. white-space:nowrap;
  7442. text-transform:none;
  7443. }
  7444. #u87894_img {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:201px;
  7450. height:2px;
  7451. }
  7452. #u87894 {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:120px;
  7456. top:373px;
  7457. width:200px;
  7458. height:1px;
  7459. display:flex;
  7460. }
  7461. #u87894 .text {
  7462. position:absolute;
  7463. align-self:center;
  7464. padding:2px 2px 2px 2px;
  7465. box-sizing:border-box;
  7466. width:100%;
  7467. }
  7468. #u87894_text {
  7469. border-width:0px;
  7470. word-wrap:break-word;
  7471. text-transform:none;
  7472. visibility:hidden;
  7473. }
  7474. #u87895_div {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:49px;
  7480. height:17px;
  7481. background:inherit;
  7482. background-color:rgba(255, 255, 255, 0);
  7483. border:none;
  7484. border-radius:0px;
  7485. -moz-box-shadow:none;
  7486. -webkit-box-shadow:none;
  7487. box-shadow:none;
  7488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7489. font-weight:400;
  7490. font-style:normal;
  7491. font-size:12px;
  7492. color:#AAAAAA;
  7493. }
  7494. #u87895 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:143px;
  7498. top:393px;
  7499. width:49px;
  7500. height:17px;
  7501. display:flex;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:12px;
  7506. color:#AAAAAA;
  7507. }
  7508. #u87895 .text {
  7509. position:absolute;
  7510. align-self:flex-start;
  7511. padding:0px 0px 0px 0px;
  7512. box-sizing:border-box;
  7513. width:100%;
  7514. }
  7515. #u87895_text {
  7516. border-width:0px;
  7517. white-space:nowrap;
  7518. text-transform:none;
  7519. }
  7520. #u87896_div {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:49px;
  7526. height:17px;
  7527. background:inherit;
  7528. background-color:rgba(255, 255, 255, 0);
  7529. border:none;
  7530. border-radius:0px;
  7531. -moz-box-shadow:none;
  7532. -webkit-box-shadow:none;
  7533. box-shadow:none;
  7534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7535. font-weight:400;
  7536. font-style:normal;
  7537. font-size:12px;
  7538. color:#AAAAAA;
  7539. }
  7540. #u87896 {
  7541. border-width:0px;
  7542. position:absolute;
  7543. left:143px;
  7544. top:130px;
  7545. width:49px;
  7546. height:17px;
  7547. display:flex;
  7548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7549. font-weight:400;
  7550. font-style:normal;
  7551. font-size:12px;
  7552. color:#AAAAAA;
  7553. }
  7554. #u87896 .text {
  7555. position:absolute;
  7556. align-self:flex-start;
  7557. padding:0px 0px 0px 0px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u87896_text {
  7562. border-width:0px;
  7563. white-space:nowrap;
  7564. text-transform:none;
  7565. }
  7566. #u87897_div {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:65px;
  7572. height:22px;
  7573. background:inherit;
  7574. background-color:rgba(255, 255, 255, 0);
  7575. border:none;
  7576. border-radius:0px;
  7577. -moz-box-shadow:none;
  7578. -webkit-box-shadow:none;
  7579. box-shadow:none;
  7580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7581. font-weight:400;
  7582. font-style:normal;
  7583. font-size:16px;
  7584. }
  7585. #u87897 {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:143px;
  7589. top:521px;
  7590. width:65px;
  7591. height:22px;
  7592. display:flex;
  7593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7594. font-weight:400;
  7595. font-style:normal;
  7596. font-size:16px;
  7597. }
  7598. #u87897 .text {
  7599. position:absolute;
  7600. align-self:flex-start;
  7601. padding:0px 0px 0px 0px;
  7602. box-sizing:border-box;
  7603. width:100%;
  7604. }
  7605. #u87897_text {
  7606. border-width:0px;
  7607. white-space:nowrap;
  7608. text-transform:none;
  7609. }
  7610. #u87898_img {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:0px;
  7614. top:0px;
  7615. width:201px;
  7616. height:2px;
  7617. }
  7618. #u87898 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:120px;
  7622. top:468px;
  7623. width:200px;
  7624. height:1px;
  7625. display:flex;
  7626. }
  7627. #u87898 .text {
  7628. position:absolute;
  7629. align-self:center;
  7630. padding:2px 2px 2px 2px;
  7631. box-sizing:border-box;
  7632. width:100%;
  7633. }
  7634. #u87898_text {
  7635. border-width:0px;
  7636. word-wrap:break-word;
  7637. text-transform:none;
  7638. visibility:hidden;
  7639. }
  7640. #u87899_div {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:0px;
  7644. top:0px;
  7645. width:73px;
  7646. height:17px;
  7647. background:inherit;
  7648. background-color:rgba(255, 255, 255, 0);
  7649. border:none;
  7650. border-radius:0px;
  7651. -moz-box-shadow:none;
  7652. -webkit-box-shadow:none;
  7653. box-shadow:none;
  7654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:12px;
  7658. color:#AAAAAA;
  7659. }
  7660. #u87899 {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:143px;
  7664. top:488px;
  7665. width:73px;
  7666. height:17px;
  7667. display:flex;
  7668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7669. font-weight:400;
  7670. font-style:normal;
  7671. font-size:12px;
  7672. color:#AAAAAA;
  7673. }
  7674. #u87899 .text {
  7675. position:absolute;
  7676. align-self:flex-start;
  7677. padding:0px 0px 0px 0px;
  7678. box-sizing:border-box;
  7679. width:100%;
  7680. }
  7681. #u87899_text {
  7682. border-width:0px;
  7683. white-space:nowrap;
  7684. text-transform:none;
  7685. }
  7686. #u87900_div {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:0px;
  7690. top:0px;
  7691. width:65px;
  7692. height:22px;
  7693. background:inherit;
  7694. background-color:rgba(255, 255, 255, 0);
  7695. border:none;
  7696. border-radius:0px;
  7697. -moz-box-shadow:none;
  7698. -webkit-box-shadow:none;
  7699. box-shadow:none;
  7700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7701. font-weight:400;
  7702. font-style:normal;
  7703. font-size:16px;
  7704. }
  7705. #u87900 {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:143px;
  7709. top:563px;
  7710. width:65px;
  7711. height:22px;
  7712. display:flex;
  7713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7714. font-weight:400;
  7715. font-style:normal;
  7716. font-size:16px;
  7717. }
  7718. #u87900 .text {
  7719. position:absolute;
  7720. align-self:flex-start;
  7721. padding:0px 0px 0px 0px;
  7722. box-sizing:border-box;
  7723. width:100%;
  7724. }
  7725. #u87900_text {
  7726. border-width:0px;
  7727. white-space:nowrap;
  7728. text-transform:none;
  7729. }
  7730. #u87901_div {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:0px;
  7734. top:0px;
  7735. width:97px;
  7736. height:22px;
  7737. background:inherit;
  7738. background-color:rgba(255, 255, 255, 0);
  7739. border:none;
  7740. border-radius:0px;
  7741. -moz-box-shadow:none;
  7742. -webkit-box-shadow:none;
  7743. box-shadow:none;
  7744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. font-size:16px;
  7748. }
  7749. #u87901 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:143px;
  7753. top:605px;
  7754. width:97px;
  7755. height:22px;
  7756. display:flex;
  7757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. font-size:16px;
  7761. }
  7762. #u87901 .text {
  7763. position:absolute;
  7764. align-self:flex-start;
  7765. padding:0px 0px 0px 0px;
  7766. box-sizing:border-box;
  7767. width:100%;
  7768. }
  7769. #u87901_text {
  7770. border-width:0px;
  7771. white-space:nowrap;
  7772. text-transform:none;
  7773. }
  7774. #u87902_div {
  7775. border-width:0px;
  7776. position:absolute;
  7777. left:0px;
  7778. top:0px;
  7779. width:65px;
  7780. height:22px;
  7781. background:inherit;
  7782. background-color:rgba(255, 255, 255, 0);
  7783. border:none;
  7784. border-radius:0px;
  7785. -moz-box-shadow:none;
  7786. -webkit-box-shadow:none;
  7787. box-shadow:none;
  7788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7789. font-weight:400;
  7790. font-style:normal;
  7791. font-size:16px;
  7792. }
  7793. #u87902 {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:143px;
  7797. top:647px;
  7798. width:65px;
  7799. height:22px;
  7800. display:flex;
  7801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7802. font-weight:400;
  7803. font-style:normal;
  7804. font-size:16px;
  7805. }
  7806. #u87902 .text {
  7807. position:absolute;
  7808. align-self:flex-start;
  7809. padding:0px 0px 0px 0px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u87902_text {
  7814. border-width:0px;
  7815. white-space:nowrap;
  7816. text-transform:none;
  7817. }