styles.css 219 KB

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