styles.css 258 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3221px;
  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. #u9839_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. #u9839 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u9839 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u9839_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u9840_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. #u9840 {
  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. #u9840 .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. #u9840_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u9841_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. #u9841 {
  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. #u9841 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u9841_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u9842 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u9843_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u9843 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u9843 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u9843_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u9844_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. #u9844 {
  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. #u9844 .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. #u9844_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u9845_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. #u9845 {
  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. #u9845 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u9845_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u9846 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u9847_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. #u9847 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  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. #u9847 .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. #u9847_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u9848_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u9848 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u9848 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u9848_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u9849 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u9850_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. #u9850 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  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. #u9850 .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. #u9850_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u9851_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u9851 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u9851 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u9851_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u9852 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u9853_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  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. #u9853 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  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. #u9853 .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. #u9853_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u9854_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u9854 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u9854 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u9854_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u9855 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u9856_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  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. #u9856 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  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. #u9856 .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. #u9856_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u9857_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u9857 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u9857 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u9857_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u9858 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u9859_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. #u9859 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  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. #u9859 .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. #u9859_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u9860_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u9860 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u9860 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u9860_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u9861 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u9862_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. #u9862 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  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. #u9862 .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. #u9862_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u9863_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u9863 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u9863 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u9863_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u9864 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u9865_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. #u9865 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  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. #u9865 .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. #u9865_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u9866_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u9866 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u9866 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u9866_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u9867 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u9868_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. #u9868 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  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. #u9868 .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. #u9868_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u9869_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u9869 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u9869 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u9869_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u9870 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u9871_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  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. color:#FFFFFF;
  955. }
  956. #u9871 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u9871 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u9871_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u9872_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u9872 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u9872 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u9872_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u9873 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u9874_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u9874 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u9874 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u9874_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u9875_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u9875 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u9875 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u9875_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u9876 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u9877_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u9877 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u9877 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u9877_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u9878_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u9878 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u9878 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u9878_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u9879 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u9880_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u9880_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u9880_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u9880 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u9880 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u9880_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u9880.disabled {
  1276. }
  1277. .u9880_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u9881_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u9881 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u9881 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u9881_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u9882_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u9882 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u9882 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u9882_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u9883_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u9883 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u9883 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u9883_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u9884 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u9885_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u9885 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u9885 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u9885_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u9886_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u9886 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u9886 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u9886_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u9887_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u9887 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u9887 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u9887_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u9888_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u9888 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u9888 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u9888_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u9889_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u9889 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u9889 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u9889_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u9890 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u9891_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u9891 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u9891 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u9891_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u9892_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u9892 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u9892 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u9892_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u9894 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:0px;
  1648. height:0px;
  1649. }
  1650. #u9895_div {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:200px;
  1656. height:1180px;
  1657. background:inherit;
  1658. background-color:rgba(255, 255, 255, 1);
  1659. border:none;
  1660. border-radius:0px;
  1661. -moz-box-shadow:none;
  1662. -webkit-box-shadow:none;
  1663. box-shadow:none;
  1664. }
  1665. #u9895 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:120px;
  1669. top:50px;
  1670. width:200px;
  1671. height:1180px;
  1672. display:flex;
  1673. }
  1674. #u9895 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 2px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u9895_text {
  1682. border-width:0px;
  1683. word-wrap:break-word;
  1684. text-transform:none;
  1685. visibility:hidden;
  1686. }
  1687. #u9896_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:200px;
  1693. height:60px;
  1694. background:inherit;
  1695. background-color:rgba(224, 231, 247, 1);
  1696. border:none;
  1697. border-radius:0px;
  1698. -moz-box-shadow:none;
  1699. -webkit-box-shadow:none;
  1700. box-shadow:none;
  1701. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1702. font-weight:500;
  1703. font-style:normal;
  1704. font-size:18px;
  1705. }
  1706. #u9896 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:120px;
  1710. top:50px;
  1711. width:200px;
  1712. height:60px;
  1713. display:flex;
  1714. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1715. font-weight:500;
  1716. font-style:normal;
  1717. font-size:18px;
  1718. }
  1719. #u9896 .text {
  1720. position:absolute;
  1721. align-self:center;
  1722. padding:0px 0px 0px 20px;
  1723. box-sizing:border-box;
  1724. width:100%;
  1725. }
  1726. #u9896_text {
  1727. border-width:0px;
  1728. word-wrap:break-word;
  1729. text-transform:none;
  1730. }
  1731. #u9897_div {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:65px;
  1737. height:22px;
  1738. background:inherit;
  1739. background-color:rgba(255, 255, 255, 0);
  1740. border:none;
  1741. border-radius:0px;
  1742. -moz-box-shadow:none;
  1743. -webkit-box-shadow:none;
  1744. box-shadow:none;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:16px;
  1749. }
  1750. #u9897 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:147px;
  1754. top:161px;
  1755. width:65px;
  1756. height:22px;
  1757. display:flex;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:16px;
  1762. }
  1763. #u9897 .text {
  1764. position:absolute;
  1765. align-self:flex-start;
  1766. padding:0px 0px 0px 0px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u9897_text {
  1771. border-width:0px;
  1772. white-space:nowrap;
  1773. text-transform:none;
  1774. }
  1775. #u9898_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:65px;
  1781. height:22px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 0);
  1784. border:none;
  1785. border-radius:0px;
  1786. -moz-box-shadow:none;
  1787. -webkit-box-shadow:none;
  1788. box-shadow:none;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:16px;
  1793. }
  1794. #u9898 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:147px;
  1798. top:203px;
  1799. width:65px;
  1800. height:22px;
  1801. display:flex;
  1802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1803. font-weight:400;
  1804. font-style:normal;
  1805. font-size:16px;
  1806. }
  1807. #u9898 .text {
  1808. position:absolute;
  1809. align-self:flex-start;
  1810. padding:0px 0px 0px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u9898_text {
  1815. border-width:0px;
  1816. white-space:nowrap;
  1817. text-transform:none;
  1818. }
  1819. #u9899_div {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:49px;
  1825. height:17px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 0);
  1828. border:none;
  1829. border-radius:0px;
  1830. -moz-box-shadow:none;
  1831. -webkit-box-shadow:none;
  1832. box-shadow:none;
  1833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1834. font-weight:400;
  1835. font-style:normal;
  1836. font-size:12px;
  1837. color:#AAAAAA;
  1838. }
  1839. #u9899 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:147px;
  1843. top:125px;
  1844. width:49px;
  1845. height:17px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:12px;
  1851. color:#AAAAAA;
  1852. }
  1853. #u9899 .text {
  1854. position:absolute;
  1855. align-self:flex-start;
  1856. padding:0px 0px 0px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u9899_text {
  1861. border-width:0px;
  1862. white-space:nowrap;
  1863. text-transform:none;
  1864. }
  1865. #u9900_div {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:65px;
  1871. height:22px;
  1872. background:inherit;
  1873. background-color:rgba(255, 255, 255, 0);
  1874. border:none;
  1875. border-radius:0px;
  1876. -moz-box-shadow:none;
  1877. -webkit-box-shadow:none;
  1878. box-shadow:none;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:16px;
  1883. }
  1884. #u9900 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:148px;
  1888. top:353px;
  1889. width:65px;
  1890. height:22px;
  1891. display:flex;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. font-size:16px;
  1896. }
  1897. #u9900 .text {
  1898. position:absolute;
  1899. align-self:flex-start;
  1900. padding:0px 0px 0px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u9900_text {
  1905. border-width:0px;
  1906. white-space:nowrap;
  1907. text-transform:none;
  1908. }
  1909. #u9901_div {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:49px;
  1915. height:17px;
  1916. background:inherit;
  1917. background-color:rgba(255, 255, 255, 0);
  1918. border:none;
  1919. border-radius:0px;
  1920. -moz-box-shadow:none;
  1921. -webkit-box-shadow:none;
  1922. box-shadow:none;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:12px;
  1927. color:#AAAAAA;
  1928. }
  1929. #u9901 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:148px;
  1933. top:317px;
  1934. width:49px;
  1935. height:17px;
  1936. display:flex;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#AAAAAA;
  1942. }
  1943. #u9901 .text {
  1944. position:absolute;
  1945. align-self:flex-start;
  1946. padding:0px 0px 0px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u9901_text {
  1951. border-width:0px;
  1952. white-space:nowrap;
  1953. text-transform:none;
  1954. }
  1955. #u9902_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:201px;
  1961. height:2px;
  1962. }
  1963. #u9902 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:121px;
  1967. top:295px;
  1968. width:200px;
  1969. height:1px;
  1970. display:flex;
  1971. }
  1972. #u9902 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 2px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u9902_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. visibility:hidden;
  1984. }
  1985. #u9903_div {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:65px;
  1991. height:22px;
  1992. background:inherit;
  1993. background-color:rgba(255, 255, 255, 0);
  1994. border:none;
  1995. border-radius:0px;
  1996. -moz-box-shadow:none;
  1997. -webkit-box-shadow:none;
  1998. box-shadow:none;
  1999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. font-size:16px;
  2003. }
  2004. #u9903 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:147px;
  2008. top:245px;
  2009. width:65px;
  2010. height:22px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:16px;
  2016. }
  2017. #u9903 .text {
  2018. position:absolute;
  2019. align-self:flex-start;
  2020. padding:0px 0px 0px 0px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u9903_text {
  2025. border-width:0px;
  2026. white-space:nowrap;
  2027. text-transform:none;
  2028. }
  2029. #u9904_div {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:1265px;
  2035. height:1180px;
  2036. background:inherit;
  2037. background-color:rgba(255, 255, 255, 1);
  2038. border:none;
  2039. border-radius:0px;
  2040. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2041. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2042. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2043. color:#1890FF;
  2044. }
  2045. #u9904 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:329px;
  2049. top:50px;
  2050. width:1265px;
  2051. height:1180px;
  2052. display:flex;
  2053. color:#1890FF;
  2054. }
  2055. #u9904 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u9904_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u9905_div {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:62px;
  2074. height:30px;
  2075. background:inherit;
  2076. background-color:rgba(24, 144, 255, 1);
  2077. box-sizing:border-box;
  2078. border-width:1px;
  2079. border-style:solid;
  2080. border-color:rgba(0, 153, 255, 1);
  2081. border-radius:4px;
  2082. -moz-box-shadow:none;
  2083. -webkit-box-shadow:none;
  2084. box-shadow:none;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:14px;
  2089. color:#FFFFFF;
  2090. }
  2091. #u9905 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:356px;
  2095. top:195px;
  2096. width:62px;
  2097. height:30px;
  2098. display:flex;
  2099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2100. font-weight:400;
  2101. font-style:normal;
  2102. font-size:14px;
  2103. color:#FFFFFF;
  2104. }
  2105. #u9905 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:5px 15px 5px 15px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u9905_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. }
  2117. #u9906 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:0px;
  2123. height:0px;
  2124. }
  2125. #u9907_div {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:59px;
  2131. height:30px;
  2132. background:inherit;
  2133. background-color:rgba(24, 144, 255, 1);
  2134. box-sizing:border-box;
  2135. border-width:1px;
  2136. border-style:solid;
  2137. border-color:rgba(0, 153, 255, 1);
  2138. border-radius:4px;
  2139. -moz-box-shadow:none;
  2140. -webkit-box-shadow:none;
  2141. box-shadow:none;
  2142. font-family:'Microsoft YaHei', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:14px;
  2146. color:#FFFFFF;
  2147. }
  2148. #u9907 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:1256px;
  2152. top:144px;
  2153. width:59px;
  2154. height:30px;
  2155. display:flex;
  2156. font-family:'Microsoft YaHei', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:14px;
  2160. color:#FFFFFF;
  2161. }
  2162. #u9907 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:5px 15px 5px 15px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u9907_text {
  2170. border-width:0px;
  2171. white-space:nowrap;
  2172. text-transform:none;
  2173. }
  2174. #u9908_div {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:55px;
  2180. height:30px;
  2181. background:inherit;
  2182. background-color:rgba(255, 255, 255, 1);
  2183. box-sizing:border-box;
  2184. border-width:1px;
  2185. border-style:solid;
  2186. border-color:rgba(170, 170, 170, 1);
  2187. border-radius:4px;
  2188. -moz-box-shadow:none;
  2189. -webkit-box-shadow:none;
  2190. box-shadow:none;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. color:#555555;
  2196. }
  2197. #u9908 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:1325px;
  2201. top:144px;
  2202. width:55px;
  2203. height:30px;
  2204. display:flex;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:12px;
  2209. color:#555555;
  2210. }
  2211. #u9908 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:5px 15px 5px 15px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u9908_text {
  2219. border-width:0px;
  2220. white-space:nowrap;
  2221. text-transform:none;
  2222. }
  2223. #u9909 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:0px;
  2229. height:0px;
  2230. }
  2231. #u9910_div {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:140px;
  2237. height:30px;
  2238. background:inherit;
  2239. background-color:rgba(255, 255, 255, 1);
  2240. box-sizing:border-box;
  2241. border-width:1px;
  2242. border-style:solid;
  2243. border-color:rgba(215, 215, 215, 1);
  2244. border-radius:4px;
  2245. -moz-box-shadow:none;
  2246. -webkit-box-shadow:none;
  2247. box-shadow:none;
  2248. font-size:11px;
  2249. }
  2250. #u9910 {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:656px;
  2254. top:145px;
  2255. width:140px;
  2256. height:30px;
  2257. display:flex;
  2258. font-size:11px;
  2259. }
  2260. #u9910 .text {
  2261. position:absolute;
  2262. align-self:center;
  2263. padding:2px 2px 2px 2px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u9910_text {
  2268. border-width:0px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. visibility:hidden;
  2272. }
  2273. #u9911_input {
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:126px;
  2278. height:23px;
  2279. padding:2px 2px 2px 2px;
  2280. font-family:'ArialMT', 'Arial', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:11px;
  2284. letter-spacing:normal;
  2285. color:#AAAAAA;
  2286. vertical-align:none;
  2287. text-align:left;
  2288. text-transform:none;
  2289. background-color:transparent;
  2290. border-color:transparent;
  2291. }
  2292. #u9911_input.disabled {
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:126px;
  2297. height:23px;
  2298. padding:2px 2px 2px 2px;
  2299. font-family:'ArialMT', 'Arial', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:11px;
  2303. letter-spacing:normal;
  2304. color:#AAAAAA;
  2305. vertical-align:none;
  2306. text-align:left;
  2307. text-transform:none;
  2308. background-color:transparent;
  2309. border-color:transparent;
  2310. }
  2311. #u9911_div {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:126px;
  2317. height:23px;
  2318. background:inherit;
  2319. background-color:rgba(255, 255, 255, 1);
  2320. border:none;
  2321. border-radius:0px;
  2322. -moz-box-shadow:none;
  2323. -webkit-box-shadow:none;
  2324. box-shadow:none;
  2325. font-size:11px;
  2326. color:#AAAAAA;
  2327. }
  2328. #u9911 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:663px;
  2332. top:147px;
  2333. width:126px;
  2334. height:23px;
  2335. display:flex;
  2336. font-size:11px;
  2337. color:#AAAAAA;
  2338. }
  2339. #u9911 .text {
  2340. position:absolute;
  2341. align-self:flex-start;
  2342. padding:2px 2px 2px 2px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u9911_div.disabled {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:126px;
  2352. height:23px;
  2353. background:inherit;
  2354. background-color:rgba(240, 240, 240, 1);
  2355. border:none;
  2356. border-radius:0px;
  2357. -moz-box-shadow:none;
  2358. -webkit-box-shadow:none;
  2359. box-shadow:none;
  2360. font-size:11px;
  2361. color:#AAAAAA;
  2362. }
  2363. #u9911.disabled {
  2364. }
  2365. .u9911_input_option {
  2366. font-size:11px;
  2367. }
  2368. #u9912 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:0px;
  2374. height:0px;
  2375. }
  2376. #u9913_div {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:140px;
  2382. height:30px;
  2383. background:inherit;
  2384. background-color:rgba(255, 255, 255, 1);
  2385. box-sizing:border-box;
  2386. border-width:1px;
  2387. border-style:solid;
  2388. border-color:rgba(201, 201, 201, 1);
  2389. border-radius:4px;
  2390. -moz-box-shadow:none;
  2391. -webkit-box-shadow:none;
  2392. box-shadow:none;
  2393. font-family:'Microsoft YaHei', sans-serif;
  2394. font-weight:400;
  2395. font-style:normal;
  2396. font-size:14px;
  2397. color:#CCCCCC;
  2398. text-align:left;
  2399. }
  2400. #u9913 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:1106px;
  2404. top:145px;
  2405. width:140px;
  2406. height:30px;
  2407. display:flex;
  2408. font-family:'Microsoft YaHei', sans-serif;
  2409. font-weight:400;
  2410. font-style:normal;
  2411. font-size:14px;
  2412. color:#CCCCCC;
  2413. text-align:left;
  2414. }
  2415. #u9913 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 8px 2px 8px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u9913_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u9914_input {
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:127px;
  2433. height:25px;
  2434. padding:2px 2px 2px 2px;
  2435. font-family:'Microsoft YaHei', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:10px;
  2439. letter-spacing:normal;
  2440. color:#000000;
  2441. vertical-align:none;
  2442. text-align:left;
  2443. text-transform:none;
  2444. background-color:transparent;
  2445. border-color:transparent;
  2446. }
  2447. #u9914_input.disabled {
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:127px;
  2452. height:25px;
  2453. padding:2px 2px 2px 2px;
  2454. font-family:'Microsoft YaHei', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:10px;
  2458. letter-spacing:normal;
  2459. color:#000000;
  2460. vertical-align:none;
  2461. text-align:left;
  2462. text-transform:none;
  2463. background-color:transparent;
  2464. border-color:transparent;
  2465. }
  2466. #u9914_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:127px;
  2472. height:25px;
  2473. background:inherit;
  2474. background-color:rgba(255, 255, 255, 1);
  2475. border:none;
  2476. border-radius:0px;
  2477. -moz-box-shadow:none;
  2478. -webkit-box-shadow:none;
  2479. box-shadow:none;
  2480. font-family:'Microsoft YaHei', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:10px;
  2484. }
  2485. #u9914 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:1114px;
  2489. top:146px;
  2490. width:127px;
  2491. height:25px;
  2492. display:flex;
  2493. font-family:'Microsoft YaHei', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:10px;
  2497. }
  2498. #u9914 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 2px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u9914_div.disabled {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:127px;
  2511. height:25px;
  2512. background:inherit;
  2513. background-color:rgba(240, 240, 240, 1);
  2514. border:none;
  2515. border-radius:0px;
  2516. -moz-box-shadow:none;
  2517. -webkit-box-shadow:none;
  2518. box-shadow:none;
  2519. font-family:'Microsoft YaHei', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:10px;
  2523. }
  2524. #u9914.disabled {
  2525. }
  2526. #u9915 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:0px;
  2532. height:0px;
  2533. }
  2534. #u9916_div {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:140px;
  2540. height:30px;
  2541. background:inherit;
  2542. background-color:rgba(255, 255, 255, 1);
  2543. box-sizing:border-box;
  2544. border-width:1px;
  2545. border-style:solid;
  2546. border-color:rgba(201, 201, 201, 1);
  2547. border-radius:4px;
  2548. -moz-box-shadow:none;
  2549. -webkit-box-shadow:none;
  2550. box-shadow:none;
  2551. font-family:'Microsoft YaHei', sans-serif;
  2552. font-weight:400;
  2553. font-style:normal;
  2554. font-size:14px;
  2555. color:#CCCCCC;
  2556. text-align:left;
  2557. }
  2558. #u9916 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:956px;
  2562. top:145px;
  2563. width:140px;
  2564. height:30px;
  2565. display:flex;
  2566. font-family:'Microsoft YaHei', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:14px;
  2570. color:#CCCCCC;
  2571. text-align:left;
  2572. }
  2573. #u9916 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 8px 2px 8px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u9916_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. visibility:hidden;
  2585. }
  2586. #u9917_input {
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:127px;
  2591. height:25px;
  2592. padding:2px 2px 2px 2px;
  2593. font-family:'Microsoft YaHei', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:10px;
  2597. letter-spacing:normal;
  2598. color:#000000;
  2599. vertical-align:none;
  2600. text-align:left;
  2601. text-transform:none;
  2602. background-color:transparent;
  2603. border-color:transparent;
  2604. }
  2605. #u9917_input.disabled {
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:127px;
  2610. height:25px;
  2611. padding:2px 2px 2px 2px;
  2612. font-family:'Microsoft YaHei', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:10px;
  2616. letter-spacing:normal;
  2617. color:#000000;
  2618. vertical-align:none;
  2619. text-align:left;
  2620. text-transform:none;
  2621. background-color:transparent;
  2622. border-color:transparent;
  2623. }
  2624. #u9917_div {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:127px;
  2630. height:25px;
  2631. background:inherit;
  2632. background-color:rgba(255, 255, 255, 1);
  2633. border:none;
  2634. border-radius:0px;
  2635. -moz-box-shadow:none;
  2636. -webkit-box-shadow:none;
  2637. box-shadow:none;
  2638. font-family:'Microsoft YaHei', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:10px;
  2642. }
  2643. #u9917 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:964px;
  2647. top:146px;
  2648. width:127px;
  2649. height:25px;
  2650. display:flex;
  2651. font-family:'Microsoft YaHei', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:10px;
  2655. }
  2656. #u9917 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 2px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u9917_div.disabled {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:127px;
  2669. height:25px;
  2670. background:inherit;
  2671. background-color:rgba(240, 240, 240, 1);
  2672. border:none;
  2673. border-radius:0px;
  2674. -moz-box-shadow:none;
  2675. -webkit-box-shadow:none;
  2676. box-shadow:none;
  2677. font-family:'Microsoft YaHei', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:10px;
  2681. }
  2682. #u9917.disabled {
  2683. }
  2684. #u9918 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:0px;
  2690. height:0px;
  2691. }
  2692. #u9919_div {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:140px;
  2698. height:30px;
  2699. background:inherit;
  2700. background-color:rgba(255, 255, 255, 1);
  2701. box-sizing:border-box;
  2702. border-width:1px;
  2703. border-style:solid;
  2704. border-color:rgba(215, 215, 215, 1);
  2705. border-radius:4px;
  2706. -moz-box-shadow:none;
  2707. -webkit-box-shadow:none;
  2708. box-shadow:none;
  2709. font-size:11px;
  2710. }
  2711. #u9919 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:356px;
  2715. top:145px;
  2716. width:140px;
  2717. height:30px;
  2718. display:flex;
  2719. font-size:11px;
  2720. }
  2721. #u9919 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 2px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u9919_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u9920_input {
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:126px;
  2739. height:23px;
  2740. padding:2px 2px 2px 2px;
  2741. font-family:'ArialMT', 'Arial', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:11px;
  2745. letter-spacing:normal;
  2746. color:#AAAAAA;
  2747. vertical-align:none;
  2748. text-align:left;
  2749. text-transform:none;
  2750. background-color:transparent;
  2751. border-color:transparent;
  2752. }
  2753. #u9920_input.disabled {
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:126px;
  2758. height:23px;
  2759. padding:2px 2px 2px 2px;
  2760. font-family:'ArialMT', 'Arial', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:11px;
  2764. letter-spacing:normal;
  2765. color:#AAAAAA;
  2766. vertical-align:none;
  2767. text-align:left;
  2768. text-transform:none;
  2769. background-color:transparent;
  2770. border-color:transparent;
  2771. }
  2772. #u9920_div {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:126px;
  2778. height:23px;
  2779. background:inherit;
  2780. background-color:rgba(255, 255, 255, 1);
  2781. border:none;
  2782. border-radius:0px;
  2783. -moz-box-shadow:none;
  2784. -webkit-box-shadow:none;
  2785. box-shadow:none;
  2786. font-size:11px;
  2787. color:#AAAAAA;
  2788. }
  2789. #u9920 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:363px;
  2793. top:147px;
  2794. width:126px;
  2795. height:23px;
  2796. display:flex;
  2797. font-size:11px;
  2798. color:#AAAAAA;
  2799. }
  2800. #u9920 .text {
  2801. position:absolute;
  2802. align-self:flex-start;
  2803. padding:2px 2px 2px 2px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u9920_div.disabled {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:126px;
  2813. height:23px;
  2814. background:inherit;
  2815. background-color:rgba(240, 240, 240, 1);
  2816. border:none;
  2817. border-radius:0px;
  2818. -moz-box-shadow:none;
  2819. -webkit-box-shadow:none;
  2820. box-shadow:none;
  2821. font-size:11px;
  2822. color:#AAAAAA;
  2823. }
  2824. #u9920.disabled {
  2825. }
  2826. .u9920_input_option {
  2827. font-size:11px;
  2828. }
  2829. #u9921 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:0px;
  2835. height:0px;
  2836. }
  2837. #u9922_div {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:140px;
  2843. height:30px;
  2844. background:inherit;
  2845. background-color:rgba(255, 255, 255, 1);
  2846. box-sizing:border-box;
  2847. border-width:1px;
  2848. border-style:solid;
  2849. border-color:rgba(215, 215, 215, 1);
  2850. border-radius:4px;
  2851. -moz-box-shadow:none;
  2852. -webkit-box-shadow:none;
  2853. box-shadow:none;
  2854. font-size:11px;
  2855. }
  2856. #u9922 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:806px;
  2860. top:145px;
  2861. width:140px;
  2862. height:30px;
  2863. display:flex;
  2864. font-size:11px;
  2865. }
  2866. #u9922 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u9922_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u9923_input {
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:126px;
  2884. height:23px;
  2885. padding:2px 2px 2px 2px;
  2886. font-family:'ArialMT', 'Arial', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:11px;
  2890. letter-spacing:normal;
  2891. color:#AAAAAA;
  2892. vertical-align:none;
  2893. text-align:left;
  2894. text-transform:none;
  2895. background-color:transparent;
  2896. border-color:transparent;
  2897. }
  2898. #u9923_input.disabled {
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:126px;
  2903. height:23px;
  2904. padding:2px 2px 2px 2px;
  2905. font-family:'ArialMT', 'Arial', sans-serif;
  2906. font-weight:400;
  2907. font-style:normal;
  2908. font-size:11px;
  2909. letter-spacing:normal;
  2910. color:#AAAAAA;
  2911. vertical-align:none;
  2912. text-align:left;
  2913. text-transform:none;
  2914. background-color:transparent;
  2915. border-color:transparent;
  2916. }
  2917. #u9923_div {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:126px;
  2923. height:23px;
  2924. background:inherit;
  2925. background-color:rgba(255, 255, 255, 1);
  2926. border:none;
  2927. border-radius:0px;
  2928. -moz-box-shadow:none;
  2929. -webkit-box-shadow:none;
  2930. box-shadow:none;
  2931. font-size:11px;
  2932. color:#AAAAAA;
  2933. }
  2934. #u9923 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:813px;
  2938. top:147px;
  2939. width:126px;
  2940. height:23px;
  2941. display:flex;
  2942. font-size:11px;
  2943. color:#AAAAAA;
  2944. }
  2945. #u9923 .text {
  2946. position:absolute;
  2947. align-self:flex-start;
  2948. padding:2px 2px 2px 2px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u9923_div.disabled {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:126px;
  2958. height:23px;
  2959. background:inherit;
  2960. background-color:rgba(240, 240, 240, 1);
  2961. border:none;
  2962. border-radius:0px;
  2963. -moz-box-shadow:none;
  2964. -webkit-box-shadow:none;
  2965. box-shadow:none;
  2966. font-size:11px;
  2967. color:#AAAAAA;
  2968. }
  2969. #u9923.disabled {
  2970. }
  2971. .u9923_input_option {
  2972. font-size:11px;
  2973. }
  2974. #u9924 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:0px;
  2980. height:0px;
  2981. }
  2982. #u9925_div {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:140px;
  2988. height:30px;
  2989. background:inherit;
  2990. background-color:rgba(255, 255, 255, 1);
  2991. box-sizing:border-box;
  2992. border-width:1px;
  2993. border-style:solid;
  2994. border-color:rgba(215, 215, 215, 1);
  2995. border-radius:4px;
  2996. -moz-box-shadow:none;
  2997. -webkit-box-shadow:none;
  2998. box-shadow:none;
  2999. font-size:11px;
  3000. }
  3001. #u9925 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:506px;
  3005. top:145px;
  3006. width:140px;
  3007. height:30px;
  3008. display:flex;
  3009. font-size:11px;
  3010. }
  3011. #u9925 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 2px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u9925_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u9926_input {
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:126px;
  3029. height:23px;
  3030. padding:2px 2px 2px 2px;
  3031. font-family:'ArialMT', 'Arial', sans-serif;
  3032. font-weight:400;
  3033. font-style:normal;
  3034. font-size:11px;
  3035. letter-spacing:normal;
  3036. color:#AAAAAA;
  3037. vertical-align:none;
  3038. text-align:left;
  3039. text-transform:none;
  3040. background-color:transparent;
  3041. border-color:transparent;
  3042. }
  3043. #u9926_input.disabled {
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:126px;
  3048. height:23px;
  3049. padding:2px 2px 2px 2px;
  3050. font-family:'ArialMT', 'Arial', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:11px;
  3054. letter-spacing:normal;
  3055. color:#AAAAAA;
  3056. vertical-align:none;
  3057. text-align:left;
  3058. text-transform:none;
  3059. background-color:transparent;
  3060. border-color:transparent;
  3061. }
  3062. #u9926_div {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:126px;
  3068. height:23px;
  3069. background:inherit;
  3070. background-color:rgba(255, 255, 255, 1);
  3071. border:none;
  3072. border-radius:0px;
  3073. -moz-box-shadow:none;
  3074. -webkit-box-shadow:none;
  3075. box-shadow:none;
  3076. font-size:11px;
  3077. color:#AAAAAA;
  3078. }
  3079. #u9926 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:513px;
  3083. top:147px;
  3084. width:126px;
  3085. height:23px;
  3086. display:flex;
  3087. font-size:11px;
  3088. color:#AAAAAA;
  3089. }
  3090. #u9926 .text {
  3091. position:absolute;
  3092. align-self:flex-start;
  3093. padding:2px 2px 2px 2px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u9926_div.disabled {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:126px;
  3103. height:23px;
  3104. background:inherit;
  3105. background-color:rgba(240, 240, 240, 1);
  3106. border:none;
  3107. border-radius:0px;
  3108. -moz-box-shadow:none;
  3109. -webkit-box-shadow:none;
  3110. box-shadow:none;
  3111. font-size:11px;
  3112. color:#AAAAAA;
  3113. }
  3114. #u9926.disabled {
  3115. }
  3116. .u9926_input_option {
  3117. font-size:11px;
  3118. }
  3119. #u9927 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:356px;
  3123. top:235px;
  3124. width:1222px;
  3125. height:328px;
  3126. }
  3127. #u9928_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:129px;
  3133. height:44px;
  3134. }
  3135. #u9928 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:129px;
  3141. height:44px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. color:#FFFFFF;
  3148. }
  3149. #u9928 .text {
  3150. position:absolute;
  3151. align-self:center;
  3152. padding:2px 2px 2px 0px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u9928_text {
  3157. border-width:0px;
  3158. word-wrap:break-word;
  3159. text-transform:none;
  3160. }
  3161. #u9929_img {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:117px;
  3167. height:44px;
  3168. }
  3169. #u9929 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:129px;
  3173. top:0px;
  3174. width:117px;
  3175. height:44px;
  3176. display:flex;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. color:#FFFFFF;
  3182. }
  3183. #u9929 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 0px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u9929_text {
  3191. border-width:0px;
  3192. word-wrap:break-word;
  3193. text-transform:none;
  3194. }
  3195. #u9930_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:134px;
  3201. height:44px;
  3202. }
  3203. #u9930 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:246px;
  3207. top:0px;
  3208. width:134px;
  3209. height:44px;
  3210. display:flex;
  3211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:12px;
  3215. color:#FFFFFF;
  3216. }
  3217. #u9930 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:2px 2px 2px 0px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u9930_text {
  3225. border-width:0px;
  3226. word-wrap:break-word;
  3227. text-transform:none;
  3228. }
  3229. #u9931_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:134px;
  3235. height:44px;
  3236. }
  3237. #u9931 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:380px;
  3241. top:0px;
  3242. width:134px;
  3243. height:44px;
  3244. display:flex;
  3245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3246. font-weight:400;
  3247. font-style:normal;
  3248. font-size:12px;
  3249. color:#FFFFFF;
  3250. }
  3251. #u9931 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:2px 2px 2px 0px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u9931_text {
  3259. border-width:0px;
  3260. word-wrap:break-word;
  3261. text-transform:none;
  3262. }
  3263. #u9932_img {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:117px;
  3269. height:44px;
  3270. }
  3271. #u9932 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:514px;
  3275. top:0px;
  3276. width:117px;
  3277. height:44px;
  3278. display:flex;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. color:#FFFFFF;
  3284. }
  3285. #u9932 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 0px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u9932_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. }
  3297. #u9933_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:117px;
  3303. height:44px;
  3304. }
  3305. #u9933 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:631px;
  3309. top:0px;
  3310. width:117px;
  3311. height:44px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:12px;
  3317. color:#FFFFFF;
  3318. }
  3319. #u9933 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:2px 2px 2px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u9933_text {
  3327. border-width:0px;
  3328. word-wrap:break-word;
  3329. text-transform:none;
  3330. }
  3331. #u9934_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:117px;
  3337. height:44px;
  3338. }
  3339. #u9934 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:748px;
  3343. top:0px;
  3344. width:117px;
  3345. height:44px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. color:#FFFFFF;
  3352. }
  3353. #u9934 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u9934_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. }
  3365. #u9935_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:117px;
  3371. height:44px;
  3372. }
  3373. #u9935 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:865px;
  3377. top:0px;
  3378. width:117px;
  3379. height:44px;
  3380. display:flex;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:12px;
  3385. color:#FFFFFF;
  3386. }
  3387. #u9935 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 0px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u9935_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. }
  3399. #u9936_img {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:117px;
  3405. height:44px;
  3406. }
  3407. #u9936 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:982px;
  3411. top:0px;
  3412. width:117px;
  3413. height:44px;
  3414. display:flex;
  3415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3416. font-weight:400;
  3417. font-style:normal;
  3418. font-size:12px;
  3419. color:#FFFFFF;
  3420. }
  3421. #u9936 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:2px 2px 2px 0px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u9936_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. }
  3433. #u9937_img {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:123px;
  3439. height:44px;
  3440. }
  3441. #u9937 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:1099px;
  3445. top:0px;
  3446. width:123px;
  3447. height:44px;
  3448. display:flex;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:12px;
  3453. color:#FFFFFF;
  3454. }
  3455. #u9937 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u9937_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. }
  3467. #u9938_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:129px;
  3473. height:38px;
  3474. }
  3475. #u9938 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:44px;
  3480. width:129px;
  3481. height:38px;
  3482. display:flex;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. color:#333333;
  3488. }
  3489. #u9938 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u9938_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u9939_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:117px;
  3508. height:38px;
  3509. }
  3510. #u9939 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:129px;
  3514. top:44px;
  3515. width:117px;
  3516. height:38px;
  3517. display:flex;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:12px;
  3522. color:#333333;
  3523. }
  3524. #u9939 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 0px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u9939_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u9940_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:134px;
  3543. height:38px;
  3544. }
  3545. #u9940 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:246px;
  3549. top:44px;
  3550. width:134px;
  3551. height:38px;
  3552. display:flex;
  3553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:12px;
  3557. color:#333333;
  3558. }
  3559. #u9940 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 0px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u9940_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. visibility:hidden;
  3571. }
  3572. #u9941_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:134px;
  3578. height:38px;
  3579. }
  3580. #u9941 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:380px;
  3584. top:44px;
  3585. width:134px;
  3586. height:38px;
  3587. display:flex;
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:12px;
  3592. color:#333333;
  3593. }
  3594. #u9941 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 0px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u9941_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. visibility:hidden;
  3606. }
  3607. #u9942_img {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:117px;
  3613. height:38px;
  3614. }
  3615. #u9942 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:514px;
  3619. top:44px;
  3620. width:117px;
  3621. height:38px;
  3622. display:flex;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:12px;
  3627. color:#333333;
  3628. }
  3629. #u9942 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 2px 2px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u9942_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u9943_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:117px;
  3648. height:38px;
  3649. }
  3650. #u9943 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:631px;
  3654. top:44px;
  3655. width:117px;
  3656. height:38px;
  3657. display:flex;
  3658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:12px;
  3662. color:#333333;
  3663. }
  3664. #u9943 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u9943_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u9944_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:117px;
  3683. height:38px;
  3684. }
  3685. #u9944 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:748px;
  3689. top:44px;
  3690. width:117px;
  3691. height:38px;
  3692. display:flex;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#333333;
  3698. }
  3699. #u9944 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u9944_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u9945_img {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:117px;
  3718. height:38px;
  3719. }
  3720. #u9945 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:865px;
  3724. top:44px;
  3725. width:117px;
  3726. height:38px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:12px;
  3732. color:#333333;
  3733. }
  3734. #u9945 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u9945_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. visibility:hidden;
  3746. }
  3747. #u9946_img {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:117px;
  3753. height:38px;
  3754. }
  3755. #u9946 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:982px;
  3759. top:44px;
  3760. width:117px;
  3761. height:38px;
  3762. display:flex;
  3763. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:12px;
  3767. color:#333333;
  3768. }
  3769. #u9946 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:2px 2px 2px 0px;
  3773. box-sizing:border-box;
  3774. width:100%;
  3775. }
  3776. #u9946_text {
  3777. border-width:0px;
  3778. word-wrap:break-word;
  3779. text-transform:none;
  3780. visibility:hidden;
  3781. }
  3782. #u9947_img {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:123px;
  3788. height:38px;
  3789. }
  3790. #u9947 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:1099px;
  3794. top:44px;
  3795. width:123px;
  3796. height:38px;
  3797. display:flex;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:12px;
  3802. color:#0089FE;
  3803. }
  3804. #u9947 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 0px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u9947_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. }
  3816. #u9948_img {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:129px;
  3822. height:38px;
  3823. }
  3824. #u9948 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:82px;
  3829. width:129px;
  3830. height:38px;
  3831. display:flex;
  3832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:12px;
  3836. color:#333333;
  3837. }
  3838. #u9948 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 2px 2px 0px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u9948_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u9949_img {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:117px;
  3857. height:38px;
  3858. }
  3859. #u9949 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:129px;
  3863. top:82px;
  3864. width:117px;
  3865. height:38px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:12px;
  3871. color:#333333;
  3872. }
  3873. #u9949 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u9949_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u9950_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:134px;
  3892. height:38px;
  3893. }
  3894. #u9950 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:246px;
  3898. top:82px;
  3899. width:134px;
  3900. height:38px;
  3901. display:flex;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:12px;
  3906. color:#333333;
  3907. }
  3908. #u9950 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 0px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u9950_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u9951_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:134px;
  3927. height:38px;
  3928. }
  3929. #u9951 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:380px;
  3933. top:82px;
  3934. width:134px;
  3935. height:38px;
  3936. display:flex;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:12px;
  3941. color:#333333;
  3942. }
  3943. #u9951 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:2px 2px 2px 0px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u9951_text {
  3951. border-width:0px;
  3952. word-wrap:break-word;
  3953. text-transform:none;
  3954. visibility:hidden;
  3955. }
  3956. #u9952_img {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:117px;
  3962. height:38px;
  3963. }
  3964. #u9952 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:514px;
  3968. top:82px;
  3969. width:117px;
  3970. height:38px;
  3971. display:flex;
  3972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3973. font-weight:400;
  3974. font-style:normal;
  3975. font-size:12px;
  3976. color:#333333;
  3977. }
  3978. #u9952 .text {
  3979. position:absolute;
  3980. align-self:center;
  3981. padding:2px 2px 2px 0px;
  3982. box-sizing:border-box;
  3983. width:100%;
  3984. }
  3985. #u9952_text {
  3986. border-width:0px;
  3987. word-wrap:break-word;
  3988. text-transform:none;
  3989. visibility:hidden;
  3990. }
  3991. #u9953_img {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:117px;
  3997. height:38px;
  3998. }
  3999. #u9953 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:631px;
  4003. top:82px;
  4004. width:117px;
  4005. height:38px;
  4006. display:flex;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:12px;
  4011. color:#333333;
  4012. }
  4013. #u9953 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 0px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u9953_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u9954_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:117px;
  4032. height:38px;
  4033. }
  4034. #u9954 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:748px;
  4038. top:82px;
  4039. width:117px;
  4040. height:38px;
  4041. display:flex;
  4042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:12px;
  4046. color:#333333;
  4047. }
  4048. #u9954 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 0px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u9954_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. visibility:hidden;
  4060. }
  4061. #u9955_img {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:117px;
  4067. height:38px;
  4068. }
  4069. #u9955 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:865px;
  4073. top:82px;
  4074. width:117px;
  4075. height:38px;
  4076. display:flex;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:12px;
  4081. color:#333333;
  4082. }
  4083. #u9955 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u9955_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u9956_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:117px;
  4102. height:38px;
  4103. }
  4104. #u9956 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:982px;
  4108. top:82px;
  4109. width:117px;
  4110. height:38px;
  4111. display:flex;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:12px;
  4116. color:#333333;
  4117. }
  4118. #u9956 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 0px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u9956_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u9957_img {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:123px;
  4137. height:38px;
  4138. }
  4139. #u9957 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:1099px;
  4143. top:82px;
  4144. width:123px;
  4145. height:38px;
  4146. display:flex;
  4147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:12px;
  4151. color:#0089FE;
  4152. }
  4153. #u9957 .text {
  4154. position:absolute;
  4155. align-self:center;
  4156. padding:2px 2px 2px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u9957_text {
  4161. border-width:0px;
  4162. word-wrap:break-word;
  4163. text-transform:none;
  4164. }
  4165. #u9958_img {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:129px;
  4171. height:38px;
  4172. }
  4173. #u9958 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:120px;
  4178. width:129px;
  4179. height:38px;
  4180. display:flex;
  4181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:12px;
  4185. color:#333333;
  4186. }
  4187. #u9958 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 0px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u9958_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. visibility:hidden;
  4199. }
  4200. #u9959_img {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:117px;
  4206. height:38px;
  4207. }
  4208. #u9959 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:129px;
  4212. top:120px;
  4213. width:117px;
  4214. height:38px;
  4215. display:flex;
  4216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:12px;
  4220. color:#333333;
  4221. }
  4222. #u9959 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 0px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u9959_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u9960_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:134px;
  4241. height:38px;
  4242. }
  4243. #u9960 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:246px;
  4247. top:120px;
  4248. width:134px;
  4249. height:38px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:12px;
  4255. color:#333333;
  4256. }
  4257. #u9960 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:2px 2px 2px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u9960_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. visibility:hidden;
  4269. }
  4270. #u9961_img {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:134px;
  4276. height:38px;
  4277. }
  4278. #u9961 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:380px;
  4282. top:120px;
  4283. width:134px;
  4284. height:38px;
  4285. display:flex;
  4286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:12px;
  4290. color:#333333;
  4291. }
  4292. #u9961 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 0px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u9961_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u9962_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:117px;
  4311. height:38px;
  4312. }
  4313. #u9962 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:514px;
  4317. top:120px;
  4318. width:117px;
  4319. height:38px;
  4320. display:flex;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:12px;
  4325. color:#333333;
  4326. }
  4327. #u9962 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u9962_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u9963_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:117px;
  4346. height:38px;
  4347. }
  4348. #u9963 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:631px;
  4352. top:120px;
  4353. width:117px;
  4354. height:38px;
  4355. display:flex;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:12px;
  4360. color:#333333;
  4361. }
  4362. #u9963 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:2px 2px 2px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u9963_text {
  4370. border-width:0px;
  4371. word-wrap:break-word;
  4372. text-transform:none;
  4373. visibility:hidden;
  4374. }
  4375. #u9964_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:117px;
  4381. height:38px;
  4382. }
  4383. #u9964 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:748px;
  4387. top:120px;
  4388. width:117px;
  4389. height:38px;
  4390. display:flex;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:12px;
  4395. color:#333333;
  4396. }
  4397. #u9964 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 0px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u9964_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u9965_img {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:117px;
  4416. height:38px;
  4417. }
  4418. #u9965 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:865px;
  4422. top:120px;
  4423. width:117px;
  4424. height:38px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. color:#333333;
  4431. }
  4432. #u9965 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u9965_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. visibility:hidden;
  4444. }
  4445. #u9966_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:117px;
  4451. height:38px;
  4452. }
  4453. #u9966 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:982px;
  4457. top:120px;
  4458. width:117px;
  4459. height:38px;
  4460. display:flex;
  4461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4462. font-weight:400;
  4463. font-style:normal;
  4464. font-size:12px;
  4465. color:#333333;
  4466. }
  4467. #u9966 .text {
  4468. position:absolute;
  4469. align-self:center;
  4470. padding:2px 2px 2px 0px;
  4471. box-sizing:border-box;
  4472. width:100%;
  4473. }
  4474. #u9966_text {
  4475. border-width:0px;
  4476. word-wrap:break-word;
  4477. text-transform:none;
  4478. visibility:hidden;
  4479. }
  4480. #u9967_img {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:123px;
  4486. height:38px;
  4487. }
  4488. #u9967 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:1099px;
  4492. top:120px;
  4493. width:123px;
  4494. height:38px;
  4495. display:flex;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. font-size:12px;
  4500. color:#0089FE;
  4501. }
  4502. #u9967 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:2px 2px 2px 0px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u9967_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. visibility:hidden;
  4514. }
  4515. #u9968_img {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:129px;
  4521. height:38px;
  4522. }
  4523. #u9968 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:158px;
  4528. width:129px;
  4529. height:38px;
  4530. display:flex;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:12px;
  4535. color:#333333;
  4536. }
  4537. #u9968 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 0px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u9968_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u9969_img {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:117px;
  4556. height:38px;
  4557. }
  4558. #u9969 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:129px;
  4562. top:158px;
  4563. width:117px;
  4564. height:38px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:12px;
  4570. color:#333333;
  4571. }
  4572. #u9969 .text {
  4573. position:absolute;
  4574. align-self:center;
  4575. padding:2px 2px 2px 0px;
  4576. box-sizing:border-box;
  4577. width:100%;
  4578. }
  4579. #u9969_text {
  4580. border-width:0px;
  4581. word-wrap:break-word;
  4582. text-transform:none;
  4583. visibility:hidden;
  4584. }
  4585. #u9970_img {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:134px;
  4591. height:38px;
  4592. }
  4593. #u9970 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:246px;
  4597. top:158px;
  4598. width:134px;
  4599. height:38px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:12px;
  4605. color:#333333;
  4606. }
  4607. #u9970 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 0px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u9970_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u9971_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:134px;
  4626. height:38px;
  4627. }
  4628. #u9971 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:380px;
  4632. top:158px;
  4633. width:134px;
  4634. height:38px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:12px;
  4640. color:#333333;
  4641. }
  4642. #u9971 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:2px 2px 2px 0px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u9971_text {
  4650. border-width:0px;
  4651. word-wrap:break-word;
  4652. text-transform:none;
  4653. visibility:hidden;
  4654. }
  4655. #u9972_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:117px;
  4661. height:38px;
  4662. }
  4663. #u9972 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:514px;
  4667. top:158px;
  4668. width:117px;
  4669. height:38px;
  4670. display:flex;
  4671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4672. font-weight:400;
  4673. font-style:normal;
  4674. font-size:12px;
  4675. color:#333333;
  4676. }
  4677. #u9972 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 0px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u9972_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. visibility:hidden;
  4689. }
  4690. #u9973_img {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:117px;
  4696. height:38px;
  4697. }
  4698. #u9973 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:631px;
  4702. top:158px;
  4703. width:117px;
  4704. height:38px;
  4705. display:flex;
  4706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:12px;
  4710. color:#333333;
  4711. }
  4712. #u9973 .text {
  4713. position:absolute;
  4714. align-self:center;
  4715. padding:2px 2px 2px 0px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u9973_text {
  4720. border-width:0px;
  4721. word-wrap:break-word;
  4722. text-transform:none;
  4723. visibility:hidden;
  4724. }
  4725. #u9974_img {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:117px;
  4731. height:38px;
  4732. }
  4733. #u9974 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:748px;
  4737. top:158px;
  4738. width:117px;
  4739. height:38px;
  4740. display:flex;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:12px;
  4745. color:#333333;
  4746. }
  4747. #u9974 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u9974_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. visibility:hidden;
  4759. }
  4760. #u9975_img {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:117px;
  4766. height:38px;
  4767. }
  4768. #u9975 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:865px;
  4772. top:158px;
  4773. width:117px;
  4774. height:38px;
  4775. display:flex;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:12px;
  4780. color:#333333;
  4781. }
  4782. #u9975 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 0px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u9975_text {
  4790. border-width:0px;
  4791. word-wrap:break-word;
  4792. text-transform:none;
  4793. visibility:hidden;
  4794. }
  4795. #u9976_img {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:117px;
  4801. height:38px;
  4802. }
  4803. #u9976 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:982px;
  4807. top:158px;
  4808. width:117px;
  4809. height:38px;
  4810. display:flex;
  4811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:12px;
  4815. color:#333333;
  4816. }
  4817. #u9976 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 0px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u9976_text {
  4825. border-width:0px;
  4826. word-wrap:break-word;
  4827. text-transform:none;
  4828. visibility:hidden;
  4829. }
  4830. #u9977_img {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:123px;
  4836. height:38px;
  4837. }
  4838. #u9977 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:1099px;
  4842. top:158px;
  4843. width:123px;
  4844. height:38px;
  4845. display:flex;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:12px;
  4850. color:#AAAAAA;
  4851. }
  4852. #u9977 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 0px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u9977_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u9978_img {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:129px;
  4871. height:35px;
  4872. }
  4873. #u9978 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:196px;
  4878. width:129px;
  4879. height:35px;
  4880. display:flex;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:12px;
  4885. color:#333333;
  4886. }
  4887. #u9978 .text {
  4888. position:absolute;
  4889. align-self:center;
  4890. padding:2px 2px 2px 0px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u9978_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. visibility:hidden;
  4899. }
  4900. #u9979_img {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:117px;
  4906. height:35px;
  4907. }
  4908. #u9979 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:129px;
  4912. top:196px;
  4913. width:117px;
  4914. height:35px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:12px;
  4920. color:#333333;
  4921. }
  4922. #u9979 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u9979_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u9980_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:134px;
  4941. height:35px;
  4942. }
  4943. #u9980 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:246px;
  4947. top:196px;
  4948. width:134px;
  4949. height:35px;
  4950. display:flex;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. color:#333333;
  4956. }
  4957. #u9980 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u9980_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u9981_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:134px;
  4976. height:35px;
  4977. }
  4978. #u9981 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:380px;
  4982. top:196px;
  4983. width:134px;
  4984. height:35px;
  4985. display:flex;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#333333;
  4991. }
  4992. #u9981 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 0px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u9981_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u9982_img {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:117px;
  5011. height:35px;
  5012. }
  5013. #u9982 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:514px;
  5017. top:196px;
  5018. width:117px;
  5019. height:35px;
  5020. display:flex;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#333333;
  5026. }
  5027. #u9982 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u9982_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. visibility:hidden;
  5039. }
  5040. #u9983_img {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:117px;
  5046. height:35px;
  5047. }
  5048. #u9983 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:631px;
  5052. top:196px;
  5053. width:117px;
  5054. height:35px;
  5055. display:flex;
  5056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:12px;
  5060. color:#333333;
  5061. }
  5062. #u9983 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 0px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u9983_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u9984_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:117px;
  5081. height:35px;
  5082. }
  5083. #u9984 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:748px;
  5087. top:196px;
  5088. width:117px;
  5089. height:35px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:12px;
  5095. color:#333333;
  5096. }
  5097. #u9984 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 0px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u9984_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u9985_img {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:117px;
  5116. height:35px;
  5117. }
  5118. #u9985 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:865px;
  5122. top:196px;
  5123. width:117px;
  5124. height:35px;
  5125. display:flex;
  5126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5127. font-weight:400;
  5128. font-style:normal;
  5129. font-size:12px;
  5130. color:#333333;
  5131. }
  5132. #u9985 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 0px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u9985_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. visibility:hidden;
  5144. }
  5145. #u9986_img {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:117px;
  5151. height:35px;
  5152. }
  5153. #u9986 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:982px;
  5157. top:196px;
  5158. width:117px;
  5159. height:35px;
  5160. display:flex;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:12px;
  5165. color:#333333;
  5166. }
  5167. #u9986 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:2px 2px 2px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u9986_text {
  5175. border-width:0px;
  5176. word-wrap:break-word;
  5177. text-transform:none;
  5178. visibility:hidden;
  5179. }
  5180. #u9987_img {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:123px;
  5186. height:35px;
  5187. }
  5188. #u9987 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:1099px;
  5192. top:196px;
  5193. width:123px;
  5194. height:35px;
  5195. display:flex;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:12px;
  5200. color:#AAAAAA;
  5201. }
  5202. #u9987 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 0px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u9987_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. visibility:hidden;
  5214. }
  5215. #u9988_img {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:129px;
  5221. height:35px;
  5222. }
  5223. #u9988 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:231px;
  5228. width:129px;
  5229. height:35px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:12px;
  5235. color:#333333;
  5236. }
  5237. #u9988 .text {
  5238. position:absolute;
  5239. align-self:center;
  5240. padding:2px 2px 2px 0px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u9988_text {
  5245. border-width:0px;
  5246. word-wrap:break-word;
  5247. text-transform:none;
  5248. visibility:hidden;
  5249. }
  5250. #u9989_img {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:0px;
  5254. top:0px;
  5255. width:117px;
  5256. height:35px;
  5257. }
  5258. #u9989 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:129px;
  5262. top:231px;
  5263. width:117px;
  5264. height:35px;
  5265. display:flex;
  5266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:12px;
  5270. color:#333333;
  5271. }
  5272. #u9989 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 0px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u9989_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u9990_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:134px;
  5291. height:35px;
  5292. }
  5293. #u9990 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:246px;
  5297. top:231px;
  5298. width:134px;
  5299. height:35px;
  5300. display:flex;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:12px;
  5305. color:#333333;
  5306. }
  5307. #u9990 .text {
  5308. position:absolute;
  5309. align-self:center;
  5310. padding:2px 2px 2px 0px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u9990_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. visibility:hidden;
  5319. }
  5320. #u9991_img {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:134px;
  5326. height:35px;
  5327. }
  5328. #u9991 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:380px;
  5332. top:231px;
  5333. width:134px;
  5334. height:35px;
  5335. display:flex;
  5336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:12px;
  5340. color:#333333;
  5341. }
  5342. #u9991 .text {
  5343. position:absolute;
  5344. align-self:center;
  5345. padding:2px 2px 2px 0px;
  5346. box-sizing:border-box;
  5347. width:100%;
  5348. }
  5349. #u9991_text {
  5350. border-width:0px;
  5351. word-wrap:break-word;
  5352. text-transform:none;
  5353. visibility:hidden;
  5354. }
  5355. #u9992_img {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:117px;
  5361. height:35px;
  5362. }
  5363. #u9992 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:514px;
  5367. top:231px;
  5368. width:117px;
  5369. height:35px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:12px;
  5375. color:#333333;
  5376. }
  5377. #u9992 .text {
  5378. position:absolute;
  5379. align-self:center;
  5380. padding:2px 2px 2px 0px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u9992_text {
  5385. border-width:0px;
  5386. word-wrap:break-word;
  5387. text-transform:none;
  5388. visibility:hidden;
  5389. }
  5390. #u9993_img {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:117px;
  5396. height:35px;
  5397. }
  5398. #u9993 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:631px;
  5402. top:231px;
  5403. width:117px;
  5404. height:35px;
  5405. display:flex;
  5406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:12px;
  5410. color:#333333;
  5411. }
  5412. #u9993 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 0px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u9993_text {
  5420. border-width:0px;
  5421. word-wrap:break-word;
  5422. text-transform:none;
  5423. visibility:hidden;
  5424. }
  5425. #u9994_img {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:117px;
  5431. height:35px;
  5432. }
  5433. #u9994 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:748px;
  5437. top:231px;
  5438. width:117px;
  5439. height:35px;
  5440. display:flex;
  5441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:12px;
  5445. color:#333333;
  5446. }
  5447. #u9994 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:2px 2px 2px 0px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u9994_text {
  5455. border-width:0px;
  5456. word-wrap:break-word;
  5457. text-transform:none;
  5458. visibility:hidden;
  5459. }
  5460. #u9995_img {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:117px;
  5466. height:35px;
  5467. }
  5468. #u9995 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:865px;
  5472. top:231px;
  5473. width:117px;
  5474. height:35px;
  5475. display:flex;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:12px;
  5480. color:#333333;
  5481. }
  5482. #u9995 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:2px 2px 2px 0px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u9995_text {
  5490. border-width:0px;
  5491. word-wrap:break-word;
  5492. text-transform:none;
  5493. visibility:hidden;
  5494. }
  5495. #u9996_img {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:117px;
  5501. height:35px;
  5502. }
  5503. #u9996 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:982px;
  5507. top:231px;
  5508. width:117px;
  5509. height:35px;
  5510. display:flex;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:12px;
  5515. color:#333333;
  5516. }
  5517. #u9996 .text {
  5518. position:absolute;
  5519. align-self:center;
  5520. padding:2px 2px 2px 0px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u9996_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. visibility:hidden;
  5529. }
  5530. #u9997_img {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:123px;
  5536. height:35px;
  5537. }
  5538. #u9997 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:1099px;
  5542. top:231px;
  5543. width:123px;
  5544. height:35px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:12px;
  5550. color:#333333;
  5551. }
  5552. #u9997 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u9997_text {
  5560. border-width:0px;
  5561. word-wrap:break-word;
  5562. text-transform:none;
  5563. visibility:hidden;
  5564. }
  5565. #u9998_img {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:129px;
  5571. height:32px;
  5572. }
  5573. #u9998 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:266px;
  5578. width:129px;
  5579. height:32px;
  5580. display:flex;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:12px;
  5585. color:#333333;
  5586. }
  5587. #u9998 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 2px 2px 0px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u9998_text {
  5595. border-width:0px;
  5596. word-wrap:break-word;
  5597. text-transform:none;
  5598. visibility:hidden;
  5599. }
  5600. #u9999_img {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:117px;
  5606. height:32px;
  5607. }
  5608. #u9999 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:129px;
  5612. top:266px;
  5613. width:117px;
  5614. height:32px;
  5615. display:flex;
  5616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:12px;
  5620. color:#333333;
  5621. }
  5622. #u9999 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 0px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u9999_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. visibility:hidden;
  5634. }
  5635. #u10000_img {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:134px;
  5641. height:32px;
  5642. }
  5643. #u10000 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:246px;
  5647. top:266px;
  5648. width:134px;
  5649. height:32px;
  5650. display:flex;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:12px;
  5655. color:#333333;
  5656. }
  5657. #u10000 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u10000_text {
  5665. border-width:0px;
  5666. word-wrap:break-word;
  5667. text-transform:none;
  5668. visibility:hidden;
  5669. }
  5670. #u10001_img {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:134px;
  5676. height:32px;
  5677. }
  5678. #u10001 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:380px;
  5682. top:266px;
  5683. width:134px;
  5684. height:32px;
  5685. display:flex;
  5686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:12px;
  5690. color:#333333;
  5691. }
  5692. #u10001 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 0px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u10001_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. visibility:hidden;
  5704. }
  5705. #u10002_img {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:117px;
  5711. height:32px;
  5712. }
  5713. #u10002 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:514px;
  5717. top:266px;
  5718. width:117px;
  5719. height:32px;
  5720. display:flex;
  5721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:12px;
  5725. color:#333333;
  5726. }
  5727. #u10002 .text {
  5728. position:absolute;
  5729. align-self:center;
  5730. padding:2px 2px 2px 0px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u10002_text {
  5735. border-width:0px;
  5736. word-wrap:break-word;
  5737. text-transform:none;
  5738. visibility:hidden;
  5739. }
  5740. #u10003_img {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:117px;
  5746. height:32px;
  5747. }
  5748. #u10003 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:631px;
  5752. top:266px;
  5753. width:117px;
  5754. height:32px;
  5755. display:flex;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:12px;
  5760. color:#333333;
  5761. }
  5762. #u10003 .text {
  5763. position:absolute;
  5764. align-self:center;
  5765. padding:2px 2px 2px 0px;
  5766. box-sizing:border-box;
  5767. width:100%;
  5768. }
  5769. #u10003_text {
  5770. border-width:0px;
  5771. word-wrap:break-word;
  5772. text-transform:none;
  5773. visibility:hidden;
  5774. }
  5775. #u10004_img {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:117px;
  5781. height:32px;
  5782. }
  5783. #u10004 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:748px;
  5787. top:266px;
  5788. width:117px;
  5789. height:32px;
  5790. display:flex;
  5791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:12px;
  5795. color:#333333;
  5796. }
  5797. #u10004 .text {
  5798. position:absolute;
  5799. align-self:center;
  5800. padding:2px 2px 2px 0px;
  5801. box-sizing:border-box;
  5802. width:100%;
  5803. }
  5804. #u10004_text {
  5805. border-width:0px;
  5806. word-wrap:break-word;
  5807. text-transform:none;
  5808. visibility:hidden;
  5809. }
  5810. #u10005_img {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:117px;
  5816. height:32px;
  5817. }
  5818. #u10005 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:865px;
  5822. top:266px;
  5823. width:117px;
  5824. height:32px;
  5825. display:flex;
  5826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:12px;
  5830. color:#333333;
  5831. }
  5832. #u10005 .text {
  5833. position:absolute;
  5834. align-self:center;
  5835. padding:2px 2px 2px 0px;
  5836. box-sizing:border-box;
  5837. width:100%;
  5838. }
  5839. #u10005_text {
  5840. border-width:0px;
  5841. word-wrap:break-word;
  5842. text-transform:none;
  5843. visibility:hidden;
  5844. }
  5845. #u10006_img {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:117px;
  5851. height:32px;
  5852. }
  5853. #u10006 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:982px;
  5857. top:266px;
  5858. width:117px;
  5859. height:32px;
  5860. display:flex;
  5861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5862. font-weight:400;
  5863. font-style:normal;
  5864. font-size:12px;
  5865. color:#333333;
  5866. }
  5867. #u10006 .text {
  5868. position:absolute;
  5869. align-self:center;
  5870. padding:2px 2px 2px 0px;
  5871. box-sizing:border-box;
  5872. width:100%;
  5873. }
  5874. #u10006_text {
  5875. border-width:0px;
  5876. word-wrap:break-word;
  5877. text-transform:none;
  5878. visibility:hidden;
  5879. }
  5880. #u10007_img {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:123px;
  5886. height:32px;
  5887. }
  5888. #u10007 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:1099px;
  5892. top:266px;
  5893. width:123px;
  5894. height:32px;
  5895. display:flex;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:12px;
  5900. color:#333333;
  5901. }
  5902. #u10007 .text {
  5903. position:absolute;
  5904. align-self:center;
  5905. padding:2px 2px 2px 0px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u10007_text {
  5910. border-width:0px;
  5911. word-wrap:break-word;
  5912. text-transform:none;
  5913. visibility:hidden;
  5914. }
  5915. #u10008_img {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:0px;
  5919. top:0px;
  5920. width:129px;
  5921. height:30px;
  5922. }
  5923. #u10008 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:298px;
  5928. width:129px;
  5929. height:30px;
  5930. display:flex;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:12px;
  5935. color:#333333;
  5936. }
  5937. #u10008 .text {
  5938. position:absolute;
  5939. align-self:center;
  5940. padding:2px 2px 2px 0px;
  5941. box-sizing:border-box;
  5942. width:100%;
  5943. }
  5944. #u10008_text {
  5945. border-width:0px;
  5946. word-wrap:break-word;
  5947. text-transform:none;
  5948. visibility:hidden;
  5949. }
  5950. #u10009_img {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:117px;
  5956. height:30px;
  5957. }
  5958. #u10009 {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:129px;
  5962. top:298px;
  5963. width:117px;
  5964. height:30px;
  5965. display:flex;
  5966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. font-size:12px;
  5970. color:#333333;
  5971. }
  5972. #u10009 .text {
  5973. position:absolute;
  5974. align-self:center;
  5975. padding:2px 2px 2px 0px;
  5976. box-sizing:border-box;
  5977. width:100%;
  5978. }
  5979. #u10009_text {
  5980. border-width:0px;
  5981. word-wrap:break-word;
  5982. text-transform:none;
  5983. visibility:hidden;
  5984. }
  5985. #u10010_img {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:134px;
  5991. height:30px;
  5992. }
  5993. #u10010 {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:246px;
  5997. top:298px;
  5998. width:134px;
  5999. height:30px;
  6000. display:flex;
  6001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6002. font-weight:400;
  6003. font-style:normal;
  6004. font-size:12px;
  6005. color:#333333;
  6006. }
  6007. #u10010 .text {
  6008. position:absolute;
  6009. align-self:center;
  6010. padding:2px 2px 2px 0px;
  6011. box-sizing:border-box;
  6012. width:100%;
  6013. }
  6014. #u10010_text {
  6015. border-width:0px;
  6016. word-wrap:break-word;
  6017. text-transform:none;
  6018. visibility:hidden;
  6019. }
  6020. #u10011_img {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:134px;
  6026. height:30px;
  6027. }
  6028. #u10011 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:380px;
  6032. top:298px;
  6033. width:134px;
  6034. height:30px;
  6035. display:flex;
  6036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6037. font-weight:400;
  6038. font-style:normal;
  6039. font-size:12px;
  6040. color:#333333;
  6041. }
  6042. #u10011 .text {
  6043. position:absolute;
  6044. align-self:center;
  6045. padding:2px 2px 2px 0px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u10011_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. visibility:hidden;
  6054. }
  6055. #u10012_img {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:117px;
  6061. height:30px;
  6062. }
  6063. #u10012 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:514px;
  6067. top:298px;
  6068. width:117px;
  6069. height:30px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:12px;
  6075. color:#333333;
  6076. }
  6077. #u10012 .text {
  6078. position:absolute;
  6079. align-self:center;
  6080. padding:2px 2px 2px 0px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u10012_text {
  6085. border-width:0px;
  6086. word-wrap:break-word;
  6087. text-transform:none;
  6088. visibility:hidden;
  6089. }
  6090. #u10013_img {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:117px;
  6096. height:30px;
  6097. }
  6098. #u10013 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:631px;
  6102. top:298px;
  6103. width:117px;
  6104. height:30px;
  6105. display:flex;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:12px;
  6110. color:#333333;
  6111. }
  6112. #u10013 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 0px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u10013_text {
  6120. border-width:0px;
  6121. word-wrap:break-word;
  6122. text-transform:none;
  6123. visibility:hidden;
  6124. }
  6125. #u10014_img {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:117px;
  6131. height:30px;
  6132. }
  6133. #u10014 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:748px;
  6137. top:298px;
  6138. width:117px;
  6139. height:30px;
  6140. display:flex;
  6141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. font-size:12px;
  6145. color:#333333;
  6146. }
  6147. #u10014 .text {
  6148. position:absolute;
  6149. align-self:center;
  6150. padding:2px 2px 2px 0px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u10014_text {
  6155. border-width:0px;
  6156. word-wrap:break-word;
  6157. text-transform:none;
  6158. visibility:hidden;
  6159. }
  6160. #u10015_img {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:117px;
  6166. height:30px;
  6167. }
  6168. #u10015 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:865px;
  6172. top:298px;
  6173. width:117px;
  6174. height:30px;
  6175. display:flex;
  6176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6177. font-weight:400;
  6178. font-style:normal;
  6179. font-size:12px;
  6180. color:#333333;
  6181. }
  6182. #u10015 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:2px 2px 2px 0px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u10015_text {
  6190. border-width:0px;
  6191. word-wrap:break-word;
  6192. text-transform:none;
  6193. visibility:hidden;
  6194. }
  6195. #u10016_img {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:117px;
  6201. height:30px;
  6202. }
  6203. #u10016 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:982px;
  6207. top:298px;
  6208. width:117px;
  6209. height:30px;
  6210. display:flex;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:12px;
  6215. color:#333333;
  6216. }
  6217. #u10016 .text {
  6218. position:absolute;
  6219. align-self:center;
  6220. padding:2px 2px 2px 0px;
  6221. box-sizing:border-box;
  6222. width:100%;
  6223. }
  6224. #u10016_text {
  6225. border-width:0px;
  6226. word-wrap:break-word;
  6227. text-transform:none;
  6228. visibility:hidden;
  6229. }
  6230. #u10017_img {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:123px;
  6236. height:30px;
  6237. }
  6238. #u10017 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:1099px;
  6242. top:298px;
  6243. width:123px;
  6244. height:30px;
  6245. display:flex;
  6246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6247. font-weight:400;
  6248. font-style:normal;
  6249. font-size:12px;
  6250. color:#333333;
  6251. }
  6252. #u10017 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 0px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u10017_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. visibility:hidden;
  6264. }
  6265. #u10018_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:337px;
  6271. height:20px;
  6272. background:inherit;
  6273. background-color:rgba(255, 255, 255, 0);
  6274. border:none;
  6275. border-left:0px;
  6276. border-top:0px;
  6277. border-right:0px;
  6278. border-radius:0px;
  6279. border-bottom-right-radius:0px;
  6280. border-bottom-left-radius:0px;
  6281. -moz-box-shadow:none;
  6282. -webkit-box-shadow:none;
  6283. box-shadow:none;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:14px;
  6288. color:#7F7F7F;
  6289. }
  6290. #u10018 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:352px;
  6294. top:100px;
  6295. width:337px;
  6296. height:20px;
  6297. display:flex;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:14px;
  6302. color:#7F7F7F;
  6303. }
  6304. #u10018 .text {
  6305. position:absolute;
  6306. align-self:center;
  6307. padding:0px 0px 0px 0px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u10018_text {
  6312. border-width:0px;
  6313. white-space:nowrap;
  6314. text-transform:none;
  6315. }
  6316. #u10019_div {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:73px;
  6322. height:50px;
  6323. background:inherit;
  6324. background-color:rgba(255, 255, 255, 0);
  6325. border:none;
  6326. border-left:0px;
  6327. border-top:0px;
  6328. border-right:0px;
  6329. border-radius:0px;
  6330. border-bottom-right-radius:0px;
  6331. border-bottom-left-radius:0px;
  6332. -moz-box-shadow:none;
  6333. -webkit-box-shadow:none;
  6334. box-shadow:none;
  6335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:18px;
  6339. color:#1890FF;
  6340. }
  6341. #u10019 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:352px;
  6345. top:50px;
  6346. width:73px;
  6347. height:50px;
  6348. display:flex;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:18px;
  6353. color:#1890FF;
  6354. }
  6355. #u10019 .text {
  6356. position:absolute;
  6357. align-self:center;
  6358. padding:0px 0px 0px 0px;
  6359. box-sizing:border-box;
  6360. width:100%;
  6361. }
  6362. #u10019_text {
  6363. border-width:0px;
  6364. white-space:nowrap;
  6365. text-transform:none;
  6366. }
  6367. #u10020 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:0px;
  6373. height:0px;
  6374. }
  6375. #u10021 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:0px;
  6381. height:0px;
  6382. }
  6383. #u10022_div {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:380px;
  6389. height:140px;
  6390. background:inherit;
  6391. background-color:rgba(255, 255, 255, 1);
  6392. box-sizing:border-box;
  6393. border-width:1px;
  6394. border-style:solid;
  6395. border-color:rgba(242, 242, 242, 1);
  6396. border-radius:4px;
  6397. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6398. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6399. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6400. font-family:'Microsoft YaHei', sans-serif;
  6401. font-weight:400;
  6402. font-style:normal;
  6403. }
  6404. #u10022 {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:1163px;
  6408. top:613px;
  6409. width:380px;
  6410. height:140px;
  6411. display:flex;
  6412. font-family:'Microsoft YaHei', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. }
  6416. #u10022 .text {
  6417. position:absolute;
  6418. align-self:center;
  6419. padding:2px 2px 2px 2px;
  6420. box-sizing:border-box;
  6421. width:100%;
  6422. }
  6423. #u10022_text {
  6424. border-width:0px;
  6425. word-wrap:break-word;
  6426. text-transform:none;
  6427. visibility:hidden;
  6428. }
  6429. #u10023_div {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:145px;
  6435. height:21px;
  6436. background:inherit;
  6437. background-color:rgba(255, 255, 255, 0);
  6438. border:none;
  6439. border-radius:0px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6444. font-weight:650;
  6445. font-style:normal;
  6446. font-size:18px;
  6447. color:#000000;
  6448. line-height:22px;
  6449. }
  6450. #u10023 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:1223px;
  6454. top:638px;
  6455. width:145px;
  6456. height:21px;
  6457. display:flex;
  6458. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6459. font-weight:650;
  6460. font-style:normal;
  6461. font-size:18px;
  6462. color:#000000;
  6463. line-height:22px;
  6464. }
  6465. #u10023 .text {
  6466. position:absolute;
  6467. align-self:flex-start;
  6468. padding:0px 0px 0px 0px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u10023_text {
  6473. border-width:0px;
  6474. white-space:nowrap;
  6475. text-transform:none;
  6476. }
  6477. #u10024_div {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:61px;
  6483. height:32px;
  6484. background:inherit;
  6485. background-color:rgba(24, 144, 255, 1);
  6486. border:none;
  6487. border-radius:4px;
  6488. -moz-box-shadow:none;
  6489. -webkit-box-shadow:none;
  6490. box-shadow:none;
  6491. font-family:'Microsoft YaHei', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. font-size:14px;
  6495. color:#FFFFFF;
  6496. }
  6497. #u10024 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:1465px;
  6501. top:709px;
  6502. width:61px;
  6503. height:32px;
  6504. display:flex;
  6505. font-family:'Microsoft YaHei', sans-serif;
  6506. font-weight:400;
  6507. font-style:normal;
  6508. font-size:14px;
  6509. color:#FFFFFF;
  6510. }
  6511. #u10024 .text {
  6512. position:absolute;
  6513. align-self:center;
  6514. padding:2px 16px 2px 16px;
  6515. box-sizing:border-box;
  6516. width:100%;
  6517. }
  6518. #u10024_text {
  6519. border-width:0px;
  6520. white-space:nowrap;
  6521. text-transform:none;
  6522. }
  6523. #u10025_div {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:66px;
  6529. height:32px;
  6530. background:inherit;
  6531. background-color:rgba(255, 255, 255, 1);
  6532. box-sizing:border-box;
  6533. border-width:1px;
  6534. border-style:solid;
  6535. border-color:rgba(217, 217, 217, 1);
  6536. border-radius:4px;
  6537. -moz-box-shadow:none;
  6538. -webkit-box-shadow:none;
  6539. box-shadow:none;
  6540. font-family:'Microsoft YaHei', sans-serif;
  6541. font-weight:400;
  6542. font-style:normal;
  6543. font-size:14px;
  6544. color:rgba(0, 0, 0, 0.647058823529412);
  6545. line-height:21px;
  6546. }
  6547. #u10025 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:1383px;
  6551. top:709px;
  6552. width:66px;
  6553. height:32px;
  6554. display:flex;
  6555. font-family:'Microsoft YaHei', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:14px;
  6559. color:rgba(0, 0, 0, 0.647058823529412);
  6560. line-height:21px;
  6561. }
  6562. #u10025 .text {
  6563. position:absolute;
  6564. align-self:center;
  6565. padding:2px 16px 2px 16px;
  6566. box-sizing:border-box;
  6567. width:100%;
  6568. }
  6569. #u10025_text {
  6570. border-width:0px;
  6571. white-space:nowrap;
  6572. text-transform:none;
  6573. }
  6574. #u10026_img {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:20px;
  6580. height:20px;
  6581. }
  6582. #u10026 {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:1192px;
  6586. top:642px;
  6587. width:20px;
  6588. height:20px;
  6589. display:flex;
  6590. }
  6591. #u10026 .text {
  6592. position:absolute;
  6593. align-self:center;
  6594. padding:2px 2px 2px 2px;
  6595. box-sizing:border-box;
  6596. width:100%;
  6597. }
  6598. #u10026_text {
  6599. border-width:0px;
  6600. word-wrap:break-word;
  6601. text-transform:none;
  6602. visibility:hidden;
  6603. }
  6604. #u10027_div {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:155px;
  6610. height:21px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 0);
  6613. border:none;
  6614. border-radius:0px;
  6615. -moz-box-shadow:none;
  6616. -webkit-box-shadow:none;
  6617. box-shadow:none;
  6618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6619. font-weight:400;
  6620. font-style:normal;
  6621. font-size:14px;
  6622. color:#7F7F7F;
  6623. line-height:22px;
  6624. }
  6625. #u10027 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:1223px;
  6629. top:670px;
  6630. width:155px;
  6631. height:21px;
  6632. display:flex;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:14px;
  6637. color:#7F7F7F;
  6638. line-height:22px;
  6639. }
  6640. #u10027 .text {
  6641. position:absolute;
  6642. align-self:flex-start;
  6643. padding:0px 0px 0px 0px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u10027_text {
  6648. border-width:0px;
  6649. white-space:nowrap;
  6650. text-transform:none;
  6651. }
  6652. #u10029 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:0px;
  6658. height:0px;
  6659. }
  6660. #u10030_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:30px;
  6666. height:30px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 1);
  6669. box-sizing:border-box;
  6670. border-width:1px;
  6671. border-style:solid;
  6672. border-color:rgba(228, 228, 228, 1);
  6673. border-radius:4px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. font-family:'Microsoft YaHei', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:14px;
  6681. }
  6682. #u10030 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:1005px;
  6686. top:1189px;
  6687. width:30px;
  6688. height:30px;
  6689. display:flex;
  6690. font-family:'Microsoft YaHei', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:14px;
  6694. }
  6695. #u10030 .text {
  6696. position:absolute;
  6697. align-self:center;
  6698. padding:2px 2px 2px 2px;
  6699. box-sizing:border-box;
  6700. width:100%;
  6701. }
  6702. #u10030_text {
  6703. border-width:0px;
  6704. word-wrap:break-word;
  6705. text-transform:none;
  6706. }
  6707. #u10031_div {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:49px;
  6713. height:30px;
  6714. background:inherit;
  6715. background-color:rgba(255, 255, 255, 0);
  6716. box-sizing:border-box;
  6717. border-width:1px;
  6718. border-style:solid;
  6719. border-color:rgba(188, 188, 188, 1);
  6720. border-radius:4px;
  6721. -moz-box-shadow:none;
  6722. -webkit-box-shadow:none;
  6723. box-shadow:none;
  6724. font-family:'Microsoft YaHei', sans-serif;
  6725. font-weight:400;
  6726. font-style:normal;
  6727. font-size:14px;
  6728. color:#1E1E1E;
  6729. }
  6730. #u10031 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:1521px;
  6734. top:1189px;
  6735. width:49px;
  6736. height:30px;
  6737. display:flex;
  6738. font-family:'Microsoft YaHei', sans-serif;
  6739. font-weight:400;
  6740. font-style:normal;
  6741. font-size:14px;
  6742. color:#1E1E1E;
  6743. }
  6744. #u10031 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:5px 10px 5px 10px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u10031_text {
  6752. border-width:0px;
  6753. white-space:nowrap;
  6754. text-transform:none;
  6755. }
  6756. #u10032 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:0px;
  6762. height:0px;
  6763. }
  6764. #u10033_div {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:33px;
  6770. height:24px;
  6771. background:inherit;
  6772. background-color:rgba(255, 255, 255, 1);
  6773. border:none;
  6774. border-radius:0px;
  6775. -moz-box-shadow:none;
  6776. -webkit-box-shadow:none;
  6777. box-shadow:none;
  6778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6779. font-weight:400;
  6780. font-style:normal;
  6781. font-size:14px;
  6782. color:#BCBCBC;
  6783. text-align:left;
  6784. }
  6785. #u10033 {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:1289px;
  6789. top:1192px;
  6790. width:33px;
  6791. height:24px;
  6792. display:flex;
  6793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6794. font-weight:400;
  6795. font-style:normal;
  6796. font-size:14px;
  6797. color:#BCBCBC;
  6798. text-align:left;
  6799. }
  6800. #u10033 .text {
  6801. position:absolute;
  6802. align-self:center;
  6803. padding:2px 2px 2px 2px;
  6804. box-sizing:border-box;
  6805. width:100%;
  6806. }
  6807. #u10033_text {
  6808. border-width:0px;
  6809. white-space:nowrap;
  6810. text-transform:none;
  6811. }
  6812. #u10034_div {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:40px;
  6818. height:30px;
  6819. background:inherit;
  6820. background-color:rgba(255, 255, 255, 1);
  6821. box-sizing:border-box;
  6822. border-width:1px;
  6823. border-style:solid;
  6824. border-color:rgba(228, 228, 228, 1);
  6825. border-radius:4px;
  6826. -moz-box-shadow:none;
  6827. -webkit-box-shadow:none;
  6828. box-shadow:none;
  6829. font-family:'Microsoft YaHei', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:14px;
  6833. }
  6834. #u10034 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:1324px;
  6838. top:1189px;
  6839. width:40px;
  6840. height:30px;
  6841. display:flex;
  6842. font-family:'Microsoft YaHei', sans-serif;
  6843. font-weight:400;
  6844. font-style:normal;
  6845. font-size:14px;
  6846. }
  6847. #u10034 .text {
  6848. position:absolute;
  6849. align-self:center;
  6850. padding:2px 2px 2px 2px;
  6851. box-sizing:border-box;
  6852. width:100%;
  6853. }
  6854. #u10034_text {
  6855. border-width:0px;
  6856. word-wrap:break-word;
  6857. text-transform:none;
  6858. visibility:hidden;
  6859. }
  6860. #u10035_div {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:19px;
  6866. height:24px;
  6867. background:inherit;
  6868. background-color:rgba(255, 255, 255, 1);
  6869. border:none;
  6870. border-radius:0px;
  6871. -moz-box-shadow:none;
  6872. -webkit-box-shadow:none;
  6873. box-shadow:none;
  6874. font-family:'Microsoft YaHei', sans-serif;
  6875. font-weight:400;
  6876. font-style:normal;
  6877. font-size:14px;
  6878. color:#BCBCBC;
  6879. text-align:left;
  6880. }
  6881. #u10035 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:1366px;
  6885. top:1193px;
  6886. width:19px;
  6887. height:24px;
  6888. display:flex;
  6889. font-family:'Microsoft YaHei', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. font-size:14px;
  6893. color:#BCBCBC;
  6894. text-align:left;
  6895. }
  6896. #u10035 .text {
  6897. position:absolute;
  6898. align-self:center;
  6899. padding:2px 2px 2px 2px;
  6900. box-sizing:border-box;
  6901. width:100%;
  6902. }
  6903. #u10035_text {
  6904. border-width:0px;
  6905. white-space:nowrap;
  6906. text-transform:none;
  6907. }
  6908. #u10036_input {
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:34px;
  6913. height:25px;
  6914. padding:2px 2px 2px 2px;
  6915. font-family:'Microsoft YaHei', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:13px;
  6919. letter-spacing:normal;
  6920. color:#000000;
  6921. vertical-align:none;
  6922. text-align:left;
  6923. text-transform:none;
  6924. background-color:transparent;
  6925. border-color:transparent;
  6926. }
  6927. #u10036_input.disabled {
  6928. position:absolute;
  6929. left:0px;
  6930. top:0px;
  6931. width:34px;
  6932. height:25px;
  6933. padding:2px 2px 2px 2px;
  6934. font-family:'Microsoft YaHei', sans-serif;
  6935. font-weight:400;
  6936. font-style:normal;
  6937. font-size:13px;
  6938. letter-spacing:normal;
  6939. color:#000000;
  6940. vertical-align:none;
  6941. text-align:left;
  6942. text-transform:none;
  6943. background-color:transparent;
  6944. border-color:transparent;
  6945. }
  6946. #u10036_div {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:34px;
  6952. height:25px;
  6953. background:inherit;
  6954. background-color:rgba(255, 255, 255, 1);
  6955. border:none;
  6956. border-radius:0px;
  6957. -moz-box-shadow:none;
  6958. -webkit-box-shadow:none;
  6959. box-shadow:none;
  6960. font-family:'Microsoft YaHei', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. }
  6964. #u10036 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:1327px;
  6968. top:1191px;
  6969. width:34px;
  6970. height:25px;
  6971. display:flex;
  6972. font-family:'Microsoft YaHei', sans-serif;
  6973. font-weight:400;
  6974. font-style:normal;
  6975. }
  6976. #u10036 .text {
  6977. position:absolute;
  6978. align-self:center;
  6979. padding:2px 2px 2px 2px;
  6980. box-sizing:border-box;
  6981. width:100%;
  6982. }
  6983. #u10036_div.disabled {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:34px;
  6989. height:25px;
  6990. background:inherit;
  6991. background-color:rgba(240, 240, 240, 1);
  6992. border:none;
  6993. border-radius:0px;
  6994. -moz-box-shadow:none;
  6995. -webkit-box-shadow:none;
  6996. box-shadow:none;
  6997. font-family:'Microsoft YaHei', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. }
  7001. #u10036.disabled {
  7002. }
  7003. #u10037_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:30px;
  7009. height:30px;
  7010. background:inherit;
  7011. background-color:rgba(41, 143, 255, 1);
  7012. border:none;
  7013. border-radius:4px;
  7014. -moz-box-shadow:none;
  7015. -webkit-box-shadow:none;
  7016. box-shadow:none;
  7017. font-family:'Microsoft YaHei', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:14px;
  7021. color:#FFFFFF;
  7022. }
  7023. #u10037 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:1039px;
  7027. top:1189px;
  7028. width:30px;
  7029. height:30px;
  7030. display:flex;
  7031. font-family:'Microsoft YaHei', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:14px;
  7035. color:#FFFFFF;
  7036. }
  7037. #u10037 .text {
  7038. position:absolute;
  7039. align-self:center;
  7040. padding:2px 2px 2px 2px;
  7041. box-sizing:border-box;
  7042. width:100%;
  7043. }
  7044. #u10037_text {
  7045. border-width:0px;
  7046. word-wrap:break-word;
  7047. text-transform:none;
  7048. }
  7049. #u10038_div {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:0px;
  7053. top:0px;
  7054. width:30px;
  7055. height:30px;
  7056. background:inherit;
  7057. background-color:rgba(255, 255, 255, 1);
  7058. box-sizing:border-box;
  7059. border-width:1px;
  7060. border-style:solid;
  7061. border-color:rgba(228, 228, 228, 1);
  7062. border-radius:4px;
  7063. -moz-box-shadow:none;
  7064. -webkit-box-shadow:none;
  7065. box-shadow:none;
  7066. font-family:'Microsoft YaHei', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:14px;
  7070. }
  7071. #u10038 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:1073px;
  7075. top:1189px;
  7076. width:30px;
  7077. height:30px;
  7078. display:flex;
  7079. font-family:'Microsoft YaHei', sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. font-size:14px;
  7083. }
  7084. #u10038 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 2px 2px 2px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u10038_text {
  7092. border-width:0px;
  7093. word-wrap:break-word;
  7094. text-transform:none;
  7095. }
  7096. #u10039_div {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:30px;
  7102. height:30px;
  7103. background:inherit;
  7104. background-color:rgba(255, 255, 255, 1);
  7105. box-sizing:border-box;
  7106. border-width:1px;
  7107. border-style:solid;
  7108. border-color:rgba(228, 228, 228, 1);
  7109. border-radius:4px;
  7110. -moz-box-shadow:none;
  7111. -webkit-box-shadow:none;
  7112. box-shadow:none;
  7113. font-family:'Microsoft YaHei', sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. font-size:14px;
  7117. }
  7118. #u10039 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:1107px;
  7122. top:1189px;
  7123. width:30px;
  7124. height:30px;
  7125. display:flex;
  7126. font-family:'Microsoft YaHei', sans-serif;
  7127. font-weight:400;
  7128. font-style:normal;
  7129. font-size:14px;
  7130. }
  7131. #u10039 .text {
  7132. position:absolute;
  7133. align-self:center;
  7134. padding:2px 2px 2px 2px;
  7135. box-sizing:border-box;
  7136. width:100%;
  7137. }
  7138. #u10039_text {
  7139. border-width:0px;
  7140. word-wrap:break-word;
  7141. text-transform:none;
  7142. }
  7143. #u10040_div {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:30px;
  7149. height:30px;
  7150. background:inherit;
  7151. background-color:rgba(255, 255, 255, 1);
  7152. border:none;
  7153. border-radius:4px;
  7154. -moz-box-shadow:none;
  7155. -webkit-box-shadow:none;
  7156. box-shadow:none;
  7157. font-family:'Microsoft YaHei', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:14px;
  7161. }
  7162. #u10040 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:1137px;
  7166. top:1189px;
  7167. width:30px;
  7168. height:30px;
  7169. display:flex;
  7170. font-family:'Microsoft YaHei', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:14px;
  7174. }
  7175. #u10040 .text {
  7176. position:absolute;
  7177. align-self:center;
  7178. padding:2px 2px 2px 2px;
  7179. box-sizing:border-box;
  7180. width:100%;
  7181. }
  7182. #u10040_text {
  7183. border-width:0px;
  7184. word-wrap:break-word;
  7185. text-transform:none;
  7186. }
  7187. #u10041_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:30px;
  7193. height:30px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 1);
  7196. box-sizing:border-box;
  7197. border-width:1px;
  7198. border-style:solid;
  7199. border-color:rgba(228, 228, 228, 1);
  7200. border-radius:4px;
  7201. -moz-box-shadow:none;
  7202. -webkit-box-shadow:none;
  7203. box-shadow:none;
  7204. font-family:'Microsoft YaHei', sans-serif;
  7205. font-weight:400;
  7206. font-style:normal;
  7207. font-size:14px;
  7208. }
  7209. #u10041 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:1171px;
  7213. top:1189px;
  7214. width:30px;
  7215. height:30px;
  7216. display:flex;
  7217. font-family:'Microsoft YaHei', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:14px;
  7221. }
  7222. #u10041 .text {
  7223. position:absolute;
  7224. align-self:center;
  7225. padding:2px 2px 2px 2px;
  7226. box-sizing:border-box;
  7227. width:100%;
  7228. }
  7229. #u10041_text {
  7230. border-width:0px;
  7231. word-wrap:break-word;
  7232. text-transform:none;
  7233. }
  7234. #u10042_div {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:0px;
  7238. top:0px;
  7239. width:32px;
  7240. height:21px;
  7241. background:inherit;
  7242. background-color:rgba(255, 255, 255, 1);
  7243. border:none;
  7244. border-radius:15px;
  7245. -moz-box-shadow:none;
  7246. -webkit-box-shadow:none;
  7247. box-shadow:none;
  7248. font-family:'Microsoft YaHei', sans-serif;
  7249. font-weight:400;
  7250. font-style:normal;
  7251. font-size:14px;
  7252. color:#1E1E1E;
  7253. }
  7254. #u10042 {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:1245px;
  7258. top:1194px;
  7259. width:32px;
  7260. height:21px;
  7261. display:flex;
  7262. font-family:'Microsoft YaHei', sans-serif;
  7263. font-weight:400;
  7264. font-style:normal;
  7265. font-size:14px;
  7266. color:#1E1E1E;
  7267. }
  7268. #u10042 .text {
  7269. position:absolute;
  7270. align-self:center;
  7271. padding:2px 2px 2px 2px;
  7272. box-sizing:border-box;
  7273. width:100%;
  7274. }
  7275. #u10042_text {
  7276. border-width:0px;
  7277. white-space:nowrap;
  7278. text-transform:none;
  7279. }
  7280. #u10043 {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:0px;
  7284. top:0px;
  7285. width:0px;
  7286. height:0px;
  7287. }
  7288. #u10044_div {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:31px;
  7294. height:30px;
  7295. background:inherit;
  7296. background-color:rgba(255, 255, 255, 1);
  7297. box-sizing:border-box;
  7298. border-width:1px;
  7299. border-style:solid;
  7300. border-color:rgba(228, 228, 228, 1);
  7301. border-radius:4px;
  7302. -moz-box-shadow:none;
  7303. -webkit-box-shadow:none;
  7304. box-shadow:none;
  7305. font-family:'Microsoft YaHei', sans-serif;
  7306. font-weight:400;
  7307. font-style:normal;
  7308. font-size:12px;
  7309. }
  7310. #u10044 {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:970px;
  7314. top:1189px;
  7315. width:31px;
  7316. height:30px;
  7317. display:flex;
  7318. font-family:'Microsoft YaHei', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:12px;
  7322. }
  7323. #u10044 .text {
  7324. position:absolute;
  7325. align-self:center;
  7326. padding:2px 2px 2px 2px;
  7327. box-sizing:border-box;
  7328. width:100%;
  7329. }
  7330. #u10044_text {
  7331. border-width:0px;
  7332. word-wrap:break-word;
  7333. text-transform:none;
  7334. visibility:hidden;
  7335. }
  7336. #u10045_img {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:0px;
  7340. top:0px;
  7341. width:8px;
  7342. height:14px;
  7343. }
  7344. #u10045 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:982px;
  7348. top:1197px;
  7349. width:8px;
  7350. height:14px;
  7351. display:flex;
  7352. font-family:'Microsoft YaHei', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. font-size:12px;
  7356. }
  7357. #u10045 .text {
  7358. position:absolute;
  7359. align-self:center;
  7360. padding:2px 2px 2px 2px;
  7361. box-sizing:border-box;
  7362. width:100%;
  7363. }
  7364. #u10045_text {
  7365. border-width:0px;
  7366. word-wrap:break-word;
  7367. text-transform:none;
  7368. visibility:hidden;
  7369. }
  7370. #u10046 {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:0px;
  7376. height:0px;
  7377. }
  7378. #u10047_div {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:31px;
  7384. height:30px;
  7385. background:inherit;
  7386. background-color:rgba(255, 255, 255, 1);
  7387. box-sizing:border-box;
  7388. border-width:1px;
  7389. border-style:solid;
  7390. border-color:rgba(228, 228, 228, 1);
  7391. border-radius:4px;
  7392. -moz-box-shadow:none;
  7393. -webkit-box-shadow:none;
  7394. box-shadow:none;
  7395. font-family:'Microsoft YaHei', sans-serif;
  7396. font-weight:400;
  7397. font-style:normal;
  7398. font-size:12px;
  7399. }
  7400. #u10047 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:1204px;
  7404. top:1189px;
  7405. width:31px;
  7406. height:30px;
  7407. display:flex;
  7408. font-family:'Microsoft YaHei', sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. font-size:12px;
  7412. }
  7413. #u10047 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 2px 2px 2px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u10047_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u10048_img {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:8px;
  7432. height:14px;
  7433. }
  7434. #u10048 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:1217px;
  7438. top:1197px;
  7439. width:8px;
  7440. height:14px;
  7441. display:flex;
  7442. font-family:'Microsoft YaHei', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:12px;
  7446. }
  7447. #u10048 .text {
  7448. position:absolute;
  7449. align-self:center;
  7450. padding:2px 2px 2px 2px;
  7451. box-sizing:border-box;
  7452. width:100%;
  7453. }
  7454. #u10048_text {
  7455. border-width:0px;
  7456. word-wrap:break-word;
  7457. text-transform:none;
  7458. visibility:hidden;
  7459. }
  7460. #u10049 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:0px;
  7466. height:0px;
  7467. }
  7468. #u10050_div {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:0px;
  7472. top:0px;
  7473. width:33px;
  7474. height:24px;
  7475. background:inherit;
  7476. background-color:rgba(255, 255, 255, 1);
  7477. border:none;
  7478. border-radius:0px;
  7479. -moz-box-shadow:none;
  7480. -webkit-box-shadow:none;
  7481. box-shadow:none;
  7482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:14px;
  7486. color:#BCBCBC;
  7487. text-align:left;
  7488. }
  7489. #u10050 {
  7490. border-width:0px;
  7491. position:absolute;
  7492. left:1405px;
  7493. top:1192px;
  7494. width:33px;
  7495. height:24px;
  7496. display:flex;
  7497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7498. font-weight:400;
  7499. font-style:normal;
  7500. font-size:14px;
  7501. color:#BCBCBC;
  7502. text-align:left;
  7503. }
  7504. #u10050 .text {
  7505. position:absolute;
  7506. align-self:center;
  7507. padding:2px 2px 2px 2px;
  7508. box-sizing:border-box;
  7509. width:100%;
  7510. }
  7511. #u10050_text {
  7512. border-width:0px;
  7513. white-space:nowrap;
  7514. text-transform:none;
  7515. }
  7516. #u10051_div {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:40px;
  7522. height:30px;
  7523. background:inherit;
  7524. background-color:rgba(255, 255, 255, 1);
  7525. box-sizing:border-box;
  7526. border-width:1px;
  7527. border-style:solid;
  7528. border-color:rgba(228, 228, 228, 1);
  7529. border-radius:4px;
  7530. -moz-box-shadow:none;
  7531. -webkit-box-shadow:none;
  7532. box-shadow:none;
  7533. font-family:'Microsoft YaHei', sans-serif;
  7534. font-weight:400;
  7535. font-style:normal;
  7536. font-size:14px;
  7537. }
  7538. #u10051 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:1440px;
  7542. top:1189px;
  7543. width:40px;
  7544. height:30px;
  7545. display:flex;
  7546. font-family:'Microsoft YaHei', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:14px;
  7550. }
  7551. #u10051 .text {
  7552. position:absolute;
  7553. align-self:center;
  7554. padding:2px 2px 2px 2px;
  7555. box-sizing:border-box;
  7556. width:100%;
  7557. }
  7558. #u10051_text {
  7559. border-width:0px;
  7560. word-wrap:break-word;
  7561. text-transform:none;
  7562. visibility:hidden;
  7563. }
  7564. #u10052_div {
  7565. border-width:0px;
  7566. position:absolute;
  7567. left:0px;
  7568. top:0px;
  7569. width:19px;
  7570. height:24px;
  7571. background:inherit;
  7572. background-color:rgba(255, 255, 255, 1);
  7573. border:none;
  7574. border-radius:0px;
  7575. -moz-box-shadow:none;
  7576. -webkit-box-shadow:none;
  7577. box-shadow:none;
  7578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7579. font-weight:400;
  7580. font-style:normal;
  7581. font-size:14px;
  7582. color:#BCBCBC;
  7583. text-align:left;
  7584. }
  7585. #u10052 {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:1482px;
  7589. top:1193px;
  7590. width:19px;
  7591. height:24px;
  7592. display:flex;
  7593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7594. font-weight:400;
  7595. font-style:normal;
  7596. font-size:14px;
  7597. color:#BCBCBC;
  7598. text-align:left;
  7599. }
  7600. #u10052 .text {
  7601. position:absolute;
  7602. align-self:center;
  7603. padding:2px 2px 2px 2px;
  7604. box-sizing:border-box;
  7605. width:100%;
  7606. }
  7607. #u10052_text {
  7608. border-width:0px;
  7609. white-space:nowrap;
  7610. text-transform:none;
  7611. }
  7612. #u10053_input {
  7613. position:absolute;
  7614. left:0px;
  7615. top:0px;
  7616. width:34px;
  7617. height:25px;
  7618. padding:2px 2px 2px 2px;
  7619. font-family:'Microsoft YaHei', sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:13px;
  7623. letter-spacing:normal;
  7624. color:#000000;
  7625. vertical-align:none;
  7626. text-align:left;
  7627. text-transform:none;
  7628. background-color:transparent;
  7629. border-color:transparent;
  7630. }
  7631. #u10053_input.disabled {
  7632. position:absolute;
  7633. left:0px;
  7634. top:0px;
  7635. width:34px;
  7636. height:25px;
  7637. padding:2px 2px 2px 2px;
  7638. font-family:'Microsoft YaHei', sans-serif;
  7639. font-weight:400;
  7640. font-style:normal;
  7641. font-size:13px;
  7642. letter-spacing:normal;
  7643. color:#000000;
  7644. vertical-align:none;
  7645. text-align:left;
  7646. text-transform:none;
  7647. background-color:transparent;
  7648. border-color:transparent;
  7649. }
  7650. #u10053_div {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:34px;
  7656. height:25px;
  7657. background:inherit;
  7658. background-color:rgba(255, 255, 255, 1);
  7659. border:none;
  7660. border-radius:0px;
  7661. -moz-box-shadow:none;
  7662. -webkit-box-shadow:none;
  7663. box-shadow:none;
  7664. font-family:'Microsoft YaHei', sans-serif;
  7665. font-weight:400;
  7666. font-style:normal;
  7667. }
  7668. #u10053 {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:1443px;
  7672. top:1191px;
  7673. width:34px;
  7674. height:25px;
  7675. display:flex;
  7676. font-family:'Microsoft YaHei', sans-serif;
  7677. font-weight:400;
  7678. font-style:normal;
  7679. }
  7680. #u10053 .text {
  7681. position:absolute;
  7682. align-self:center;
  7683. padding:2px 2px 2px 2px;
  7684. box-sizing:border-box;
  7685. width:100%;
  7686. }
  7687. #u10053_div.disabled {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:34px;
  7693. height:25px;
  7694. background:inherit;
  7695. background-color:rgba(240, 240, 240, 1);
  7696. border:none;
  7697. border-radius:0px;
  7698. -moz-box-shadow:none;
  7699. -webkit-box-shadow:none;
  7700. box-shadow:none;
  7701. font-family:'Microsoft YaHei', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. }
  7705. #u10053.disabled {
  7706. }
  7707. #u10054_div {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:55px;
  7713. height:30px;
  7714. background:inherit;
  7715. background-color:rgba(255, 255, 255, 1);
  7716. box-sizing:border-box;
  7717. border-width:1px;
  7718. border-style:solid;
  7719. border-color:rgba(170, 170, 170, 1);
  7720. border-radius:4px;
  7721. -moz-box-shadow:none;
  7722. -webkit-box-shadow:none;
  7723. box-shadow:none;
  7724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7725. font-weight:400;
  7726. font-style:normal;
  7727. font-size:12px;
  7728. color:#555555;
  7729. }
  7730. #u10054 {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:497px;
  7734. top:195px;
  7735. width:55px;
  7736. height:30px;
  7737. display:flex;
  7738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7739. font-weight:400;
  7740. font-style:normal;
  7741. font-size:12px;
  7742. color:#555555;
  7743. }
  7744. #u10054 .text {
  7745. position:absolute;
  7746. align-self:center;
  7747. padding:5px 15px 5px 15px;
  7748. box-sizing:border-box;
  7749. width:100%;
  7750. }
  7751. #u10054_text {
  7752. border-width:0px;
  7753. white-space:nowrap;
  7754. text-transform:none;
  7755. }
  7756. #u10055_div {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:59px;
  7762. height:30px;
  7763. background:inherit;
  7764. background-color:rgba(255, 255, 255, 1);
  7765. box-sizing:border-box;
  7766. border-width:1px;
  7767. border-style:solid;
  7768. border-color:rgba(170, 170, 170, 1);
  7769. border-radius:4px;
  7770. -moz-box-shadow:none;
  7771. -webkit-box-shadow:none;
  7772. box-shadow:none;
  7773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. font-size:14px;
  7777. color:#555555;
  7778. }
  7779. #u10055 {
  7780. border-width:0px;
  7781. position:absolute;
  7782. left:428px;
  7783. top:195px;
  7784. width:59px;
  7785. height:30px;
  7786. display:flex;
  7787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7788. font-weight:400;
  7789. font-style:normal;
  7790. font-size:14px;
  7791. color:#555555;
  7792. }
  7793. #u10055 .text {
  7794. position:absolute;
  7795. align-self:center;
  7796. padding:5px 15px 5px 15px;
  7797. box-sizing:border-box;
  7798. width:100%;
  7799. }
  7800. #u10055_text {
  7801. border-width:0px;
  7802. white-space:nowrap;
  7803. text-transform:none;
  7804. }
  7805. #u10056_div {
  7806. border-width:0px;
  7807. position:absolute;
  7808. left:0px;
  7809. top:0px;
  7810. width:73px;
  7811. height:50px;
  7812. background:inherit;
  7813. background-color:rgba(255, 255, 255, 0);
  7814. border:none;
  7815. border-left:0px;
  7816. border-top:0px;
  7817. border-right:0px;
  7818. border-radius:0px;
  7819. border-bottom-right-radius:0px;
  7820. border-bottom-left-radius:0px;
  7821. -moz-box-shadow:none;
  7822. -webkit-box-shadow:none;
  7823. box-shadow:none;
  7824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:18px;
  7828. }
  7829. #u10056 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:455px;
  7833. top:50px;
  7834. width:73px;
  7835. height:50px;
  7836. display:flex;
  7837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:18px;
  7841. }
  7842. #u10056 .text {
  7843. position:absolute;
  7844. align-self:center;
  7845. padding:0px 0px 0px 0px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u10056_text {
  7850. border-width:0px;
  7851. white-space:nowrap;
  7852. text-transform:none;
  7853. }
  7854. #u10058_div {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:1480px;
  7860. height:1200px;
  7861. background:inherit;
  7862. background-color:rgba(242, 242, 242, 1);
  7863. border:none;
  7864. border-radius:0px;
  7865. -moz-box-shadow:none;
  7866. -webkit-box-shadow:none;
  7867. box-shadow:none;
  7868. }
  7869. #u10058 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:1741px;
  7873. top:50px;
  7874. width:1480px;
  7875. height:1200px;
  7876. display:flex;
  7877. }
  7878. #u10058 .text {
  7879. position:absolute;
  7880. align-self:center;
  7881. padding:2px 2px 2px 2px;
  7882. box-sizing:border-box;
  7883. width:100%;
  7884. }
  7885. #u10058_text {
  7886. border-width:0px;
  7887. word-wrap:break-word;
  7888. text-transform:none;
  7889. visibility:hidden;
  7890. }
  7891. #u10059_div {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:0px;
  7895. top:0px;
  7896. width:129px;
  7897. height:22px;
  7898. background:inherit;
  7899. background-color:rgba(255, 255, 255, 0);
  7900. border:none;
  7901. border-radius:0px;
  7902. -moz-box-shadow:none;
  7903. -webkit-box-shadow:none;
  7904. box-shadow:none;
  7905. font-size:16px;
  7906. color:#FFFFFF;
  7907. }
  7908. #u10059 {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:1670px;
  7912. top:14px;
  7913. width:129px;
  7914. height:22px;
  7915. display:flex;
  7916. font-size:16px;
  7917. color:#FFFFFF;
  7918. }
  7919. #u10059 .text {
  7920. position:absolute;
  7921. align-self:flex-start;
  7922. padding:0px 0px 0px 0px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u10059_text {
  7927. border-width:0px;
  7928. white-space:nowrap;
  7929. text-transform:none;
  7930. }
  7931. #u10060_div {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:0px;
  7935. top:0px;
  7936. width:1600px;
  7937. height:50px;
  7938. background:inherit;
  7939. background-color:rgba(30, 42, 68, 1);
  7940. border:none;
  7941. border-radius:0px;
  7942. -moz-box-shadow:none;
  7943. -webkit-box-shadow:none;
  7944. box-shadow:none;
  7945. color:#AFB3B6;
  7946. }
  7947. #u10060 {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:1621px;
  7951. top:0px;
  7952. width:1600px;
  7953. height:50px;
  7954. display:flex;
  7955. color:#AFB3B6;
  7956. }
  7957. #u10060 .text {
  7958. position:absolute;
  7959. align-self:center;
  7960. padding:2px 2px 2px 2px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u10060_text {
  7965. border-width:0px;
  7966. word-wrap:break-word;
  7967. text-transform:none;
  7968. visibility:hidden;
  7969. }
  7970. #u10061 {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:0px;
  7974. top:0px;
  7975. width:0px;
  7976. height:0px;
  7977. }
  7978. #u10062_img {
  7979. border-width:0px;
  7980. position:absolute;
  7981. left:0px;
  7982. top:0px;
  7983. width:31px;
  7984. height:31px;
  7985. }
  7986. #u10062 {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:1640px;
  7990. top:10px;
  7991. width:31px;
  7992. height:31px;
  7993. display:flex;
  7994. }
  7995. #u10062 .text {
  7996. position:absolute;
  7997. align-self:center;
  7998. padding:2px 2px 2px 2px;
  7999. box-sizing:border-box;
  8000. width:100%;
  8001. }
  8002. #u10062_text {
  8003. border-width:0px;
  8004. word-wrap:break-word;
  8005. text-transform:none;
  8006. }
  8007. #u10063_div {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:0px;
  8011. top:0px;
  8012. width:161px;
  8013. height:22px;
  8014. background:inherit;
  8015. background-color:rgba(255, 255, 255, 0);
  8016. border:none;
  8017. border-radius:0px;
  8018. -moz-box-shadow:none;
  8019. -webkit-box-shadow:none;
  8020. box-shadow:none;
  8021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8022. font-weight:400;
  8023. font-style:normal;
  8024. font-size:16px;
  8025. color:#FFFFFF;
  8026. }
  8027. #u10063 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:1683px;
  8031. top:14px;
  8032. width:161px;
  8033. height:22px;
  8034. display:flex;
  8035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8036. font-weight:400;
  8037. font-style:normal;
  8038. font-size:16px;
  8039. color:#FFFFFF;
  8040. }
  8041. #u10063 .text {
  8042. position:absolute;
  8043. align-self:flex-start;
  8044. padding:0px 0px 0px 0px;
  8045. box-sizing:border-box;
  8046. width:100%;
  8047. }
  8048. #u10063_text {
  8049. border-width:0px;
  8050. white-space:nowrap;
  8051. text-transform:none;
  8052. }
  8053. #u10064_div {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:0px;
  8057. top:0px;
  8058. width:120px;
  8059. height:1200px;
  8060. background:inherit;
  8061. background-color:rgba(30, 42, 68, 1);
  8062. border:none;
  8063. border-radius:0px;
  8064. -moz-box-shadow:none;
  8065. -webkit-box-shadow:none;
  8066. box-shadow:none;
  8067. color:#AFB3B6;
  8068. }
  8069. #u10064 {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:1621px;
  8073. top:47px;
  8074. width:120px;
  8075. height:1200px;
  8076. display:flex;
  8077. color:#AFB3B6;
  8078. }
  8079. #u10064 .text {
  8080. position:absolute;
  8081. align-self:center;
  8082. padding:2px 2px 2px 2px;
  8083. box-sizing:border-box;
  8084. width:100%;
  8085. }
  8086. #u10064_text {
  8087. border-width:0px;
  8088. word-wrap:break-word;
  8089. text-transform:none;
  8090. visibility:hidden;
  8091. }
  8092. #u10065 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:0px;
  8098. height:0px;
  8099. }
  8100. #u10066_div {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:0px;
  8104. top:0px;
  8105. width:33px;
  8106. height:22px;
  8107. background:inherit;
  8108. background-color:rgba(255, 255, 255, 0);
  8109. border:none;
  8110. border-radius:0px;
  8111. -moz-box-shadow:none;
  8112. -webkit-box-shadow:none;
  8113. box-shadow:none;
  8114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:16px;
  8118. color:#FFFFFF;
  8119. }
  8120. #u10066 {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:1660px;
  8124. top:171px;
  8125. width:33px;
  8126. height:22px;
  8127. display:flex;
  8128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8129. font-weight:400;
  8130. font-style:normal;
  8131. font-size:16px;
  8132. color:#FFFFFF;
  8133. }
  8134. #u10066 .text {
  8135. position:absolute;
  8136. align-self:flex-start;
  8137. padding:0px 0px 0px 0px;
  8138. box-sizing:border-box;
  8139. width:100%;
  8140. }
  8141. #u10066_text {
  8142. border-width:0px;
  8143. white-space:nowrap;
  8144. text-transform:none;
  8145. }
  8146. #u10067_img {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:0px;
  8150. top:0px;
  8151. width:14px;
  8152. height:14px;
  8153. }
  8154. #u10067 {
  8155. border-width:0px;
  8156. position:absolute;
  8157. left:1641px;
  8158. top:175px;
  8159. width:14px;
  8160. height:14px;
  8161. display:flex;
  8162. }
  8163. #u10067 .text {
  8164. position:absolute;
  8165. align-self:center;
  8166. padding:2px 2px 2px 2px;
  8167. box-sizing:border-box;
  8168. width:100%;
  8169. }
  8170. #u10067_text {
  8171. border-width:0px;
  8172. word-wrap:break-word;
  8173. text-transform:none;
  8174. visibility:hidden;
  8175. }
  8176. #u10068 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:0px;
  8180. top:0px;
  8181. width:0px;
  8182. height:0px;
  8183. }
  8184. #u10069_div {
  8185. border-width:0px;
  8186. position:absolute;
  8187. left:0px;
  8188. top:0px;
  8189. width:33px;
  8190. height:22px;
  8191. background:inherit;
  8192. background-color:rgba(255, 255, 255, 0);
  8193. border:none;
  8194. border-radius:0px;
  8195. -moz-box-shadow:none;
  8196. -webkit-box-shadow:none;
  8197. box-shadow:none;
  8198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8199. font-weight:400;
  8200. font-style:normal;
  8201. font-size:16px;
  8202. color:#FFFFFF;
  8203. }
  8204. #u10069 {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:1660px;
  8208. top:381px;
  8209. width:33px;
  8210. height:22px;
  8211. display:flex;
  8212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8213. font-weight:400;
  8214. font-style:normal;
  8215. font-size:16px;
  8216. color:#FFFFFF;
  8217. }
  8218. #u10069 .text {
  8219. position:absolute;
  8220. align-self:flex-start;
  8221. padding:0px 0px 0px 0px;
  8222. box-sizing:border-box;
  8223. width:100%;
  8224. }
  8225. #u10069_text {
  8226. border-width:0px;
  8227. white-space:nowrap;
  8228. text-transform:none;
  8229. }
  8230. #u10070_img {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:14px;
  8236. height:14px;
  8237. }
  8238. #u10070 {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:1641px;
  8242. top:385px;
  8243. width:14px;
  8244. height:14px;
  8245. display:flex;
  8246. }
  8247. #u10070 .text {
  8248. position:absolute;
  8249. align-self:center;
  8250. padding:2px 2px 2px 2px;
  8251. box-sizing:border-box;
  8252. width:100%;
  8253. }
  8254. #u10070_text {
  8255. border-width:0px;
  8256. word-wrap:break-word;
  8257. text-transform:none;
  8258. visibility:hidden;
  8259. }
  8260. #u10071 {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:0px;
  8266. height:0px;
  8267. }
  8268. #u10072_div {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:49px;
  8274. height:22px;
  8275. background:inherit;
  8276. background-color:rgba(255, 255, 255, 0);
  8277. border:none;
  8278. border-radius:0px;
  8279. -moz-box-shadow:none;
  8280. -webkit-box-shadow:none;
  8281. box-shadow:none;
  8282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8283. font-weight:400;
  8284. font-style:normal;
  8285. font-size:16px;
  8286. color:#FFFFFF;
  8287. }
  8288. #u10072 {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:1660px;
  8292. top:133px;
  8293. width:49px;
  8294. height:22px;
  8295. display:flex;
  8296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:16px;
  8300. color:#FFFFFF;
  8301. }
  8302. #u10072 .text {
  8303. position:absolute;
  8304. align-self:flex-start;
  8305. padding:0px 0px 0px 0px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u10072_text {
  8310. border-width:0px;
  8311. white-space:nowrap;
  8312. text-transform:none;
  8313. }
  8314. #u10073_img {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:0px;
  8318. top:0px;
  8319. width:14px;
  8320. height:14px;
  8321. }
  8322. #u10073 {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:1641px;
  8326. top:137px;
  8327. width:14px;
  8328. height:14px;
  8329. display:flex;
  8330. }
  8331. #u10073 .text {
  8332. position:absolute;
  8333. align-self:center;
  8334. padding:2px 2px 2px 2px;
  8335. box-sizing:border-box;
  8336. width:100%;
  8337. }
  8338. #u10073_text {
  8339. border-width:0px;
  8340. word-wrap:break-word;
  8341. text-transform:none;
  8342. visibility:hidden;
  8343. }
  8344. #u10074 {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:0px;
  8350. height:0px;
  8351. }
  8352. #u10075_div {
  8353. border-width:0px;
  8354. position:absolute;
  8355. left:0px;
  8356. top:0px;
  8357. width:33px;
  8358. height:22px;
  8359. background:inherit;
  8360. background-color:rgba(255, 255, 255, 0);
  8361. border:none;
  8362. border-radius:0px;
  8363. -moz-box-shadow:none;
  8364. -webkit-box-shadow:none;
  8365. box-shadow:none;
  8366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8367. font-weight:400;
  8368. font-style:normal;
  8369. font-size:16px;
  8370. color:#FFFFFF;
  8371. }
  8372. #u10075 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:1660px;
  8376. top:423px;
  8377. width:33px;
  8378. height:22px;
  8379. display:flex;
  8380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8381. font-weight:400;
  8382. font-style:normal;
  8383. font-size:16px;
  8384. color:#FFFFFF;
  8385. }
  8386. #u10075 .text {
  8387. position:absolute;
  8388. align-self:flex-start;
  8389. padding:0px 0px 0px 0px;
  8390. box-sizing:border-box;
  8391. width:100%;
  8392. }
  8393. #u10075_text {
  8394. border-width:0px;
  8395. white-space:nowrap;
  8396. text-transform:none;
  8397. }
  8398. #u10076_img {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:14px;
  8404. height:14px;
  8405. }
  8406. #u10076 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:1641px;
  8410. top:427px;
  8411. width:14px;
  8412. height:14px;
  8413. display:flex;
  8414. }
  8415. #u10076 .text {
  8416. position:absolute;
  8417. align-self:center;
  8418. padding:2px 2px 2px 2px;
  8419. box-sizing:border-box;
  8420. width:100%;
  8421. }
  8422. #u10076_text {
  8423. border-width:0px;
  8424. word-wrap:break-word;
  8425. text-transform:none;
  8426. visibility:hidden;
  8427. }
  8428. #u10077 {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:0px;
  8434. height:0px;
  8435. }
  8436. #u10078_div {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:0px;
  8440. top:0px;
  8441. width:33px;
  8442. height:22px;
  8443. background:inherit;
  8444. background-color:rgba(255, 255, 255, 0);
  8445. border:none;
  8446. border-radius:0px;
  8447. -moz-box-shadow:none;
  8448. -webkit-box-shadow:none;
  8449. box-shadow:none;
  8450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8451. font-weight:400;
  8452. font-style:normal;
  8453. font-size:16px;
  8454. color:#FFFFFF;
  8455. }
  8456. #u10078 {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:1660px;
  8460. top:297px;
  8461. width:33px;
  8462. height:22px;
  8463. display:flex;
  8464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8465. font-weight:400;
  8466. font-style:normal;
  8467. font-size:16px;
  8468. color:#FFFFFF;
  8469. }
  8470. #u10078 .text {
  8471. position:absolute;
  8472. align-self:flex-start;
  8473. padding:0px 0px 0px 0px;
  8474. box-sizing:border-box;
  8475. width:100%;
  8476. }
  8477. #u10078_text {
  8478. border-width:0px;
  8479. white-space:nowrap;
  8480. text-transform:none;
  8481. }
  8482. #u10079_img {
  8483. border-width:0px;
  8484. position:absolute;
  8485. left:0px;
  8486. top:0px;
  8487. width:14px;
  8488. height:14px;
  8489. }
  8490. #u10079 {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:1641px;
  8494. top:301px;
  8495. width:14px;
  8496. height:14px;
  8497. display:flex;
  8498. }
  8499. #u10079 .text {
  8500. position:absolute;
  8501. align-self:center;
  8502. padding:2px 2px 2px 2px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u10079_text {
  8507. border-width:0px;
  8508. word-wrap:break-word;
  8509. text-transform:none;
  8510. visibility:hidden;
  8511. }
  8512. #u10080 {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:0px;
  8518. height:0px;
  8519. }
  8520. #u10081_div {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:33px;
  8526. height:22px;
  8527. background:inherit;
  8528. background-color:rgba(255, 255, 255, 0);
  8529. border:none;
  8530. border-radius:0px;
  8531. -moz-box-shadow:none;
  8532. -webkit-box-shadow:none;
  8533. box-shadow:none;
  8534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8535. font-weight:400;
  8536. font-style:normal;
  8537. font-size:16px;
  8538. color:#FFFFFF;
  8539. }
  8540. #u10081 {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:1660px;
  8544. top:213px;
  8545. width:33px;
  8546. height:22px;
  8547. display:flex;
  8548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8549. font-weight:400;
  8550. font-style:normal;
  8551. font-size:16px;
  8552. color:#FFFFFF;
  8553. }
  8554. #u10081 .text {
  8555. position:absolute;
  8556. align-self:flex-start;
  8557. padding:0px 0px 0px 0px;
  8558. box-sizing:border-box;
  8559. width:100%;
  8560. }
  8561. #u10081_text {
  8562. border-width:0px;
  8563. white-space:nowrap;
  8564. text-transform:none;
  8565. }
  8566. #u10082_img {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:0px;
  8570. top:0px;
  8571. width:14px;
  8572. height:14px;
  8573. }
  8574. #u10082 {
  8575. border-width:0px;
  8576. position:absolute;
  8577. left:1641px;
  8578. top:217px;
  8579. width:14px;
  8580. height:14px;
  8581. display:flex;
  8582. }
  8583. #u10082 .text {
  8584. position:absolute;
  8585. align-self:center;
  8586. padding:2px 2px 2px 2px;
  8587. box-sizing:border-box;
  8588. width:100%;
  8589. }
  8590. #u10082_text {
  8591. border-width:0px;
  8592. word-wrap:break-word;
  8593. text-transform:none;
  8594. visibility:hidden;
  8595. }
  8596. #u10083 {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:0px;
  8600. top:0px;
  8601. width:0px;
  8602. height:0px;
  8603. }
  8604. #u10084_div {
  8605. border-width:0px;
  8606. position:absolute;
  8607. left:0px;
  8608. top:0px;
  8609. width:33px;
  8610. height:22px;
  8611. background:inherit;
  8612. background-color:rgba(255, 255, 255, 0);
  8613. border:none;
  8614. border-radius:0px;
  8615. -moz-box-shadow:none;
  8616. -webkit-box-shadow:none;
  8617. box-shadow:none;
  8618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8619. font-weight:400;
  8620. font-style:normal;
  8621. font-size:16px;
  8622. color:#FFFFFF;
  8623. }
  8624. #u10084 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:1660px;
  8628. top:339px;
  8629. width:33px;
  8630. height:22px;
  8631. display:flex;
  8632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:16px;
  8636. color:#FFFFFF;
  8637. }
  8638. #u10084 .text {
  8639. position:absolute;
  8640. align-self:flex-start;
  8641. padding:0px 0px 0px 0px;
  8642. box-sizing:border-box;
  8643. width:100%;
  8644. }
  8645. #u10084_text {
  8646. border-width:0px;
  8647. white-space:nowrap;
  8648. text-transform:none;
  8649. }
  8650. #u10085_img {
  8651. border-width:0px;
  8652. position:absolute;
  8653. left:0px;
  8654. top:0px;
  8655. width:14px;
  8656. height:14px;
  8657. }
  8658. #u10085 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:1641px;
  8662. top:343px;
  8663. width:14px;
  8664. height:14px;
  8665. display:flex;
  8666. }
  8667. #u10085 .text {
  8668. position:absolute;
  8669. align-self:center;
  8670. padding:2px 2px 2px 2px;
  8671. box-sizing:border-box;
  8672. width:100%;
  8673. }
  8674. #u10085_text {
  8675. border-width:0px;
  8676. word-wrap:break-word;
  8677. text-transform:none;
  8678. visibility:hidden;
  8679. }
  8680. #u10086 {
  8681. border-width:0px;
  8682. position:absolute;
  8683. left:0px;
  8684. top:0px;
  8685. width:0px;
  8686. height:0px;
  8687. }
  8688. #u10087_div {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:33px;
  8694. height:22px;
  8695. background:inherit;
  8696. background-color:rgba(255, 255, 255, 0);
  8697. border:none;
  8698. border-radius:0px;
  8699. -moz-box-shadow:none;
  8700. -webkit-box-shadow:none;
  8701. box-shadow:none;
  8702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8703. font-weight:400;
  8704. font-style:normal;
  8705. font-size:16px;
  8706. color:#FFFFFF;
  8707. }
  8708. #u10087 {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:1660px;
  8712. top:465px;
  8713. width:33px;
  8714. height:22px;
  8715. display:flex;
  8716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8717. font-weight:400;
  8718. font-style:normal;
  8719. font-size:16px;
  8720. color:#FFFFFF;
  8721. }
  8722. #u10087 .text {
  8723. position:absolute;
  8724. align-self:flex-start;
  8725. padding:0px 0px 0px 0px;
  8726. box-sizing:border-box;
  8727. width:100%;
  8728. }
  8729. #u10087_text {
  8730. border-width:0px;
  8731. white-space:nowrap;
  8732. text-transform:none;
  8733. }
  8734. #u10088_img {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:0px;
  8738. top:0px;
  8739. width:14px;
  8740. height:14px;
  8741. }
  8742. #u10088 {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:1641px;
  8746. top:469px;
  8747. width:14px;
  8748. height:14px;
  8749. display:flex;
  8750. }
  8751. #u10088 .text {
  8752. position:absolute;
  8753. align-self:center;
  8754. padding:2px 2px 2px 2px;
  8755. box-sizing:border-box;
  8756. width:100%;
  8757. }
  8758. #u10088_text {
  8759. border-width:0px;
  8760. word-wrap:break-word;
  8761. text-transform:none;
  8762. visibility:hidden;
  8763. }
  8764. #u10089 {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:0px;
  8768. top:0px;
  8769. width:0px;
  8770. height:0px;
  8771. }
  8772. #u10090_div {
  8773. border-width:0px;
  8774. position:absolute;
  8775. left:0px;
  8776. top:0px;
  8777. width:29px;
  8778. height:20px;
  8779. background:inherit;
  8780. background-color:rgba(255, 255, 255, 0);
  8781. border:none;
  8782. border-radius:25px;
  8783. -moz-box-shadow:none;
  8784. -webkit-box-shadow:none;
  8785. box-shadow:none;
  8786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8787. font-weight:400;
  8788. font-style:normal;
  8789. color:#FFFFFF;
  8790. }
  8791. #u10090 {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:1673px;
  8795. top:1145px;
  8796. width:29px;
  8797. height:20px;
  8798. display:flex;
  8799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8800. font-weight:400;
  8801. font-style:normal;
  8802. color:#FFFFFF;
  8803. }
  8804. #u10090 .text {
  8805. position:absolute;
  8806. align-self:center;
  8807. padding:0px 0px 0px 0px;
  8808. box-sizing:border-box;
  8809. width:100%;
  8810. }
  8811. #u10090_text {
  8812. border-width:0px;
  8813. white-space:nowrap;
  8814. text-transform:none;
  8815. }
  8816. #u10091_img {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:22px;
  8822. height:22px;
  8823. }
  8824. #u10091 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:1641px;
  8828. top:1144px;
  8829. width:22px;
  8830. height:22px;
  8831. display:flex;
  8832. }
  8833. #u10091 .text {
  8834. position:absolute;
  8835. align-self:center;
  8836. padding:2px 2px 2px 2px;
  8837. box-sizing:border-box;
  8838. width:100%;
  8839. }
  8840. #u10091_text {
  8841. border-width:0px;
  8842. word-wrap:break-word;
  8843. text-transform:none;
  8844. visibility:hidden;
  8845. }
  8846. #u10092 {
  8847. border-width:0px;
  8848. position:absolute;
  8849. left:0px;
  8850. top:0px;
  8851. width:0px;
  8852. height:0px;
  8853. }
  8854. #u10093_div {
  8855. border-width:0px;
  8856. position:absolute;
  8857. left:0px;
  8858. top:0px;
  8859. width:29px;
  8860. height:20px;
  8861. background:inherit;
  8862. background-color:rgba(255, 255, 255, 0);
  8863. border:none;
  8864. border-radius:25px;
  8865. -moz-box-shadow:none;
  8866. -webkit-box-shadow:none;
  8867. box-shadow:none;
  8868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8869. font-weight:400;
  8870. font-style:normal;
  8871. color:#FFFFFF;
  8872. }
  8873. #u10093 {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:1673px;
  8877. top:1187px;
  8878. width:29px;
  8879. height:20px;
  8880. display:flex;
  8881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8882. font-weight:400;
  8883. font-style:normal;
  8884. color:#FFFFFF;
  8885. }
  8886. #u10093 .text {
  8887. position:absolute;
  8888. align-self:center;
  8889. padding:0px 0px 0px 0px;
  8890. box-sizing:border-box;
  8891. width:100%;
  8892. }
  8893. #u10093_text {
  8894. border-width:0px;
  8895. white-space:nowrap;
  8896. text-transform:none;
  8897. }
  8898. #u10094_img {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:22px;
  8904. height:22px;
  8905. }
  8906. #u10094 {
  8907. border-width:0px;
  8908. position:absolute;
  8909. left:1641px;
  8910. top:1186px;
  8911. width:22px;
  8912. height:22px;
  8913. display:flex;
  8914. }
  8915. #u10094 .text {
  8916. position:absolute;
  8917. align-self:center;
  8918. padding:2px 2px 2px 2px;
  8919. box-sizing:border-box;
  8920. width:100%;
  8921. }
  8922. #u10094_text {
  8923. border-width:0px;
  8924. word-wrap:break-word;
  8925. text-transform:none;
  8926. visibility:hidden;
  8927. }
  8928. #u10095 {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:0px;
  8932. top:0px;
  8933. width:0px;
  8934. height:0px;
  8935. }
  8936. #u10096_div {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:0px;
  8940. top:0px;
  8941. width:33px;
  8942. height:22px;
  8943. background:inherit;
  8944. background-color:rgba(255, 255, 255, 0);
  8945. border:none;
  8946. border-radius:0px;
  8947. -moz-box-shadow:none;
  8948. -webkit-box-shadow:none;
  8949. box-shadow:none;
  8950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8951. font-weight:400;
  8952. font-style:normal;
  8953. font-size:16px;
  8954. color:#FFFFFF;
  8955. }
  8956. #u10096 {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:1660px;
  8960. top:255px;
  8961. width:33px;
  8962. height:22px;
  8963. display:flex;
  8964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:16px;
  8968. color:#FFFFFF;
  8969. }
  8970. #u10096 .text {
  8971. position:absolute;
  8972. align-self:flex-start;
  8973. padding:0px 0px 0px 0px;
  8974. box-sizing:border-box;
  8975. width:100%;
  8976. }
  8977. #u10096_text {
  8978. border-width:0px;
  8979. white-space:nowrap;
  8980. text-transform:none;
  8981. }
  8982. #u10097_img {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:0px;
  8986. top:0px;
  8987. width:14px;
  8988. height:14px;
  8989. }
  8990. #u10097 {
  8991. border-width:0px;
  8992. position:absolute;
  8993. left:1641px;
  8994. top:259px;
  8995. width:14px;
  8996. height:14px;
  8997. display:flex;
  8998. }
  8999. #u10097 .text {
  9000. position:absolute;
  9001. align-self:center;
  9002. padding:2px 2px 2px 2px;
  9003. box-sizing:border-box;
  9004. width:100%;
  9005. }
  9006. #u10097_text {
  9007. border-width:0px;
  9008. word-wrap:break-word;
  9009. text-transform:none;
  9010. visibility:hidden;
  9011. }
  9012. #u10098 {
  9013. border-width:0px;
  9014. position:absolute;
  9015. left:0px;
  9016. top:0px;
  9017. width:0px;
  9018. height:0px;
  9019. }
  9020. #u10099_input {
  9021. position:absolute;
  9022. left:0px;
  9023. top:0px;
  9024. width:214px;
  9025. height:27px;
  9026. padding:2px 2px 2px 2px;
  9027. font-family:'ArialMT', 'Arial', sans-serif;
  9028. font-weight:400;
  9029. font-style:normal;
  9030. font-size:14px;
  9031. letter-spacing:normal;
  9032. color:#FFFFFF;
  9033. vertical-align:none;
  9034. text-align:left;
  9035. text-transform:none;
  9036. background-color:transparent;
  9037. border-color:transparent;
  9038. }
  9039. #u10099_input.disabled {
  9040. position:absolute;
  9041. left:0px;
  9042. top:0px;
  9043. width:214px;
  9044. height:27px;
  9045. padding:2px 2px 2px 2px;
  9046. font-family:'ArialMT', 'Arial', sans-serif;
  9047. font-weight:400;
  9048. font-style:normal;
  9049. font-size:14px;
  9050. letter-spacing:normal;
  9051. color:#FFFFFF;
  9052. vertical-align:none;
  9053. text-align:left;
  9054. text-transform:none;
  9055. background-color:transparent;
  9056. border-color:transparent;
  9057. }
  9058. #u10099_div {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:0px;
  9062. top:0px;
  9063. width:214px;
  9064. height:27px;
  9065. background:inherit;
  9066. background-color:rgba(255, 255, 255, 0);
  9067. border:none;
  9068. border-radius:0px;
  9069. -moz-box-shadow:none;
  9070. -webkit-box-shadow:none;
  9071. box-shadow:none;
  9072. font-size:14px;
  9073. color:#FFFFFF;
  9074. }
  9075. #u10099 {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:2842px;
  9079. top:11px;
  9080. width:214px;
  9081. height:27px;
  9082. display:flex;
  9083. font-size:14px;
  9084. color:#FFFFFF;
  9085. }
  9086. #u10099 .text {
  9087. position:absolute;
  9088. align-self:flex-start;
  9089. padding:2px 2px 2px 2px;
  9090. box-sizing:border-box;
  9091. width:100%;
  9092. }
  9093. #u10099_div.disabled {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:214px;
  9099. height:27px;
  9100. background:inherit;
  9101. background-color:rgba(240, 240, 240, 1);
  9102. border:none;
  9103. border-radius:0px;
  9104. -moz-box-shadow:none;
  9105. -webkit-box-shadow:none;
  9106. box-shadow:none;
  9107. font-size:14px;
  9108. color:#FFFFFF;
  9109. }
  9110. #u10099.disabled {
  9111. }
  9112. .u10099_input_option {
  9113. font-size:14px;
  9114. }
  9115. #u10100_img {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:0px;
  9119. top:0px;
  9120. width:22px;
  9121. height:22px;
  9122. }
  9123. #u10100 {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:2815px;
  9127. top:14px;
  9128. width:22px;
  9129. height:22px;
  9130. display:flex;
  9131. }
  9132. #u10100 .text {
  9133. position:absolute;
  9134. align-self:center;
  9135. padding:2px 2px 2px 2px;
  9136. box-sizing:border-box;
  9137. width:100%;
  9138. }
  9139. #u10100_text {
  9140. border-width:0px;
  9141. word-wrap:break-word;
  9142. text-transform:none;
  9143. visibility:hidden;
  9144. }
  9145. #u10101_div {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:0px;
  9149. top:0px;
  9150. width:100px;
  9151. height:24px;
  9152. background:inherit;
  9153. background-color:rgba(242, 242, 242, 0.2);
  9154. border:none;
  9155. border-radius:25px;
  9156. -moz-box-shadow:none;
  9157. -webkit-box-shadow:none;
  9158. box-shadow:none;
  9159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9160. font-weight:400;
  9161. font-style:normal;
  9162. color:#FFFFFF;
  9163. text-align:center;
  9164. }
  9165. #u10101 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:3101px;
  9169. top:13px;
  9170. width:100px;
  9171. height:24px;
  9172. display:flex;
  9173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9174. font-weight:400;
  9175. font-style:normal;
  9176. color:#FFFFFF;
  9177. text-align:center;
  9178. }
  9179. #u10101 .text {
  9180. position:absolute;
  9181. align-self:center;
  9182. padding:0px 0px 0px 0px;
  9183. box-sizing:border-box;
  9184. width:100%;
  9185. }
  9186. #u10101_text {
  9187. border-width:0px;
  9188. word-wrap:break-word;
  9189. text-transform:none;
  9190. }
  9191. #u10102_img {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:0px;
  9195. top:0px;
  9196. width:2px;
  9197. height:12px;
  9198. }
  9199. #u10102 {
  9200. border-width:0px;
  9201. position:absolute;
  9202. left:3073px;
  9203. top:19px;
  9204. width:1px;
  9205. height:11px;
  9206. display:flex;
  9207. }
  9208. #u10102 .text {
  9209. position:absolute;
  9210. align-self:center;
  9211. padding:2px 2px 2px 2px;
  9212. box-sizing:border-box;
  9213. width:100%;
  9214. }
  9215. #u10102_text {
  9216. border-width:0px;
  9217. word-wrap:break-word;
  9218. text-transform:none;
  9219. visibility:hidden;
  9220. }
  9221. #u10103 {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:0px;
  9225. top:0px;
  9226. width:0px;
  9227. height:0px;
  9228. }
  9229. #u10104_div {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:29px;
  9235. height:20px;
  9236. background:inherit;
  9237. background-color:rgba(255, 255, 255, 0);
  9238. border:none;
  9239. border-radius:25px;
  9240. -moz-box-shadow:none;
  9241. -webkit-box-shadow:none;
  9242. box-shadow:none;
  9243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9244. font-weight:400;
  9245. font-style:normal;
  9246. color:#FFFFFF;
  9247. }
  9248. #u10104 {
  9249. border-width:0px;
  9250. position:absolute;
  9251. left:1673px;
  9252. top:1082px;
  9253. width:29px;
  9254. height:20px;
  9255. display:flex;
  9256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9257. font-weight:400;
  9258. font-style:normal;
  9259. color:#FFFFFF;
  9260. }
  9261. #u10104 .text {
  9262. position:absolute;
  9263. align-self:center;
  9264. padding:0px 0px 0px 0px;
  9265. box-sizing:border-box;
  9266. width:100%;
  9267. }
  9268. #u10104_text {
  9269. border-width:0px;
  9270. white-space:nowrap;
  9271. text-transform:none;
  9272. }
  9273. #u10105_img {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:22px;
  9279. height:22px;
  9280. }
  9281. #u10105 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:1641px;
  9285. top:1081px;
  9286. width:22px;
  9287. height:22px;
  9288. display:flex;
  9289. }
  9290. #u10105 .text {
  9291. position:absolute;
  9292. align-self:center;
  9293. padding:2px 2px 2px 2px;
  9294. box-sizing:border-box;
  9295. width:100%;
  9296. }
  9297. #u10105_text {
  9298. border-width:0px;
  9299. word-wrap:break-word;
  9300. text-transform:none;
  9301. visibility:hidden;
  9302. }
  9303. #u10106_img {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:0px;
  9307. top:0px;
  9308. width:69px;
  9309. height:2px;
  9310. }
  9311. #u10106 {
  9312. border-width:0px;
  9313. position:absolute;
  9314. left:1641px;
  9315. top:1123px;
  9316. width:68px;
  9317. height:1px;
  9318. display:flex;
  9319. }
  9320. #u10106 .text {
  9321. position:absolute;
  9322. align-self:center;
  9323. padding:2px 2px 2px 2px;
  9324. box-sizing:border-box;
  9325. width:100%;
  9326. }
  9327. #u10106_text {
  9328. border-width:0px;
  9329. word-wrap:break-word;
  9330. text-transform:none;
  9331. visibility:hidden;
  9332. }
  9333. #u10107_img {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:69px;
  9339. height:2px;
  9340. }
  9341. #u10107 {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:1641px;
  9345. top:1061px;
  9346. width:68px;
  9347. height:1px;
  9348. display:flex;
  9349. }
  9350. #u10107 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:2px 2px 2px 2px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u10107_text {
  9358. border-width:0px;
  9359. word-wrap:break-word;
  9360. text-transform:none;
  9361. visibility:hidden;
  9362. }
  9363. #u10108_img {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:57px;
  9369. height:2px;
  9370. }
  9371. #u10108 {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:1641px;
  9375. top:112px;
  9376. width:56px;
  9377. height:1px;
  9378. display:flex;
  9379. }
  9380. #u10108 .text {
  9381. position:absolute;
  9382. align-self:center;
  9383. padding:2px 2px 2px 2px;
  9384. box-sizing:border-box;
  9385. width:100%;
  9386. }
  9387. #u10108_text {
  9388. border-width:0px;
  9389. word-wrap:break-word;
  9390. text-transform:none;
  9391. visibility:hidden;
  9392. }
  9393. #u10109 {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:0px;
  9399. height:0px;
  9400. }
  9401. #u10110_div {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:0px;
  9405. top:0px;
  9406. width:33px;
  9407. height:22px;
  9408. background:inherit;
  9409. background-color:rgba(255, 255, 255, 0);
  9410. border:none;
  9411. border-radius:0px;
  9412. -moz-box-shadow:none;
  9413. -webkit-box-shadow:none;
  9414. box-shadow:none;
  9415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9416. font-weight:400;
  9417. font-style:normal;
  9418. font-size:16px;
  9419. color:#FFFFFF;
  9420. }
  9421. #u10110 {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:1664px;
  9425. top:71px;
  9426. width:33px;
  9427. height:22px;
  9428. display:flex;
  9429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9430. font-weight:400;
  9431. font-style:normal;
  9432. font-size:16px;
  9433. color:#FFFFFF;
  9434. }
  9435. #u10110 .text {
  9436. position:absolute;
  9437. align-self:flex-start;
  9438. padding:0px 0px 0px 0px;
  9439. box-sizing:border-box;
  9440. width:100%;
  9441. }
  9442. #u10110_text {
  9443. border-width:0px;
  9444. white-space:nowrap;
  9445. text-transform:none;
  9446. }
  9447. #u10111_img {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:18px;
  9453. height:14px;
  9454. }
  9455. #u10111 {
  9456. border-width:0px;
  9457. position:absolute;
  9458. left:1641px;
  9459. top:75px;
  9460. width:18px;
  9461. height:14px;
  9462. display:flex;
  9463. }
  9464. #u10111 .text {
  9465. position:absolute;
  9466. align-self:center;
  9467. padding:2px 2px 2px 2px;
  9468. box-sizing:border-box;
  9469. width:100%;
  9470. }
  9471. #u10111_text {
  9472. border-width:0px;
  9473. word-wrap:break-word;
  9474. text-transform:none;
  9475. visibility:hidden;
  9476. }
  9477. #u10113 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:0px;
  9481. top:0px;
  9482. width:0px;
  9483. height:0px;
  9484. }
  9485. #u10114_div {
  9486. border-width:0px;
  9487. position:absolute;
  9488. left:0px;
  9489. top:0px;
  9490. width:200px;
  9491. height:1180px;
  9492. background:inherit;
  9493. background-color:rgba(255, 255, 255, 1);
  9494. border:none;
  9495. border-radius:0px;
  9496. -moz-box-shadow:none;
  9497. -webkit-box-shadow:none;
  9498. box-shadow:none;
  9499. }
  9500. #u10114 {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:1741px;
  9504. top:50px;
  9505. width:200px;
  9506. height:1180px;
  9507. display:flex;
  9508. }
  9509. #u10114 .text {
  9510. position:absolute;
  9511. align-self:center;
  9512. padding:2px 2px 2px 2px;
  9513. box-sizing:border-box;
  9514. width:100%;
  9515. }
  9516. #u10114_text {
  9517. border-width:0px;
  9518. word-wrap:break-word;
  9519. text-transform:none;
  9520. visibility:hidden;
  9521. }
  9522. #u10115_div {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:0px;
  9526. top:0px;
  9527. width:200px;
  9528. height:60px;
  9529. background:inherit;
  9530. background-color:rgba(224, 231, 247, 1);
  9531. border:none;
  9532. border-radius:0px;
  9533. -moz-box-shadow:none;
  9534. -webkit-box-shadow:none;
  9535. box-shadow:none;
  9536. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9537. font-weight:500;
  9538. font-style:normal;
  9539. font-size:18px;
  9540. }
  9541. #u10115 {
  9542. border-width:0px;
  9543. position:absolute;
  9544. left:1741px;
  9545. top:50px;
  9546. width:200px;
  9547. height:60px;
  9548. display:flex;
  9549. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9550. font-weight:500;
  9551. font-style:normal;
  9552. font-size:18px;
  9553. }
  9554. #u10115 .text {
  9555. position:absolute;
  9556. align-self:center;
  9557. padding:0px 0px 0px 20px;
  9558. box-sizing:border-box;
  9559. width:100%;
  9560. }
  9561. #u10115_text {
  9562. border-width:0px;
  9563. word-wrap:break-word;
  9564. text-transform:none;
  9565. }
  9566. #u10116_div {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:0px;
  9570. top:0px;
  9571. width:65px;
  9572. height:22px;
  9573. background:inherit;
  9574. background-color:rgba(255, 255, 255, 0);
  9575. border:none;
  9576. border-radius:0px;
  9577. -moz-box-shadow:none;
  9578. -webkit-box-shadow:none;
  9579. box-shadow:none;
  9580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9581. font-weight:400;
  9582. font-style:normal;
  9583. font-size:16px;
  9584. }
  9585. #u10116 {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:1768px;
  9589. top:161px;
  9590. width:65px;
  9591. height:22px;
  9592. display:flex;
  9593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9594. font-weight:400;
  9595. font-style:normal;
  9596. font-size:16px;
  9597. }
  9598. #u10116 .text {
  9599. position:absolute;
  9600. align-self:flex-start;
  9601. padding:0px 0px 0px 0px;
  9602. box-sizing:border-box;
  9603. width:100%;
  9604. }
  9605. #u10116_text {
  9606. border-width:0px;
  9607. white-space:nowrap;
  9608. text-transform:none;
  9609. }
  9610. #u10117_div {
  9611. border-width:0px;
  9612. position:absolute;
  9613. left:0px;
  9614. top:0px;
  9615. width:65px;
  9616. height:22px;
  9617. background:inherit;
  9618. background-color:rgba(255, 255, 255, 0);
  9619. border:none;
  9620. border-radius:0px;
  9621. -moz-box-shadow:none;
  9622. -webkit-box-shadow:none;
  9623. box-shadow:none;
  9624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9625. font-weight:400;
  9626. font-style:normal;
  9627. font-size:16px;
  9628. }
  9629. #u10117 {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:1768px;
  9633. top:203px;
  9634. width:65px;
  9635. height:22px;
  9636. display:flex;
  9637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9638. font-weight:400;
  9639. font-style:normal;
  9640. font-size:16px;
  9641. }
  9642. #u10117 .text {
  9643. position:absolute;
  9644. align-self:flex-start;
  9645. padding:0px 0px 0px 0px;
  9646. box-sizing:border-box;
  9647. width:100%;
  9648. }
  9649. #u10117_text {
  9650. border-width:0px;
  9651. white-space:nowrap;
  9652. text-transform:none;
  9653. }
  9654. #u10118_div {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:0px;
  9658. top:0px;
  9659. width:49px;
  9660. height:17px;
  9661. background:inherit;
  9662. background-color:rgba(255, 255, 255, 0);
  9663. border:none;
  9664. border-radius:0px;
  9665. -moz-box-shadow:none;
  9666. -webkit-box-shadow:none;
  9667. box-shadow:none;
  9668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9669. font-weight:400;
  9670. font-style:normal;
  9671. font-size:12px;
  9672. color:#AAAAAA;
  9673. }
  9674. #u10118 {
  9675. border-width:0px;
  9676. position:absolute;
  9677. left:1768px;
  9678. top:125px;
  9679. width:49px;
  9680. height:17px;
  9681. display:flex;
  9682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9683. font-weight:400;
  9684. font-style:normal;
  9685. font-size:12px;
  9686. color:#AAAAAA;
  9687. }
  9688. #u10118 .text {
  9689. position:absolute;
  9690. align-self:flex-start;
  9691. padding:0px 0px 0px 0px;
  9692. box-sizing:border-box;
  9693. width:100%;
  9694. }
  9695. #u10118_text {
  9696. border-width:0px;
  9697. white-space:nowrap;
  9698. text-transform:none;
  9699. }
  9700. #u10119_div {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:65px;
  9706. height:22px;
  9707. background:inherit;
  9708. background-color:rgba(255, 255, 255, 0);
  9709. border:none;
  9710. border-radius:0px;
  9711. -moz-box-shadow:none;
  9712. -webkit-box-shadow:none;
  9713. box-shadow:none;
  9714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. font-size:16px;
  9718. }
  9719. #u10119 {
  9720. border-width:0px;
  9721. position:absolute;
  9722. left:1769px;
  9723. top:353px;
  9724. width:65px;
  9725. height:22px;
  9726. display:flex;
  9727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9728. font-weight:400;
  9729. font-style:normal;
  9730. font-size:16px;
  9731. }
  9732. #u10119 .text {
  9733. position:absolute;
  9734. align-self:flex-start;
  9735. padding:0px 0px 0px 0px;
  9736. box-sizing:border-box;
  9737. width:100%;
  9738. }
  9739. #u10119_text {
  9740. border-width:0px;
  9741. white-space:nowrap;
  9742. text-transform:none;
  9743. }
  9744. #u10120_div {
  9745. border-width:0px;
  9746. position:absolute;
  9747. left:0px;
  9748. top:0px;
  9749. width:49px;
  9750. height:17px;
  9751. background:inherit;
  9752. background-color:rgba(255, 255, 255, 0);
  9753. border:none;
  9754. border-radius:0px;
  9755. -moz-box-shadow:none;
  9756. -webkit-box-shadow:none;
  9757. box-shadow:none;
  9758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9759. font-weight:400;
  9760. font-style:normal;
  9761. font-size:12px;
  9762. color:#AAAAAA;
  9763. }
  9764. #u10120 {
  9765. border-width:0px;
  9766. position:absolute;
  9767. left:1769px;
  9768. top:317px;
  9769. width:49px;
  9770. height:17px;
  9771. display:flex;
  9772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9773. font-weight:400;
  9774. font-style:normal;
  9775. font-size:12px;
  9776. color:#AAAAAA;
  9777. }
  9778. #u10120 .text {
  9779. position:absolute;
  9780. align-self:flex-start;
  9781. padding:0px 0px 0px 0px;
  9782. box-sizing:border-box;
  9783. width:100%;
  9784. }
  9785. #u10120_text {
  9786. border-width:0px;
  9787. white-space:nowrap;
  9788. text-transform:none;
  9789. }
  9790. #u10121_img {
  9791. border-width:0px;
  9792. position:absolute;
  9793. left:0px;
  9794. top:0px;
  9795. width:201px;
  9796. height:2px;
  9797. }
  9798. #u10121 {
  9799. border-width:0px;
  9800. position:absolute;
  9801. left:1742px;
  9802. top:295px;
  9803. width:200px;
  9804. height:1px;
  9805. display:flex;
  9806. }
  9807. #u10121 .text {
  9808. position:absolute;
  9809. align-self:center;
  9810. padding:2px 2px 2px 2px;
  9811. box-sizing:border-box;
  9812. width:100%;
  9813. }
  9814. #u10121_text {
  9815. border-width:0px;
  9816. word-wrap:break-word;
  9817. text-transform:none;
  9818. visibility:hidden;
  9819. }
  9820. #u10122_div {
  9821. border-width:0px;
  9822. position:absolute;
  9823. left:0px;
  9824. top:0px;
  9825. width:65px;
  9826. height:22px;
  9827. background:inherit;
  9828. background-color:rgba(255, 255, 255, 0);
  9829. border:none;
  9830. border-radius:0px;
  9831. -moz-box-shadow:none;
  9832. -webkit-box-shadow:none;
  9833. box-shadow:none;
  9834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9835. font-weight:400;
  9836. font-style:normal;
  9837. font-size:16px;
  9838. }
  9839. #u10122 {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:1768px;
  9843. top:245px;
  9844. width:65px;
  9845. height:22px;
  9846. display:flex;
  9847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9848. font-weight:400;
  9849. font-style:normal;
  9850. font-size:16px;
  9851. }
  9852. #u10122 .text {
  9853. position:absolute;
  9854. align-self:flex-start;
  9855. padding:0px 0px 0px 0px;
  9856. box-sizing:border-box;
  9857. width:100%;
  9858. }
  9859. #u10122_text {
  9860. border-width:0px;
  9861. white-space:nowrap;
  9862. text-transform:none;
  9863. }
  9864. #u10123_div {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:0px;
  9868. top:0px;
  9869. width:1265px;
  9870. height:1180px;
  9871. background:inherit;
  9872. background-color:rgba(255, 255, 255, 1);
  9873. border:none;
  9874. border-radius:0px;
  9875. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  9876. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  9877. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  9878. color:#1890FF;
  9879. }
  9880. #u10123 {
  9881. border-width:0px;
  9882. position:absolute;
  9883. left:1950px;
  9884. top:50px;
  9885. width:1265px;
  9886. height:1180px;
  9887. display:flex;
  9888. color:#1890FF;
  9889. }
  9890. #u10123 .text {
  9891. position:absolute;
  9892. align-self:center;
  9893. padding:2px 2px 2px 2px;
  9894. box-sizing:border-box;
  9895. width:100%;
  9896. }
  9897. #u10123_text {
  9898. border-width:0px;
  9899. word-wrap:break-word;
  9900. text-transform:none;
  9901. visibility:hidden;
  9902. }
  9903. #u10124 {
  9904. border-width:0px;
  9905. position:absolute;
  9906. left:0px;
  9907. top:0px;
  9908. width:0px;
  9909. height:0px;
  9910. }
  9911. #u10125_div {
  9912. border-width:0px;
  9913. position:absolute;
  9914. left:0px;
  9915. top:0px;
  9916. width:59px;
  9917. height:30px;
  9918. background:inherit;
  9919. background-color:rgba(24, 144, 255, 1);
  9920. box-sizing:border-box;
  9921. border-width:1px;
  9922. border-style:solid;
  9923. border-color:rgba(0, 153, 255, 1);
  9924. border-radius:4px;
  9925. -moz-box-shadow:none;
  9926. -webkit-box-shadow:none;
  9927. box-shadow:none;
  9928. font-family:'Microsoft YaHei', sans-serif;
  9929. font-weight:400;
  9930. font-style:normal;
  9931. font-size:14px;
  9932. color:#FFFFFF;
  9933. }
  9934. #u10125 {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:2877px;
  9938. top:144px;
  9939. width:59px;
  9940. height:30px;
  9941. display:flex;
  9942. font-family:'Microsoft YaHei', sans-serif;
  9943. font-weight:400;
  9944. font-style:normal;
  9945. font-size:14px;
  9946. color:#FFFFFF;
  9947. }
  9948. #u10125 .text {
  9949. position:absolute;
  9950. align-self:center;
  9951. padding:5px 15px 5px 15px;
  9952. box-sizing:border-box;
  9953. width:100%;
  9954. }
  9955. #u10125_text {
  9956. border-width:0px;
  9957. white-space:nowrap;
  9958. text-transform:none;
  9959. }
  9960. #u10126_div {
  9961. border-width:0px;
  9962. position:absolute;
  9963. left:0px;
  9964. top:0px;
  9965. width:55px;
  9966. height:30px;
  9967. background:inherit;
  9968. background-color:rgba(255, 255, 255, 1);
  9969. box-sizing:border-box;
  9970. border-width:1px;
  9971. border-style:solid;
  9972. border-color:rgba(170, 170, 170, 1);
  9973. border-radius:4px;
  9974. -moz-box-shadow:none;
  9975. -webkit-box-shadow:none;
  9976. box-shadow:none;
  9977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9978. font-weight:400;
  9979. font-style:normal;
  9980. font-size:12px;
  9981. color:#555555;
  9982. }
  9983. #u10126 {
  9984. border-width:0px;
  9985. position:absolute;
  9986. left:2946px;
  9987. top:144px;
  9988. width:55px;
  9989. height:30px;
  9990. display:flex;
  9991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9992. font-weight:400;
  9993. font-style:normal;
  9994. font-size:12px;
  9995. color:#555555;
  9996. }
  9997. #u10126 .text {
  9998. position:absolute;
  9999. align-self:center;
  10000. padding:5px 15px 5px 15px;
  10001. box-sizing:border-box;
  10002. width:100%;
  10003. }
  10004. #u10126_text {
  10005. border-width:0px;
  10006. white-space:nowrap;
  10007. text-transform:none;
  10008. }
  10009. #u10127 {
  10010. border-width:0px;
  10011. position:absolute;
  10012. left:0px;
  10013. top:0px;
  10014. width:0px;
  10015. height:0px;
  10016. }
  10017. #u10128_div {
  10018. border-width:0px;
  10019. position:absolute;
  10020. left:0px;
  10021. top:0px;
  10022. width:140px;
  10023. height:30px;
  10024. background:inherit;
  10025. background-color:rgba(255, 255, 255, 1);
  10026. box-sizing:border-box;
  10027. border-width:1px;
  10028. border-style:solid;
  10029. border-color:rgba(215, 215, 215, 1);
  10030. border-radius:4px;
  10031. -moz-box-shadow:none;
  10032. -webkit-box-shadow:none;
  10033. box-shadow:none;
  10034. font-size:11px;
  10035. }
  10036. #u10128 {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:2277px;
  10040. top:145px;
  10041. width:140px;
  10042. height:30px;
  10043. display:flex;
  10044. font-size:11px;
  10045. }
  10046. #u10128 .text {
  10047. position:absolute;
  10048. align-self:center;
  10049. padding:2px 2px 2px 2px;
  10050. box-sizing:border-box;
  10051. width:100%;
  10052. }
  10053. #u10128_text {
  10054. border-width:0px;
  10055. word-wrap:break-word;
  10056. text-transform:none;
  10057. visibility:hidden;
  10058. }
  10059. #u10129_input {
  10060. position:absolute;
  10061. left:0px;
  10062. top:0px;
  10063. width:126px;
  10064. height:23px;
  10065. padding:2px 2px 2px 2px;
  10066. font-family:'ArialMT', 'Arial', sans-serif;
  10067. font-weight:400;
  10068. font-style:normal;
  10069. font-size:11px;
  10070. letter-spacing:normal;
  10071. color:#AAAAAA;
  10072. vertical-align:none;
  10073. text-align:left;
  10074. text-transform:none;
  10075. background-color:transparent;
  10076. border-color:transparent;
  10077. }
  10078. #u10129_input.disabled {
  10079. position:absolute;
  10080. left:0px;
  10081. top:0px;
  10082. width:126px;
  10083. height:23px;
  10084. padding:2px 2px 2px 2px;
  10085. font-family:'ArialMT', 'Arial', sans-serif;
  10086. font-weight:400;
  10087. font-style:normal;
  10088. font-size:11px;
  10089. letter-spacing:normal;
  10090. color:#AAAAAA;
  10091. vertical-align:none;
  10092. text-align:left;
  10093. text-transform:none;
  10094. background-color:transparent;
  10095. border-color:transparent;
  10096. }
  10097. #u10129_div {
  10098. border-width:0px;
  10099. position:absolute;
  10100. left:0px;
  10101. top:0px;
  10102. width:126px;
  10103. height:23px;
  10104. background:inherit;
  10105. background-color:rgba(255, 255, 255, 1);
  10106. border:none;
  10107. border-radius:0px;
  10108. -moz-box-shadow:none;
  10109. -webkit-box-shadow:none;
  10110. box-shadow:none;
  10111. font-size:11px;
  10112. color:#AAAAAA;
  10113. }
  10114. #u10129 {
  10115. border-width:0px;
  10116. position:absolute;
  10117. left:2284px;
  10118. top:147px;
  10119. width:126px;
  10120. height:23px;
  10121. display:flex;
  10122. font-size:11px;
  10123. color:#AAAAAA;
  10124. }
  10125. #u10129 .text {
  10126. position:absolute;
  10127. align-self:flex-start;
  10128. padding:2px 2px 2px 2px;
  10129. box-sizing:border-box;
  10130. width:100%;
  10131. }
  10132. #u10129_div.disabled {
  10133. border-width:0px;
  10134. position:absolute;
  10135. left:0px;
  10136. top:0px;
  10137. width:126px;
  10138. height:23px;
  10139. background:inherit;
  10140. background-color:rgba(240, 240, 240, 1);
  10141. border:none;
  10142. border-radius:0px;
  10143. -moz-box-shadow:none;
  10144. -webkit-box-shadow:none;
  10145. box-shadow:none;
  10146. font-size:11px;
  10147. color:#AAAAAA;
  10148. }
  10149. #u10129.disabled {
  10150. }
  10151. .u10129_input_option {
  10152. font-size:11px;
  10153. }
  10154. #u10130 {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:0px;
  10158. top:0px;
  10159. width:0px;
  10160. height:0px;
  10161. }
  10162. #u10131_div {
  10163. border-width:0px;
  10164. position:absolute;
  10165. left:0px;
  10166. top:0px;
  10167. width:140px;
  10168. height:30px;
  10169. background:inherit;
  10170. background-color:rgba(255, 255, 255, 1);
  10171. box-sizing:border-box;
  10172. border-width:1px;
  10173. border-style:solid;
  10174. border-color:rgba(201, 201, 201, 1);
  10175. border-radius:4px;
  10176. -moz-box-shadow:none;
  10177. -webkit-box-shadow:none;
  10178. box-shadow:none;
  10179. font-family:'Microsoft YaHei', sans-serif;
  10180. font-weight:400;
  10181. font-style:normal;
  10182. font-size:14px;
  10183. color:#CCCCCC;
  10184. text-align:left;
  10185. }
  10186. #u10131 {
  10187. border-width:0px;
  10188. position:absolute;
  10189. left:2727px;
  10190. top:145px;
  10191. width:140px;
  10192. height:30px;
  10193. display:flex;
  10194. font-family:'Microsoft YaHei', sans-serif;
  10195. font-weight:400;
  10196. font-style:normal;
  10197. font-size:14px;
  10198. color:#CCCCCC;
  10199. text-align:left;
  10200. }
  10201. #u10131 .text {
  10202. position:absolute;
  10203. align-self:center;
  10204. padding:2px 8px 2px 8px;
  10205. box-sizing:border-box;
  10206. width:100%;
  10207. }
  10208. #u10131_text {
  10209. border-width:0px;
  10210. word-wrap:break-word;
  10211. text-transform:none;
  10212. visibility:hidden;
  10213. }
  10214. #u10132_input {
  10215. position:absolute;
  10216. left:0px;
  10217. top:0px;
  10218. width:127px;
  10219. height:25px;
  10220. padding:2px 2px 2px 2px;
  10221. font-family:'Microsoft YaHei', sans-serif;
  10222. font-weight:400;
  10223. font-style:normal;
  10224. font-size:10px;
  10225. letter-spacing:normal;
  10226. color:#000000;
  10227. vertical-align:none;
  10228. text-align:left;
  10229. text-transform:none;
  10230. background-color:transparent;
  10231. border-color:transparent;
  10232. }
  10233. #u10132_input.disabled {
  10234. position:absolute;
  10235. left:0px;
  10236. top:0px;
  10237. width:127px;
  10238. height:25px;
  10239. padding:2px 2px 2px 2px;
  10240. font-family:'Microsoft YaHei', sans-serif;
  10241. font-weight:400;
  10242. font-style:normal;
  10243. font-size:10px;
  10244. letter-spacing:normal;
  10245. color:#000000;
  10246. vertical-align:none;
  10247. text-align:left;
  10248. text-transform:none;
  10249. background-color:transparent;
  10250. border-color:transparent;
  10251. }
  10252. #u10132_div {
  10253. border-width:0px;
  10254. position:absolute;
  10255. left:0px;
  10256. top:0px;
  10257. width:127px;
  10258. height:25px;
  10259. background:inherit;
  10260. background-color:rgba(255, 255, 255, 1);
  10261. border:none;
  10262. border-radius:0px;
  10263. -moz-box-shadow:none;
  10264. -webkit-box-shadow:none;
  10265. box-shadow:none;
  10266. font-family:'Microsoft YaHei', sans-serif;
  10267. font-weight:400;
  10268. font-style:normal;
  10269. font-size:10px;
  10270. }
  10271. #u10132 {
  10272. border-width:0px;
  10273. position:absolute;
  10274. left:2735px;
  10275. top:146px;
  10276. width:127px;
  10277. height:25px;
  10278. display:flex;
  10279. font-family:'Microsoft YaHei', sans-serif;
  10280. font-weight:400;
  10281. font-style:normal;
  10282. font-size:10px;
  10283. }
  10284. #u10132 .text {
  10285. position:absolute;
  10286. align-self:center;
  10287. padding:2px 2px 2px 2px;
  10288. box-sizing:border-box;
  10289. width:100%;
  10290. }
  10291. #u10132_div.disabled {
  10292. border-width:0px;
  10293. position:absolute;
  10294. left:0px;
  10295. top:0px;
  10296. width:127px;
  10297. height:25px;
  10298. background:inherit;
  10299. background-color:rgba(240, 240, 240, 1);
  10300. border:none;
  10301. border-radius:0px;
  10302. -moz-box-shadow:none;
  10303. -webkit-box-shadow:none;
  10304. box-shadow:none;
  10305. font-family:'Microsoft YaHei', sans-serif;
  10306. font-weight:400;
  10307. font-style:normal;
  10308. font-size:10px;
  10309. }
  10310. #u10132.disabled {
  10311. }
  10312. #u10133 {
  10313. border-width:0px;
  10314. position:absolute;
  10315. left:0px;
  10316. top:0px;
  10317. width:0px;
  10318. height:0px;
  10319. }
  10320. #u10134_div {
  10321. border-width:0px;
  10322. position:absolute;
  10323. left:0px;
  10324. top:0px;
  10325. width:140px;
  10326. height:30px;
  10327. background:inherit;
  10328. background-color:rgba(255, 255, 255, 1);
  10329. box-sizing:border-box;
  10330. border-width:1px;
  10331. border-style:solid;
  10332. border-color:rgba(201, 201, 201, 1);
  10333. border-radius:4px;
  10334. -moz-box-shadow:none;
  10335. -webkit-box-shadow:none;
  10336. box-shadow:none;
  10337. font-family:'Microsoft YaHei', sans-serif;
  10338. font-weight:400;
  10339. font-style:normal;
  10340. font-size:14px;
  10341. color:#CCCCCC;
  10342. text-align:left;
  10343. }
  10344. #u10134 {
  10345. border-width:0px;
  10346. position:absolute;
  10347. left:2577px;
  10348. top:145px;
  10349. width:140px;
  10350. height:30px;
  10351. display:flex;
  10352. font-family:'Microsoft YaHei', sans-serif;
  10353. font-weight:400;
  10354. font-style:normal;
  10355. font-size:14px;
  10356. color:#CCCCCC;
  10357. text-align:left;
  10358. }
  10359. #u10134 .text {
  10360. position:absolute;
  10361. align-self:center;
  10362. padding:2px 8px 2px 8px;
  10363. box-sizing:border-box;
  10364. width:100%;
  10365. }
  10366. #u10134_text {
  10367. border-width:0px;
  10368. word-wrap:break-word;
  10369. text-transform:none;
  10370. visibility:hidden;
  10371. }
  10372. #u10135_input {
  10373. position:absolute;
  10374. left:0px;
  10375. top:0px;
  10376. width:127px;
  10377. height:25px;
  10378. padding:2px 2px 2px 2px;
  10379. font-family:'Microsoft YaHei', sans-serif;
  10380. font-weight:400;
  10381. font-style:normal;
  10382. font-size:10px;
  10383. letter-spacing:normal;
  10384. color:#000000;
  10385. vertical-align:none;
  10386. text-align:left;
  10387. text-transform:none;
  10388. background-color:transparent;
  10389. border-color:transparent;
  10390. }
  10391. #u10135_input.disabled {
  10392. position:absolute;
  10393. left:0px;
  10394. top:0px;
  10395. width:127px;
  10396. height:25px;
  10397. padding:2px 2px 2px 2px;
  10398. font-family:'Microsoft YaHei', sans-serif;
  10399. font-weight:400;
  10400. font-style:normal;
  10401. font-size:10px;
  10402. letter-spacing:normal;
  10403. color:#000000;
  10404. vertical-align:none;
  10405. text-align:left;
  10406. text-transform:none;
  10407. background-color:transparent;
  10408. border-color:transparent;
  10409. }
  10410. #u10135_div {
  10411. border-width:0px;
  10412. position:absolute;
  10413. left:0px;
  10414. top:0px;
  10415. width:127px;
  10416. height:25px;
  10417. background:inherit;
  10418. background-color:rgba(255, 255, 255, 1);
  10419. border:none;
  10420. border-radius:0px;
  10421. -moz-box-shadow:none;
  10422. -webkit-box-shadow:none;
  10423. box-shadow:none;
  10424. font-family:'Microsoft YaHei', sans-serif;
  10425. font-weight:400;
  10426. font-style:normal;
  10427. font-size:10px;
  10428. }
  10429. #u10135 {
  10430. border-width:0px;
  10431. position:absolute;
  10432. left:2585px;
  10433. top:146px;
  10434. width:127px;
  10435. height:25px;
  10436. display:flex;
  10437. font-family:'Microsoft YaHei', sans-serif;
  10438. font-weight:400;
  10439. font-style:normal;
  10440. font-size:10px;
  10441. }
  10442. #u10135 .text {
  10443. position:absolute;
  10444. align-self:center;
  10445. padding:2px 2px 2px 2px;
  10446. box-sizing:border-box;
  10447. width:100%;
  10448. }
  10449. #u10135_div.disabled {
  10450. border-width:0px;
  10451. position:absolute;
  10452. left:0px;
  10453. top:0px;
  10454. width:127px;
  10455. height:25px;
  10456. background:inherit;
  10457. background-color:rgba(240, 240, 240, 1);
  10458. border:none;
  10459. border-radius:0px;
  10460. -moz-box-shadow:none;
  10461. -webkit-box-shadow:none;
  10462. box-shadow:none;
  10463. font-family:'Microsoft YaHei', sans-serif;
  10464. font-weight:400;
  10465. font-style:normal;
  10466. font-size:10px;
  10467. }
  10468. #u10135.disabled {
  10469. }
  10470. #u10136 {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:0px;
  10474. top:0px;
  10475. width:0px;
  10476. height:0px;
  10477. }
  10478. #u10137_div {
  10479. border-width:0px;
  10480. position:absolute;
  10481. left:0px;
  10482. top:0px;
  10483. width:140px;
  10484. height:30px;
  10485. background:inherit;
  10486. background-color:rgba(255, 255, 255, 1);
  10487. box-sizing:border-box;
  10488. border-width:1px;
  10489. border-style:solid;
  10490. border-color:rgba(215, 215, 215, 1);
  10491. border-radius:4px;
  10492. -moz-box-shadow:none;
  10493. -webkit-box-shadow:none;
  10494. box-shadow:none;
  10495. font-size:11px;
  10496. }
  10497. #u10137 {
  10498. border-width:0px;
  10499. position:absolute;
  10500. left:1977px;
  10501. top:145px;
  10502. width:140px;
  10503. height:30px;
  10504. display:flex;
  10505. font-size:11px;
  10506. }
  10507. #u10137 .text {
  10508. position:absolute;
  10509. align-self:center;
  10510. padding:2px 2px 2px 2px;
  10511. box-sizing:border-box;
  10512. width:100%;
  10513. }
  10514. #u10137_text {
  10515. border-width:0px;
  10516. word-wrap:break-word;
  10517. text-transform:none;
  10518. visibility:hidden;
  10519. }
  10520. #u10138_input {
  10521. position:absolute;
  10522. left:0px;
  10523. top:0px;
  10524. width:126px;
  10525. height:23px;
  10526. padding:2px 2px 2px 2px;
  10527. font-family:'ArialMT', 'Arial', sans-serif;
  10528. font-weight:400;
  10529. font-style:normal;
  10530. font-size:11px;
  10531. letter-spacing:normal;
  10532. color:#AAAAAA;
  10533. vertical-align:none;
  10534. text-align:left;
  10535. text-transform:none;
  10536. background-color:transparent;
  10537. border-color:transparent;
  10538. }
  10539. #u10138_input.disabled {
  10540. position:absolute;
  10541. left:0px;
  10542. top:0px;
  10543. width:126px;
  10544. height:23px;
  10545. padding:2px 2px 2px 2px;
  10546. font-family:'ArialMT', 'Arial', sans-serif;
  10547. font-weight:400;
  10548. font-style:normal;
  10549. font-size:11px;
  10550. letter-spacing:normal;
  10551. color:#AAAAAA;
  10552. vertical-align:none;
  10553. text-align:left;
  10554. text-transform:none;
  10555. background-color:transparent;
  10556. border-color:transparent;
  10557. }
  10558. #u10138_div {
  10559. border-width:0px;
  10560. position:absolute;
  10561. left:0px;
  10562. top:0px;
  10563. width:126px;
  10564. height:23px;
  10565. background:inherit;
  10566. background-color:rgba(255, 255, 255, 1);
  10567. border:none;
  10568. border-radius:0px;
  10569. -moz-box-shadow:none;
  10570. -webkit-box-shadow:none;
  10571. box-shadow:none;
  10572. font-size:11px;
  10573. color:#AAAAAA;
  10574. }
  10575. #u10138 {
  10576. border-width:0px;
  10577. position:absolute;
  10578. left:1984px;
  10579. top:147px;
  10580. width:126px;
  10581. height:23px;
  10582. display:flex;
  10583. font-size:11px;
  10584. color:#AAAAAA;
  10585. }
  10586. #u10138 .text {
  10587. position:absolute;
  10588. align-self:flex-start;
  10589. padding:2px 2px 2px 2px;
  10590. box-sizing:border-box;
  10591. width:100%;
  10592. }
  10593. #u10138_div.disabled {
  10594. border-width:0px;
  10595. position:absolute;
  10596. left:0px;
  10597. top:0px;
  10598. width:126px;
  10599. height:23px;
  10600. background:inherit;
  10601. background-color:rgba(240, 240, 240, 1);
  10602. border:none;
  10603. border-radius:0px;
  10604. -moz-box-shadow:none;
  10605. -webkit-box-shadow:none;
  10606. box-shadow:none;
  10607. font-size:11px;
  10608. color:#AAAAAA;
  10609. }
  10610. #u10138.disabled {
  10611. }
  10612. .u10138_input_option {
  10613. font-size:11px;
  10614. }
  10615. #u10139 {
  10616. border-width:0px;
  10617. position:absolute;
  10618. left:0px;
  10619. top:0px;
  10620. width:0px;
  10621. height:0px;
  10622. }
  10623. #u10140_div {
  10624. border-width:0px;
  10625. position:absolute;
  10626. left:0px;
  10627. top:0px;
  10628. width:140px;
  10629. height:30px;
  10630. background:inherit;
  10631. background-color:rgba(255, 255, 255, 1);
  10632. box-sizing:border-box;
  10633. border-width:1px;
  10634. border-style:solid;
  10635. border-color:rgba(215, 215, 215, 1);
  10636. border-radius:4px;
  10637. -moz-box-shadow:none;
  10638. -webkit-box-shadow:none;
  10639. box-shadow:none;
  10640. font-size:11px;
  10641. }
  10642. #u10140 {
  10643. border-width:0px;
  10644. position:absolute;
  10645. left:2427px;
  10646. top:145px;
  10647. width:140px;
  10648. height:30px;
  10649. display:flex;
  10650. font-size:11px;
  10651. }
  10652. #u10140 .text {
  10653. position:absolute;
  10654. align-self:center;
  10655. padding:2px 2px 2px 2px;
  10656. box-sizing:border-box;
  10657. width:100%;
  10658. }
  10659. #u10140_text {
  10660. border-width:0px;
  10661. word-wrap:break-word;
  10662. text-transform:none;
  10663. visibility:hidden;
  10664. }
  10665. #u10141_input {
  10666. position:absolute;
  10667. left:0px;
  10668. top:0px;
  10669. width:126px;
  10670. height:23px;
  10671. padding:2px 2px 2px 2px;
  10672. font-family:'ArialMT', 'Arial', sans-serif;
  10673. font-weight:400;
  10674. font-style:normal;
  10675. font-size:11px;
  10676. letter-spacing:normal;
  10677. color:#AAAAAA;
  10678. vertical-align:none;
  10679. text-align:left;
  10680. text-transform:none;
  10681. background-color:transparent;
  10682. border-color:transparent;
  10683. }
  10684. #u10141_input.disabled {
  10685. position:absolute;
  10686. left:0px;
  10687. top:0px;
  10688. width:126px;
  10689. height:23px;
  10690. padding:2px 2px 2px 2px;
  10691. font-family:'ArialMT', 'Arial', sans-serif;
  10692. font-weight:400;
  10693. font-style:normal;
  10694. font-size:11px;
  10695. letter-spacing:normal;
  10696. color:#AAAAAA;
  10697. vertical-align:none;
  10698. text-align:left;
  10699. text-transform:none;
  10700. background-color:transparent;
  10701. border-color:transparent;
  10702. }
  10703. #u10141_div {
  10704. border-width:0px;
  10705. position:absolute;
  10706. left:0px;
  10707. top:0px;
  10708. width:126px;
  10709. height:23px;
  10710. background:inherit;
  10711. background-color:rgba(255, 255, 255, 1);
  10712. border:none;
  10713. border-radius:0px;
  10714. -moz-box-shadow:none;
  10715. -webkit-box-shadow:none;
  10716. box-shadow:none;
  10717. font-size:11px;
  10718. color:#AAAAAA;
  10719. }
  10720. #u10141 {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:2434px;
  10724. top:147px;
  10725. width:126px;
  10726. height:23px;
  10727. display:flex;
  10728. font-size:11px;
  10729. color:#AAAAAA;
  10730. }
  10731. #u10141 .text {
  10732. position:absolute;
  10733. align-self:flex-start;
  10734. padding:2px 2px 2px 2px;
  10735. box-sizing:border-box;
  10736. width:100%;
  10737. }
  10738. #u10141_div.disabled {
  10739. border-width:0px;
  10740. position:absolute;
  10741. left:0px;
  10742. top:0px;
  10743. width:126px;
  10744. height:23px;
  10745. background:inherit;
  10746. background-color:rgba(240, 240, 240, 1);
  10747. border:none;
  10748. border-radius:0px;
  10749. -moz-box-shadow:none;
  10750. -webkit-box-shadow:none;
  10751. box-shadow:none;
  10752. font-size:11px;
  10753. color:#AAAAAA;
  10754. }
  10755. #u10141.disabled {
  10756. }
  10757. .u10141_input_option {
  10758. font-size:11px;
  10759. }
  10760. #u10142 {
  10761. border-width:0px;
  10762. position:absolute;
  10763. left:0px;
  10764. top:0px;
  10765. width:0px;
  10766. height:0px;
  10767. }
  10768. #u10143_div {
  10769. border-width:0px;
  10770. position:absolute;
  10771. left:0px;
  10772. top:0px;
  10773. width:140px;
  10774. height:30px;
  10775. background:inherit;
  10776. background-color:rgba(255, 255, 255, 1);
  10777. box-sizing:border-box;
  10778. border-width:1px;
  10779. border-style:solid;
  10780. border-color:rgba(215, 215, 215, 1);
  10781. border-radius:4px;
  10782. -moz-box-shadow:none;
  10783. -webkit-box-shadow:none;
  10784. box-shadow:none;
  10785. font-size:11px;
  10786. }
  10787. #u10143 {
  10788. border-width:0px;
  10789. position:absolute;
  10790. left:2127px;
  10791. top:145px;
  10792. width:140px;
  10793. height:30px;
  10794. display:flex;
  10795. font-size:11px;
  10796. }
  10797. #u10143 .text {
  10798. position:absolute;
  10799. align-self:center;
  10800. padding:2px 2px 2px 2px;
  10801. box-sizing:border-box;
  10802. width:100%;
  10803. }
  10804. #u10143_text {
  10805. border-width:0px;
  10806. word-wrap:break-word;
  10807. text-transform:none;
  10808. visibility:hidden;
  10809. }
  10810. #u10144_input {
  10811. position:absolute;
  10812. left:0px;
  10813. top:0px;
  10814. width:126px;
  10815. height:23px;
  10816. padding:2px 2px 2px 2px;
  10817. font-family:'ArialMT', 'Arial', sans-serif;
  10818. font-weight:400;
  10819. font-style:normal;
  10820. font-size:11px;
  10821. letter-spacing:normal;
  10822. color:#AAAAAA;
  10823. vertical-align:none;
  10824. text-align:left;
  10825. text-transform:none;
  10826. background-color:transparent;
  10827. border-color:transparent;
  10828. }
  10829. #u10144_input.disabled {
  10830. position:absolute;
  10831. left:0px;
  10832. top:0px;
  10833. width:126px;
  10834. height:23px;
  10835. padding:2px 2px 2px 2px;
  10836. font-family:'ArialMT', 'Arial', sans-serif;
  10837. font-weight:400;
  10838. font-style:normal;
  10839. font-size:11px;
  10840. letter-spacing:normal;
  10841. color:#AAAAAA;
  10842. vertical-align:none;
  10843. text-align:left;
  10844. text-transform:none;
  10845. background-color:transparent;
  10846. border-color:transparent;
  10847. }
  10848. #u10144_div {
  10849. border-width:0px;
  10850. position:absolute;
  10851. left:0px;
  10852. top:0px;
  10853. width:126px;
  10854. height:23px;
  10855. background:inherit;
  10856. background-color:rgba(255, 255, 255, 1);
  10857. border:none;
  10858. border-radius:0px;
  10859. -moz-box-shadow:none;
  10860. -webkit-box-shadow:none;
  10861. box-shadow:none;
  10862. font-size:11px;
  10863. color:#AAAAAA;
  10864. }
  10865. #u10144 {
  10866. border-width:0px;
  10867. position:absolute;
  10868. left:2134px;
  10869. top:147px;
  10870. width:126px;
  10871. height:23px;
  10872. display:flex;
  10873. font-size:11px;
  10874. color:#AAAAAA;
  10875. }
  10876. #u10144 .text {
  10877. position:absolute;
  10878. align-self:flex-start;
  10879. padding:2px 2px 2px 2px;
  10880. box-sizing:border-box;
  10881. width:100%;
  10882. }
  10883. #u10144_div.disabled {
  10884. border-width:0px;
  10885. position:absolute;
  10886. left:0px;
  10887. top:0px;
  10888. width:126px;
  10889. height:23px;
  10890. background:inherit;
  10891. background-color:rgba(240, 240, 240, 1);
  10892. border:none;
  10893. border-radius:0px;
  10894. -moz-box-shadow:none;
  10895. -webkit-box-shadow:none;
  10896. box-shadow:none;
  10897. font-size:11px;
  10898. color:#AAAAAA;
  10899. }
  10900. #u10144.disabled {
  10901. }
  10902. .u10144_input_option {
  10903. font-size:11px;
  10904. }
  10905. #u10145_div {
  10906. border-width:0px;
  10907. position:absolute;
  10908. left:0px;
  10909. top:0px;
  10910. width:337px;
  10911. height:20px;
  10912. background:inherit;
  10913. background-color:rgba(255, 255, 255, 0);
  10914. border:none;
  10915. border-left:0px;
  10916. border-top:0px;
  10917. border-right:0px;
  10918. border-radius:0px;
  10919. border-bottom-right-radius:0px;
  10920. border-bottom-left-radius:0px;
  10921. -moz-box-shadow:none;
  10922. -webkit-box-shadow:none;
  10923. box-shadow:none;
  10924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10925. font-weight:400;
  10926. font-style:normal;
  10927. font-size:14px;
  10928. color:#7F7F7F;
  10929. }
  10930. #u10145 {
  10931. border-width:0px;
  10932. position:absolute;
  10933. left:1973px;
  10934. top:100px;
  10935. width:337px;
  10936. height:20px;
  10937. display:flex;
  10938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10939. font-weight:400;
  10940. font-style:normal;
  10941. font-size:14px;
  10942. color:#7F7F7F;
  10943. }
  10944. #u10145 .text {
  10945. position:absolute;
  10946. align-self:center;
  10947. padding:0px 0px 0px 0px;
  10948. box-sizing:border-box;
  10949. width:100%;
  10950. }
  10951. #u10145_text {
  10952. border-width:0px;
  10953. white-space:nowrap;
  10954. text-transform:none;
  10955. }
  10956. #u10146_div {
  10957. border-width:0px;
  10958. position:absolute;
  10959. left:0px;
  10960. top:0px;
  10961. width:73px;
  10962. height:50px;
  10963. background:inherit;
  10964. background-color:rgba(255, 255, 255, 0);
  10965. border:none;
  10966. border-left:0px;
  10967. border-top:0px;
  10968. border-right:0px;
  10969. border-radius:0px;
  10970. border-bottom-right-radius:0px;
  10971. border-bottom-left-radius:0px;
  10972. -moz-box-shadow:none;
  10973. -webkit-box-shadow:none;
  10974. box-shadow:none;
  10975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10976. font-weight:400;
  10977. font-style:normal;
  10978. font-size:18px;
  10979. }
  10980. #u10146 {
  10981. border-width:0px;
  10982. position:absolute;
  10983. left:1973px;
  10984. top:50px;
  10985. width:73px;
  10986. height:50px;
  10987. display:flex;
  10988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10989. font-weight:400;
  10990. font-style:normal;
  10991. font-size:18px;
  10992. }
  10993. #u10146 .text {
  10994. position:absolute;
  10995. align-self:center;
  10996. padding:0px 0px 0px 0px;
  10997. box-sizing:border-box;
  10998. width:100%;
  10999. }
  11000. #u10146_text {
  11001. border-width:0px;
  11002. white-space:nowrap;
  11003. text-transform:none;
  11004. }
  11005. #u10148 {
  11006. border-width:0px;
  11007. position:absolute;
  11008. left:0px;
  11009. top:0px;
  11010. width:0px;
  11011. height:0px;
  11012. }
  11013. #u10149_div {
  11014. border-width:0px;
  11015. position:absolute;
  11016. left:0px;
  11017. top:0px;
  11018. width:30px;
  11019. height:30px;
  11020. background:inherit;
  11021. background-color:rgba(255, 255, 255, 1);
  11022. box-sizing:border-box;
  11023. border-width:1px;
  11024. border-style:solid;
  11025. border-color:rgba(228, 228, 228, 1);
  11026. border-radius:4px;
  11027. -moz-box-shadow:none;
  11028. -webkit-box-shadow:none;
  11029. box-shadow:none;
  11030. font-family:'Microsoft YaHei', sans-serif;
  11031. font-weight:400;
  11032. font-style:normal;
  11033. font-size:14px;
  11034. }
  11035. #u10149 {
  11036. border-width:0px;
  11037. position:absolute;
  11038. left:2626px;
  11039. top:1189px;
  11040. width:30px;
  11041. height:30px;
  11042. display:flex;
  11043. font-family:'Microsoft YaHei', sans-serif;
  11044. font-weight:400;
  11045. font-style:normal;
  11046. font-size:14px;
  11047. }
  11048. #u10149 .text {
  11049. position:absolute;
  11050. align-self:center;
  11051. padding:2px 2px 2px 2px;
  11052. box-sizing:border-box;
  11053. width:100%;
  11054. }
  11055. #u10149_text {
  11056. border-width:0px;
  11057. word-wrap:break-word;
  11058. text-transform:none;
  11059. }
  11060. #u10150_div {
  11061. border-width:0px;
  11062. position:absolute;
  11063. left:0px;
  11064. top:0px;
  11065. width:49px;
  11066. height:30px;
  11067. background:inherit;
  11068. background-color:rgba(255, 255, 255, 0);
  11069. box-sizing:border-box;
  11070. border-width:1px;
  11071. border-style:solid;
  11072. border-color:rgba(188, 188, 188, 1);
  11073. border-radius:4px;
  11074. -moz-box-shadow:none;
  11075. -webkit-box-shadow:none;
  11076. box-shadow:none;
  11077. font-family:'Microsoft YaHei', sans-serif;
  11078. font-weight:400;
  11079. font-style:normal;
  11080. font-size:14px;
  11081. color:#1E1E1E;
  11082. }
  11083. #u10150 {
  11084. border-width:0px;
  11085. position:absolute;
  11086. left:3142px;
  11087. top:1189px;
  11088. width:49px;
  11089. height:30px;
  11090. display:flex;
  11091. font-family:'Microsoft YaHei', sans-serif;
  11092. font-weight:400;
  11093. font-style:normal;
  11094. font-size:14px;
  11095. color:#1E1E1E;
  11096. }
  11097. #u10150 .text {
  11098. position:absolute;
  11099. align-self:center;
  11100. padding:5px 10px 5px 10px;
  11101. box-sizing:border-box;
  11102. width:100%;
  11103. }
  11104. #u10150_text {
  11105. border-width:0px;
  11106. white-space:nowrap;
  11107. text-transform:none;
  11108. }
  11109. #u10151 {
  11110. border-width:0px;
  11111. position:absolute;
  11112. left:0px;
  11113. top:0px;
  11114. width:0px;
  11115. height:0px;
  11116. }
  11117. #u10152_div {
  11118. border-width:0px;
  11119. position:absolute;
  11120. left:0px;
  11121. top:0px;
  11122. width:33px;
  11123. height:24px;
  11124. background:inherit;
  11125. background-color:rgba(255, 255, 255, 1);
  11126. border:none;
  11127. border-radius:0px;
  11128. -moz-box-shadow:none;
  11129. -webkit-box-shadow:none;
  11130. box-shadow:none;
  11131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11132. font-weight:400;
  11133. font-style:normal;
  11134. font-size:14px;
  11135. color:#BCBCBC;
  11136. text-align:left;
  11137. }
  11138. #u10152 {
  11139. border-width:0px;
  11140. position:absolute;
  11141. left:2910px;
  11142. top:1192px;
  11143. width:33px;
  11144. height:24px;
  11145. display:flex;
  11146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11147. font-weight:400;
  11148. font-style:normal;
  11149. font-size:14px;
  11150. color:#BCBCBC;
  11151. text-align:left;
  11152. }
  11153. #u10152 .text {
  11154. position:absolute;
  11155. align-self:center;
  11156. padding:2px 2px 2px 2px;
  11157. box-sizing:border-box;
  11158. width:100%;
  11159. }
  11160. #u10152_text {
  11161. border-width:0px;
  11162. white-space:nowrap;
  11163. text-transform:none;
  11164. }
  11165. #u10153_div {
  11166. border-width:0px;
  11167. position:absolute;
  11168. left:0px;
  11169. top:0px;
  11170. width:40px;
  11171. height:30px;
  11172. background:inherit;
  11173. background-color:rgba(255, 255, 255, 1);
  11174. box-sizing:border-box;
  11175. border-width:1px;
  11176. border-style:solid;
  11177. border-color:rgba(228, 228, 228, 1);
  11178. border-radius:4px;
  11179. -moz-box-shadow:none;
  11180. -webkit-box-shadow:none;
  11181. box-shadow:none;
  11182. font-family:'Microsoft YaHei', sans-serif;
  11183. font-weight:400;
  11184. font-style:normal;
  11185. font-size:14px;
  11186. }
  11187. #u10153 {
  11188. border-width:0px;
  11189. position:absolute;
  11190. left:2945px;
  11191. top:1189px;
  11192. width:40px;
  11193. height:30px;
  11194. display:flex;
  11195. font-family:'Microsoft YaHei', sans-serif;
  11196. font-weight:400;
  11197. font-style:normal;
  11198. font-size:14px;
  11199. }
  11200. #u10153 .text {
  11201. position:absolute;
  11202. align-self:center;
  11203. padding:2px 2px 2px 2px;
  11204. box-sizing:border-box;
  11205. width:100%;
  11206. }
  11207. #u10153_text {
  11208. border-width:0px;
  11209. word-wrap:break-word;
  11210. text-transform:none;
  11211. visibility:hidden;
  11212. }
  11213. #u10154_div {
  11214. border-width:0px;
  11215. position:absolute;
  11216. left:0px;
  11217. top:0px;
  11218. width:19px;
  11219. height:24px;
  11220. background:inherit;
  11221. background-color:rgba(255, 255, 255, 1);
  11222. border:none;
  11223. border-radius:0px;
  11224. -moz-box-shadow:none;
  11225. -webkit-box-shadow:none;
  11226. box-shadow:none;
  11227. font-family:'Microsoft YaHei', sans-serif;
  11228. font-weight:400;
  11229. font-style:normal;
  11230. font-size:14px;
  11231. color:#BCBCBC;
  11232. text-align:left;
  11233. }
  11234. #u10154 {
  11235. border-width:0px;
  11236. position:absolute;
  11237. left:2987px;
  11238. top:1193px;
  11239. width:19px;
  11240. height:24px;
  11241. display:flex;
  11242. font-family:'Microsoft YaHei', sans-serif;
  11243. font-weight:400;
  11244. font-style:normal;
  11245. font-size:14px;
  11246. color:#BCBCBC;
  11247. text-align:left;
  11248. }
  11249. #u10154 .text {
  11250. position:absolute;
  11251. align-self:center;
  11252. padding:2px 2px 2px 2px;
  11253. box-sizing:border-box;
  11254. width:100%;
  11255. }
  11256. #u10154_text {
  11257. border-width:0px;
  11258. white-space:nowrap;
  11259. text-transform:none;
  11260. }
  11261. #u10155_input {
  11262. position:absolute;
  11263. left:0px;
  11264. top:0px;
  11265. width:34px;
  11266. height:25px;
  11267. padding:2px 2px 2px 2px;
  11268. font-family:'Microsoft YaHei', sans-serif;
  11269. font-weight:400;
  11270. font-style:normal;
  11271. font-size:13px;
  11272. letter-spacing:normal;
  11273. color:#000000;
  11274. vertical-align:none;
  11275. text-align:left;
  11276. text-transform:none;
  11277. background-color:transparent;
  11278. border-color:transparent;
  11279. }
  11280. #u10155_input.disabled {
  11281. position:absolute;
  11282. left:0px;
  11283. top:0px;
  11284. width:34px;
  11285. height:25px;
  11286. padding:2px 2px 2px 2px;
  11287. font-family:'Microsoft YaHei', sans-serif;
  11288. font-weight:400;
  11289. font-style:normal;
  11290. font-size:13px;
  11291. letter-spacing:normal;
  11292. color:#000000;
  11293. vertical-align:none;
  11294. text-align:left;
  11295. text-transform:none;
  11296. background-color:transparent;
  11297. border-color:transparent;
  11298. }
  11299. #u10155_div {
  11300. border-width:0px;
  11301. position:absolute;
  11302. left:0px;
  11303. top:0px;
  11304. width:34px;
  11305. height:25px;
  11306. background:inherit;
  11307. background-color:rgba(255, 255, 255, 1);
  11308. border:none;
  11309. border-radius:0px;
  11310. -moz-box-shadow:none;
  11311. -webkit-box-shadow:none;
  11312. box-shadow:none;
  11313. font-family:'Microsoft YaHei', sans-serif;
  11314. font-weight:400;
  11315. font-style:normal;
  11316. }
  11317. #u10155 {
  11318. border-width:0px;
  11319. position:absolute;
  11320. left:2948px;
  11321. top:1191px;
  11322. width:34px;
  11323. height:25px;
  11324. display:flex;
  11325. font-family:'Microsoft YaHei', sans-serif;
  11326. font-weight:400;
  11327. font-style:normal;
  11328. }
  11329. #u10155 .text {
  11330. position:absolute;
  11331. align-self:center;
  11332. padding:2px 2px 2px 2px;
  11333. box-sizing:border-box;
  11334. width:100%;
  11335. }
  11336. #u10155_div.disabled {
  11337. border-width:0px;
  11338. position:absolute;
  11339. left:0px;
  11340. top:0px;
  11341. width:34px;
  11342. height:25px;
  11343. background:inherit;
  11344. background-color:rgba(240, 240, 240, 1);
  11345. border:none;
  11346. border-radius:0px;
  11347. -moz-box-shadow:none;
  11348. -webkit-box-shadow:none;
  11349. box-shadow:none;
  11350. font-family:'Microsoft YaHei', sans-serif;
  11351. font-weight:400;
  11352. font-style:normal;
  11353. }
  11354. #u10155.disabled {
  11355. }
  11356. #u10156_div {
  11357. border-width:0px;
  11358. position:absolute;
  11359. left:0px;
  11360. top:0px;
  11361. width:30px;
  11362. height:30px;
  11363. background:inherit;
  11364. background-color:rgba(41, 143, 255, 1);
  11365. border:none;
  11366. border-radius:4px;
  11367. -moz-box-shadow:none;
  11368. -webkit-box-shadow:none;
  11369. box-shadow:none;
  11370. font-family:'Microsoft YaHei', sans-serif;
  11371. font-weight:400;
  11372. font-style:normal;
  11373. font-size:14px;
  11374. color:#FFFFFF;
  11375. }
  11376. #u10156 {
  11377. border-width:0px;
  11378. position:absolute;
  11379. left:2660px;
  11380. top:1189px;
  11381. width:30px;
  11382. height:30px;
  11383. display:flex;
  11384. font-family:'Microsoft YaHei', sans-serif;
  11385. font-weight:400;
  11386. font-style:normal;
  11387. font-size:14px;
  11388. color:#FFFFFF;
  11389. }
  11390. #u10156 .text {
  11391. position:absolute;
  11392. align-self:center;
  11393. padding:2px 2px 2px 2px;
  11394. box-sizing:border-box;
  11395. width:100%;
  11396. }
  11397. #u10156_text {
  11398. border-width:0px;
  11399. word-wrap:break-word;
  11400. text-transform:none;
  11401. }
  11402. #u10157_div {
  11403. border-width:0px;
  11404. position:absolute;
  11405. left:0px;
  11406. top:0px;
  11407. width:30px;
  11408. height:30px;
  11409. background:inherit;
  11410. background-color:rgba(255, 255, 255, 1);
  11411. box-sizing:border-box;
  11412. border-width:1px;
  11413. border-style:solid;
  11414. border-color:rgba(228, 228, 228, 1);
  11415. border-radius:4px;
  11416. -moz-box-shadow:none;
  11417. -webkit-box-shadow:none;
  11418. box-shadow:none;
  11419. font-family:'Microsoft YaHei', sans-serif;
  11420. font-weight:400;
  11421. font-style:normal;
  11422. font-size:14px;
  11423. }
  11424. #u10157 {
  11425. border-width:0px;
  11426. position:absolute;
  11427. left:2694px;
  11428. top:1189px;
  11429. width:30px;
  11430. height:30px;
  11431. display:flex;
  11432. font-family:'Microsoft YaHei', sans-serif;
  11433. font-weight:400;
  11434. font-style:normal;
  11435. font-size:14px;
  11436. }
  11437. #u10157 .text {
  11438. position:absolute;
  11439. align-self:center;
  11440. padding:2px 2px 2px 2px;
  11441. box-sizing:border-box;
  11442. width:100%;
  11443. }
  11444. #u10157_text {
  11445. border-width:0px;
  11446. word-wrap:break-word;
  11447. text-transform:none;
  11448. }
  11449. #u10158_div {
  11450. border-width:0px;
  11451. position:absolute;
  11452. left:0px;
  11453. top:0px;
  11454. width:30px;
  11455. height:30px;
  11456. background:inherit;
  11457. background-color:rgba(255, 255, 255, 1);
  11458. box-sizing:border-box;
  11459. border-width:1px;
  11460. border-style:solid;
  11461. border-color:rgba(228, 228, 228, 1);
  11462. border-radius:4px;
  11463. -moz-box-shadow:none;
  11464. -webkit-box-shadow:none;
  11465. box-shadow:none;
  11466. font-family:'Microsoft YaHei', sans-serif;
  11467. font-weight:400;
  11468. font-style:normal;
  11469. font-size:14px;
  11470. }
  11471. #u10158 {
  11472. border-width:0px;
  11473. position:absolute;
  11474. left:2728px;
  11475. top:1189px;
  11476. width:30px;
  11477. height:30px;
  11478. display:flex;
  11479. font-family:'Microsoft YaHei', sans-serif;
  11480. font-weight:400;
  11481. font-style:normal;
  11482. font-size:14px;
  11483. }
  11484. #u10158 .text {
  11485. position:absolute;
  11486. align-self:center;
  11487. padding:2px 2px 2px 2px;
  11488. box-sizing:border-box;
  11489. width:100%;
  11490. }
  11491. #u10158_text {
  11492. border-width:0px;
  11493. word-wrap:break-word;
  11494. text-transform:none;
  11495. }
  11496. #u10159_div {
  11497. border-width:0px;
  11498. position:absolute;
  11499. left:0px;
  11500. top:0px;
  11501. width:30px;
  11502. height:30px;
  11503. background:inherit;
  11504. background-color:rgba(255, 255, 255, 1);
  11505. border:none;
  11506. border-radius:4px;
  11507. -moz-box-shadow:none;
  11508. -webkit-box-shadow:none;
  11509. box-shadow:none;
  11510. font-family:'Microsoft YaHei', sans-serif;
  11511. font-weight:400;
  11512. font-style:normal;
  11513. font-size:14px;
  11514. }
  11515. #u10159 {
  11516. border-width:0px;
  11517. position:absolute;
  11518. left:2758px;
  11519. top:1189px;
  11520. width:30px;
  11521. height:30px;
  11522. display:flex;
  11523. font-family:'Microsoft YaHei', sans-serif;
  11524. font-weight:400;
  11525. font-style:normal;
  11526. font-size:14px;
  11527. }
  11528. #u10159 .text {
  11529. position:absolute;
  11530. align-self:center;
  11531. padding:2px 2px 2px 2px;
  11532. box-sizing:border-box;
  11533. width:100%;
  11534. }
  11535. #u10159_text {
  11536. border-width:0px;
  11537. word-wrap:break-word;
  11538. text-transform:none;
  11539. }
  11540. #u10160_div {
  11541. border-width:0px;
  11542. position:absolute;
  11543. left:0px;
  11544. top:0px;
  11545. width:30px;
  11546. height:30px;
  11547. background:inherit;
  11548. background-color:rgba(255, 255, 255, 1);
  11549. box-sizing:border-box;
  11550. border-width:1px;
  11551. border-style:solid;
  11552. border-color:rgba(228, 228, 228, 1);
  11553. border-radius:4px;
  11554. -moz-box-shadow:none;
  11555. -webkit-box-shadow:none;
  11556. box-shadow:none;
  11557. font-family:'Microsoft YaHei', sans-serif;
  11558. font-weight:400;
  11559. font-style:normal;
  11560. font-size:14px;
  11561. }
  11562. #u10160 {
  11563. border-width:0px;
  11564. position:absolute;
  11565. left:2792px;
  11566. top:1189px;
  11567. width:30px;
  11568. height:30px;
  11569. display:flex;
  11570. font-family:'Microsoft YaHei', sans-serif;
  11571. font-weight:400;
  11572. font-style:normal;
  11573. font-size:14px;
  11574. }
  11575. #u10160 .text {
  11576. position:absolute;
  11577. align-self:center;
  11578. padding:2px 2px 2px 2px;
  11579. box-sizing:border-box;
  11580. width:100%;
  11581. }
  11582. #u10160_text {
  11583. border-width:0px;
  11584. word-wrap:break-word;
  11585. text-transform:none;
  11586. }
  11587. #u10161_div {
  11588. border-width:0px;
  11589. position:absolute;
  11590. left:0px;
  11591. top:0px;
  11592. width:32px;
  11593. height:21px;
  11594. background:inherit;
  11595. background-color:rgba(255, 255, 255, 1);
  11596. border:none;
  11597. border-radius:15px;
  11598. -moz-box-shadow:none;
  11599. -webkit-box-shadow:none;
  11600. box-shadow:none;
  11601. font-family:'Microsoft YaHei', sans-serif;
  11602. font-weight:400;
  11603. font-style:normal;
  11604. font-size:14px;
  11605. color:#1E1E1E;
  11606. }
  11607. #u10161 {
  11608. border-width:0px;
  11609. position:absolute;
  11610. left:2866px;
  11611. top:1194px;
  11612. width:32px;
  11613. height:21px;
  11614. display:flex;
  11615. font-family:'Microsoft YaHei', sans-serif;
  11616. font-weight:400;
  11617. font-style:normal;
  11618. font-size:14px;
  11619. color:#1E1E1E;
  11620. }
  11621. #u10161 .text {
  11622. position:absolute;
  11623. align-self:center;
  11624. padding:2px 2px 2px 2px;
  11625. box-sizing:border-box;
  11626. width:100%;
  11627. }
  11628. #u10161_text {
  11629. border-width:0px;
  11630. white-space:nowrap;
  11631. text-transform:none;
  11632. }
  11633. #u10162 {
  11634. border-width:0px;
  11635. position:absolute;
  11636. left:0px;
  11637. top:0px;
  11638. width:0px;
  11639. height:0px;
  11640. }
  11641. #u10163_div {
  11642. border-width:0px;
  11643. position:absolute;
  11644. left:0px;
  11645. top:0px;
  11646. width:31px;
  11647. height:30px;
  11648. background:inherit;
  11649. background-color:rgba(255, 255, 255, 1);
  11650. box-sizing:border-box;
  11651. border-width:1px;
  11652. border-style:solid;
  11653. border-color:rgba(228, 228, 228, 1);
  11654. border-radius:4px;
  11655. -moz-box-shadow:none;
  11656. -webkit-box-shadow:none;
  11657. box-shadow:none;
  11658. font-family:'Microsoft YaHei', sans-serif;
  11659. font-weight:400;
  11660. font-style:normal;
  11661. font-size:12px;
  11662. }
  11663. #u10163 {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:2591px;
  11667. top:1189px;
  11668. width:31px;
  11669. height:30px;
  11670. display:flex;
  11671. font-family:'Microsoft YaHei', sans-serif;
  11672. font-weight:400;
  11673. font-style:normal;
  11674. font-size:12px;
  11675. }
  11676. #u10163 .text {
  11677. position:absolute;
  11678. align-self:center;
  11679. padding:2px 2px 2px 2px;
  11680. box-sizing:border-box;
  11681. width:100%;
  11682. }
  11683. #u10163_text {
  11684. border-width:0px;
  11685. word-wrap:break-word;
  11686. text-transform:none;
  11687. visibility:hidden;
  11688. }
  11689. #u10164_img {
  11690. border-width:0px;
  11691. position:absolute;
  11692. left:0px;
  11693. top:0px;
  11694. width:8px;
  11695. height:14px;
  11696. }
  11697. #u10164 {
  11698. border-width:0px;
  11699. position:absolute;
  11700. left:2603px;
  11701. top:1197px;
  11702. width:8px;
  11703. height:14px;
  11704. display:flex;
  11705. font-family:'Microsoft YaHei', sans-serif;
  11706. font-weight:400;
  11707. font-style:normal;
  11708. font-size:12px;
  11709. }
  11710. #u10164 .text {
  11711. position:absolute;
  11712. align-self:center;
  11713. padding:2px 2px 2px 2px;
  11714. box-sizing:border-box;
  11715. width:100%;
  11716. }
  11717. #u10164_text {
  11718. border-width:0px;
  11719. word-wrap:break-word;
  11720. text-transform:none;
  11721. visibility:hidden;
  11722. }
  11723. #u10165 {
  11724. border-width:0px;
  11725. position:absolute;
  11726. left:0px;
  11727. top:0px;
  11728. width:0px;
  11729. height:0px;
  11730. }
  11731. #u10166_div {
  11732. border-width:0px;
  11733. position:absolute;
  11734. left:0px;
  11735. top:0px;
  11736. width:31px;
  11737. height:30px;
  11738. background:inherit;
  11739. background-color:rgba(255, 255, 255, 1);
  11740. box-sizing:border-box;
  11741. border-width:1px;
  11742. border-style:solid;
  11743. border-color:rgba(228, 228, 228, 1);
  11744. border-radius:4px;
  11745. -moz-box-shadow:none;
  11746. -webkit-box-shadow:none;
  11747. box-shadow:none;
  11748. font-family:'Microsoft YaHei', sans-serif;
  11749. font-weight:400;
  11750. font-style:normal;
  11751. font-size:12px;
  11752. }
  11753. #u10166 {
  11754. border-width:0px;
  11755. position:absolute;
  11756. left:2825px;
  11757. top:1189px;
  11758. width:31px;
  11759. height:30px;
  11760. display:flex;
  11761. font-family:'Microsoft YaHei', sans-serif;
  11762. font-weight:400;
  11763. font-style:normal;
  11764. font-size:12px;
  11765. }
  11766. #u10166 .text {
  11767. position:absolute;
  11768. align-self:center;
  11769. padding:2px 2px 2px 2px;
  11770. box-sizing:border-box;
  11771. width:100%;
  11772. }
  11773. #u10166_text {
  11774. border-width:0px;
  11775. word-wrap:break-word;
  11776. text-transform:none;
  11777. visibility:hidden;
  11778. }
  11779. #u10167_img {
  11780. border-width:0px;
  11781. position:absolute;
  11782. left:0px;
  11783. top:0px;
  11784. width:8px;
  11785. height:14px;
  11786. }
  11787. #u10167 {
  11788. border-width:0px;
  11789. position:absolute;
  11790. left:2838px;
  11791. top:1197px;
  11792. width:8px;
  11793. height:14px;
  11794. display:flex;
  11795. font-family:'Microsoft YaHei', sans-serif;
  11796. font-weight:400;
  11797. font-style:normal;
  11798. font-size:12px;
  11799. }
  11800. #u10167 .text {
  11801. position:absolute;
  11802. align-self:center;
  11803. padding:2px 2px 2px 2px;
  11804. box-sizing:border-box;
  11805. width:100%;
  11806. }
  11807. #u10167_text {
  11808. border-width:0px;
  11809. word-wrap:break-word;
  11810. text-transform:none;
  11811. visibility:hidden;
  11812. }
  11813. #u10168 {
  11814. border-width:0px;
  11815. position:absolute;
  11816. left:0px;
  11817. top:0px;
  11818. width:0px;
  11819. height:0px;
  11820. }
  11821. #u10169_div {
  11822. border-width:0px;
  11823. position:absolute;
  11824. left:0px;
  11825. top:0px;
  11826. width:33px;
  11827. height:24px;
  11828. background:inherit;
  11829. background-color:rgba(255, 255, 255, 1);
  11830. border:none;
  11831. border-radius:0px;
  11832. -moz-box-shadow:none;
  11833. -webkit-box-shadow:none;
  11834. box-shadow:none;
  11835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11836. font-weight:400;
  11837. font-style:normal;
  11838. font-size:14px;
  11839. color:#BCBCBC;
  11840. text-align:left;
  11841. }
  11842. #u10169 {
  11843. border-width:0px;
  11844. position:absolute;
  11845. left:3026px;
  11846. top:1192px;
  11847. width:33px;
  11848. height:24px;
  11849. display:flex;
  11850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11851. font-weight:400;
  11852. font-style:normal;
  11853. font-size:14px;
  11854. color:#BCBCBC;
  11855. text-align:left;
  11856. }
  11857. #u10169 .text {
  11858. position:absolute;
  11859. align-self:center;
  11860. padding:2px 2px 2px 2px;
  11861. box-sizing:border-box;
  11862. width:100%;
  11863. }
  11864. #u10169_text {
  11865. border-width:0px;
  11866. white-space:nowrap;
  11867. text-transform:none;
  11868. }
  11869. #u10170_div {
  11870. border-width:0px;
  11871. position:absolute;
  11872. left:0px;
  11873. top:0px;
  11874. width:40px;
  11875. height:30px;
  11876. background:inherit;
  11877. background-color:rgba(255, 255, 255, 1);
  11878. box-sizing:border-box;
  11879. border-width:1px;
  11880. border-style:solid;
  11881. border-color:rgba(228, 228, 228, 1);
  11882. border-radius:4px;
  11883. -moz-box-shadow:none;
  11884. -webkit-box-shadow:none;
  11885. box-shadow:none;
  11886. font-family:'Microsoft YaHei', sans-serif;
  11887. font-weight:400;
  11888. font-style:normal;
  11889. font-size:14px;
  11890. }
  11891. #u10170 {
  11892. border-width:0px;
  11893. position:absolute;
  11894. left:3061px;
  11895. top:1189px;
  11896. width:40px;
  11897. height:30px;
  11898. display:flex;
  11899. font-family:'Microsoft YaHei', sans-serif;
  11900. font-weight:400;
  11901. font-style:normal;
  11902. font-size:14px;
  11903. }
  11904. #u10170 .text {
  11905. position:absolute;
  11906. align-self:center;
  11907. padding:2px 2px 2px 2px;
  11908. box-sizing:border-box;
  11909. width:100%;
  11910. }
  11911. #u10170_text {
  11912. border-width:0px;
  11913. word-wrap:break-word;
  11914. text-transform:none;
  11915. visibility:hidden;
  11916. }
  11917. #u10171_div {
  11918. border-width:0px;
  11919. position:absolute;
  11920. left:0px;
  11921. top:0px;
  11922. width:19px;
  11923. height:24px;
  11924. background:inherit;
  11925. background-color:rgba(255, 255, 255, 1);
  11926. border:none;
  11927. border-radius:0px;
  11928. -moz-box-shadow:none;
  11929. -webkit-box-shadow:none;
  11930. box-shadow:none;
  11931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11932. font-weight:400;
  11933. font-style:normal;
  11934. font-size:14px;
  11935. color:#BCBCBC;
  11936. text-align:left;
  11937. }
  11938. #u10171 {
  11939. border-width:0px;
  11940. position:absolute;
  11941. left:3103px;
  11942. top:1193px;
  11943. width:19px;
  11944. height:24px;
  11945. display:flex;
  11946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11947. font-weight:400;
  11948. font-style:normal;
  11949. font-size:14px;
  11950. color:#BCBCBC;
  11951. text-align:left;
  11952. }
  11953. #u10171 .text {
  11954. position:absolute;
  11955. align-self:center;
  11956. padding:2px 2px 2px 2px;
  11957. box-sizing:border-box;
  11958. width:100%;
  11959. }
  11960. #u10171_text {
  11961. border-width:0px;
  11962. white-space:nowrap;
  11963. text-transform:none;
  11964. }
  11965. #u10172_input {
  11966. position:absolute;
  11967. left:0px;
  11968. top:0px;
  11969. width:34px;
  11970. height:25px;
  11971. padding:2px 2px 2px 2px;
  11972. font-family:'Microsoft YaHei', sans-serif;
  11973. font-weight:400;
  11974. font-style:normal;
  11975. font-size:13px;
  11976. letter-spacing:normal;
  11977. color:#000000;
  11978. vertical-align:none;
  11979. text-align:left;
  11980. text-transform:none;
  11981. background-color:transparent;
  11982. border-color:transparent;
  11983. }
  11984. #u10172_input.disabled {
  11985. position:absolute;
  11986. left:0px;
  11987. top:0px;
  11988. width:34px;
  11989. height:25px;
  11990. padding:2px 2px 2px 2px;
  11991. font-family:'Microsoft YaHei', sans-serif;
  11992. font-weight:400;
  11993. font-style:normal;
  11994. font-size:13px;
  11995. letter-spacing:normal;
  11996. color:#000000;
  11997. vertical-align:none;
  11998. text-align:left;
  11999. text-transform:none;
  12000. background-color:transparent;
  12001. border-color:transparent;
  12002. }
  12003. #u10172_div {
  12004. border-width:0px;
  12005. position:absolute;
  12006. left:0px;
  12007. top:0px;
  12008. width:34px;
  12009. height:25px;
  12010. background:inherit;
  12011. background-color:rgba(255, 255, 255, 1);
  12012. border:none;
  12013. border-radius:0px;
  12014. -moz-box-shadow:none;
  12015. -webkit-box-shadow:none;
  12016. box-shadow:none;
  12017. font-family:'Microsoft YaHei', sans-serif;
  12018. font-weight:400;
  12019. font-style:normal;
  12020. }
  12021. #u10172 {
  12022. border-width:0px;
  12023. position:absolute;
  12024. left:3064px;
  12025. top:1191px;
  12026. width:34px;
  12027. height:25px;
  12028. display:flex;
  12029. font-family:'Microsoft YaHei', sans-serif;
  12030. font-weight:400;
  12031. font-style:normal;
  12032. }
  12033. #u10172 .text {
  12034. position:absolute;
  12035. align-self:center;
  12036. padding:2px 2px 2px 2px;
  12037. box-sizing:border-box;
  12038. width:100%;
  12039. }
  12040. #u10172_div.disabled {
  12041. border-width:0px;
  12042. position:absolute;
  12043. left:0px;
  12044. top:0px;
  12045. width:34px;
  12046. height:25px;
  12047. background:inherit;
  12048. background-color:rgba(240, 240, 240, 1);
  12049. border:none;
  12050. border-radius:0px;
  12051. -moz-box-shadow:none;
  12052. -webkit-box-shadow:none;
  12053. box-shadow:none;
  12054. font-family:'Microsoft YaHei', sans-serif;
  12055. font-weight:400;
  12056. font-style:normal;
  12057. }
  12058. #u10172.disabled {
  12059. }
  12060. #u10173_div {
  12061. border-width:0px;
  12062. position:absolute;
  12063. left:0px;
  12064. top:0px;
  12065. width:55px;
  12066. height:30px;
  12067. background:inherit;
  12068. background-color:rgba(255, 255, 255, 1);
  12069. box-sizing:border-box;
  12070. border-width:1px;
  12071. border-style:solid;
  12072. border-color:rgba(170, 170, 170, 1);
  12073. border-radius:4px;
  12074. -moz-box-shadow:none;
  12075. -webkit-box-shadow:none;
  12076. box-shadow:none;
  12077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12078. font-weight:400;
  12079. font-style:normal;
  12080. font-size:12px;
  12081. color:#555555;
  12082. }
  12083. #u10173 {
  12084. border-width:0px;
  12085. position:absolute;
  12086. left:1977px;
  12087. top:195px;
  12088. width:55px;
  12089. height:30px;
  12090. display:flex;
  12091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12092. font-weight:400;
  12093. font-style:normal;
  12094. font-size:12px;
  12095. color:#555555;
  12096. }
  12097. #u10173 .text {
  12098. position:absolute;
  12099. align-self:center;
  12100. padding:5px 15px 5px 15px;
  12101. box-sizing:border-box;
  12102. width:100%;
  12103. }
  12104. #u10173_text {
  12105. border-width:0px;
  12106. white-space:nowrap;
  12107. text-transform:none;
  12108. }
  12109. #u10174_div {
  12110. border-width:0px;
  12111. position:absolute;
  12112. left:0px;
  12113. top:0px;
  12114. width:73px;
  12115. height:50px;
  12116. background:inherit;
  12117. background-color:rgba(255, 255, 255, 0);
  12118. border:none;
  12119. border-left:0px;
  12120. border-top:0px;
  12121. border-right:0px;
  12122. border-radius:0px;
  12123. border-bottom-right-radius:0px;
  12124. border-bottom-left-radius:0px;
  12125. -moz-box-shadow:none;
  12126. -webkit-box-shadow:none;
  12127. box-shadow:none;
  12128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12129. font-weight:400;
  12130. font-style:normal;
  12131. font-size:18px;
  12132. color:#1890FF;
  12133. }
  12134. #u10174 {
  12135. border-width:0px;
  12136. position:absolute;
  12137. left:2076px;
  12138. top:50px;
  12139. width:73px;
  12140. height:50px;
  12141. display:flex;
  12142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12143. font-weight:400;
  12144. font-style:normal;
  12145. font-size:18px;
  12146. color:#1890FF;
  12147. }
  12148. #u10174 .text {
  12149. position:absolute;
  12150. align-self:center;
  12151. padding:0px 0px 0px 0px;
  12152. box-sizing:border-box;
  12153. width:100%;
  12154. }
  12155. #u10174_text {
  12156. border-width:0px;
  12157. white-space:nowrap;
  12158. text-transform:none;
  12159. }
  12160. #u10175 {
  12161. border-width:0px;
  12162. position:absolute;
  12163. left:1977px;
  12164. top:235px;
  12165. width:1211px;
  12166. height:328px;
  12167. }
  12168. #u10176_img {
  12169. border-width:0px;
  12170. position:absolute;
  12171. left:0px;
  12172. top:0px;
  12173. width:141px;
  12174. height:44px;
  12175. }
  12176. #u10176 {
  12177. border-width:0px;
  12178. position:absolute;
  12179. left:0px;
  12180. top:0px;
  12181. width:141px;
  12182. height:44px;
  12183. display:flex;
  12184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12185. font-weight:400;
  12186. font-style:normal;
  12187. font-size:12px;
  12188. color:#FFFFFF;
  12189. }
  12190. #u10176 .text {
  12191. position:absolute;
  12192. align-self:center;
  12193. padding:2px 2px 2px 0px;
  12194. box-sizing:border-box;
  12195. width:100%;
  12196. }
  12197. #u10176_text {
  12198. border-width:0px;
  12199. word-wrap:break-word;
  12200. text-transform:none;
  12201. }
  12202. #u10177_img {
  12203. border-width:0px;
  12204. position:absolute;
  12205. left:0px;
  12206. top:0px;
  12207. width:160px;
  12208. height:44px;
  12209. }
  12210. #u10177 {
  12211. border-width:0px;
  12212. position:absolute;
  12213. left:141px;
  12214. top:0px;
  12215. width:160px;
  12216. height:44px;
  12217. display:flex;
  12218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12219. font-weight:400;
  12220. font-style:normal;
  12221. font-size:12px;
  12222. color:#FFFFFF;
  12223. }
  12224. #u10177 .text {
  12225. position:absolute;
  12226. align-self:center;
  12227. padding:2px 2px 2px 0px;
  12228. box-sizing:border-box;
  12229. width:100%;
  12230. }
  12231. #u10177_text {
  12232. border-width:0px;
  12233. word-wrap:break-word;
  12234. text-transform:none;
  12235. }
  12236. #u10178_img {
  12237. border-width:0px;
  12238. position:absolute;
  12239. left:0px;
  12240. top:0px;
  12241. width:141px;
  12242. height:44px;
  12243. }
  12244. #u10178 {
  12245. border-width:0px;
  12246. position:absolute;
  12247. left:301px;
  12248. top:0px;
  12249. width:141px;
  12250. height:44px;
  12251. display:flex;
  12252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12253. font-weight:400;
  12254. font-style:normal;
  12255. font-size:12px;
  12256. color:#FFFFFF;
  12257. }
  12258. #u10178 .text {
  12259. position:absolute;
  12260. align-self:center;
  12261. padding:2px 2px 2px 0px;
  12262. box-sizing:border-box;
  12263. width:100%;
  12264. }
  12265. #u10178_text {
  12266. border-width:0px;
  12267. word-wrap:break-word;
  12268. text-transform:none;
  12269. }
  12270. #u10179_img {
  12271. border-width:0px;
  12272. position:absolute;
  12273. left:0px;
  12274. top:0px;
  12275. width:166px;
  12276. height:44px;
  12277. }
  12278. #u10179 {
  12279. border-width:0px;
  12280. position:absolute;
  12281. left:442px;
  12282. top:0px;
  12283. width:166px;
  12284. height:44px;
  12285. display:flex;
  12286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12287. font-weight:400;
  12288. font-style:normal;
  12289. font-size:12px;
  12290. color:#FFFFFF;
  12291. }
  12292. #u10179 .text {
  12293. position:absolute;
  12294. align-self:center;
  12295. padding:2px 2px 2px 0px;
  12296. box-sizing:border-box;
  12297. width:100%;
  12298. }
  12299. #u10179_text {
  12300. border-width:0px;
  12301. word-wrap:break-word;
  12302. text-transform:none;
  12303. }
  12304. #u10180_img {
  12305. border-width:0px;
  12306. position:absolute;
  12307. left:0px;
  12308. top:0px;
  12309. width:141px;
  12310. height:44px;
  12311. }
  12312. #u10180 {
  12313. border-width:0px;
  12314. position:absolute;
  12315. left:608px;
  12316. top:0px;
  12317. width:141px;
  12318. height:44px;
  12319. display:flex;
  12320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12321. font-weight:400;
  12322. font-style:normal;
  12323. font-size:12px;
  12324. color:#FFFFFF;
  12325. }
  12326. #u10180 .text {
  12327. position:absolute;
  12328. align-self:center;
  12329. padding:2px 2px 2px 0px;
  12330. box-sizing:border-box;
  12331. width:100%;
  12332. }
  12333. #u10180_text {
  12334. border-width:0px;
  12335. word-wrap:break-word;
  12336. text-transform:none;
  12337. }
  12338. #u10181_img {
  12339. border-width:0px;
  12340. position:absolute;
  12341. left:0px;
  12342. top:0px;
  12343. width:166px;
  12344. height:44px;
  12345. }
  12346. #u10181 {
  12347. border-width:0px;
  12348. position:absolute;
  12349. left:749px;
  12350. top:0px;
  12351. width:166px;
  12352. height:44px;
  12353. display:flex;
  12354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12355. font-weight:400;
  12356. font-style:normal;
  12357. font-size:12px;
  12358. color:#FFFFFF;
  12359. }
  12360. #u10181 .text {
  12361. position:absolute;
  12362. align-self:center;
  12363. padding:2px 2px 2px 0px;
  12364. box-sizing:border-box;
  12365. width:100%;
  12366. }
  12367. #u10181_text {
  12368. border-width:0px;
  12369. word-wrap:break-word;
  12370. text-transform:none;
  12371. }
  12372. #u10182_img {
  12373. border-width:0px;
  12374. position:absolute;
  12375. left:0px;
  12376. top:0px;
  12377. width:135px;
  12378. height:44px;
  12379. }
  12380. #u10182 {
  12381. border-width:0px;
  12382. position:absolute;
  12383. left:915px;
  12384. top:0px;
  12385. width:135px;
  12386. height:44px;
  12387. display:flex;
  12388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12389. font-weight:400;
  12390. font-style:normal;
  12391. font-size:12px;
  12392. color:#FFFFFF;
  12393. }
  12394. #u10182 .text {
  12395. position:absolute;
  12396. align-self:center;
  12397. padding:2px 2px 2px 0px;
  12398. box-sizing:border-box;
  12399. width:100%;
  12400. }
  12401. #u10182_text {
  12402. border-width:0px;
  12403. word-wrap:break-word;
  12404. text-transform:none;
  12405. }
  12406. #u10183_img {
  12407. border-width:0px;
  12408. position:absolute;
  12409. left:0px;
  12410. top:0px;
  12411. width:161px;
  12412. height:44px;
  12413. }
  12414. #u10183 {
  12415. border-width:0px;
  12416. position:absolute;
  12417. left:1050px;
  12418. top:0px;
  12419. width:161px;
  12420. height:44px;
  12421. display:flex;
  12422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12423. font-weight:400;
  12424. font-style:normal;
  12425. font-size:12px;
  12426. color:#FFFFFF;
  12427. }
  12428. #u10183 .text {
  12429. position:absolute;
  12430. align-self:center;
  12431. padding:2px 2px 2px 0px;
  12432. box-sizing:border-box;
  12433. width:100%;
  12434. }
  12435. #u10183_text {
  12436. border-width:0px;
  12437. word-wrap:break-word;
  12438. text-transform:none;
  12439. }
  12440. #u10184_img {
  12441. border-width:0px;
  12442. position:absolute;
  12443. left:0px;
  12444. top:0px;
  12445. width:141px;
  12446. height:38px;
  12447. }
  12448. #u10184 {
  12449. border-width:0px;
  12450. position:absolute;
  12451. left:0px;
  12452. top:44px;
  12453. width:141px;
  12454. height:38px;
  12455. display:flex;
  12456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12457. font-weight:400;
  12458. font-style:normal;
  12459. font-size:12px;
  12460. color:#333333;
  12461. }
  12462. #u10184 .text {
  12463. position:absolute;
  12464. align-self:center;
  12465. padding:2px 2px 2px 0px;
  12466. box-sizing:border-box;
  12467. width:100%;
  12468. }
  12469. #u10184_text {
  12470. border-width:0px;
  12471. word-wrap:break-word;
  12472. text-transform:none;
  12473. visibility:hidden;
  12474. }
  12475. #u10185_img {
  12476. border-width:0px;
  12477. position:absolute;
  12478. left:0px;
  12479. top:0px;
  12480. width:160px;
  12481. height:38px;
  12482. }
  12483. #u10185 {
  12484. border-width:0px;
  12485. position:absolute;
  12486. left:141px;
  12487. top:44px;
  12488. width:160px;
  12489. height:38px;
  12490. display:flex;
  12491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12492. font-weight:400;
  12493. font-style:normal;
  12494. font-size:12px;
  12495. color:#333333;
  12496. }
  12497. #u10185 .text {
  12498. position:absolute;
  12499. align-self:center;
  12500. padding:2px 2px 2px 0px;
  12501. box-sizing:border-box;
  12502. width:100%;
  12503. }
  12504. #u10185_text {
  12505. border-width:0px;
  12506. word-wrap:break-word;
  12507. text-transform:none;
  12508. visibility:hidden;
  12509. }
  12510. #u10186_img {
  12511. border-width:0px;
  12512. position:absolute;
  12513. left:0px;
  12514. top:0px;
  12515. width:141px;
  12516. height:38px;
  12517. }
  12518. #u10186 {
  12519. border-width:0px;
  12520. position:absolute;
  12521. left:301px;
  12522. top:44px;
  12523. width:141px;
  12524. height:38px;
  12525. display:flex;
  12526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12527. font-weight:400;
  12528. font-style:normal;
  12529. font-size:12px;
  12530. color:#333333;
  12531. }
  12532. #u10186 .text {
  12533. position:absolute;
  12534. align-self:center;
  12535. padding:2px 2px 2px 0px;
  12536. box-sizing:border-box;
  12537. width:100%;
  12538. }
  12539. #u10186_text {
  12540. border-width:0px;
  12541. word-wrap:break-word;
  12542. text-transform:none;
  12543. visibility:hidden;
  12544. }
  12545. #u10187_img {
  12546. border-width:0px;
  12547. position:absolute;
  12548. left:0px;
  12549. top:0px;
  12550. width:166px;
  12551. height:38px;
  12552. }
  12553. #u10187 {
  12554. border-width:0px;
  12555. position:absolute;
  12556. left:442px;
  12557. top:44px;
  12558. width:166px;
  12559. height:38px;
  12560. display:flex;
  12561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12562. font-weight:400;
  12563. font-style:normal;
  12564. font-size:12px;
  12565. color:#333333;
  12566. }
  12567. #u10187 .text {
  12568. position:absolute;
  12569. align-self:center;
  12570. padding:2px 2px 2px 0px;
  12571. box-sizing:border-box;
  12572. width:100%;
  12573. }
  12574. #u10187_text {
  12575. border-width:0px;
  12576. word-wrap:break-word;
  12577. text-transform:none;
  12578. visibility:hidden;
  12579. }
  12580. #u10188_img {
  12581. border-width:0px;
  12582. position:absolute;
  12583. left:0px;
  12584. top:0px;
  12585. width:141px;
  12586. height:38px;
  12587. }
  12588. #u10188 {
  12589. border-width:0px;
  12590. position:absolute;
  12591. left:608px;
  12592. top:44px;
  12593. width:141px;
  12594. height:38px;
  12595. display:flex;
  12596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12597. font-weight:400;
  12598. font-style:normal;
  12599. font-size:12px;
  12600. color:#333333;
  12601. }
  12602. #u10188 .text {
  12603. position:absolute;
  12604. align-self:center;
  12605. padding:2px 2px 2px 0px;
  12606. box-sizing:border-box;
  12607. width:100%;
  12608. }
  12609. #u10188_text {
  12610. border-width:0px;
  12611. word-wrap:break-word;
  12612. text-transform:none;
  12613. visibility:hidden;
  12614. }
  12615. #u10189_img {
  12616. border-width:0px;
  12617. position:absolute;
  12618. left:0px;
  12619. top:0px;
  12620. width:166px;
  12621. height:38px;
  12622. }
  12623. #u10189 {
  12624. border-width:0px;
  12625. position:absolute;
  12626. left:749px;
  12627. top:44px;
  12628. width:166px;
  12629. height:38px;
  12630. display:flex;
  12631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12632. font-weight:400;
  12633. font-style:normal;
  12634. font-size:12px;
  12635. color:#333333;
  12636. }
  12637. #u10189 .text {
  12638. position:absolute;
  12639. align-self:center;
  12640. padding:2px 2px 2px 0px;
  12641. box-sizing:border-box;
  12642. width:100%;
  12643. }
  12644. #u10189_text {
  12645. border-width:0px;
  12646. word-wrap:break-word;
  12647. text-transform:none;
  12648. visibility:hidden;
  12649. }
  12650. #u10190_img {
  12651. border-width:0px;
  12652. position:absolute;
  12653. left:0px;
  12654. top:0px;
  12655. width:135px;
  12656. height:38px;
  12657. }
  12658. #u10190 {
  12659. border-width:0px;
  12660. position:absolute;
  12661. left:915px;
  12662. top:44px;
  12663. width:135px;
  12664. height:38px;
  12665. display:flex;
  12666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12667. font-weight:400;
  12668. font-style:normal;
  12669. font-size:12px;
  12670. color:#333333;
  12671. }
  12672. #u10190 .text {
  12673. position:absolute;
  12674. align-self:center;
  12675. padding:2px 2px 2px 0px;
  12676. box-sizing:border-box;
  12677. width:100%;
  12678. }
  12679. #u10190_text {
  12680. border-width:0px;
  12681. word-wrap:break-word;
  12682. text-transform:none;
  12683. visibility:hidden;
  12684. }
  12685. #u10191_img {
  12686. border-width:0px;
  12687. position:absolute;
  12688. left:0px;
  12689. top:0px;
  12690. width:161px;
  12691. height:38px;
  12692. }
  12693. #u10191 {
  12694. border-width:0px;
  12695. position:absolute;
  12696. left:1050px;
  12697. top:44px;
  12698. width:161px;
  12699. height:38px;
  12700. display:flex;
  12701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12702. font-weight:400;
  12703. font-style:normal;
  12704. font-size:12px;
  12705. color:#0089FE;
  12706. }
  12707. #u10191 .text {
  12708. position:absolute;
  12709. align-self:center;
  12710. padding:2px 2px 2px 0px;
  12711. box-sizing:border-box;
  12712. width:100%;
  12713. }
  12714. #u10191_text {
  12715. border-width:0px;
  12716. word-wrap:break-word;
  12717. text-transform:none;
  12718. }
  12719. #u10192_img {
  12720. border-width:0px;
  12721. position:absolute;
  12722. left:0px;
  12723. top:0px;
  12724. width:141px;
  12725. height:38px;
  12726. }
  12727. #u10192 {
  12728. border-width:0px;
  12729. position:absolute;
  12730. left:0px;
  12731. top:82px;
  12732. width:141px;
  12733. height:38px;
  12734. display:flex;
  12735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12736. font-weight:400;
  12737. font-style:normal;
  12738. font-size:12px;
  12739. color:#333333;
  12740. }
  12741. #u10192 .text {
  12742. position:absolute;
  12743. align-self:center;
  12744. padding:2px 2px 2px 0px;
  12745. box-sizing:border-box;
  12746. width:100%;
  12747. }
  12748. #u10192_text {
  12749. border-width:0px;
  12750. word-wrap:break-word;
  12751. text-transform:none;
  12752. visibility:hidden;
  12753. }
  12754. #u10193_img {
  12755. border-width:0px;
  12756. position:absolute;
  12757. left:0px;
  12758. top:0px;
  12759. width:160px;
  12760. height:38px;
  12761. }
  12762. #u10193 {
  12763. border-width:0px;
  12764. position:absolute;
  12765. left:141px;
  12766. top:82px;
  12767. width:160px;
  12768. height:38px;
  12769. display:flex;
  12770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12771. font-weight:400;
  12772. font-style:normal;
  12773. font-size:12px;
  12774. color:#333333;
  12775. }
  12776. #u10193 .text {
  12777. position:absolute;
  12778. align-self:center;
  12779. padding:2px 2px 2px 0px;
  12780. box-sizing:border-box;
  12781. width:100%;
  12782. }
  12783. #u10193_text {
  12784. border-width:0px;
  12785. word-wrap:break-word;
  12786. text-transform:none;
  12787. visibility:hidden;
  12788. }
  12789. #u10194_img {
  12790. border-width:0px;
  12791. position:absolute;
  12792. left:0px;
  12793. top:0px;
  12794. width:141px;
  12795. height:38px;
  12796. }
  12797. #u10194 {
  12798. border-width:0px;
  12799. position:absolute;
  12800. left:301px;
  12801. top:82px;
  12802. width:141px;
  12803. height:38px;
  12804. display:flex;
  12805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12806. font-weight:400;
  12807. font-style:normal;
  12808. font-size:12px;
  12809. color:#333333;
  12810. }
  12811. #u10194 .text {
  12812. position:absolute;
  12813. align-self:center;
  12814. padding:2px 2px 2px 0px;
  12815. box-sizing:border-box;
  12816. width:100%;
  12817. }
  12818. #u10194_text {
  12819. border-width:0px;
  12820. word-wrap:break-word;
  12821. text-transform:none;
  12822. visibility:hidden;
  12823. }
  12824. #u10195_img {
  12825. border-width:0px;
  12826. position:absolute;
  12827. left:0px;
  12828. top:0px;
  12829. width:166px;
  12830. height:38px;
  12831. }
  12832. #u10195 {
  12833. border-width:0px;
  12834. position:absolute;
  12835. left:442px;
  12836. top:82px;
  12837. width:166px;
  12838. height:38px;
  12839. display:flex;
  12840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12841. font-weight:400;
  12842. font-style:normal;
  12843. font-size:12px;
  12844. color:#333333;
  12845. }
  12846. #u10195 .text {
  12847. position:absolute;
  12848. align-self:center;
  12849. padding:2px 2px 2px 0px;
  12850. box-sizing:border-box;
  12851. width:100%;
  12852. }
  12853. #u10195_text {
  12854. border-width:0px;
  12855. word-wrap:break-word;
  12856. text-transform:none;
  12857. visibility:hidden;
  12858. }
  12859. #u10196_img {
  12860. border-width:0px;
  12861. position:absolute;
  12862. left:0px;
  12863. top:0px;
  12864. width:141px;
  12865. height:38px;
  12866. }
  12867. #u10196 {
  12868. border-width:0px;
  12869. position:absolute;
  12870. left:608px;
  12871. top:82px;
  12872. width:141px;
  12873. height:38px;
  12874. display:flex;
  12875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12876. font-weight:400;
  12877. font-style:normal;
  12878. font-size:12px;
  12879. color:#333333;
  12880. }
  12881. #u10196 .text {
  12882. position:absolute;
  12883. align-self:center;
  12884. padding:2px 2px 2px 0px;
  12885. box-sizing:border-box;
  12886. width:100%;
  12887. }
  12888. #u10196_text {
  12889. border-width:0px;
  12890. word-wrap:break-word;
  12891. text-transform:none;
  12892. visibility:hidden;
  12893. }
  12894. #u10197_img {
  12895. border-width:0px;
  12896. position:absolute;
  12897. left:0px;
  12898. top:0px;
  12899. width:166px;
  12900. height:38px;
  12901. }
  12902. #u10197 {
  12903. border-width:0px;
  12904. position:absolute;
  12905. left:749px;
  12906. top:82px;
  12907. width:166px;
  12908. height:38px;
  12909. display:flex;
  12910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12911. font-weight:400;
  12912. font-style:normal;
  12913. font-size:12px;
  12914. color:#333333;
  12915. }
  12916. #u10197 .text {
  12917. position:absolute;
  12918. align-self:center;
  12919. padding:2px 2px 2px 0px;
  12920. box-sizing:border-box;
  12921. width:100%;
  12922. }
  12923. #u10197_text {
  12924. border-width:0px;
  12925. word-wrap:break-word;
  12926. text-transform:none;
  12927. visibility:hidden;
  12928. }
  12929. #u10198_img {
  12930. border-width:0px;
  12931. position:absolute;
  12932. left:0px;
  12933. top:0px;
  12934. width:135px;
  12935. height:38px;
  12936. }
  12937. #u10198 {
  12938. border-width:0px;
  12939. position:absolute;
  12940. left:915px;
  12941. top:82px;
  12942. width:135px;
  12943. height:38px;
  12944. display:flex;
  12945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12946. font-weight:400;
  12947. font-style:normal;
  12948. font-size:12px;
  12949. color:#333333;
  12950. }
  12951. #u10198 .text {
  12952. position:absolute;
  12953. align-self:center;
  12954. padding:2px 2px 2px 0px;
  12955. box-sizing:border-box;
  12956. width:100%;
  12957. }
  12958. #u10198_text {
  12959. border-width:0px;
  12960. word-wrap:break-word;
  12961. text-transform:none;
  12962. visibility:hidden;
  12963. }
  12964. #u10199_img {
  12965. border-width:0px;
  12966. position:absolute;
  12967. left:0px;
  12968. top:0px;
  12969. width:161px;
  12970. height:38px;
  12971. }
  12972. #u10199 {
  12973. border-width:0px;
  12974. position:absolute;
  12975. left:1050px;
  12976. top:82px;
  12977. width:161px;
  12978. height:38px;
  12979. display:flex;
  12980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12981. font-weight:400;
  12982. font-style:normal;
  12983. font-size:12px;
  12984. color:#0089FE;
  12985. }
  12986. #u10199 .text {
  12987. position:absolute;
  12988. align-self:center;
  12989. padding:2px 2px 2px 0px;
  12990. box-sizing:border-box;
  12991. width:100%;
  12992. }
  12993. #u10199_text {
  12994. border-width:0px;
  12995. word-wrap:break-word;
  12996. text-transform:none;
  12997. }
  12998. #u10200_img {
  12999. border-width:0px;
  13000. position:absolute;
  13001. left:0px;
  13002. top:0px;
  13003. width:141px;
  13004. height:38px;
  13005. }
  13006. #u10200 {
  13007. border-width:0px;
  13008. position:absolute;
  13009. left:0px;
  13010. top:120px;
  13011. width:141px;
  13012. height:38px;
  13013. display:flex;
  13014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13015. font-weight:400;
  13016. font-style:normal;
  13017. font-size:12px;
  13018. color:#333333;
  13019. }
  13020. #u10200 .text {
  13021. position:absolute;
  13022. align-self:center;
  13023. padding:2px 2px 2px 0px;
  13024. box-sizing:border-box;
  13025. width:100%;
  13026. }
  13027. #u10200_text {
  13028. border-width:0px;
  13029. word-wrap:break-word;
  13030. text-transform:none;
  13031. visibility:hidden;
  13032. }
  13033. #u10201_img {
  13034. border-width:0px;
  13035. position:absolute;
  13036. left:0px;
  13037. top:0px;
  13038. width:160px;
  13039. height:38px;
  13040. }
  13041. #u10201 {
  13042. border-width:0px;
  13043. position:absolute;
  13044. left:141px;
  13045. top:120px;
  13046. width:160px;
  13047. height:38px;
  13048. display:flex;
  13049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13050. font-weight:400;
  13051. font-style:normal;
  13052. font-size:12px;
  13053. color:#333333;
  13054. }
  13055. #u10201 .text {
  13056. position:absolute;
  13057. align-self:center;
  13058. padding:2px 2px 2px 0px;
  13059. box-sizing:border-box;
  13060. width:100%;
  13061. }
  13062. #u10201_text {
  13063. border-width:0px;
  13064. word-wrap:break-word;
  13065. text-transform:none;
  13066. visibility:hidden;
  13067. }
  13068. #u10202_img {
  13069. border-width:0px;
  13070. position:absolute;
  13071. left:0px;
  13072. top:0px;
  13073. width:141px;
  13074. height:38px;
  13075. }
  13076. #u10202 {
  13077. border-width:0px;
  13078. position:absolute;
  13079. left:301px;
  13080. top:120px;
  13081. width:141px;
  13082. height:38px;
  13083. display:flex;
  13084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13085. font-weight:400;
  13086. font-style:normal;
  13087. font-size:12px;
  13088. color:#333333;
  13089. }
  13090. #u10202 .text {
  13091. position:absolute;
  13092. align-self:center;
  13093. padding:2px 2px 2px 0px;
  13094. box-sizing:border-box;
  13095. width:100%;
  13096. }
  13097. #u10202_text {
  13098. border-width:0px;
  13099. word-wrap:break-word;
  13100. text-transform:none;
  13101. visibility:hidden;
  13102. }
  13103. #u10203_img {
  13104. border-width:0px;
  13105. position:absolute;
  13106. left:0px;
  13107. top:0px;
  13108. width:166px;
  13109. height:38px;
  13110. }
  13111. #u10203 {
  13112. border-width:0px;
  13113. position:absolute;
  13114. left:442px;
  13115. top:120px;
  13116. width:166px;
  13117. height:38px;
  13118. display:flex;
  13119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13120. font-weight:400;
  13121. font-style:normal;
  13122. font-size:12px;
  13123. color:#333333;
  13124. }
  13125. #u10203 .text {
  13126. position:absolute;
  13127. align-self:center;
  13128. padding:2px 2px 2px 0px;
  13129. box-sizing:border-box;
  13130. width:100%;
  13131. }
  13132. #u10203_text {
  13133. border-width:0px;
  13134. word-wrap:break-word;
  13135. text-transform:none;
  13136. visibility:hidden;
  13137. }
  13138. #u10204_img {
  13139. border-width:0px;
  13140. position:absolute;
  13141. left:0px;
  13142. top:0px;
  13143. width:141px;
  13144. height:38px;
  13145. }
  13146. #u10204 {
  13147. border-width:0px;
  13148. position:absolute;
  13149. left:608px;
  13150. top:120px;
  13151. width:141px;
  13152. height:38px;
  13153. display:flex;
  13154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13155. font-weight:400;
  13156. font-style:normal;
  13157. font-size:12px;
  13158. color:#333333;
  13159. }
  13160. #u10204 .text {
  13161. position:absolute;
  13162. align-self:center;
  13163. padding:2px 2px 2px 0px;
  13164. box-sizing:border-box;
  13165. width:100%;
  13166. }
  13167. #u10204_text {
  13168. border-width:0px;
  13169. word-wrap:break-word;
  13170. text-transform:none;
  13171. visibility:hidden;
  13172. }
  13173. #u10205_img {
  13174. border-width:0px;
  13175. position:absolute;
  13176. left:0px;
  13177. top:0px;
  13178. width:166px;
  13179. height:38px;
  13180. }
  13181. #u10205 {
  13182. border-width:0px;
  13183. position:absolute;
  13184. left:749px;
  13185. top:120px;
  13186. width:166px;
  13187. height:38px;
  13188. display:flex;
  13189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13190. font-weight:400;
  13191. font-style:normal;
  13192. font-size:12px;
  13193. color:#333333;
  13194. }
  13195. #u10205 .text {
  13196. position:absolute;
  13197. align-self:center;
  13198. padding:2px 2px 2px 0px;
  13199. box-sizing:border-box;
  13200. width:100%;
  13201. }
  13202. #u10205_text {
  13203. border-width:0px;
  13204. word-wrap:break-word;
  13205. text-transform:none;
  13206. visibility:hidden;
  13207. }
  13208. #u10206_img {
  13209. border-width:0px;
  13210. position:absolute;
  13211. left:0px;
  13212. top:0px;
  13213. width:135px;
  13214. height:38px;
  13215. }
  13216. #u10206 {
  13217. border-width:0px;
  13218. position:absolute;
  13219. left:915px;
  13220. top:120px;
  13221. width:135px;
  13222. height:38px;
  13223. display:flex;
  13224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13225. font-weight:400;
  13226. font-style:normal;
  13227. font-size:12px;
  13228. color:#333333;
  13229. }
  13230. #u10206 .text {
  13231. position:absolute;
  13232. align-self:center;
  13233. padding:2px 2px 2px 0px;
  13234. box-sizing:border-box;
  13235. width:100%;
  13236. }
  13237. #u10206_text {
  13238. border-width:0px;
  13239. word-wrap:break-word;
  13240. text-transform:none;
  13241. visibility:hidden;
  13242. }
  13243. #u10207_img {
  13244. border-width:0px;
  13245. position:absolute;
  13246. left:0px;
  13247. top:0px;
  13248. width:161px;
  13249. height:38px;
  13250. }
  13251. #u10207 {
  13252. border-width:0px;
  13253. position:absolute;
  13254. left:1050px;
  13255. top:120px;
  13256. width:161px;
  13257. height:38px;
  13258. display:flex;
  13259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13260. font-weight:400;
  13261. font-style:normal;
  13262. font-size:12px;
  13263. color:#0089FE;
  13264. }
  13265. #u10207 .text {
  13266. position:absolute;
  13267. align-self:center;
  13268. padding:2px 2px 2px 0px;
  13269. box-sizing:border-box;
  13270. width:100%;
  13271. }
  13272. #u10207_text {
  13273. border-width:0px;
  13274. word-wrap:break-word;
  13275. text-transform:none;
  13276. visibility:hidden;
  13277. }
  13278. #u10208_img {
  13279. border-width:0px;
  13280. position:absolute;
  13281. left:0px;
  13282. top:0px;
  13283. width:141px;
  13284. height:38px;
  13285. }
  13286. #u10208 {
  13287. border-width:0px;
  13288. position:absolute;
  13289. left:0px;
  13290. top:158px;
  13291. width:141px;
  13292. height:38px;
  13293. display:flex;
  13294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13295. font-weight:400;
  13296. font-style:normal;
  13297. font-size:12px;
  13298. color:#333333;
  13299. }
  13300. #u10208 .text {
  13301. position:absolute;
  13302. align-self:center;
  13303. padding:2px 2px 2px 0px;
  13304. box-sizing:border-box;
  13305. width:100%;
  13306. }
  13307. #u10208_text {
  13308. border-width:0px;
  13309. word-wrap:break-word;
  13310. text-transform:none;
  13311. visibility:hidden;
  13312. }
  13313. #u10209_img {
  13314. border-width:0px;
  13315. position:absolute;
  13316. left:0px;
  13317. top:0px;
  13318. width:160px;
  13319. height:38px;
  13320. }
  13321. #u10209 {
  13322. border-width:0px;
  13323. position:absolute;
  13324. left:141px;
  13325. top:158px;
  13326. width:160px;
  13327. height:38px;
  13328. display:flex;
  13329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13330. font-weight:400;
  13331. font-style:normal;
  13332. font-size:12px;
  13333. color:#333333;
  13334. }
  13335. #u10209 .text {
  13336. position:absolute;
  13337. align-self:center;
  13338. padding:2px 2px 2px 0px;
  13339. box-sizing:border-box;
  13340. width:100%;
  13341. }
  13342. #u10209_text {
  13343. border-width:0px;
  13344. word-wrap:break-word;
  13345. text-transform:none;
  13346. visibility:hidden;
  13347. }
  13348. #u10210_img {
  13349. border-width:0px;
  13350. position:absolute;
  13351. left:0px;
  13352. top:0px;
  13353. width:141px;
  13354. height:38px;
  13355. }
  13356. #u10210 {
  13357. border-width:0px;
  13358. position:absolute;
  13359. left:301px;
  13360. top:158px;
  13361. width:141px;
  13362. height:38px;
  13363. display:flex;
  13364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13365. font-weight:400;
  13366. font-style:normal;
  13367. font-size:12px;
  13368. color:#333333;
  13369. }
  13370. #u10210 .text {
  13371. position:absolute;
  13372. align-self:center;
  13373. padding:2px 2px 2px 0px;
  13374. box-sizing:border-box;
  13375. width:100%;
  13376. }
  13377. #u10210_text {
  13378. border-width:0px;
  13379. word-wrap:break-word;
  13380. text-transform:none;
  13381. visibility:hidden;
  13382. }
  13383. #u10211_img {
  13384. border-width:0px;
  13385. position:absolute;
  13386. left:0px;
  13387. top:0px;
  13388. width:166px;
  13389. height:38px;
  13390. }
  13391. #u10211 {
  13392. border-width:0px;
  13393. position:absolute;
  13394. left:442px;
  13395. top:158px;
  13396. width:166px;
  13397. height:38px;
  13398. display:flex;
  13399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13400. font-weight:400;
  13401. font-style:normal;
  13402. font-size:12px;
  13403. color:#333333;
  13404. }
  13405. #u10211 .text {
  13406. position:absolute;
  13407. align-self:center;
  13408. padding:2px 2px 2px 0px;
  13409. box-sizing:border-box;
  13410. width:100%;
  13411. }
  13412. #u10211_text {
  13413. border-width:0px;
  13414. word-wrap:break-word;
  13415. text-transform:none;
  13416. visibility:hidden;
  13417. }
  13418. #u10212_img {
  13419. border-width:0px;
  13420. position:absolute;
  13421. left:0px;
  13422. top:0px;
  13423. width:141px;
  13424. height:38px;
  13425. }
  13426. #u10212 {
  13427. border-width:0px;
  13428. position:absolute;
  13429. left:608px;
  13430. top:158px;
  13431. width:141px;
  13432. height:38px;
  13433. display:flex;
  13434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13435. font-weight:400;
  13436. font-style:normal;
  13437. font-size:12px;
  13438. color:#333333;
  13439. }
  13440. #u10212 .text {
  13441. position:absolute;
  13442. align-self:center;
  13443. padding:2px 2px 2px 0px;
  13444. box-sizing:border-box;
  13445. width:100%;
  13446. }
  13447. #u10212_text {
  13448. border-width:0px;
  13449. word-wrap:break-word;
  13450. text-transform:none;
  13451. visibility:hidden;
  13452. }
  13453. #u10213_img {
  13454. border-width:0px;
  13455. position:absolute;
  13456. left:0px;
  13457. top:0px;
  13458. width:166px;
  13459. height:38px;
  13460. }
  13461. #u10213 {
  13462. border-width:0px;
  13463. position:absolute;
  13464. left:749px;
  13465. top:158px;
  13466. width:166px;
  13467. height:38px;
  13468. display:flex;
  13469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13470. font-weight:400;
  13471. font-style:normal;
  13472. font-size:12px;
  13473. color:#333333;
  13474. }
  13475. #u10213 .text {
  13476. position:absolute;
  13477. align-self:center;
  13478. padding:2px 2px 2px 0px;
  13479. box-sizing:border-box;
  13480. width:100%;
  13481. }
  13482. #u10213_text {
  13483. border-width:0px;
  13484. word-wrap:break-word;
  13485. text-transform:none;
  13486. visibility:hidden;
  13487. }
  13488. #u10214_img {
  13489. border-width:0px;
  13490. position:absolute;
  13491. left:0px;
  13492. top:0px;
  13493. width:135px;
  13494. height:38px;
  13495. }
  13496. #u10214 {
  13497. border-width:0px;
  13498. position:absolute;
  13499. left:915px;
  13500. top:158px;
  13501. width:135px;
  13502. height:38px;
  13503. display:flex;
  13504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13505. font-weight:400;
  13506. font-style:normal;
  13507. font-size:12px;
  13508. color:#333333;
  13509. }
  13510. #u10214 .text {
  13511. position:absolute;
  13512. align-self:center;
  13513. padding:2px 2px 2px 0px;
  13514. box-sizing:border-box;
  13515. width:100%;
  13516. }
  13517. #u10214_text {
  13518. border-width:0px;
  13519. word-wrap:break-word;
  13520. text-transform:none;
  13521. visibility:hidden;
  13522. }
  13523. #u10215_img {
  13524. border-width:0px;
  13525. position:absolute;
  13526. left:0px;
  13527. top:0px;
  13528. width:161px;
  13529. height:38px;
  13530. }
  13531. #u10215 {
  13532. border-width:0px;
  13533. position:absolute;
  13534. left:1050px;
  13535. top:158px;
  13536. width:161px;
  13537. height:38px;
  13538. display:flex;
  13539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13540. font-weight:400;
  13541. font-style:normal;
  13542. font-size:12px;
  13543. color:#AAAAAA;
  13544. }
  13545. #u10215 .text {
  13546. position:absolute;
  13547. align-self:center;
  13548. padding:2px 2px 2px 0px;
  13549. box-sizing:border-box;
  13550. width:100%;
  13551. }
  13552. #u10215_text {
  13553. border-width:0px;
  13554. word-wrap:break-word;
  13555. text-transform:none;
  13556. visibility:hidden;
  13557. }
  13558. #u10216_img {
  13559. border-width:0px;
  13560. position:absolute;
  13561. left:0px;
  13562. top:0px;
  13563. width:141px;
  13564. height:35px;
  13565. }
  13566. #u10216 {
  13567. border-width:0px;
  13568. position:absolute;
  13569. left:0px;
  13570. top:196px;
  13571. width:141px;
  13572. height:35px;
  13573. display:flex;
  13574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13575. font-weight:400;
  13576. font-style:normal;
  13577. font-size:12px;
  13578. color:#333333;
  13579. }
  13580. #u10216 .text {
  13581. position:absolute;
  13582. align-self:center;
  13583. padding:2px 2px 2px 0px;
  13584. box-sizing:border-box;
  13585. width:100%;
  13586. }
  13587. #u10216_text {
  13588. border-width:0px;
  13589. word-wrap:break-word;
  13590. text-transform:none;
  13591. visibility:hidden;
  13592. }
  13593. #u10217_img {
  13594. border-width:0px;
  13595. position:absolute;
  13596. left:0px;
  13597. top:0px;
  13598. width:160px;
  13599. height:35px;
  13600. }
  13601. #u10217 {
  13602. border-width:0px;
  13603. position:absolute;
  13604. left:141px;
  13605. top:196px;
  13606. width:160px;
  13607. height:35px;
  13608. display:flex;
  13609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13610. font-weight:400;
  13611. font-style:normal;
  13612. font-size:12px;
  13613. color:#333333;
  13614. }
  13615. #u10217 .text {
  13616. position:absolute;
  13617. align-self:center;
  13618. padding:2px 2px 2px 0px;
  13619. box-sizing:border-box;
  13620. width:100%;
  13621. }
  13622. #u10217_text {
  13623. border-width:0px;
  13624. word-wrap:break-word;
  13625. text-transform:none;
  13626. visibility:hidden;
  13627. }
  13628. #u10218_img {
  13629. border-width:0px;
  13630. position:absolute;
  13631. left:0px;
  13632. top:0px;
  13633. width:141px;
  13634. height:35px;
  13635. }
  13636. #u10218 {
  13637. border-width:0px;
  13638. position:absolute;
  13639. left:301px;
  13640. top:196px;
  13641. width:141px;
  13642. height:35px;
  13643. display:flex;
  13644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13645. font-weight:400;
  13646. font-style:normal;
  13647. font-size:12px;
  13648. color:#333333;
  13649. }
  13650. #u10218 .text {
  13651. position:absolute;
  13652. align-self:center;
  13653. padding:2px 2px 2px 0px;
  13654. box-sizing:border-box;
  13655. width:100%;
  13656. }
  13657. #u10218_text {
  13658. border-width:0px;
  13659. word-wrap:break-word;
  13660. text-transform:none;
  13661. visibility:hidden;
  13662. }
  13663. #u10219_img {
  13664. border-width:0px;
  13665. position:absolute;
  13666. left:0px;
  13667. top:0px;
  13668. width:166px;
  13669. height:35px;
  13670. }
  13671. #u10219 {
  13672. border-width:0px;
  13673. position:absolute;
  13674. left:442px;
  13675. top:196px;
  13676. width:166px;
  13677. height:35px;
  13678. display:flex;
  13679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13680. font-weight:400;
  13681. font-style:normal;
  13682. font-size:12px;
  13683. color:#333333;
  13684. }
  13685. #u10219 .text {
  13686. position:absolute;
  13687. align-self:center;
  13688. padding:2px 2px 2px 0px;
  13689. box-sizing:border-box;
  13690. width:100%;
  13691. }
  13692. #u10219_text {
  13693. border-width:0px;
  13694. word-wrap:break-word;
  13695. text-transform:none;
  13696. visibility:hidden;
  13697. }
  13698. #u10220_img {
  13699. border-width:0px;
  13700. position:absolute;
  13701. left:0px;
  13702. top:0px;
  13703. width:141px;
  13704. height:35px;
  13705. }
  13706. #u10220 {
  13707. border-width:0px;
  13708. position:absolute;
  13709. left:608px;
  13710. top:196px;
  13711. width:141px;
  13712. height:35px;
  13713. display:flex;
  13714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13715. font-weight:400;
  13716. font-style:normal;
  13717. font-size:12px;
  13718. color:#333333;
  13719. }
  13720. #u10220 .text {
  13721. position:absolute;
  13722. align-self:center;
  13723. padding:2px 2px 2px 0px;
  13724. box-sizing:border-box;
  13725. width:100%;
  13726. }
  13727. #u10220_text {
  13728. border-width:0px;
  13729. word-wrap:break-word;
  13730. text-transform:none;
  13731. visibility:hidden;
  13732. }
  13733. #u10221_img {
  13734. border-width:0px;
  13735. position:absolute;
  13736. left:0px;
  13737. top:0px;
  13738. width:166px;
  13739. height:35px;
  13740. }
  13741. #u10221 {
  13742. border-width:0px;
  13743. position:absolute;
  13744. left:749px;
  13745. top:196px;
  13746. width:166px;
  13747. height:35px;
  13748. display:flex;
  13749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13750. font-weight:400;
  13751. font-style:normal;
  13752. font-size:12px;
  13753. color:#333333;
  13754. }
  13755. #u10221 .text {
  13756. position:absolute;
  13757. align-self:center;
  13758. padding:2px 2px 2px 0px;
  13759. box-sizing:border-box;
  13760. width:100%;
  13761. }
  13762. #u10221_text {
  13763. border-width:0px;
  13764. word-wrap:break-word;
  13765. text-transform:none;
  13766. visibility:hidden;
  13767. }
  13768. #u10222_img {
  13769. border-width:0px;
  13770. position:absolute;
  13771. left:0px;
  13772. top:0px;
  13773. width:135px;
  13774. height:35px;
  13775. }
  13776. #u10222 {
  13777. border-width:0px;
  13778. position:absolute;
  13779. left:915px;
  13780. top:196px;
  13781. width:135px;
  13782. height:35px;
  13783. display:flex;
  13784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13785. font-weight:400;
  13786. font-style:normal;
  13787. font-size:12px;
  13788. color:#333333;
  13789. }
  13790. #u10222 .text {
  13791. position:absolute;
  13792. align-self:center;
  13793. padding:2px 2px 2px 0px;
  13794. box-sizing:border-box;
  13795. width:100%;
  13796. }
  13797. #u10222_text {
  13798. border-width:0px;
  13799. word-wrap:break-word;
  13800. text-transform:none;
  13801. visibility:hidden;
  13802. }
  13803. #u10223_img {
  13804. border-width:0px;
  13805. position:absolute;
  13806. left:0px;
  13807. top:0px;
  13808. width:161px;
  13809. height:35px;
  13810. }
  13811. #u10223 {
  13812. border-width:0px;
  13813. position:absolute;
  13814. left:1050px;
  13815. top:196px;
  13816. width:161px;
  13817. height:35px;
  13818. display:flex;
  13819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13820. font-weight:400;
  13821. font-style:normal;
  13822. font-size:12px;
  13823. color:#AAAAAA;
  13824. }
  13825. #u10223 .text {
  13826. position:absolute;
  13827. align-self:center;
  13828. padding:2px 2px 2px 0px;
  13829. box-sizing:border-box;
  13830. width:100%;
  13831. }
  13832. #u10223_text {
  13833. border-width:0px;
  13834. word-wrap:break-word;
  13835. text-transform:none;
  13836. visibility:hidden;
  13837. }
  13838. #u10224_img {
  13839. border-width:0px;
  13840. position:absolute;
  13841. left:0px;
  13842. top:0px;
  13843. width:141px;
  13844. height:35px;
  13845. }
  13846. #u10224 {
  13847. border-width:0px;
  13848. position:absolute;
  13849. left:0px;
  13850. top:231px;
  13851. width:141px;
  13852. height:35px;
  13853. display:flex;
  13854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13855. font-weight:400;
  13856. font-style:normal;
  13857. font-size:12px;
  13858. color:#333333;
  13859. }
  13860. #u10224 .text {
  13861. position:absolute;
  13862. align-self:center;
  13863. padding:2px 2px 2px 0px;
  13864. box-sizing:border-box;
  13865. width:100%;
  13866. }
  13867. #u10224_text {
  13868. border-width:0px;
  13869. word-wrap:break-word;
  13870. text-transform:none;
  13871. visibility:hidden;
  13872. }
  13873. #u10225_img {
  13874. border-width:0px;
  13875. position:absolute;
  13876. left:0px;
  13877. top:0px;
  13878. width:160px;
  13879. height:35px;
  13880. }
  13881. #u10225 {
  13882. border-width:0px;
  13883. position:absolute;
  13884. left:141px;
  13885. top:231px;
  13886. width:160px;
  13887. height:35px;
  13888. display:flex;
  13889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13890. font-weight:400;
  13891. font-style:normal;
  13892. font-size:12px;
  13893. color:#333333;
  13894. }
  13895. #u10225 .text {
  13896. position:absolute;
  13897. align-self:center;
  13898. padding:2px 2px 2px 0px;
  13899. box-sizing:border-box;
  13900. width:100%;
  13901. }
  13902. #u10225_text {
  13903. border-width:0px;
  13904. word-wrap:break-word;
  13905. text-transform:none;
  13906. visibility:hidden;
  13907. }
  13908. #u10226_img {
  13909. border-width:0px;
  13910. position:absolute;
  13911. left:0px;
  13912. top:0px;
  13913. width:141px;
  13914. height:35px;
  13915. }
  13916. #u10226 {
  13917. border-width:0px;
  13918. position:absolute;
  13919. left:301px;
  13920. top:231px;
  13921. width:141px;
  13922. height:35px;
  13923. display:flex;
  13924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13925. font-weight:400;
  13926. font-style:normal;
  13927. font-size:12px;
  13928. color:#333333;
  13929. }
  13930. #u10226 .text {
  13931. position:absolute;
  13932. align-self:center;
  13933. padding:2px 2px 2px 0px;
  13934. box-sizing:border-box;
  13935. width:100%;
  13936. }
  13937. #u10226_text {
  13938. border-width:0px;
  13939. word-wrap:break-word;
  13940. text-transform:none;
  13941. visibility:hidden;
  13942. }
  13943. #u10227_img {
  13944. border-width:0px;
  13945. position:absolute;
  13946. left:0px;
  13947. top:0px;
  13948. width:166px;
  13949. height:35px;
  13950. }
  13951. #u10227 {
  13952. border-width:0px;
  13953. position:absolute;
  13954. left:442px;
  13955. top:231px;
  13956. width:166px;
  13957. height:35px;
  13958. display:flex;
  13959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13960. font-weight:400;
  13961. font-style:normal;
  13962. font-size:12px;
  13963. color:#333333;
  13964. }
  13965. #u10227 .text {
  13966. position:absolute;
  13967. align-self:center;
  13968. padding:2px 2px 2px 0px;
  13969. box-sizing:border-box;
  13970. width:100%;
  13971. }
  13972. #u10227_text {
  13973. border-width:0px;
  13974. word-wrap:break-word;
  13975. text-transform:none;
  13976. visibility:hidden;
  13977. }
  13978. #u10228_img {
  13979. border-width:0px;
  13980. position:absolute;
  13981. left:0px;
  13982. top:0px;
  13983. width:141px;
  13984. height:35px;
  13985. }
  13986. #u10228 {
  13987. border-width:0px;
  13988. position:absolute;
  13989. left:608px;
  13990. top:231px;
  13991. width:141px;
  13992. height:35px;
  13993. display:flex;
  13994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13995. font-weight:400;
  13996. font-style:normal;
  13997. font-size:12px;
  13998. color:#333333;
  13999. }
  14000. #u10228 .text {
  14001. position:absolute;
  14002. align-self:center;
  14003. padding:2px 2px 2px 0px;
  14004. box-sizing:border-box;
  14005. width:100%;
  14006. }
  14007. #u10228_text {
  14008. border-width:0px;
  14009. word-wrap:break-word;
  14010. text-transform:none;
  14011. visibility:hidden;
  14012. }
  14013. #u10229_img {
  14014. border-width:0px;
  14015. position:absolute;
  14016. left:0px;
  14017. top:0px;
  14018. width:166px;
  14019. height:35px;
  14020. }
  14021. #u10229 {
  14022. border-width:0px;
  14023. position:absolute;
  14024. left:749px;
  14025. top:231px;
  14026. width:166px;
  14027. height:35px;
  14028. display:flex;
  14029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14030. font-weight:400;
  14031. font-style:normal;
  14032. font-size:12px;
  14033. color:#333333;
  14034. }
  14035. #u10229 .text {
  14036. position:absolute;
  14037. align-self:center;
  14038. padding:2px 2px 2px 0px;
  14039. box-sizing:border-box;
  14040. width:100%;
  14041. }
  14042. #u10229_text {
  14043. border-width:0px;
  14044. word-wrap:break-word;
  14045. text-transform:none;
  14046. visibility:hidden;
  14047. }
  14048. #u10230_img {
  14049. border-width:0px;
  14050. position:absolute;
  14051. left:0px;
  14052. top:0px;
  14053. width:135px;
  14054. height:35px;
  14055. }
  14056. #u10230 {
  14057. border-width:0px;
  14058. position:absolute;
  14059. left:915px;
  14060. top:231px;
  14061. width:135px;
  14062. height:35px;
  14063. display:flex;
  14064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14065. font-weight:400;
  14066. font-style:normal;
  14067. font-size:12px;
  14068. color:#333333;
  14069. }
  14070. #u10230 .text {
  14071. position:absolute;
  14072. align-self:center;
  14073. padding:2px 2px 2px 0px;
  14074. box-sizing:border-box;
  14075. width:100%;
  14076. }
  14077. #u10230_text {
  14078. border-width:0px;
  14079. word-wrap:break-word;
  14080. text-transform:none;
  14081. visibility:hidden;
  14082. }
  14083. #u10231_img {
  14084. border-width:0px;
  14085. position:absolute;
  14086. left:0px;
  14087. top:0px;
  14088. width:161px;
  14089. height:35px;
  14090. }
  14091. #u10231 {
  14092. border-width:0px;
  14093. position:absolute;
  14094. left:1050px;
  14095. top:231px;
  14096. width:161px;
  14097. height:35px;
  14098. display:flex;
  14099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14100. font-weight:400;
  14101. font-style:normal;
  14102. font-size:12px;
  14103. color:#333333;
  14104. }
  14105. #u10231 .text {
  14106. position:absolute;
  14107. align-self:center;
  14108. padding:2px 2px 2px 0px;
  14109. box-sizing:border-box;
  14110. width:100%;
  14111. }
  14112. #u10231_text {
  14113. border-width:0px;
  14114. word-wrap:break-word;
  14115. text-transform:none;
  14116. visibility:hidden;
  14117. }
  14118. #u10232_img {
  14119. border-width:0px;
  14120. position:absolute;
  14121. left:0px;
  14122. top:0px;
  14123. width:141px;
  14124. height:32px;
  14125. }
  14126. #u10232 {
  14127. border-width:0px;
  14128. position:absolute;
  14129. left:0px;
  14130. top:266px;
  14131. width:141px;
  14132. height:32px;
  14133. display:flex;
  14134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14135. font-weight:400;
  14136. font-style:normal;
  14137. font-size:12px;
  14138. color:#333333;
  14139. }
  14140. #u10232 .text {
  14141. position:absolute;
  14142. align-self:center;
  14143. padding:2px 2px 2px 0px;
  14144. box-sizing:border-box;
  14145. width:100%;
  14146. }
  14147. #u10232_text {
  14148. border-width:0px;
  14149. word-wrap:break-word;
  14150. text-transform:none;
  14151. visibility:hidden;
  14152. }
  14153. #u10233_img {
  14154. border-width:0px;
  14155. position:absolute;
  14156. left:0px;
  14157. top:0px;
  14158. width:160px;
  14159. height:32px;
  14160. }
  14161. #u10233 {
  14162. border-width:0px;
  14163. position:absolute;
  14164. left:141px;
  14165. top:266px;
  14166. width:160px;
  14167. height:32px;
  14168. display:flex;
  14169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14170. font-weight:400;
  14171. font-style:normal;
  14172. font-size:12px;
  14173. color:#333333;
  14174. }
  14175. #u10233 .text {
  14176. position:absolute;
  14177. align-self:center;
  14178. padding:2px 2px 2px 0px;
  14179. box-sizing:border-box;
  14180. width:100%;
  14181. }
  14182. #u10233_text {
  14183. border-width:0px;
  14184. word-wrap:break-word;
  14185. text-transform:none;
  14186. visibility:hidden;
  14187. }
  14188. #u10234_img {
  14189. border-width:0px;
  14190. position:absolute;
  14191. left:0px;
  14192. top:0px;
  14193. width:141px;
  14194. height:32px;
  14195. }
  14196. #u10234 {
  14197. border-width:0px;
  14198. position:absolute;
  14199. left:301px;
  14200. top:266px;
  14201. width:141px;
  14202. height:32px;
  14203. display:flex;
  14204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14205. font-weight:400;
  14206. font-style:normal;
  14207. font-size:12px;
  14208. color:#333333;
  14209. }
  14210. #u10234 .text {
  14211. position:absolute;
  14212. align-self:center;
  14213. padding:2px 2px 2px 0px;
  14214. box-sizing:border-box;
  14215. width:100%;
  14216. }
  14217. #u10234_text {
  14218. border-width:0px;
  14219. word-wrap:break-word;
  14220. text-transform:none;
  14221. visibility:hidden;
  14222. }
  14223. #u10235_img {
  14224. border-width:0px;
  14225. position:absolute;
  14226. left:0px;
  14227. top:0px;
  14228. width:166px;
  14229. height:32px;
  14230. }
  14231. #u10235 {
  14232. border-width:0px;
  14233. position:absolute;
  14234. left:442px;
  14235. top:266px;
  14236. width:166px;
  14237. height:32px;
  14238. display:flex;
  14239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14240. font-weight:400;
  14241. font-style:normal;
  14242. font-size:12px;
  14243. color:#333333;
  14244. }
  14245. #u10235 .text {
  14246. position:absolute;
  14247. align-self:center;
  14248. padding:2px 2px 2px 0px;
  14249. box-sizing:border-box;
  14250. width:100%;
  14251. }
  14252. #u10235_text {
  14253. border-width:0px;
  14254. word-wrap:break-word;
  14255. text-transform:none;
  14256. visibility:hidden;
  14257. }
  14258. #u10236_img {
  14259. border-width:0px;
  14260. position:absolute;
  14261. left:0px;
  14262. top:0px;
  14263. width:141px;
  14264. height:32px;
  14265. }
  14266. #u10236 {
  14267. border-width:0px;
  14268. position:absolute;
  14269. left:608px;
  14270. top:266px;
  14271. width:141px;
  14272. height:32px;
  14273. display:flex;
  14274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14275. font-weight:400;
  14276. font-style:normal;
  14277. font-size:12px;
  14278. color:#333333;
  14279. }
  14280. #u10236 .text {
  14281. position:absolute;
  14282. align-self:center;
  14283. padding:2px 2px 2px 0px;
  14284. box-sizing:border-box;
  14285. width:100%;
  14286. }
  14287. #u10236_text {
  14288. border-width:0px;
  14289. word-wrap:break-word;
  14290. text-transform:none;
  14291. visibility:hidden;
  14292. }
  14293. #u10237_img {
  14294. border-width:0px;
  14295. position:absolute;
  14296. left:0px;
  14297. top:0px;
  14298. width:166px;
  14299. height:32px;
  14300. }
  14301. #u10237 {
  14302. border-width:0px;
  14303. position:absolute;
  14304. left:749px;
  14305. top:266px;
  14306. width:166px;
  14307. height:32px;
  14308. display:flex;
  14309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14310. font-weight:400;
  14311. font-style:normal;
  14312. font-size:12px;
  14313. color:#333333;
  14314. }
  14315. #u10237 .text {
  14316. position:absolute;
  14317. align-self:center;
  14318. padding:2px 2px 2px 0px;
  14319. box-sizing:border-box;
  14320. width:100%;
  14321. }
  14322. #u10237_text {
  14323. border-width:0px;
  14324. word-wrap:break-word;
  14325. text-transform:none;
  14326. visibility:hidden;
  14327. }
  14328. #u10238_img {
  14329. border-width:0px;
  14330. position:absolute;
  14331. left:0px;
  14332. top:0px;
  14333. width:135px;
  14334. height:32px;
  14335. }
  14336. #u10238 {
  14337. border-width:0px;
  14338. position:absolute;
  14339. left:915px;
  14340. top:266px;
  14341. width:135px;
  14342. height:32px;
  14343. display:flex;
  14344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14345. font-weight:400;
  14346. font-style:normal;
  14347. font-size:12px;
  14348. color:#333333;
  14349. }
  14350. #u10238 .text {
  14351. position:absolute;
  14352. align-self:center;
  14353. padding:2px 2px 2px 0px;
  14354. box-sizing:border-box;
  14355. width:100%;
  14356. }
  14357. #u10238_text {
  14358. border-width:0px;
  14359. word-wrap:break-word;
  14360. text-transform:none;
  14361. visibility:hidden;
  14362. }
  14363. #u10239_img {
  14364. border-width:0px;
  14365. position:absolute;
  14366. left:0px;
  14367. top:0px;
  14368. width:161px;
  14369. height:32px;
  14370. }
  14371. #u10239 {
  14372. border-width:0px;
  14373. position:absolute;
  14374. left:1050px;
  14375. top:266px;
  14376. width:161px;
  14377. height:32px;
  14378. display:flex;
  14379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14380. font-weight:400;
  14381. font-style:normal;
  14382. font-size:12px;
  14383. color:#333333;
  14384. }
  14385. #u10239 .text {
  14386. position:absolute;
  14387. align-self:center;
  14388. padding:2px 2px 2px 0px;
  14389. box-sizing:border-box;
  14390. width:100%;
  14391. }
  14392. #u10239_text {
  14393. border-width:0px;
  14394. word-wrap:break-word;
  14395. text-transform:none;
  14396. visibility:hidden;
  14397. }
  14398. #u10240_img {
  14399. border-width:0px;
  14400. position:absolute;
  14401. left:0px;
  14402. top:0px;
  14403. width:141px;
  14404. height:30px;
  14405. }
  14406. #u10240 {
  14407. border-width:0px;
  14408. position:absolute;
  14409. left:0px;
  14410. top:298px;
  14411. width:141px;
  14412. height:30px;
  14413. display:flex;
  14414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14415. font-weight:400;
  14416. font-style:normal;
  14417. font-size:12px;
  14418. color:#333333;
  14419. }
  14420. #u10240 .text {
  14421. position:absolute;
  14422. align-self:center;
  14423. padding:2px 2px 2px 0px;
  14424. box-sizing:border-box;
  14425. width:100%;
  14426. }
  14427. #u10240_text {
  14428. border-width:0px;
  14429. word-wrap:break-word;
  14430. text-transform:none;
  14431. visibility:hidden;
  14432. }
  14433. #u10241_img {
  14434. border-width:0px;
  14435. position:absolute;
  14436. left:0px;
  14437. top:0px;
  14438. width:160px;
  14439. height:30px;
  14440. }
  14441. #u10241 {
  14442. border-width:0px;
  14443. position:absolute;
  14444. left:141px;
  14445. top:298px;
  14446. width:160px;
  14447. height:30px;
  14448. display:flex;
  14449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14450. font-weight:400;
  14451. font-style:normal;
  14452. font-size:12px;
  14453. color:#333333;
  14454. }
  14455. #u10241 .text {
  14456. position:absolute;
  14457. align-self:center;
  14458. padding:2px 2px 2px 0px;
  14459. box-sizing:border-box;
  14460. width:100%;
  14461. }
  14462. #u10241_text {
  14463. border-width:0px;
  14464. word-wrap:break-word;
  14465. text-transform:none;
  14466. visibility:hidden;
  14467. }
  14468. #u10242_img {
  14469. border-width:0px;
  14470. position:absolute;
  14471. left:0px;
  14472. top:0px;
  14473. width:141px;
  14474. height:30px;
  14475. }
  14476. #u10242 {
  14477. border-width:0px;
  14478. position:absolute;
  14479. left:301px;
  14480. top:298px;
  14481. width:141px;
  14482. height:30px;
  14483. display:flex;
  14484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14485. font-weight:400;
  14486. font-style:normal;
  14487. font-size:12px;
  14488. color:#333333;
  14489. }
  14490. #u10242 .text {
  14491. position:absolute;
  14492. align-self:center;
  14493. padding:2px 2px 2px 0px;
  14494. box-sizing:border-box;
  14495. width:100%;
  14496. }
  14497. #u10242_text {
  14498. border-width:0px;
  14499. word-wrap:break-word;
  14500. text-transform:none;
  14501. visibility:hidden;
  14502. }
  14503. #u10243_img {
  14504. border-width:0px;
  14505. position:absolute;
  14506. left:0px;
  14507. top:0px;
  14508. width:166px;
  14509. height:30px;
  14510. }
  14511. #u10243 {
  14512. border-width:0px;
  14513. position:absolute;
  14514. left:442px;
  14515. top:298px;
  14516. width:166px;
  14517. height:30px;
  14518. display:flex;
  14519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14520. font-weight:400;
  14521. font-style:normal;
  14522. font-size:12px;
  14523. color:#333333;
  14524. }
  14525. #u10243 .text {
  14526. position:absolute;
  14527. align-self:center;
  14528. padding:2px 2px 2px 0px;
  14529. box-sizing:border-box;
  14530. width:100%;
  14531. }
  14532. #u10243_text {
  14533. border-width:0px;
  14534. word-wrap:break-word;
  14535. text-transform:none;
  14536. visibility:hidden;
  14537. }
  14538. #u10244_img {
  14539. border-width:0px;
  14540. position:absolute;
  14541. left:0px;
  14542. top:0px;
  14543. width:141px;
  14544. height:30px;
  14545. }
  14546. #u10244 {
  14547. border-width:0px;
  14548. position:absolute;
  14549. left:608px;
  14550. top:298px;
  14551. width:141px;
  14552. height:30px;
  14553. display:flex;
  14554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14555. font-weight:400;
  14556. font-style:normal;
  14557. font-size:12px;
  14558. color:#333333;
  14559. }
  14560. #u10244 .text {
  14561. position:absolute;
  14562. align-self:center;
  14563. padding:2px 2px 2px 0px;
  14564. box-sizing:border-box;
  14565. width:100%;
  14566. }
  14567. #u10244_text {
  14568. border-width:0px;
  14569. word-wrap:break-word;
  14570. text-transform:none;
  14571. visibility:hidden;
  14572. }
  14573. #u10245_img {
  14574. border-width:0px;
  14575. position:absolute;
  14576. left:0px;
  14577. top:0px;
  14578. width:166px;
  14579. height:30px;
  14580. }
  14581. #u10245 {
  14582. border-width:0px;
  14583. position:absolute;
  14584. left:749px;
  14585. top:298px;
  14586. width:166px;
  14587. height:30px;
  14588. display:flex;
  14589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14590. font-weight:400;
  14591. font-style:normal;
  14592. font-size:12px;
  14593. color:#333333;
  14594. }
  14595. #u10245 .text {
  14596. position:absolute;
  14597. align-self:center;
  14598. padding:2px 2px 2px 0px;
  14599. box-sizing:border-box;
  14600. width:100%;
  14601. }
  14602. #u10245_text {
  14603. border-width:0px;
  14604. word-wrap:break-word;
  14605. text-transform:none;
  14606. visibility:hidden;
  14607. }
  14608. #u10246_img {
  14609. border-width:0px;
  14610. position:absolute;
  14611. left:0px;
  14612. top:0px;
  14613. width:135px;
  14614. height:30px;
  14615. }
  14616. #u10246 {
  14617. border-width:0px;
  14618. position:absolute;
  14619. left:915px;
  14620. top:298px;
  14621. width:135px;
  14622. height:30px;
  14623. display:flex;
  14624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14625. font-weight:400;
  14626. font-style:normal;
  14627. font-size:12px;
  14628. color:#333333;
  14629. }
  14630. #u10246 .text {
  14631. position:absolute;
  14632. align-self:center;
  14633. padding:2px 2px 2px 0px;
  14634. box-sizing:border-box;
  14635. width:100%;
  14636. }
  14637. #u10246_text {
  14638. border-width:0px;
  14639. word-wrap:break-word;
  14640. text-transform:none;
  14641. visibility:hidden;
  14642. }
  14643. #u10247_img {
  14644. border-width:0px;
  14645. position:absolute;
  14646. left:0px;
  14647. top:0px;
  14648. width:161px;
  14649. height:30px;
  14650. }
  14651. #u10247 {
  14652. border-width:0px;
  14653. position:absolute;
  14654. left:1050px;
  14655. top:298px;
  14656. width:161px;
  14657. height:30px;
  14658. display:flex;
  14659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14660. font-weight:400;
  14661. font-style:normal;
  14662. font-size:12px;
  14663. color:#333333;
  14664. }
  14665. #u10247 .text {
  14666. position:absolute;
  14667. align-self:center;
  14668. padding:2px 2px 2px 0px;
  14669. box-sizing:border-box;
  14670. width:100%;
  14671. }
  14672. #u10247_text {
  14673. border-width:0px;
  14674. word-wrap:break-word;
  14675. text-transform:none;
  14676. visibility:hidden;
  14677. }
  14678. #u10248_div {
  14679. border-width:0px;
  14680. position:absolute;
  14681. left:0px;
  14682. top:0px;
  14683. width:792px;
  14684. height:20px;
  14685. background:inherit;
  14686. background-color:rgba(255, 255, 255, 0);
  14687. border:none;
  14688. border-left:0px;
  14689. border-top:0px;
  14690. border-right:0px;
  14691. border-radius:0px;
  14692. border-bottom-right-radius:0px;
  14693. border-bottom-left-radius:0px;
  14694. -moz-box-shadow:none;
  14695. -webkit-box-shadow:none;
  14696. box-shadow:none;
  14697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14698. font-weight:400;
  14699. font-style:normal;
  14700. font-size:14px;
  14701. color:#D9001B;
  14702. }
  14703. #u10248 {
  14704. border-width:0px;
  14705. position:absolute;
  14706. left:2059px;
  14707. top:200px;
  14708. width:792px;
  14709. height:20px;
  14710. display:flex;
  14711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  14712. font-weight:400;
  14713. font-style:normal;
  14714. font-size:14px;
  14715. color:#D9001B;
  14716. }
  14717. #u10248 .text {
  14718. position:absolute;
  14719. align-self:center;
  14720. padding:0px 0px 0px 0px;
  14721. box-sizing:border-box;
  14722. width:100%;
  14723. }
  14724. #u10248_text {
  14725. border-width:0px;
  14726. white-space:nowrap;
  14727. text-transform:none;
  14728. }