styles.css 142 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:464px;
  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. #u1209_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. #u1209 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u1209 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u1209_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u1210_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. #u1210 {
  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. #u1210 .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. #u1210_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u1211_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. #u1211 {
  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. #u1211 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u1211_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u1212 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u1213_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u1213 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u1213 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u1213_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u1214_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. #u1214 {
  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. #u1214 .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. #u1214_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u1215_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. #u1215 {
  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. #u1215 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u1215_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u1216 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u1217_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. #u1217_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. #u1217_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. #u1217 {
  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. #u1217 .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. #u1217_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. #u1217.disabled {
  356. }
  357. .u1217_input_option {
  358. font-size:14px;
  359. }
  360. #u1218_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u1218 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u1218 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u1218_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u1219_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. #u1219 {
  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. #u1219 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u1219_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u1220_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. #u1220 {
  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. #u1220 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u1220_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u1221 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u1222_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. #u1222 {
  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. #u1222 .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. #u1222_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u1223_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u1223 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u1223 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u1223_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u1224 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u1225_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. #u1225 {
  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. #u1225 .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. #u1225_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u1226_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u1226 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u1226 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u1226_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u1227 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u1228_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. #u1228 {
  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. #u1228 .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. #u1228_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u1229_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u1229 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u1229 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u1229_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u1230 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u1231_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. #u1231 {
  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. #u1231 .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. #u1231_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u1232_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u1232 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u1232 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u1232_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u1233 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u1234_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. #u1234 {
  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. #u1234 .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. #u1234_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u1235_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u1235 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u1235 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u1235_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u1236 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u1237_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. #u1237 {
  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. #u1237 .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. #u1237_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u1238_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u1238 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u1238 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u1238_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u1239 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u1240_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. #u1240 {
  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. #u1240 .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. #u1240_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u1241_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u1241 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u1241 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u1241_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u1242 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u1243_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. #u1243 {
  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. #u1243 .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. #u1243_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u1244_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u1244 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u1244 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u1244_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u1245 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u1246_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. #u1246 {
  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. #u1246 .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. #u1246_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u1247_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u1247 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u1247 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u1247_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u1248 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u1249_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. #u1249 {
  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. #u1249 .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. #u1249_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u1250_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u1250 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u1250 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u1250_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u1251_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. #u1251 {
  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. #u1251 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u1251_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u1252_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u1252 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u1252 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u1252_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u1253_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. #u1253 {
  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. #u1253 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u1253_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u1254_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u1254 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u1254 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u1254_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u1255 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u1256_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. #u1256 {
  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. #u1256 .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. #u1256_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u1257_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u1257 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u1257 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u1257_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u1258 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u1259_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. #u1259 {
  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. #u1259 .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. #u1259_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u1260_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u1260 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u1260 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u1260_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u1261 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u1262_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. #u1262 {
  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. #u1262 .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. #u1262_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u1263_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u1263 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u1263 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u1263_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u1264 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:0px;
  1728. height:0px;
  1729. }
  1730. #u1265_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:200px;
  1736. height:1180px;
  1737. background:inherit;
  1738. background-color:rgba(255, 255, 255, 1);
  1739. border:none;
  1740. border-radius:0px;
  1741. -moz-box-shadow:none;
  1742. -webkit-box-shadow:none;
  1743. box-shadow:none;
  1744. }
  1745. #u1265 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:-1136px;
  1749. top:51px;
  1750. width:200px;
  1751. height:1180px;
  1752. display:flex;
  1753. }
  1754. #u1265 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 2px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u1265_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u1266_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:200px;
  1773. height:60px;
  1774. background:inherit;
  1775. background-color:rgba(224, 231, 247, 1);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1782. font-weight:500;
  1783. font-style:normal;
  1784. font-size:18px;
  1785. }
  1786. #u1266 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:-1136px;
  1790. top:51px;
  1791. width:200px;
  1792. height:60px;
  1793. display:flex;
  1794. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1795. font-weight:500;
  1796. font-style:normal;
  1797. font-size:18px;
  1798. }
  1799. #u1266 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:0px 0px 0px 20px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u1266_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u1267_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:65px;
  1817. height:22px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 0);
  1820. border:none;
  1821. border-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:16px;
  1829. color:#1890FF;
  1830. }
  1831. #u1267 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:-1109px;
  1835. top:132px;
  1836. width:65px;
  1837. height:22px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:16px;
  1843. color:#1890FF;
  1844. }
  1845. #u1267 .text {
  1846. position:absolute;
  1847. align-self:flex-start;
  1848. padding:0px 0px 0px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u1267_text {
  1853. border-width:0px;
  1854. white-space:nowrap;
  1855. text-transform:none;
  1856. }
  1857. #u1268_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:65px;
  1863. height:22px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:16px;
  1875. }
  1876. #u1268 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:-1109px;
  1880. top:174px;
  1881. width:65px;
  1882. height:22px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:16px;
  1888. }
  1889. #u1268 .text {
  1890. position:absolute;
  1891. align-self:flex-start;
  1892. padding:0px 0px 0px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u1268_text {
  1897. border-width:0px;
  1898. white-space:nowrap;
  1899. text-transform:none;
  1900. }
  1901. #u1269_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:65px;
  1907. height:22px;
  1908. background:inherit;
  1909. background-color:rgba(255, 255, 255, 0);
  1910. border:none;
  1911. border-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:16px;
  1919. }
  1920. #u1269 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:-1109px;
  1924. top:216px;
  1925. width:65px;
  1926. height:22px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:16px;
  1932. }
  1933. #u1269 .text {
  1934. position:absolute;
  1935. align-self:flex-start;
  1936. padding:0px 0px 0px 0px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u1269_text {
  1941. border-width:0px;
  1942. white-space:nowrap;
  1943. text-transform:none;
  1944. }
  1945. #u1270_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:1260px;
  1951. height:1180px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 1);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. }
  1960. #u1270 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:330px;
  1964. top:50px;
  1965. width:1260px;
  1966. height:1180px;
  1967. display:flex;
  1968. }
  1969. #u1270 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 2px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u1270_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. visibility:hidden;
  1981. }
  1982. #u1271 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:0px;
  1988. height:0px;
  1989. }
  1990. #u1272_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:59px;
  1996. height:30px;
  1997. background:inherit;
  1998. background-color:rgba(24, 144, 255, 1);
  1999. box-sizing:border-box;
  2000. border-width:1px;
  2001. border-style:solid;
  2002. border-color:rgba(0, 153, 255, 1);
  2003. border-radius:4px;
  2004. -moz-box-shadow:none;
  2005. -webkit-box-shadow:none;
  2006. box-shadow:none;
  2007. font-family:'Microsoft YaHei', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:14px;
  2011. color:#FFFFFF;
  2012. }
  2013. #u1272 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:656px;
  2017. top:141px;
  2018. width:59px;
  2019. height:30px;
  2020. display:flex;
  2021. font-family:'Microsoft YaHei', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:14px;
  2025. color:#FFFFFF;
  2026. }
  2027. #u1272 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:5px 15px 5px 15px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u1272_text {
  2035. border-width:0px;
  2036. white-space:nowrap;
  2037. text-transform:none;
  2038. }
  2039. #u1273_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:55px;
  2045. height:30px;
  2046. background:inherit;
  2047. background-color:rgba(255, 255, 255, 1);
  2048. box-sizing:border-box;
  2049. border-width:1px;
  2050. border-style:solid;
  2051. border-color:rgba(170, 170, 170, 1);
  2052. border-radius:4px;
  2053. -moz-box-shadow:none;
  2054. -webkit-box-shadow:none;
  2055. box-shadow:none;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:12px;
  2060. color:#555555;
  2061. }
  2062. #u1273 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:725px;
  2066. top:141px;
  2067. width:55px;
  2068. height:30px;
  2069. display:flex;
  2070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:12px;
  2074. color:#555555;
  2075. }
  2076. #u1273 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:5px 15px 5px 15px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u1273_text {
  2084. border-width:0px;
  2085. white-space:nowrap;
  2086. text-transform:none;
  2087. }
  2088. #u1274 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:355px;
  2092. top:230px;
  2093. width:1219px;
  2094. height:328px;
  2095. }
  2096. #u1275_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:94px;
  2102. height:44px;
  2103. }
  2104. #u1275 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:94px;
  2110. height:44px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u1275 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u1275_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u1276_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:93px;
  2136. height:44px;
  2137. }
  2138. #u1276 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:94px;
  2142. top:0px;
  2143. width:93px;
  2144. height:44px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:12px;
  2150. color:#FFFFFF;
  2151. }
  2152. #u1276 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 0px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u1276_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. }
  2164. #u1277_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:94px;
  2170. height:44px;
  2171. }
  2172. #u1277 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:187px;
  2176. top:0px;
  2177. width:94px;
  2178. height:44px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. color:#FFFFFF;
  2185. }
  2186. #u1277 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 0px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u1277_text {
  2194. border-width:0px;
  2195. word-wrap:break-word;
  2196. text-transform:none;
  2197. }
  2198. #u1278_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:84px;
  2204. height:44px;
  2205. }
  2206. #u1278 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:281px;
  2210. top:0px;
  2211. width:84px;
  2212. height:44px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. color:#FFFFFF;
  2219. }
  2220. #u1278 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 0px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u1278_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. }
  2232. #u1279_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:98px;
  2238. height:44px;
  2239. }
  2240. #u1279 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:365px;
  2244. top:0px;
  2245. width:98px;
  2246. height:44px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:12px;
  2252. color:#FFFFFF;
  2253. }
  2254. #u1279 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u1279_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. }
  2266. #u1280_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:84px;
  2272. height:44px;
  2273. }
  2274. #u1280 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:463px;
  2278. top:0px;
  2279. width:84px;
  2280. height:44px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u1280 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u1280_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. }
  2300. #u1281_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:98px;
  2306. height:44px;
  2307. }
  2308. #u1281 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:547px;
  2312. top:0px;
  2313. width:98px;
  2314. height:44px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. color:#FFFFFF;
  2321. }
  2322. #u1281 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u1281_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u1282_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:98px;
  2340. height:44px;
  2341. }
  2342. #u1282 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:645px;
  2346. top:0px;
  2347. width:98px;
  2348. height:44px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. color:#FFFFFF;
  2355. }
  2356. #u1282 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 0px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u1282_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. }
  2368. #u1283_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:92px;
  2374. height:44px;
  2375. }
  2376. #u1283 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:743px;
  2380. top:0px;
  2381. width:92px;
  2382. height:44px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:12px;
  2388. color:#FFFFFF;
  2389. }
  2390. #u1283 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 0px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u1283_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. }
  2402. #u1284_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:98px;
  2408. height:44px;
  2409. }
  2410. #u1284 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:835px;
  2414. top:0px;
  2415. width:98px;
  2416. height:44px;
  2417. display:flex;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:12px;
  2422. color:#FFFFFF;
  2423. }
  2424. #u1284 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 2px 2px 0px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u1284_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. }
  2436. #u1285_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:98px;
  2442. height:44px;
  2443. }
  2444. #u1285 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:933px;
  2448. top:0px;
  2449. width:98px;
  2450. height:44px;
  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:#FFFFFF;
  2457. }
  2458. #u1285 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:2px 2px 2px 0px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u1285_text {
  2466. border-width:0px;
  2467. word-wrap:break-word;
  2468. text-transform:none;
  2469. }
  2470. #u1286_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:98px;
  2476. height:44px;
  2477. }
  2478. #u1286 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:1031px;
  2482. top:0px;
  2483. width:98px;
  2484. height:44px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. color:#FFFFFF;
  2491. }
  2492. #u1286 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:2px 2px 2px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u1286_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. }
  2504. #u1287_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:90px;
  2510. height:44px;
  2511. }
  2512. #u1287 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:1129px;
  2516. top:0px;
  2517. width:90px;
  2518. height:44px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:12px;
  2524. color:#FFFFFF;
  2525. }
  2526. #u1287 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 2px 2px 0px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u1287_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. }
  2538. #u1288_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:94px;
  2544. height:38px;
  2545. }
  2546. #u1288 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:44px;
  2551. width:94px;
  2552. height:38px;
  2553. display:flex;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:12px;
  2558. color:#333333;
  2559. }
  2560. #u1288 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:2px 2px 2px 0px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u1288_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. visibility:hidden;
  2572. }
  2573. #u1289_img {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:93px;
  2579. height:38px;
  2580. }
  2581. #u1289 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:94px;
  2585. top:44px;
  2586. width:93px;
  2587. height:38px;
  2588. display:flex;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:12px;
  2593. color:#333333;
  2594. }
  2595. #u1289 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 0px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u1289_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. visibility:hidden;
  2607. }
  2608. #u1290_img {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:94px;
  2614. height:38px;
  2615. }
  2616. #u1290 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:187px;
  2620. top:44px;
  2621. width:94px;
  2622. height:38px;
  2623. display:flex;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:12px;
  2628. color:#333333;
  2629. }
  2630. #u1290 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:2px 2px 2px 0px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u1290_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. visibility:hidden;
  2642. }
  2643. #u1291_img {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:84px;
  2649. height:38px;
  2650. }
  2651. #u1291 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:281px;
  2655. top:44px;
  2656. width:84px;
  2657. height:38px;
  2658. display:flex;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:12px;
  2663. color:#333333;
  2664. }
  2665. #u1291 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 0px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u1291_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. visibility:hidden;
  2677. }
  2678. #u1292_img {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:98px;
  2684. height:38px;
  2685. }
  2686. #u1292 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:365px;
  2690. top:44px;
  2691. width:98px;
  2692. height:38px;
  2693. display:flex;
  2694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2695. font-weight:400;
  2696. font-style:normal;
  2697. font-size:12px;
  2698. color:#333333;
  2699. }
  2700. #u1292 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u1292_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. visibility:hidden;
  2712. }
  2713. #u1293_img {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:84px;
  2719. height:38px;
  2720. }
  2721. #u1293 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:463px;
  2725. top:44px;
  2726. width:84px;
  2727. height:38px;
  2728. display:flex;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:12px;
  2733. color:#333333;
  2734. }
  2735. #u1293 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 0px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u1293_text {
  2743. border-width:0px;
  2744. word-wrap:break-word;
  2745. text-transform:none;
  2746. visibility:hidden;
  2747. }
  2748. #u1294_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:98px;
  2754. height:38px;
  2755. }
  2756. #u1294 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:547px;
  2760. top:44px;
  2761. width:98px;
  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:#333333;
  2769. }
  2770. #u1294 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 2px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u1294_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u1295_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:98px;
  2789. height:38px;
  2790. }
  2791. #u1295 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:645px;
  2795. top:44px;
  2796. width:98px;
  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:#333333;
  2804. }
  2805. #u1295 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u1295_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u1296_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:92px;
  2824. height:38px;
  2825. }
  2826. #u1296 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:743px;
  2830. top:44px;
  2831. width:92px;
  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:#333333;
  2839. }
  2840. #u1296 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 0px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u1296_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u1297_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:98px;
  2859. height:38px;
  2860. }
  2861. #u1297 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:835px;
  2865. top:44px;
  2866. width:98px;
  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:#333333;
  2874. }
  2875. #u1297 .text {
  2876. position:absolute;
  2877. align-self:center;
  2878. padding:2px 2px 2px 0px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u1297_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. visibility:hidden;
  2887. }
  2888. #u1298_img {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:98px;
  2894. height:38px;
  2895. }
  2896. #u1298 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:933px;
  2900. top:44px;
  2901. width:98px;
  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:#333333;
  2909. }
  2910. #u1298 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 0px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u1298_text {
  2918. border-width:0px;
  2919. word-wrap:break-word;
  2920. text-transform:none;
  2921. visibility:hidden;
  2922. }
  2923. #u1299_img {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:98px;
  2929. height:38px;
  2930. }
  2931. #u1299 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:1031px;
  2935. top:44px;
  2936. width:98px;
  2937. height:38px;
  2938. display:flex;
  2939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:12px;
  2943. color:#333333;
  2944. }
  2945. #u1299 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:2px 2px 2px 0px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u1299_text {
  2953. border-width:0px;
  2954. word-wrap:break-word;
  2955. text-transform:none;
  2956. visibility:hidden;
  2957. }
  2958. #u1300_img {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:90px;
  2964. height:38px;
  2965. }
  2966. #u1300 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:1129px;
  2970. top:44px;
  2971. width:90px;
  2972. height:38px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#0089FE;
  2979. }
  2980. #u1300 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u1300_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. }
  2992. #u1301_img {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:94px;
  2998. height:38px;
  2999. }
  3000. #u1301 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:82px;
  3005. width:94px;
  3006. height:38px;
  3007. display:flex;
  3008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:12px;
  3012. color:#333333;
  3013. }
  3014. #u1301 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 0px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u1301_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. visibility:hidden;
  3026. }
  3027. #u1302_img {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:93px;
  3033. height:38px;
  3034. }
  3035. #u1302 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:94px;
  3039. top:82px;
  3040. width:93px;
  3041. height:38px;
  3042. display:flex;
  3043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:12px;
  3047. color:#333333;
  3048. }
  3049. #u1302 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u1302_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u1303_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:94px;
  3068. height:38px;
  3069. }
  3070. #u1303 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:187px;
  3074. top:82px;
  3075. width:94px;
  3076. height:38px;
  3077. display:flex;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:12px;
  3082. color:#333333;
  3083. }
  3084. #u1303 .text {
  3085. position:absolute;
  3086. align-self:center;
  3087. padding:2px 2px 2px 0px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u1303_text {
  3092. border-width:0px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. visibility:hidden;
  3096. }
  3097. #u1304_img {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:84px;
  3103. height:38px;
  3104. }
  3105. #u1304 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:281px;
  3109. top:82px;
  3110. width:84px;
  3111. height:38px;
  3112. display:flex;
  3113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:12px;
  3117. color:#333333;
  3118. }
  3119. #u1304 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u1304_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u1305_img {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:98px;
  3138. height:38px;
  3139. }
  3140. #u1305 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:365px;
  3144. top:82px;
  3145. width:98px;
  3146. height:38px;
  3147. display:flex;
  3148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:12px;
  3152. color:#333333;
  3153. }
  3154. #u1305 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 0px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u1305_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u1306_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:84px;
  3173. height:38px;
  3174. }
  3175. #u1306 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:463px;
  3179. top:82px;
  3180. width:84px;
  3181. height:38px;
  3182. display:flex;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:12px;
  3187. color:#333333;
  3188. }
  3189. #u1306 .text {
  3190. position:absolute;
  3191. align-self:center;
  3192. padding:2px 2px 2px 0px;
  3193. box-sizing:border-box;
  3194. width:100%;
  3195. }
  3196. #u1306_text {
  3197. border-width:0px;
  3198. word-wrap:break-word;
  3199. text-transform:none;
  3200. visibility:hidden;
  3201. }
  3202. #u1307_img {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:98px;
  3208. height:38px;
  3209. }
  3210. #u1307 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:547px;
  3214. top:82px;
  3215. width:98px;
  3216. height:38px;
  3217. display:flex;
  3218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3219. font-weight:400;
  3220. font-style:normal;
  3221. font-size:12px;
  3222. color:#333333;
  3223. }
  3224. #u1307 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 0px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u1307_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u1308_img {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:98px;
  3243. height:38px;
  3244. }
  3245. #u1308 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:645px;
  3249. top:82px;
  3250. width:98px;
  3251. height:38px;
  3252. display:flex;
  3253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3254. font-weight:400;
  3255. font-style:normal;
  3256. font-size:12px;
  3257. color:#333333;
  3258. }
  3259. #u1308 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 0px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u1308_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. visibility:hidden;
  3271. }
  3272. #u1309_img {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:92px;
  3278. height:38px;
  3279. }
  3280. #u1309 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:743px;
  3284. top:82px;
  3285. width:92px;
  3286. height:38px;
  3287. display:flex;
  3288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3289. font-weight:400;
  3290. font-style:normal;
  3291. font-size:12px;
  3292. color:#333333;
  3293. }
  3294. #u1309 .text {
  3295. position:absolute;
  3296. align-self:center;
  3297. padding:2px 2px 2px 0px;
  3298. box-sizing:border-box;
  3299. width:100%;
  3300. }
  3301. #u1309_text {
  3302. border-width:0px;
  3303. word-wrap:break-word;
  3304. text-transform:none;
  3305. visibility:hidden;
  3306. }
  3307. #u1310_img {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:98px;
  3313. height:38px;
  3314. }
  3315. #u1310 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:835px;
  3319. top:82px;
  3320. width:98px;
  3321. height:38px;
  3322. display:flex;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:12px;
  3327. color:#333333;
  3328. }
  3329. #u1310 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 2px 2px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u1310_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u1311_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:98px;
  3348. height:38px;
  3349. }
  3350. #u1311 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:933px;
  3354. top:82px;
  3355. width:98px;
  3356. height:38px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:12px;
  3362. color:#333333;
  3363. }
  3364. #u1311 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u1311_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u1312_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:98px;
  3383. height:38px;
  3384. }
  3385. #u1312 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:1031px;
  3389. top:82px;
  3390. width:98px;
  3391. height:38px;
  3392. display:flex;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:12px;
  3397. color:#333333;
  3398. }
  3399. #u1312 .text {
  3400. position:absolute;
  3401. align-self:center;
  3402. padding:2px 2px 2px 0px;
  3403. box-sizing:border-box;
  3404. width:100%;
  3405. }
  3406. #u1312_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. visibility:hidden;
  3411. }
  3412. #u1313_img {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:90px;
  3418. height:38px;
  3419. }
  3420. #u1313 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:1129px;
  3424. top:82px;
  3425. width:90px;
  3426. height:38px;
  3427. display:flex;
  3428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3429. font-weight:400;
  3430. font-style:normal;
  3431. font-size:12px;
  3432. color:#0089FE;
  3433. }
  3434. #u1313 .text {
  3435. position:absolute;
  3436. align-self:center;
  3437. padding:2px 2px 2px 0px;
  3438. box-sizing:border-box;
  3439. width:100%;
  3440. }
  3441. #u1313_text {
  3442. border-width:0px;
  3443. word-wrap:break-word;
  3444. text-transform:none;
  3445. }
  3446. #u1314_img {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:94px;
  3452. height:38px;
  3453. }
  3454. #u1314 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:120px;
  3459. width:94px;
  3460. height:38px;
  3461. display:flex;
  3462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:12px;
  3466. color:#333333;
  3467. }
  3468. #u1314 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:2px 2px 2px 0px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u1314_text {
  3476. border-width:0px;
  3477. word-wrap:break-word;
  3478. text-transform:none;
  3479. visibility:hidden;
  3480. }
  3481. #u1315_img {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:93px;
  3487. height:38px;
  3488. }
  3489. #u1315 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:94px;
  3493. top:120px;
  3494. width:93px;
  3495. height:38px;
  3496. display:flex;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:12px;
  3501. color:#333333;
  3502. }
  3503. #u1315 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 0px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u1315_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. visibility:hidden;
  3515. }
  3516. #u1316_img {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:94px;
  3522. height:38px;
  3523. }
  3524. #u1316 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:187px;
  3528. top:120px;
  3529. width:94px;
  3530. height:38px;
  3531. display:flex;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:12px;
  3536. color:#333333;
  3537. }
  3538. #u1316 .text {
  3539. position:absolute;
  3540. align-self:center;
  3541. padding:2px 2px 2px 0px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u1316_text {
  3546. border-width:0px;
  3547. word-wrap:break-word;
  3548. text-transform:none;
  3549. visibility:hidden;
  3550. }
  3551. #u1317_img {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:84px;
  3557. height:38px;
  3558. }
  3559. #u1317 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:281px;
  3563. top:120px;
  3564. width:84px;
  3565. height:38px;
  3566. display:flex;
  3567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:12px;
  3571. color:#333333;
  3572. }
  3573. #u1317 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 0px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u1317_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. visibility:hidden;
  3585. }
  3586. #u1318_img {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:98px;
  3592. height:38px;
  3593. }
  3594. #u1318 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:365px;
  3598. top:120px;
  3599. width:98px;
  3600. height:38px;
  3601. display:flex;
  3602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. font-size:12px;
  3606. color:#333333;
  3607. }
  3608. #u1318 .text {
  3609. position:absolute;
  3610. align-self:center;
  3611. padding:2px 2px 2px 0px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u1318_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. visibility:hidden;
  3620. }
  3621. #u1319_img {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:84px;
  3627. height:38px;
  3628. }
  3629. #u1319 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:463px;
  3633. top:120px;
  3634. width:84px;
  3635. height:38px;
  3636. display:flex;
  3637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3638. font-weight:400;
  3639. font-style:normal;
  3640. font-size:12px;
  3641. color:#333333;
  3642. }
  3643. #u1319 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 2px 2px 0px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u1319_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u1320_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:98px;
  3662. height:38px;
  3663. }
  3664. #u1320 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:547px;
  3668. top:120px;
  3669. width:98px;
  3670. height:38px;
  3671. display:flex;
  3672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:12px;
  3676. color:#333333;
  3677. }
  3678. #u1320 .text {
  3679. position:absolute;
  3680. align-self:center;
  3681. padding:2px 2px 2px 0px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u1320_text {
  3686. border-width:0px;
  3687. word-wrap:break-word;
  3688. text-transform:none;
  3689. visibility:hidden;
  3690. }
  3691. #u1321_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:98px;
  3697. height:38px;
  3698. }
  3699. #u1321 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:645px;
  3703. top:120px;
  3704. width:98px;
  3705. height:38px;
  3706. display:flex;
  3707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:12px;
  3711. color:#333333;
  3712. }
  3713. #u1321 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 0px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u1321_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. visibility:hidden;
  3725. }
  3726. #u1322_img {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:92px;
  3732. height:38px;
  3733. }
  3734. #u1322 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:743px;
  3738. top:120px;
  3739. width:92px;
  3740. height:38px;
  3741. display:flex;
  3742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:12px;
  3746. color:#333333;
  3747. }
  3748. #u1322 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 0px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u1322_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u1323_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:98px;
  3767. height:38px;
  3768. }
  3769. #u1323 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:835px;
  3773. top:120px;
  3774. width:98px;
  3775. height:38px;
  3776. display:flex;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:12px;
  3781. color:#333333;
  3782. }
  3783. #u1323 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 0px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u1323_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. visibility:hidden;
  3795. }
  3796. #u1324_img {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:98px;
  3802. height:38px;
  3803. }
  3804. #u1324 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:933px;
  3808. top:120px;
  3809. width:98px;
  3810. height:38px;
  3811. display:flex;
  3812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:12px;
  3816. color:#333333;
  3817. }
  3818. #u1324 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u1324_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u1325_img {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:98px;
  3837. height:38px;
  3838. }
  3839. #u1325 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:1031px;
  3843. top:120px;
  3844. width:98px;
  3845. height:38px;
  3846. display:flex;
  3847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:12px;
  3851. color:#333333;
  3852. }
  3853. #u1325 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:2px 2px 2px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u1325_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. visibility:hidden;
  3865. }
  3866. #u1326_img {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:90px;
  3872. height:38px;
  3873. }
  3874. #u1326 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:1129px;
  3878. top:120px;
  3879. width:90px;
  3880. height:38px;
  3881. display:flex;
  3882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3883. font-weight:400;
  3884. font-style:normal;
  3885. font-size:12px;
  3886. color:#0089FE;
  3887. }
  3888. #u1326 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 2px 2px 0px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u1326_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. visibility:hidden;
  3900. }
  3901. #u1327_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:94px;
  3907. height:38px;
  3908. }
  3909. #u1327 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:158px;
  3914. width:94px;
  3915. height:38px;
  3916. display:flex;
  3917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:12px;
  3921. color:#333333;
  3922. }
  3923. #u1327 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 0px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u1327_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u1328_img {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:93px;
  3942. height:38px;
  3943. }
  3944. #u1328 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:94px;
  3948. top:158px;
  3949. width:93px;
  3950. height:38px;
  3951. display:flex;
  3952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:12px;
  3956. color:#333333;
  3957. }
  3958. #u1328 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:2px 2px 2px 0px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u1328_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u1329_img {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:94px;
  3977. height:38px;
  3978. }
  3979. #u1329 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:187px;
  3983. top:158px;
  3984. width:94px;
  3985. height:38px;
  3986. display:flex;
  3987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:12px;
  3991. color:#333333;
  3992. }
  3993. #u1329 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 0px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u1329_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u1330_img {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:84px;
  4012. height:38px;
  4013. }
  4014. #u1330 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:281px;
  4018. top:158px;
  4019. width:84px;
  4020. height:38px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:12px;
  4026. color:#333333;
  4027. }
  4028. #u1330 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 0px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u1330_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u1331_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:98px;
  4047. height:38px;
  4048. }
  4049. #u1331 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:365px;
  4053. top:158px;
  4054. width:98px;
  4055. height:38px;
  4056. display:flex;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. color:#333333;
  4062. }
  4063. #u1331 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u1331_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u1332_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:84px;
  4082. height:38px;
  4083. }
  4084. #u1332 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:463px;
  4088. top:158px;
  4089. width:84px;
  4090. height:38px;
  4091. display:flex;
  4092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:12px;
  4096. color:#333333;
  4097. }
  4098. #u1332 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u1332_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u1333_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:98px;
  4117. height:38px;
  4118. }
  4119. #u1333 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:547px;
  4123. top:158px;
  4124. width:98px;
  4125. height:38px;
  4126. display:flex;
  4127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. color:#333333;
  4132. }
  4133. #u1333 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 0px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u1333_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u1334_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:98px;
  4152. height:38px;
  4153. }
  4154. #u1334 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:645px;
  4158. top:158px;
  4159. width:98px;
  4160. height:38px;
  4161. display:flex;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. color:#333333;
  4167. }
  4168. #u1334 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:2px 2px 2px 0px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u1334_text {
  4176. border-width:0px;
  4177. word-wrap:break-word;
  4178. text-transform:none;
  4179. visibility:hidden;
  4180. }
  4181. #u1335_img {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:92px;
  4187. height:38px;
  4188. }
  4189. #u1335 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:743px;
  4193. top:158px;
  4194. width:92px;
  4195. height:38px;
  4196. display:flex;
  4197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:12px;
  4201. color:#333333;
  4202. }
  4203. #u1335 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u1335_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u1336_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:98px;
  4222. height:38px;
  4223. }
  4224. #u1336 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:835px;
  4228. top:158px;
  4229. width:98px;
  4230. height:38px;
  4231. display:flex;
  4232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:12px;
  4236. color:#333333;
  4237. }
  4238. #u1336 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 0px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u1336_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. visibility:hidden;
  4250. }
  4251. #u1337_img {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:98px;
  4257. height:38px;
  4258. }
  4259. #u1337 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:933px;
  4263. top:158px;
  4264. width:98px;
  4265. height:38px;
  4266. display:flex;
  4267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4268. font-weight:400;
  4269. font-style:normal;
  4270. font-size:12px;
  4271. color:#333333;
  4272. }
  4273. #u1337 .text {
  4274. position:absolute;
  4275. align-self:center;
  4276. padding:2px 2px 2px 0px;
  4277. box-sizing:border-box;
  4278. width:100%;
  4279. }
  4280. #u1337_text {
  4281. border-width:0px;
  4282. word-wrap:break-word;
  4283. text-transform:none;
  4284. visibility:hidden;
  4285. }
  4286. #u1338_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:98px;
  4292. height:38px;
  4293. }
  4294. #u1338 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:1031px;
  4298. top:158px;
  4299. width:98px;
  4300. height:38px;
  4301. display:flex;
  4302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4303. font-weight:400;
  4304. font-style:normal;
  4305. font-size:12px;
  4306. color:#333333;
  4307. }
  4308. #u1338 .text {
  4309. position:absolute;
  4310. align-self:center;
  4311. padding:2px 2px 2px 0px;
  4312. box-sizing:border-box;
  4313. width:100%;
  4314. }
  4315. #u1338_text {
  4316. border-width:0px;
  4317. word-wrap:break-word;
  4318. text-transform:none;
  4319. visibility:hidden;
  4320. }
  4321. #u1339_img {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:90px;
  4327. height:38px;
  4328. }
  4329. #u1339 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:1129px;
  4333. top:158px;
  4334. width:90px;
  4335. height:38px;
  4336. display:flex;
  4337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4338. font-weight:400;
  4339. font-style:normal;
  4340. font-size:12px;
  4341. color:#AAAAAA;
  4342. }
  4343. #u1339 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 0px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u1339_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. visibility:hidden;
  4355. }
  4356. #u1340_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:94px;
  4362. height:35px;
  4363. }
  4364. #u1340 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:196px;
  4369. width:94px;
  4370. height:35px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. color:#333333;
  4377. }
  4378. #u1340 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u1340_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u1341_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:93px;
  4397. height:35px;
  4398. }
  4399. #u1341 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:94px;
  4403. top:196px;
  4404. width:93px;
  4405. height:35px;
  4406. display:flex;
  4407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:12px;
  4411. color:#333333;
  4412. }
  4413. #u1341 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 0px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u1341_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u1342_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:94px;
  4432. height:35px;
  4433. }
  4434. #u1342 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:187px;
  4438. top:196px;
  4439. width:94px;
  4440. height:35px;
  4441. display:flex;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:12px;
  4446. color:#333333;
  4447. }
  4448. #u1342 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 0px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u1342_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u1343_img {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:84px;
  4467. height:35px;
  4468. }
  4469. #u1343 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:281px;
  4473. top:196px;
  4474. width:84px;
  4475. height:35px;
  4476. display:flex;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:12px;
  4481. color:#333333;
  4482. }
  4483. #u1343 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:2px 2px 2px 0px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u1343_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. visibility:hidden;
  4495. }
  4496. #u1344_img {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:98px;
  4502. height:35px;
  4503. }
  4504. #u1344 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:365px;
  4508. top:196px;
  4509. width:98px;
  4510. height:35px;
  4511. display:flex;
  4512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4513. font-weight:400;
  4514. font-style:normal;
  4515. font-size:12px;
  4516. color:#333333;
  4517. }
  4518. #u1344 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 0px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u1344_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u1345_img {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:84px;
  4537. height:35px;
  4538. }
  4539. #u1345 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:463px;
  4543. top:196px;
  4544. width:84px;
  4545. height:35px;
  4546. display:flex;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:12px;
  4551. color:#333333;
  4552. }
  4553. #u1345 .text {
  4554. position:absolute;
  4555. align-self:center;
  4556. padding:2px 2px 2px 0px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u1345_text {
  4561. border-width:0px;
  4562. word-wrap:break-word;
  4563. text-transform:none;
  4564. visibility:hidden;
  4565. }
  4566. #u1346_img {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:98px;
  4572. height:35px;
  4573. }
  4574. #u1346 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:547px;
  4578. top:196px;
  4579. width:98px;
  4580. height:35px;
  4581. display:flex;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:12px;
  4586. color:#333333;
  4587. }
  4588. #u1346 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:2px 2px 2px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u1346_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. visibility:hidden;
  4600. }
  4601. #u1347_img {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:98px;
  4607. height:35px;
  4608. }
  4609. #u1347 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:645px;
  4613. top:196px;
  4614. width:98px;
  4615. height:35px;
  4616. display:flex;
  4617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. font-size:12px;
  4621. color:#333333;
  4622. }
  4623. #u1347 .text {
  4624. position:absolute;
  4625. align-self:center;
  4626. padding:2px 2px 2px 0px;
  4627. box-sizing:border-box;
  4628. width:100%;
  4629. }
  4630. #u1347_text {
  4631. border-width:0px;
  4632. word-wrap:break-word;
  4633. text-transform:none;
  4634. visibility:hidden;
  4635. }
  4636. #u1348_img {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:92px;
  4642. height:35px;
  4643. }
  4644. #u1348 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:743px;
  4648. top:196px;
  4649. width:92px;
  4650. height:35px;
  4651. display:flex;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:12px;
  4656. color:#333333;
  4657. }
  4658. #u1348 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:2px 2px 2px 0px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u1348_text {
  4666. border-width:0px;
  4667. word-wrap:break-word;
  4668. text-transform:none;
  4669. visibility:hidden;
  4670. }
  4671. #u1349_img {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:98px;
  4677. height:35px;
  4678. }
  4679. #u1349 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:835px;
  4683. top:196px;
  4684. width:98px;
  4685. height:35px;
  4686. display:flex;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:12px;
  4691. color:#333333;
  4692. }
  4693. #u1349 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 0px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u1349_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u1350_img {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:98px;
  4712. height:35px;
  4713. }
  4714. #u1350 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:933px;
  4718. top:196px;
  4719. width:98px;
  4720. height:35px;
  4721. display:flex;
  4722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:12px;
  4726. color:#333333;
  4727. }
  4728. #u1350 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 0px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u1350_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. visibility:hidden;
  4740. }
  4741. #u1351_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:98px;
  4747. height:35px;
  4748. }
  4749. #u1351 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:1031px;
  4753. top:196px;
  4754. width:98px;
  4755. height:35px;
  4756. display:flex;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:12px;
  4761. color:#333333;
  4762. }
  4763. #u1351 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:2px 2px 2px 0px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u1351_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. visibility:hidden;
  4775. }
  4776. #u1352_img {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:90px;
  4782. height:35px;
  4783. }
  4784. #u1352 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:1129px;
  4788. top:196px;
  4789. width:90px;
  4790. height:35px;
  4791. display:flex;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:12px;
  4796. color:#AAAAAA;
  4797. }
  4798. #u1352 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 0px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u1352_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. visibility:hidden;
  4810. }
  4811. #u1353_img {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:0px;
  4815. top:0px;
  4816. width:94px;
  4817. height:35px;
  4818. }
  4819. #u1353 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:231px;
  4824. width:94px;
  4825. height:35px;
  4826. display:flex;
  4827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4828. font-weight:400;
  4829. font-style:normal;
  4830. font-size:12px;
  4831. color:#333333;
  4832. }
  4833. #u1353 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 0px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u1353_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u1354_img {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:93px;
  4852. height:35px;
  4853. }
  4854. #u1354 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:94px;
  4858. top:231px;
  4859. width:93px;
  4860. height:35px;
  4861. display:flex;
  4862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:12px;
  4866. color:#333333;
  4867. }
  4868. #u1354 .text {
  4869. position:absolute;
  4870. align-self:center;
  4871. padding:2px 2px 2px 0px;
  4872. box-sizing:border-box;
  4873. width:100%;
  4874. }
  4875. #u1354_text {
  4876. border-width:0px;
  4877. word-wrap:break-word;
  4878. text-transform:none;
  4879. visibility:hidden;
  4880. }
  4881. #u1355_img {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:94px;
  4887. height:35px;
  4888. }
  4889. #u1355 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:187px;
  4893. top:231px;
  4894. width:94px;
  4895. height:35px;
  4896. display:flex;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:12px;
  4901. color:#333333;
  4902. }
  4903. #u1355 .text {
  4904. position:absolute;
  4905. align-self:center;
  4906. padding:2px 2px 2px 0px;
  4907. box-sizing:border-box;
  4908. width:100%;
  4909. }
  4910. #u1355_text {
  4911. border-width:0px;
  4912. word-wrap:break-word;
  4913. text-transform:none;
  4914. visibility:hidden;
  4915. }
  4916. #u1356_img {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:84px;
  4922. height:35px;
  4923. }
  4924. #u1356 {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:281px;
  4928. top:231px;
  4929. width:84px;
  4930. height:35px;
  4931. display:flex;
  4932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4933. font-weight:400;
  4934. font-style:normal;
  4935. font-size:12px;
  4936. color:#333333;
  4937. }
  4938. #u1356 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 0px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u1356_text {
  4946. border-width:0px;
  4947. word-wrap:break-word;
  4948. text-transform:none;
  4949. visibility:hidden;
  4950. }
  4951. #u1357_img {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:98px;
  4957. height:35px;
  4958. }
  4959. #u1357 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:365px;
  4963. top:231px;
  4964. width:98px;
  4965. height:35px;
  4966. display:flex;
  4967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4968. font-weight:400;
  4969. font-style:normal;
  4970. font-size:12px;
  4971. color:#333333;
  4972. }
  4973. #u1357 .text {
  4974. position:absolute;
  4975. align-self:center;
  4976. padding:2px 2px 2px 0px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u1357_text {
  4981. border-width:0px;
  4982. word-wrap:break-word;
  4983. text-transform:none;
  4984. visibility:hidden;
  4985. }
  4986. #u1358_img {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:84px;
  4992. height:35px;
  4993. }
  4994. #u1358 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:463px;
  4998. top:231px;
  4999. width:84px;
  5000. height:35px;
  5001. display:flex;
  5002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5003. font-weight:400;
  5004. font-style:normal;
  5005. font-size:12px;
  5006. color:#333333;
  5007. }
  5008. #u1358 .text {
  5009. position:absolute;
  5010. align-self:center;
  5011. padding:2px 2px 2px 0px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u1358_text {
  5016. border-width:0px;
  5017. word-wrap:break-word;
  5018. text-transform:none;
  5019. visibility:hidden;
  5020. }
  5021. #u1359_img {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:98px;
  5027. height:35px;
  5028. }
  5029. #u1359 {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:547px;
  5033. top:231px;
  5034. width:98px;
  5035. height:35px;
  5036. display:flex;
  5037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5038. font-weight:400;
  5039. font-style:normal;
  5040. font-size:12px;
  5041. color:#333333;
  5042. }
  5043. #u1359 .text {
  5044. position:absolute;
  5045. align-self:center;
  5046. padding:2px 2px 2px 0px;
  5047. box-sizing:border-box;
  5048. width:100%;
  5049. }
  5050. #u1359_text {
  5051. border-width:0px;
  5052. word-wrap:break-word;
  5053. text-transform:none;
  5054. visibility:hidden;
  5055. }
  5056. #u1360_img {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:98px;
  5062. height:35px;
  5063. }
  5064. #u1360 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:645px;
  5068. top:231px;
  5069. width:98px;
  5070. height:35px;
  5071. display:flex;
  5072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:12px;
  5076. color:#333333;
  5077. }
  5078. #u1360 .text {
  5079. position:absolute;
  5080. align-self:center;
  5081. padding:2px 2px 2px 0px;
  5082. box-sizing:border-box;
  5083. width:100%;
  5084. }
  5085. #u1360_text {
  5086. border-width:0px;
  5087. word-wrap:break-word;
  5088. text-transform:none;
  5089. visibility:hidden;
  5090. }
  5091. #u1361_img {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:92px;
  5097. height:35px;
  5098. }
  5099. #u1361 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:743px;
  5103. top:231px;
  5104. width:92px;
  5105. height:35px;
  5106. display:flex;
  5107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5108. font-weight:400;
  5109. font-style:normal;
  5110. font-size:12px;
  5111. color:#333333;
  5112. }
  5113. #u1361 .text {
  5114. position:absolute;
  5115. align-self:center;
  5116. padding:2px 2px 2px 0px;
  5117. box-sizing:border-box;
  5118. width:100%;
  5119. }
  5120. #u1361_text {
  5121. border-width:0px;
  5122. word-wrap:break-word;
  5123. text-transform:none;
  5124. visibility:hidden;
  5125. }
  5126. #u1362_img {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:98px;
  5132. height:35px;
  5133. }
  5134. #u1362 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:835px;
  5138. top:231px;
  5139. width:98px;
  5140. height:35px;
  5141. display:flex;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:12px;
  5146. color:#333333;
  5147. }
  5148. #u1362 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 0px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u1362_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u1363_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:98px;
  5167. height:35px;
  5168. }
  5169. #u1363 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:933px;
  5173. top:231px;
  5174. width:98px;
  5175. height:35px;
  5176. display:flex;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:12px;
  5181. color:#333333;
  5182. }
  5183. #u1363 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 0px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u1363_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u1364_img {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:98px;
  5202. height:35px;
  5203. }
  5204. #u1364 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:1031px;
  5208. top:231px;
  5209. width:98px;
  5210. height:35px;
  5211. display:flex;
  5212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:12px;
  5216. color:#333333;
  5217. }
  5218. #u1364 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:2px 2px 2px 0px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u1364_text {
  5226. border-width:0px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. visibility:hidden;
  5230. }
  5231. #u1365_img {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:90px;
  5237. height:35px;
  5238. }
  5239. #u1365 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:1129px;
  5243. top:231px;
  5244. width:90px;
  5245. height:35px;
  5246. display:flex;
  5247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:12px;
  5251. color:#333333;
  5252. }
  5253. #u1365 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 2px 2px 0px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u1365_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u1366_img {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:94px;
  5272. height:32px;
  5273. }
  5274. #u1366 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:266px;
  5279. width:94px;
  5280. height:32px;
  5281. display:flex;
  5282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:12px;
  5286. color:#333333;
  5287. }
  5288. #u1366 .text {
  5289. position:absolute;
  5290. align-self:center;
  5291. padding:2px 2px 2px 0px;
  5292. box-sizing:border-box;
  5293. width:100%;
  5294. }
  5295. #u1366_text {
  5296. border-width:0px;
  5297. word-wrap:break-word;
  5298. text-transform:none;
  5299. visibility:hidden;
  5300. }
  5301. #u1367_img {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:93px;
  5307. height:32px;
  5308. }
  5309. #u1367 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:94px;
  5313. top:266px;
  5314. width:93px;
  5315. height:32px;
  5316. display:flex;
  5317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:12px;
  5321. color:#333333;
  5322. }
  5323. #u1367 .text {
  5324. position:absolute;
  5325. align-self:center;
  5326. padding:2px 2px 2px 0px;
  5327. box-sizing:border-box;
  5328. width:100%;
  5329. }
  5330. #u1367_text {
  5331. border-width:0px;
  5332. word-wrap:break-word;
  5333. text-transform:none;
  5334. visibility:hidden;
  5335. }
  5336. #u1368_img {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:94px;
  5342. height:32px;
  5343. }
  5344. #u1368 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:187px;
  5348. top:266px;
  5349. width:94px;
  5350. height:32px;
  5351. display:flex;
  5352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:12px;
  5356. color:#333333;
  5357. }
  5358. #u1368 .text {
  5359. position:absolute;
  5360. align-self:center;
  5361. padding:2px 2px 2px 0px;
  5362. box-sizing:border-box;
  5363. width:100%;
  5364. }
  5365. #u1368_text {
  5366. border-width:0px;
  5367. word-wrap:break-word;
  5368. text-transform:none;
  5369. visibility:hidden;
  5370. }
  5371. #u1369_img {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:84px;
  5377. height:32px;
  5378. }
  5379. #u1369 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:281px;
  5383. top:266px;
  5384. width:84px;
  5385. height:32px;
  5386. display:flex;
  5387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:12px;
  5391. color:#333333;
  5392. }
  5393. #u1369 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 2px 2px 0px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u1369_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. visibility:hidden;
  5405. }
  5406. #u1370_img {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:98px;
  5412. height:32px;
  5413. }
  5414. #u1370 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:365px;
  5418. top:266px;
  5419. width:98px;
  5420. height:32px;
  5421. display:flex;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:12px;
  5426. color:#333333;
  5427. }
  5428. #u1370 .text {
  5429. position:absolute;
  5430. align-self:center;
  5431. padding:2px 2px 2px 0px;
  5432. box-sizing:border-box;
  5433. width:100%;
  5434. }
  5435. #u1370_text {
  5436. border-width:0px;
  5437. word-wrap:break-word;
  5438. text-transform:none;
  5439. visibility:hidden;
  5440. }
  5441. #u1371_img {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:84px;
  5447. height:32px;
  5448. }
  5449. #u1371 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:463px;
  5453. top:266px;
  5454. width:84px;
  5455. height:32px;
  5456. display:flex;
  5457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5458. font-weight:400;
  5459. font-style:normal;
  5460. font-size:12px;
  5461. color:#333333;
  5462. }
  5463. #u1371 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:2px 2px 2px 0px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u1371_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u1372_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:98px;
  5482. height:32px;
  5483. }
  5484. #u1372 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:547px;
  5488. top:266px;
  5489. width:98px;
  5490. height:32px;
  5491. display:flex;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:12px;
  5496. color:#333333;
  5497. }
  5498. #u1372 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 0px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u1372_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. visibility:hidden;
  5510. }
  5511. #u1373_img {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:98px;
  5517. height:32px;
  5518. }
  5519. #u1373 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:645px;
  5523. top:266px;
  5524. width:98px;
  5525. height:32px;
  5526. display:flex;
  5527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:12px;
  5531. color:#333333;
  5532. }
  5533. #u1373 .text {
  5534. position:absolute;
  5535. align-self:center;
  5536. padding:2px 2px 2px 0px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u1373_text {
  5541. border-width:0px;
  5542. word-wrap:break-word;
  5543. text-transform:none;
  5544. visibility:hidden;
  5545. }
  5546. #u1374_img {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:92px;
  5552. height:32px;
  5553. }
  5554. #u1374 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:743px;
  5558. top:266px;
  5559. width:92px;
  5560. height:32px;
  5561. display:flex;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:12px;
  5566. color:#333333;
  5567. }
  5568. #u1374 .text {
  5569. position:absolute;
  5570. align-self:center;
  5571. padding:2px 2px 2px 0px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u1374_text {
  5576. border-width:0px;
  5577. word-wrap:break-word;
  5578. text-transform:none;
  5579. visibility:hidden;
  5580. }
  5581. #u1375_img {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:98px;
  5587. height:32px;
  5588. }
  5589. #u1375 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:835px;
  5593. top:266px;
  5594. width:98px;
  5595. height:32px;
  5596. display:flex;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:12px;
  5601. color:#333333;
  5602. }
  5603. #u1375 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:2px 2px 2px 0px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u1375_text {
  5611. border-width:0px;
  5612. word-wrap:break-word;
  5613. text-transform:none;
  5614. visibility:hidden;
  5615. }
  5616. #u1376_img {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:98px;
  5622. height:32px;
  5623. }
  5624. #u1376 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:933px;
  5628. top:266px;
  5629. width:98px;
  5630. height:32px;
  5631. display:flex;
  5632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:12px;
  5636. color:#333333;
  5637. }
  5638. #u1376 .text {
  5639. position:absolute;
  5640. align-self:center;
  5641. padding:2px 2px 2px 0px;
  5642. box-sizing:border-box;
  5643. width:100%;
  5644. }
  5645. #u1376_text {
  5646. border-width:0px;
  5647. word-wrap:break-word;
  5648. text-transform:none;
  5649. visibility:hidden;
  5650. }
  5651. #u1377_img {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:98px;
  5657. height:32px;
  5658. }
  5659. #u1377 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:1031px;
  5663. top:266px;
  5664. width:98px;
  5665. height:32px;
  5666. display:flex;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:12px;
  5671. color:#333333;
  5672. }
  5673. #u1377 .text {
  5674. position:absolute;
  5675. align-self:center;
  5676. padding:2px 2px 2px 0px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u1377_text {
  5681. border-width:0px;
  5682. word-wrap:break-word;
  5683. text-transform:none;
  5684. visibility:hidden;
  5685. }
  5686. #u1378_img {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:90px;
  5692. height:32px;
  5693. }
  5694. #u1378 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:1129px;
  5698. top:266px;
  5699. width:90px;
  5700. height:32px;
  5701. display:flex;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:12px;
  5706. color:#333333;
  5707. }
  5708. #u1378 .text {
  5709. position:absolute;
  5710. align-self:center;
  5711. padding:2px 2px 2px 0px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u1378_text {
  5716. border-width:0px;
  5717. word-wrap:break-word;
  5718. text-transform:none;
  5719. visibility:hidden;
  5720. }
  5721. #u1379_img {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:94px;
  5727. height:30px;
  5728. }
  5729. #u1379 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:298px;
  5734. width:94px;
  5735. height:30px;
  5736. display:flex;
  5737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5738. font-weight:400;
  5739. font-style:normal;
  5740. font-size:12px;
  5741. color:#333333;
  5742. }
  5743. #u1379 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:2px 2px 2px 0px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u1379_text {
  5751. border-width:0px;
  5752. word-wrap:break-word;
  5753. text-transform:none;
  5754. visibility:hidden;
  5755. }
  5756. #u1380_img {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:93px;
  5762. height:30px;
  5763. }
  5764. #u1380 {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:94px;
  5768. top:298px;
  5769. width:93px;
  5770. height:30px;
  5771. display:flex;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:12px;
  5776. color:#333333;
  5777. }
  5778. #u1380 .text {
  5779. position:absolute;
  5780. align-self:center;
  5781. padding:2px 2px 2px 0px;
  5782. box-sizing:border-box;
  5783. width:100%;
  5784. }
  5785. #u1380_text {
  5786. border-width:0px;
  5787. word-wrap:break-word;
  5788. text-transform:none;
  5789. visibility:hidden;
  5790. }
  5791. #u1381_img {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:94px;
  5797. height:30px;
  5798. }
  5799. #u1381 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:187px;
  5803. top:298px;
  5804. width:94px;
  5805. height:30px;
  5806. display:flex;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:12px;
  5811. color:#333333;
  5812. }
  5813. #u1381 .text {
  5814. position:absolute;
  5815. align-self:center;
  5816. padding:2px 2px 2px 0px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u1381_text {
  5821. border-width:0px;
  5822. word-wrap:break-word;
  5823. text-transform:none;
  5824. visibility:hidden;
  5825. }
  5826. #u1382_img {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:84px;
  5832. height:30px;
  5833. }
  5834. #u1382 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:281px;
  5838. top:298px;
  5839. width:84px;
  5840. height:30px;
  5841. display:flex;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:12px;
  5846. color:#333333;
  5847. }
  5848. #u1382 .text {
  5849. position:absolute;
  5850. align-self:center;
  5851. padding:2px 2px 2px 0px;
  5852. box-sizing:border-box;
  5853. width:100%;
  5854. }
  5855. #u1382_text {
  5856. border-width:0px;
  5857. word-wrap:break-word;
  5858. text-transform:none;
  5859. visibility:hidden;
  5860. }
  5861. #u1383_img {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:98px;
  5867. height:30px;
  5868. }
  5869. #u1383 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:365px;
  5873. top:298px;
  5874. width:98px;
  5875. height:30px;
  5876. display:flex;
  5877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:12px;
  5881. color:#333333;
  5882. }
  5883. #u1383 .text {
  5884. position:absolute;
  5885. align-self:center;
  5886. padding:2px 2px 2px 0px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u1383_text {
  5891. border-width:0px;
  5892. word-wrap:break-word;
  5893. text-transform:none;
  5894. visibility:hidden;
  5895. }
  5896. #u1384_img {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:84px;
  5902. height:30px;
  5903. }
  5904. #u1384 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:463px;
  5908. top:298px;
  5909. width:84px;
  5910. height:30px;
  5911. display:flex;
  5912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:12px;
  5916. color:#333333;
  5917. }
  5918. #u1384 .text {
  5919. position:absolute;
  5920. align-self:center;
  5921. padding:2px 2px 2px 0px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u1384_text {
  5926. border-width:0px;
  5927. word-wrap:break-word;
  5928. text-transform:none;
  5929. visibility:hidden;
  5930. }
  5931. #u1385_img {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:98px;
  5937. height:30px;
  5938. }
  5939. #u1385 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:547px;
  5943. top:298px;
  5944. width:98px;
  5945. height:30px;
  5946. display:flex;
  5947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5948. font-weight:400;
  5949. font-style:normal;
  5950. font-size:12px;
  5951. color:#333333;
  5952. }
  5953. #u1385 .text {
  5954. position:absolute;
  5955. align-self:center;
  5956. padding:2px 2px 2px 0px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u1385_text {
  5961. border-width:0px;
  5962. word-wrap:break-word;
  5963. text-transform:none;
  5964. visibility:hidden;
  5965. }
  5966. #u1386_img {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:98px;
  5972. height:30px;
  5973. }
  5974. #u1386 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:645px;
  5978. top:298px;
  5979. width:98px;
  5980. height:30px;
  5981. display:flex;
  5982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5983. font-weight:400;
  5984. font-style:normal;
  5985. font-size:12px;
  5986. color:#333333;
  5987. }
  5988. #u1386 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:2px 2px 2px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u1386_text {
  5996. border-width:0px;
  5997. word-wrap:break-word;
  5998. text-transform:none;
  5999. visibility:hidden;
  6000. }
  6001. #u1387_img {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:92px;
  6007. height:30px;
  6008. }
  6009. #u1387 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:743px;
  6013. top:298px;
  6014. width:92px;
  6015. height:30px;
  6016. display:flex;
  6017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6018. font-weight:400;
  6019. font-style:normal;
  6020. font-size:12px;
  6021. color:#333333;
  6022. }
  6023. #u1387 .text {
  6024. position:absolute;
  6025. align-self:center;
  6026. padding:2px 2px 2px 0px;
  6027. box-sizing:border-box;
  6028. width:100%;
  6029. }
  6030. #u1387_text {
  6031. border-width:0px;
  6032. word-wrap:break-word;
  6033. text-transform:none;
  6034. visibility:hidden;
  6035. }
  6036. #u1388_img {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:98px;
  6042. height:30px;
  6043. }
  6044. #u1388 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:835px;
  6048. top:298px;
  6049. width:98px;
  6050. height:30px;
  6051. display:flex;
  6052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:12px;
  6056. color:#333333;
  6057. }
  6058. #u1388 .text {
  6059. position:absolute;
  6060. align-self:center;
  6061. padding:2px 2px 2px 0px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u1388_text {
  6066. border-width:0px;
  6067. word-wrap:break-word;
  6068. text-transform:none;
  6069. visibility:hidden;
  6070. }
  6071. #u1389_img {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:98px;
  6077. height:30px;
  6078. }
  6079. #u1389 {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:933px;
  6083. top:298px;
  6084. width:98px;
  6085. height:30px;
  6086. display:flex;
  6087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:12px;
  6091. color:#333333;
  6092. }
  6093. #u1389 .text {
  6094. position:absolute;
  6095. align-self:center;
  6096. padding:2px 2px 2px 0px;
  6097. box-sizing:border-box;
  6098. width:100%;
  6099. }
  6100. #u1389_text {
  6101. border-width:0px;
  6102. word-wrap:break-word;
  6103. text-transform:none;
  6104. visibility:hidden;
  6105. }
  6106. #u1390_img {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:98px;
  6112. height:30px;
  6113. }
  6114. #u1390 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:1031px;
  6118. top:298px;
  6119. width:98px;
  6120. height:30px;
  6121. display:flex;
  6122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:12px;
  6126. color:#333333;
  6127. }
  6128. #u1390 .text {
  6129. position:absolute;
  6130. align-self:center;
  6131. padding:2px 2px 2px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u1390_text {
  6136. border-width:0px;
  6137. word-wrap:break-word;
  6138. text-transform:none;
  6139. visibility:hidden;
  6140. }
  6141. #u1391_img {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:90px;
  6147. height:30px;
  6148. }
  6149. #u1391 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:1129px;
  6153. top:298px;
  6154. width:90px;
  6155. height:30px;
  6156. display:flex;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:12px;
  6161. color:#333333;
  6162. }
  6163. #u1391 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 0px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u1391_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u1392_div {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:59px;
  6182. height:30px;
  6183. background:inherit;
  6184. background-color:rgba(255, 255, 255, 1);
  6185. box-sizing:border-box;
  6186. border-width:1px;
  6187. border-style:solid;
  6188. border-color:rgba(170, 170, 170, 1);
  6189. border-radius:4px;
  6190. -moz-box-shadow:none;
  6191. -webkit-box-shadow:none;
  6192. box-shadow:none;
  6193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:14px;
  6197. color:#555555;
  6198. }
  6199. #u1392 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:356px;
  6203. top:190px;
  6204. width:59px;
  6205. height:30px;
  6206. display:flex;
  6207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. font-size:14px;
  6211. color:#555555;
  6212. }
  6213. #u1392 .text {
  6214. position:absolute;
  6215. align-self:center;
  6216. padding:5px 15px 5px 15px;
  6217. box-sizing:border-box;
  6218. width:100%;
  6219. }
  6220. #u1392_text {
  6221. border-width:0px;
  6222. white-space:nowrap;
  6223. text-transform:none;
  6224. }
  6225. #u1393_div {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:0px;
  6229. top:0px;
  6230. width:73px;
  6231. height:50px;
  6232. background:inherit;
  6233. background-color:rgba(255, 255, 255, 0);
  6234. border:none;
  6235. border-left:0px;
  6236. border-top:0px;
  6237. border-right:0px;
  6238. border-radius:0px;
  6239. border-bottom-right-radius:0px;
  6240. border-bottom-left-radius:0px;
  6241. -moz-box-shadow:none;
  6242. -webkit-box-shadow:none;
  6243. box-shadow:none;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:18px;
  6248. color:#000000;
  6249. line-height:40px;
  6250. }
  6251. #u1393 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:356px;
  6255. top:50px;
  6256. width:73px;
  6257. height:50px;
  6258. display:flex;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:18px;
  6263. color:#000000;
  6264. line-height:40px;
  6265. }
  6266. #u1393 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:0px 0px 0px 0px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u1393_text {
  6274. border-width:0px;
  6275. white-space:nowrap;
  6276. text-transform:none;
  6277. }
  6278. #u1394 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:0px;
  6284. height:0px;
  6285. }
  6286. #u1395_div {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:140px;
  6292. height:30px;
  6293. background:inherit;
  6294. background-color:rgba(255, 255, 255, 1);
  6295. box-sizing:border-box;
  6296. border-width:1px;
  6297. border-style:solid;
  6298. border-color:rgba(215, 215, 215, 1);
  6299. border-radius:4px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. font-size:11px;
  6304. }
  6305. #u1395 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:1106px;
  6309. top:100px;
  6310. width:140px;
  6311. height:30px;
  6312. display:flex;
  6313. font-size:11px;
  6314. }
  6315. #u1395 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 2px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u1395_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. visibility:hidden;
  6327. }
  6328. #u1396_input {
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:126px;
  6333. height:23px;
  6334. padding:2px 2px 2px 2px;
  6335. font-family:'ArialMT', 'Arial', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:11px;
  6339. letter-spacing:normal;
  6340. color:#AAAAAA;
  6341. vertical-align:none;
  6342. text-align:left;
  6343. text-transform:none;
  6344. background-color:transparent;
  6345. border-color:transparent;
  6346. }
  6347. #u1396_input.disabled {
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:126px;
  6352. height:23px;
  6353. padding:2px 2px 2px 2px;
  6354. font-family:'ArialMT', 'Arial', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:11px;
  6358. letter-spacing:normal;
  6359. color:#AAAAAA;
  6360. vertical-align:none;
  6361. text-align:left;
  6362. text-transform:none;
  6363. background-color:transparent;
  6364. border-color:transparent;
  6365. }
  6366. #u1396_div {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:126px;
  6372. height:23px;
  6373. background:inherit;
  6374. background-color:rgba(255, 255, 255, 1);
  6375. border:none;
  6376. border-radius:0px;
  6377. -moz-box-shadow:none;
  6378. -webkit-box-shadow:none;
  6379. box-shadow:none;
  6380. font-size:11px;
  6381. color:#AAAAAA;
  6382. }
  6383. #u1396 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:1113px;
  6387. top:102px;
  6388. width:126px;
  6389. height:23px;
  6390. display:flex;
  6391. font-size:11px;
  6392. color:#AAAAAA;
  6393. }
  6394. #u1396 .text {
  6395. position:absolute;
  6396. align-self:flex-start;
  6397. padding:2px 2px 2px 2px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u1396_div.disabled {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:126px;
  6407. height:23px;
  6408. background:inherit;
  6409. background-color:rgba(240, 240, 240, 1);
  6410. border:none;
  6411. border-radius:0px;
  6412. -moz-box-shadow:none;
  6413. -webkit-box-shadow:none;
  6414. box-shadow:none;
  6415. font-size:11px;
  6416. color:#AAAAAA;
  6417. }
  6418. #u1396.disabled {
  6419. }
  6420. .u1396_input_option {
  6421. font-size:11px;
  6422. }
  6423. #u1397 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:0px;
  6429. height:0px;
  6430. }
  6431. #u1398_div {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:140px;
  6437. height:30px;
  6438. background:inherit;
  6439. background-color:rgba(255, 255, 255, 1);
  6440. box-sizing:border-box;
  6441. border-width:1px;
  6442. border-style:solid;
  6443. border-color:rgba(201, 201, 201, 1);
  6444. border-radius:4px;
  6445. -moz-box-shadow:none;
  6446. -webkit-box-shadow:none;
  6447. box-shadow:none;
  6448. font-family:'Microsoft YaHei', sans-serif;
  6449. font-weight:400;
  6450. font-style:normal;
  6451. font-size:14px;
  6452. color:#CCCCCC;
  6453. text-align:left;
  6454. }
  6455. #u1398 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:356px;
  6459. top:140px;
  6460. width:140px;
  6461. height:30px;
  6462. display:flex;
  6463. font-family:'Microsoft YaHei', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:14px;
  6467. color:#CCCCCC;
  6468. text-align:left;
  6469. }
  6470. #u1398 .text {
  6471. position:absolute;
  6472. align-self:center;
  6473. padding:2px 8px 2px 8px;
  6474. box-sizing:border-box;
  6475. width:100%;
  6476. }
  6477. #u1398_text {
  6478. border-width:0px;
  6479. word-wrap:break-word;
  6480. text-transform:none;
  6481. visibility:hidden;
  6482. }
  6483. #u1399_input {
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:127px;
  6488. height:25px;
  6489. padding:2px 2px 2px 2px;
  6490. font-family:'Microsoft YaHei', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:10px;
  6494. letter-spacing:normal;
  6495. color:#000000;
  6496. vertical-align:none;
  6497. text-align:left;
  6498. text-transform:none;
  6499. background-color:transparent;
  6500. border-color:transparent;
  6501. }
  6502. #u1399_input.disabled {
  6503. position:absolute;
  6504. left:0px;
  6505. top:0px;
  6506. width:127px;
  6507. height:25px;
  6508. padding:2px 2px 2px 2px;
  6509. font-family:'Microsoft YaHei', sans-serif;
  6510. font-weight:400;
  6511. font-style:normal;
  6512. font-size:10px;
  6513. letter-spacing:normal;
  6514. color:#000000;
  6515. vertical-align:none;
  6516. text-align:left;
  6517. text-transform:none;
  6518. background-color:transparent;
  6519. border-color:transparent;
  6520. }
  6521. #u1399_div {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:127px;
  6527. height:25px;
  6528. background:inherit;
  6529. background-color:rgba(255, 255, 255, 1);
  6530. border:none;
  6531. border-radius:0px;
  6532. -moz-box-shadow:none;
  6533. -webkit-box-shadow:none;
  6534. box-shadow:none;
  6535. font-family:'Microsoft YaHei', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:10px;
  6539. }
  6540. #u1399 {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:364px;
  6544. top:141px;
  6545. width:127px;
  6546. height:25px;
  6547. display:flex;
  6548. font-family:'Microsoft YaHei', sans-serif;
  6549. font-weight:400;
  6550. font-style:normal;
  6551. font-size:10px;
  6552. }
  6553. #u1399 .text {
  6554. position:absolute;
  6555. align-self:center;
  6556. padding:2px 2px 2px 2px;
  6557. box-sizing:border-box;
  6558. width:100%;
  6559. }
  6560. #u1399_div.disabled {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:127px;
  6566. height:25px;
  6567. background:inherit;
  6568. background-color:rgba(240, 240, 240, 1);
  6569. border:none;
  6570. border-radius:0px;
  6571. -moz-box-shadow:none;
  6572. -webkit-box-shadow:none;
  6573. box-shadow:none;
  6574. font-family:'Microsoft YaHei', sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:10px;
  6578. }
  6579. #u1399.disabled {
  6580. }
  6581. #u1400 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:0px;
  6585. top:0px;
  6586. width:0px;
  6587. height:0px;
  6588. }
  6589. #u1401_div {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:140px;
  6595. height:30px;
  6596. background:inherit;
  6597. background-color:rgba(255, 255, 255, 1);
  6598. box-sizing:border-box;
  6599. border-width:1px;
  6600. border-style:solid;
  6601. border-color:rgba(201, 201, 201, 1);
  6602. border-radius:4px;
  6603. -moz-box-shadow:none;
  6604. -webkit-box-shadow:none;
  6605. box-shadow:none;
  6606. font-family:'Microsoft YaHei', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:14px;
  6610. color:#CCCCCC;
  6611. text-align:left;
  6612. }
  6613. #u1401 {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:506px;
  6617. top:140px;
  6618. width:140px;
  6619. height:30px;
  6620. display:flex;
  6621. font-family:'Microsoft YaHei', sans-serif;
  6622. font-weight:400;
  6623. font-style:normal;
  6624. font-size:14px;
  6625. color:#CCCCCC;
  6626. text-align:left;
  6627. }
  6628. #u1401 .text {
  6629. position:absolute;
  6630. align-self:center;
  6631. padding:2px 8px 2px 8px;
  6632. box-sizing:border-box;
  6633. width:100%;
  6634. }
  6635. #u1401_text {
  6636. border-width:0px;
  6637. word-wrap:break-word;
  6638. text-transform:none;
  6639. visibility:hidden;
  6640. }
  6641. #u1402_input {
  6642. position:absolute;
  6643. left:0px;
  6644. top:0px;
  6645. width:127px;
  6646. height:25px;
  6647. padding:2px 2px 2px 2px;
  6648. font-family:'Microsoft YaHei', sans-serif;
  6649. font-weight:400;
  6650. font-style:normal;
  6651. font-size:10px;
  6652. letter-spacing:normal;
  6653. color:#000000;
  6654. vertical-align:none;
  6655. text-align:left;
  6656. text-transform:none;
  6657. background-color:transparent;
  6658. border-color:transparent;
  6659. }
  6660. #u1402_input.disabled {
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:127px;
  6665. height:25px;
  6666. padding:2px 2px 2px 2px;
  6667. font-family:'Microsoft YaHei', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. font-size:10px;
  6671. letter-spacing:normal;
  6672. color:#000000;
  6673. vertical-align:none;
  6674. text-align:left;
  6675. text-transform:none;
  6676. background-color:transparent;
  6677. border-color:transparent;
  6678. }
  6679. #u1402_div {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:127px;
  6685. height:25px;
  6686. background:inherit;
  6687. background-color:rgba(255, 255, 255, 1);
  6688. border:none;
  6689. border-radius:0px;
  6690. -moz-box-shadow:none;
  6691. -webkit-box-shadow:none;
  6692. box-shadow:none;
  6693. font-family:'Microsoft YaHei', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:10px;
  6697. }
  6698. #u1402 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:514px;
  6702. top:141px;
  6703. width:127px;
  6704. height:25px;
  6705. display:flex;
  6706. font-family:'Microsoft YaHei', sans-serif;
  6707. font-weight:400;
  6708. font-style:normal;
  6709. font-size:10px;
  6710. }
  6711. #u1402 .text {
  6712. position:absolute;
  6713. align-self:center;
  6714. padding:2px 2px 2px 2px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u1402_div.disabled {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:127px;
  6724. height:25px;
  6725. background:inherit;
  6726. background-color:rgba(240, 240, 240, 1);
  6727. border:none;
  6728. border-radius:0px;
  6729. -moz-box-shadow:none;
  6730. -webkit-box-shadow:none;
  6731. box-shadow:none;
  6732. font-family:'Microsoft YaHei', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:10px;
  6736. }
  6737. #u1402.disabled {
  6738. }
  6739. #u1403 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:0px;
  6745. height:0px;
  6746. }
  6747. #u1404_div {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:140px;
  6753. height:30px;
  6754. background:inherit;
  6755. background-color:rgba(255, 255, 255, 1);
  6756. box-sizing:border-box;
  6757. border-width:1px;
  6758. border-style:solid;
  6759. border-color:rgba(215, 215, 215, 1);
  6760. border-radius:4px;
  6761. -moz-box-shadow:none;
  6762. -webkit-box-shadow:none;
  6763. box-shadow:none;
  6764. font-size:11px;
  6765. }
  6766. #u1404 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:1256px;
  6770. top:99px;
  6771. width:140px;
  6772. height:30px;
  6773. display:flex;
  6774. font-size:11px;
  6775. }
  6776. #u1404 .text {
  6777. position:absolute;
  6778. align-self:center;
  6779. padding:2px 2px 2px 2px;
  6780. box-sizing:border-box;
  6781. width:100%;
  6782. }
  6783. #u1404_text {
  6784. border-width:0px;
  6785. word-wrap:break-word;
  6786. text-transform:none;
  6787. visibility:hidden;
  6788. }
  6789. #u1405_input {
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:126px;
  6794. height:23px;
  6795. padding:2px 2px 2px 2px;
  6796. font-family:'ArialMT', 'Arial', sans-serif;
  6797. font-weight:400;
  6798. font-style:normal;
  6799. font-size:11px;
  6800. letter-spacing:normal;
  6801. color:#AAAAAA;
  6802. vertical-align:none;
  6803. text-align:left;
  6804. text-transform:none;
  6805. background-color:transparent;
  6806. border-color:transparent;
  6807. }
  6808. #u1405_input.disabled {
  6809. position:absolute;
  6810. left:0px;
  6811. top:0px;
  6812. width:126px;
  6813. height:23px;
  6814. padding:2px 2px 2px 2px;
  6815. font-family:'ArialMT', 'Arial', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:11px;
  6819. letter-spacing:normal;
  6820. color:#AAAAAA;
  6821. vertical-align:none;
  6822. text-align:left;
  6823. text-transform:none;
  6824. background-color:transparent;
  6825. border-color:transparent;
  6826. }
  6827. #u1405_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:126px;
  6833. height:23px;
  6834. background:inherit;
  6835. background-color:rgba(255, 255, 255, 1);
  6836. border:none;
  6837. border-radius:0px;
  6838. -moz-box-shadow:none;
  6839. -webkit-box-shadow:none;
  6840. box-shadow:none;
  6841. font-size:11px;
  6842. color:#AAAAAA;
  6843. }
  6844. #u1405 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:1263px;
  6848. top:101px;
  6849. width:126px;
  6850. height:23px;
  6851. display:flex;
  6852. font-size:11px;
  6853. color:#AAAAAA;
  6854. }
  6855. #u1405 .text {
  6856. position:absolute;
  6857. align-self:flex-start;
  6858. padding:2px 2px 2px 2px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u1405_div.disabled {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:126px;
  6868. height:23px;
  6869. background:inherit;
  6870. background-color:rgba(240, 240, 240, 1);
  6871. border:none;
  6872. border-radius:0px;
  6873. -moz-box-shadow:none;
  6874. -webkit-box-shadow:none;
  6875. box-shadow:none;
  6876. font-size:11px;
  6877. color:#AAAAAA;
  6878. }
  6879. #u1405.disabled {
  6880. }
  6881. .u1405_input_option {
  6882. font-size:11px;
  6883. }
  6884. #u1406 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:0px;
  6890. height:0px;
  6891. }
  6892. #u1407_div {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:140px;
  6898. height:30px;
  6899. background:inherit;
  6900. background-color:rgba(255, 255, 255, 1);
  6901. box-sizing:border-box;
  6902. border-width:1px;
  6903. border-style:solid;
  6904. border-color:rgba(215, 215, 215, 1);
  6905. border-radius:4px;
  6906. -moz-box-shadow:none;
  6907. -webkit-box-shadow:none;
  6908. box-shadow:none;
  6909. font-size:11px;
  6910. }
  6911. #u1407 {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:1406px;
  6915. top:99px;
  6916. width:140px;
  6917. height:30px;
  6918. display:flex;
  6919. font-size:11px;
  6920. }
  6921. #u1407 .text {
  6922. position:absolute;
  6923. align-self:center;
  6924. padding:2px 2px 2px 2px;
  6925. box-sizing:border-box;
  6926. width:100%;
  6927. }
  6928. #u1407_text {
  6929. border-width:0px;
  6930. word-wrap:break-word;
  6931. text-transform:none;
  6932. visibility:hidden;
  6933. }
  6934. #u1408_input {
  6935. position:absolute;
  6936. left:0px;
  6937. top:0px;
  6938. width:126px;
  6939. height:23px;
  6940. padding:2px 2px 2px 2px;
  6941. font-family:'ArialMT', 'Arial', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:11px;
  6945. letter-spacing:normal;
  6946. color:#AAAAAA;
  6947. vertical-align:none;
  6948. text-align:left;
  6949. text-transform:none;
  6950. background-color:transparent;
  6951. border-color:transparent;
  6952. }
  6953. #u1408_input.disabled {
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:126px;
  6958. height:23px;
  6959. padding:2px 2px 2px 2px;
  6960. font-family:'ArialMT', 'Arial', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:11px;
  6964. letter-spacing:normal;
  6965. color:#AAAAAA;
  6966. vertical-align:none;
  6967. text-align:left;
  6968. text-transform:none;
  6969. background-color:transparent;
  6970. border-color:transparent;
  6971. }
  6972. #u1408_div {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:126px;
  6978. height:23px;
  6979. background:inherit;
  6980. background-color:rgba(255, 255, 255, 1);
  6981. border:none;
  6982. border-radius:0px;
  6983. -moz-box-shadow:none;
  6984. -webkit-box-shadow:none;
  6985. box-shadow:none;
  6986. font-size:11px;
  6987. color:#AAAAAA;
  6988. }
  6989. #u1408 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:1413px;
  6993. top:101px;
  6994. width:126px;
  6995. height:23px;
  6996. display:flex;
  6997. font-size:11px;
  6998. color:#AAAAAA;
  6999. }
  7000. #u1408 .text {
  7001. position:absolute;
  7002. align-self:flex-start;
  7003. padding:2px 2px 2px 2px;
  7004. box-sizing:border-box;
  7005. width:100%;
  7006. }
  7007. #u1408_div.disabled {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:126px;
  7013. height:23px;
  7014. background:inherit;
  7015. background-color:rgba(240, 240, 240, 1);
  7016. border:none;
  7017. border-radius:0px;
  7018. -moz-box-shadow:none;
  7019. -webkit-box-shadow:none;
  7020. box-shadow:none;
  7021. font-size:11px;
  7022. color:#AAAAAA;
  7023. }
  7024. #u1408.disabled {
  7025. }
  7026. .u1408_input_option {
  7027. font-size:11px;
  7028. }
  7029. #u1409 {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:0px;
  7033. top:0px;
  7034. width:0px;
  7035. height:0px;
  7036. }
  7037. #u1410_div {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:140px;
  7043. height:30px;
  7044. background:inherit;
  7045. background-color:rgba(255, 255, 255, 1);
  7046. box-sizing:border-box;
  7047. border-width:1px;
  7048. border-style:solid;
  7049. border-color:rgba(215, 215, 215, 1);
  7050. border-radius:4px;
  7051. -moz-box-shadow:none;
  7052. -webkit-box-shadow:none;
  7053. box-shadow:none;
  7054. font-size:11px;
  7055. }
  7056. #u1410 {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:956px;
  7060. top:100px;
  7061. width:140px;
  7062. height:30px;
  7063. display:flex;
  7064. font-size:11px;
  7065. }
  7066. #u1410 .text {
  7067. position:absolute;
  7068. align-self:center;
  7069. padding:2px 2px 2px 2px;
  7070. box-sizing:border-box;
  7071. width:100%;
  7072. }
  7073. #u1410_text {
  7074. border-width:0px;
  7075. word-wrap:break-word;
  7076. text-transform:none;
  7077. visibility:hidden;
  7078. }
  7079. #u1411_input {
  7080. position:absolute;
  7081. left:0px;
  7082. top:0px;
  7083. width:126px;
  7084. height:23px;
  7085. padding:2px 2px 2px 2px;
  7086. font-family:'ArialMT', 'Arial', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:11px;
  7090. letter-spacing:normal;
  7091. color:#AAAAAA;
  7092. vertical-align:none;
  7093. text-align:left;
  7094. text-transform:none;
  7095. background-color:transparent;
  7096. border-color:transparent;
  7097. }
  7098. #u1411_input.disabled {
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:126px;
  7103. height:23px;
  7104. padding:2px 2px 2px 2px;
  7105. font-family:'ArialMT', 'Arial', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:11px;
  7109. letter-spacing:normal;
  7110. color:#AAAAAA;
  7111. vertical-align:none;
  7112. text-align:left;
  7113. text-transform:none;
  7114. background-color:transparent;
  7115. border-color:transparent;
  7116. }
  7117. #u1411_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:126px;
  7123. height:23px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 1);
  7126. border:none;
  7127. border-radius:0px;
  7128. -moz-box-shadow:none;
  7129. -webkit-box-shadow:none;
  7130. box-shadow:none;
  7131. font-size:11px;
  7132. color:#AAAAAA;
  7133. }
  7134. #u1411 {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:963px;
  7138. top:102px;
  7139. width:126px;
  7140. height:23px;
  7141. display:flex;
  7142. font-size:11px;
  7143. color:#AAAAAA;
  7144. }
  7145. #u1411 .text {
  7146. position:absolute;
  7147. align-self:flex-start;
  7148. padding:2px 2px 2px 2px;
  7149. box-sizing:border-box;
  7150. width:100%;
  7151. }
  7152. #u1411_div.disabled {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:126px;
  7158. height:23px;
  7159. background:inherit;
  7160. background-color:rgba(240, 240, 240, 1);
  7161. border:none;
  7162. border-radius:0px;
  7163. -moz-box-shadow:none;
  7164. -webkit-box-shadow:none;
  7165. box-shadow:none;
  7166. font-size:11px;
  7167. color:#AAAAAA;
  7168. }
  7169. #u1411.disabled {
  7170. }
  7171. .u1411_input_option {
  7172. font-size:11px;
  7173. }
  7174. #u1412 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:0px;
  7180. height:0px;
  7181. }
  7182. #u1413_div {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:0px;
  7186. top:0px;
  7187. width:140px;
  7188. height:30px;
  7189. background:inherit;
  7190. background-color:rgba(255, 255, 255, 1);
  7191. box-sizing:border-box;
  7192. border-width:1px;
  7193. border-style:solid;
  7194. border-color:rgba(201, 201, 201, 1);
  7195. border-radius:4px;
  7196. -moz-box-shadow:none;
  7197. -webkit-box-shadow:none;
  7198. box-shadow:none;
  7199. font-family:'Microsoft YaHei', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:14px;
  7203. color:#CCCCCC;
  7204. text-align:left;
  7205. }
  7206. #u1413 {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:506px;
  7210. top:100px;
  7211. width:140px;
  7212. height:30px;
  7213. display:flex;
  7214. font-family:'Microsoft YaHei', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:14px;
  7218. color:#CCCCCC;
  7219. text-align:left;
  7220. }
  7221. #u1413 .text {
  7222. position:absolute;
  7223. align-self:center;
  7224. padding:2px 8px 2px 8px;
  7225. box-sizing:border-box;
  7226. width:100%;
  7227. }
  7228. #u1413_text {
  7229. border-width:0px;
  7230. word-wrap:break-word;
  7231. text-transform:none;
  7232. visibility:hidden;
  7233. }
  7234. #u1414_input {
  7235. position:absolute;
  7236. left:0px;
  7237. top:0px;
  7238. width:127px;
  7239. height:25px;
  7240. padding:2px 2px 2px 2px;
  7241. font-family:'Microsoft YaHei', sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:10px;
  7245. letter-spacing:normal;
  7246. color:#000000;
  7247. vertical-align:none;
  7248. text-align:left;
  7249. text-transform:none;
  7250. background-color:transparent;
  7251. border-color:transparent;
  7252. }
  7253. #u1414_input.disabled {
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:127px;
  7258. height:25px;
  7259. padding:2px 2px 2px 2px;
  7260. font-family:'Microsoft YaHei', sans-serif;
  7261. font-weight:400;
  7262. font-style:normal;
  7263. font-size:10px;
  7264. letter-spacing:normal;
  7265. color:#000000;
  7266. vertical-align:none;
  7267. text-align:left;
  7268. text-transform:none;
  7269. background-color:transparent;
  7270. border-color:transparent;
  7271. }
  7272. #u1414_div {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:127px;
  7278. height:25px;
  7279. background:inherit;
  7280. background-color:rgba(255, 255, 255, 1);
  7281. border:none;
  7282. border-radius:0px;
  7283. -moz-box-shadow:none;
  7284. -webkit-box-shadow:none;
  7285. box-shadow:none;
  7286. font-family:'Microsoft YaHei', sans-serif;
  7287. font-weight:400;
  7288. font-style:normal;
  7289. font-size:10px;
  7290. }
  7291. #u1414 {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:514px;
  7295. top:101px;
  7296. width:127px;
  7297. height:25px;
  7298. display:flex;
  7299. font-family:'Microsoft YaHei', sans-serif;
  7300. font-weight:400;
  7301. font-style:normal;
  7302. font-size:10px;
  7303. }
  7304. #u1414 .text {
  7305. position:absolute;
  7306. align-self:center;
  7307. padding:2px 2px 2px 2px;
  7308. box-sizing:border-box;
  7309. width:100%;
  7310. }
  7311. #u1414_div.disabled {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:127px;
  7317. height:25px;
  7318. background:inherit;
  7319. background-color:rgba(240, 240, 240, 1);
  7320. border:none;
  7321. border-radius:0px;
  7322. -moz-box-shadow:none;
  7323. -webkit-box-shadow:none;
  7324. box-shadow:none;
  7325. font-family:'Microsoft YaHei', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:10px;
  7329. }
  7330. #u1414.disabled {
  7331. }
  7332. #u1415 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:0px;
  7336. top:0px;
  7337. width:0px;
  7338. height:0px;
  7339. }
  7340. #u1416_div {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:0px;
  7345. width:140px;
  7346. height:30px;
  7347. background:inherit;
  7348. background-color:rgba(255, 255, 255, 1);
  7349. box-sizing:border-box;
  7350. border-width:1px;
  7351. border-style:solid;
  7352. border-color:rgba(201, 201, 201, 1);
  7353. border-radius:4px;
  7354. -moz-box-shadow:none;
  7355. -webkit-box-shadow:none;
  7356. box-shadow:none;
  7357. font-family:'Microsoft YaHei', sans-serif;
  7358. font-weight:400;
  7359. font-style:normal;
  7360. font-size:14px;
  7361. color:#CCCCCC;
  7362. text-align:left;
  7363. }
  7364. #u1416 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:806px;
  7368. top:100px;
  7369. width:140px;
  7370. height:30px;
  7371. display:flex;
  7372. font-family:'Microsoft YaHei', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:14px;
  7376. color:#CCCCCC;
  7377. text-align:left;
  7378. }
  7379. #u1416 .text {
  7380. position:absolute;
  7381. align-self:center;
  7382. padding:2px 8px 2px 8px;
  7383. box-sizing:border-box;
  7384. width:100%;
  7385. }
  7386. #u1416_text {
  7387. border-width:0px;
  7388. word-wrap:break-word;
  7389. text-transform:none;
  7390. visibility:hidden;
  7391. }
  7392. #u1417_input {
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:127px;
  7397. height:25px;
  7398. padding:2px 2px 2px 2px;
  7399. font-family:'Microsoft YaHei', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:10px;
  7403. letter-spacing:normal;
  7404. color:#000000;
  7405. vertical-align:none;
  7406. text-align:left;
  7407. text-transform:none;
  7408. background-color:transparent;
  7409. border-color:transparent;
  7410. }
  7411. #u1417_input.disabled {
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:127px;
  7416. height:25px;
  7417. padding:2px 2px 2px 2px;
  7418. font-family:'Microsoft YaHei', sans-serif;
  7419. font-weight:400;
  7420. font-style:normal;
  7421. font-size:10px;
  7422. letter-spacing:normal;
  7423. color:#000000;
  7424. vertical-align:none;
  7425. text-align:left;
  7426. text-transform:none;
  7427. background-color:transparent;
  7428. border-color:transparent;
  7429. }
  7430. #u1417_div {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:127px;
  7436. height:25px;
  7437. background:inherit;
  7438. background-color:rgba(255, 255, 255, 1);
  7439. border:none;
  7440. border-radius:0px;
  7441. -moz-box-shadow:none;
  7442. -webkit-box-shadow:none;
  7443. box-shadow:none;
  7444. font-family:'Microsoft YaHei', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:10px;
  7448. }
  7449. #u1417 {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:814px;
  7453. top:101px;
  7454. width:127px;
  7455. height:25px;
  7456. display:flex;
  7457. font-family:'Microsoft YaHei', sans-serif;
  7458. font-weight:400;
  7459. font-style:normal;
  7460. font-size:10px;
  7461. }
  7462. #u1417 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:2px 2px 2px 2px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u1417_div.disabled {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:127px;
  7475. height:25px;
  7476. background:inherit;
  7477. background-color:rgba(240, 240, 240, 1);
  7478. border:none;
  7479. border-radius:0px;
  7480. -moz-box-shadow:none;
  7481. -webkit-box-shadow:none;
  7482. box-shadow:none;
  7483. font-family:'Microsoft YaHei', sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:10px;
  7487. }
  7488. #u1417.disabled {
  7489. }
  7490. #u1418 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:0px;
  7494. top:0px;
  7495. width:0px;
  7496. height:0px;
  7497. }
  7498. #u1419_div {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:0px;
  7502. top:0px;
  7503. width:140px;
  7504. height:30px;
  7505. background:inherit;
  7506. background-color:rgba(255, 255, 255, 1);
  7507. box-sizing:border-box;
  7508. border-width:1px;
  7509. border-style:solid;
  7510. border-color:rgba(215, 215, 215, 1);
  7511. border-radius:4px;
  7512. -moz-box-shadow:none;
  7513. -webkit-box-shadow:none;
  7514. box-shadow:none;
  7515. font-size:11px;
  7516. }
  7517. #u1419 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:356px;
  7521. top:100px;
  7522. width:140px;
  7523. height:30px;
  7524. display:flex;
  7525. font-size:11px;
  7526. }
  7527. #u1419 .text {
  7528. position:absolute;
  7529. align-self:center;
  7530. padding:2px 2px 2px 2px;
  7531. box-sizing:border-box;
  7532. width:100%;
  7533. }
  7534. #u1419_text {
  7535. border-width:0px;
  7536. word-wrap:break-word;
  7537. text-transform:none;
  7538. visibility:hidden;
  7539. }
  7540. #u1420_input {
  7541. position:absolute;
  7542. left:0px;
  7543. top:0px;
  7544. width:126px;
  7545. height:23px;
  7546. padding:2px 2px 2px 2px;
  7547. font-family:'ArialMT', 'Arial', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:11px;
  7551. letter-spacing:normal;
  7552. color:#AAAAAA;
  7553. vertical-align:none;
  7554. text-align:left;
  7555. text-transform:none;
  7556. background-color:transparent;
  7557. border-color:transparent;
  7558. }
  7559. #u1420_input.disabled {
  7560. position:absolute;
  7561. left:0px;
  7562. top:0px;
  7563. width:126px;
  7564. height:23px;
  7565. padding:2px 2px 2px 2px;
  7566. font-family:'ArialMT', 'Arial', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:11px;
  7570. letter-spacing:normal;
  7571. color:#AAAAAA;
  7572. vertical-align:none;
  7573. text-align:left;
  7574. text-transform:none;
  7575. background-color:transparent;
  7576. border-color:transparent;
  7577. }
  7578. #u1420_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:126px;
  7584. height:23px;
  7585. background:inherit;
  7586. background-color:rgba(255, 255, 255, 1);
  7587. border:none;
  7588. border-radius:0px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-size:11px;
  7593. color:#AAAAAA;
  7594. }
  7595. #u1420 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:363px;
  7599. top:102px;
  7600. width:126px;
  7601. height:23px;
  7602. display:flex;
  7603. font-size:11px;
  7604. color:#AAAAAA;
  7605. }
  7606. #u1420 .text {
  7607. position:absolute;
  7608. align-self:flex-start;
  7609. padding:2px 2px 2px 2px;
  7610. box-sizing:border-box;
  7611. width:100%;
  7612. }
  7613. #u1420_div.disabled {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:0px;
  7617. top:0px;
  7618. width:126px;
  7619. height:23px;
  7620. background:inherit;
  7621. background-color:rgba(240, 240, 240, 1);
  7622. border:none;
  7623. border-radius:0px;
  7624. -moz-box-shadow:none;
  7625. -webkit-box-shadow:none;
  7626. box-shadow:none;
  7627. font-size:11px;
  7628. color:#AAAAAA;
  7629. }
  7630. #u1420.disabled {
  7631. }
  7632. .u1420_input_option {
  7633. font-size:11px;
  7634. }
  7635. #u1421_div {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:1165px;
  7641. height:120px;
  7642. background:inherit;
  7643. background-color:rgba(255, 255, 255, 0);
  7644. border:none;
  7645. border-left:0px;
  7646. border-top:0px;
  7647. border-right:0px;
  7648. border-radius:0px;
  7649. border-bottom-right-radius:0px;
  7650. border-bottom-left-radius:0px;
  7651. -moz-box-shadow:none;
  7652. -webkit-box-shadow:none;
  7653. box-shadow:none;
  7654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:18px;
  7658. color:#D9001B;
  7659. line-height:40px;
  7660. }
  7661. #u1421 {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:355px;
  7665. top:599px;
  7666. width:1165px;
  7667. height:120px;
  7668. display:flex;
  7669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7670. font-weight:400;
  7671. font-style:normal;
  7672. font-size:18px;
  7673. color:#D9001B;
  7674. line-height:40px;
  7675. }
  7676. #u1421 .text {
  7677. position:absolute;
  7678. align-self:center;
  7679. padding:0px 0px 0px 0px;
  7680. box-sizing:border-box;
  7681. width:100%;
  7682. }
  7683. #u1421_text {
  7684. border-width:0px;
  7685. white-space:nowrap;
  7686. text-transform:none;
  7687. }
  7688. #u1422 {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:0px;
  7692. top:0px;
  7693. width:0px;
  7694. height:0px;
  7695. }
  7696. #u1423_div {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:0px;
  7700. top:0px;
  7701. width:140px;
  7702. height:30px;
  7703. background:inherit;
  7704. background-color:rgba(255, 255, 255, 1);
  7705. box-sizing:border-box;
  7706. border-width:1px;
  7707. border-style:solid;
  7708. border-color:rgba(215, 215, 215, 1);
  7709. border-radius:4px;
  7710. -moz-box-shadow:none;
  7711. -webkit-box-shadow:none;
  7712. box-shadow:none;
  7713. font-size:11px;
  7714. }
  7715. #u1423 {
  7716. border-width:0px;
  7717. position:absolute;
  7718. left:656px;
  7719. top:100px;
  7720. width:140px;
  7721. height:30px;
  7722. display:flex;
  7723. font-size:11px;
  7724. }
  7725. #u1423 .text {
  7726. position:absolute;
  7727. align-self:center;
  7728. padding:2px 2px 2px 2px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u1423_text {
  7733. border-width:0px;
  7734. word-wrap:break-word;
  7735. text-transform:none;
  7736. visibility:hidden;
  7737. }
  7738. #u1424_input {
  7739. position:absolute;
  7740. left:0px;
  7741. top:0px;
  7742. width:126px;
  7743. height:23px;
  7744. padding:2px 2px 2px 2px;
  7745. font-family:'ArialMT', 'Arial', sans-serif;
  7746. font-weight:400;
  7747. font-style:normal;
  7748. font-size:11px;
  7749. letter-spacing:normal;
  7750. color:#AAAAAA;
  7751. vertical-align:none;
  7752. text-align:left;
  7753. text-transform:none;
  7754. background-color:transparent;
  7755. border-color:transparent;
  7756. }
  7757. #u1424_input.disabled {
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:126px;
  7762. height:23px;
  7763. padding:2px 2px 2px 2px;
  7764. font-family:'ArialMT', 'Arial', sans-serif;
  7765. font-weight:400;
  7766. font-style:normal;
  7767. font-size:11px;
  7768. letter-spacing:normal;
  7769. color:#AAAAAA;
  7770. vertical-align:none;
  7771. text-align:left;
  7772. text-transform:none;
  7773. background-color:transparent;
  7774. border-color:transparent;
  7775. }
  7776. #u1424_div {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:126px;
  7782. height:23px;
  7783. background:inherit;
  7784. background-color:rgba(255, 255, 255, 1);
  7785. border:none;
  7786. border-radius:0px;
  7787. -moz-box-shadow:none;
  7788. -webkit-box-shadow:none;
  7789. box-shadow:none;
  7790. font-size:11px;
  7791. color:#AAAAAA;
  7792. }
  7793. #u1424 {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:663px;
  7797. top:102px;
  7798. width:126px;
  7799. height:23px;
  7800. display:flex;
  7801. font-size:11px;
  7802. color:#AAAAAA;
  7803. }
  7804. #u1424 .text {
  7805. position:absolute;
  7806. align-self:flex-start;
  7807. padding:2px 2px 2px 2px;
  7808. box-sizing:border-box;
  7809. width:100%;
  7810. }
  7811. #u1424_div.disabled {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:126px;
  7817. height:23px;
  7818. background:inherit;
  7819. background-color:rgba(240, 240, 240, 1);
  7820. border:none;
  7821. border-radius:0px;
  7822. -moz-box-shadow:none;
  7823. -webkit-box-shadow:none;
  7824. box-shadow:none;
  7825. font-size:11px;
  7826. color:#AAAAAA;
  7827. }
  7828. #u1424.disabled {
  7829. }
  7830. .u1424_input_option {
  7831. font-size:11px;
  7832. }
  7833. #u1425 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:0px;
  7837. top:0px;
  7838. width:0px;
  7839. height:0px;
  7840. }
  7841. #u1426_div {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:200px;
  7847. height:1180px;
  7848. background:inherit;
  7849. background-color:rgba(255, 255, 255, 1);
  7850. border:none;
  7851. border-radius:0px;
  7852. -moz-box-shadow:none;
  7853. -webkit-box-shadow:none;
  7854. box-shadow:none;
  7855. }
  7856. #u1426 {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:120px;
  7860. top:50px;
  7861. width:200px;
  7862. height:1180px;
  7863. display:flex;
  7864. }
  7865. #u1426 .text {
  7866. position:absolute;
  7867. align-self:center;
  7868. padding:2px 2px 2px 2px;
  7869. box-sizing:border-box;
  7870. width:100%;
  7871. }
  7872. #u1426_text {
  7873. border-width:0px;
  7874. word-wrap:break-word;
  7875. text-transform:none;
  7876. visibility:hidden;
  7877. }
  7878. #u1427_div {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:0px;
  7882. top:0px;
  7883. width:200px;
  7884. height:60px;
  7885. background:inherit;
  7886. background-color:rgba(224, 231, 247, 1);
  7887. border:none;
  7888. border-radius:0px;
  7889. -moz-box-shadow:none;
  7890. -webkit-box-shadow:none;
  7891. box-shadow:none;
  7892. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7893. font-weight:500;
  7894. font-style:normal;
  7895. font-size:18px;
  7896. }
  7897. #u1427 {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:120px;
  7901. top:50px;
  7902. width:200px;
  7903. height:60px;
  7904. display:flex;
  7905. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7906. font-weight:500;
  7907. font-style:normal;
  7908. font-size:18px;
  7909. }
  7910. #u1427 .text {
  7911. position:absolute;
  7912. align-self:center;
  7913. padding:0px 0px 0px 20px;
  7914. box-sizing:border-box;
  7915. width:100%;
  7916. }
  7917. #u1427_text {
  7918. border-width:0px;
  7919. word-wrap:break-word;
  7920. text-transform:none;
  7921. }
  7922. #u1428_div {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:0px;
  7926. top:0px;
  7927. width:65px;
  7928. height:22px;
  7929. background:inherit;
  7930. background-color:rgba(255, 255, 255, 0);
  7931. border:none;
  7932. border-radius:0px;
  7933. -moz-box-shadow:none;
  7934. -webkit-box-shadow:none;
  7935. box-shadow:none;
  7936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:16px;
  7940. }
  7941. #u1428 {
  7942. border-width:0px;
  7943. position:absolute;
  7944. left:147px;
  7945. top:167px;
  7946. width:65px;
  7947. height:22px;
  7948. display:flex;
  7949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7950. font-weight:400;
  7951. font-style:normal;
  7952. font-size:16px;
  7953. }
  7954. #u1428 .text {
  7955. position:absolute;
  7956. align-self:flex-start;
  7957. padding:0px 0px 0px 0px;
  7958. box-sizing:border-box;
  7959. width:100%;
  7960. }
  7961. #u1428_text {
  7962. border-width:0px;
  7963. white-space:nowrap;
  7964. text-transform:none;
  7965. }
  7966. #u1429_div {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:0px;
  7970. top:0px;
  7971. width:65px;
  7972. height:22px;
  7973. background:inherit;
  7974. background-color:rgba(255, 255, 255, 0);
  7975. border:none;
  7976. border-radius:0px;
  7977. -moz-box-shadow:none;
  7978. -webkit-box-shadow:none;
  7979. box-shadow:none;
  7980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. font-size:16px;
  7984. }
  7985. #u1429 {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:147px;
  7989. top:251px;
  7990. width:65px;
  7991. height:22px;
  7992. display:flex;
  7993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7994. font-weight:400;
  7995. font-style:normal;
  7996. font-size:16px;
  7997. }
  7998. #u1429 .text {
  7999. position:absolute;
  8000. align-self:flex-start;
  8001. padding:0px 0px 0px 0px;
  8002. box-sizing:border-box;
  8003. width:100%;
  8004. }
  8005. #u1429_text {
  8006. border-width:0px;
  8007. white-space:nowrap;
  8008. text-transform:none;
  8009. }
  8010. #u1430_div {
  8011. border-width:0px;
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:49px;
  8016. height:17px;
  8017. background:inherit;
  8018. background-color:rgba(255, 255, 255, 0);
  8019. border:none;
  8020. border-radius:0px;
  8021. -moz-box-shadow:none;
  8022. -webkit-box-shadow:none;
  8023. box-shadow:none;
  8024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8025. font-weight:400;
  8026. font-style:normal;
  8027. font-size:12px;
  8028. color:#AAAAAA;
  8029. }
  8030. #u1430 {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:147px;
  8034. top:130px;
  8035. width:49px;
  8036. height:17px;
  8037. display:flex;
  8038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8039. font-weight:400;
  8040. font-style:normal;
  8041. font-size:12px;
  8042. color:#AAAAAA;
  8043. }
  8044. #u1430 .text {
  8045. position:absolute;
  8046. align-self:flex-start;
  8047. padding:0px 0px 0px 0px;
  8048. box-sizing:border-box;
  8049. width:100%;
  8050. }
  8051. #u1430_text {
  8052. border-width:0px;
  8053. white-space:nowrap;
  8054. text-transform:none;
  8055. }
  8056. #u1431_div {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:0px;
  8060. top:0px;
  8061. width:65px;
  8062. height:22px;
  8063. background:inherit;
  8064. background-color:rgba(255, 255, 255, 0);
  8065. border:none;
  8066. border-radius:0px;
  8067. -moz-box-shadow:none;
  8068. -webkit-box-shadow:none;
  8069. box-shadow:none;
  8070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8071. font-weight:400;
  8072. font-style:normal;
  8073. font-size:16px;
  8074. }
  8075. #u1431 {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:147px;
  8079. top:209px;
  8080. width:65px;
  8081. height:22px;
  8082. display:flex;
  8083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8084. font-weight:400;
  8085. font-style:normal;
  8086. font-size:16px;
  8087. }
  8088. #u1431 .text {
  8089. position:absolute;
  8090. align-self:flex-start;
  8091. padding:0px 0px 0px 0px;
  8092. box-sizing:border-box;
  8093. width:100%;
  8094. }
  8095. #u1431_text {
  8096. border-width:0px;
  8097. white-space:nowrap;
  8098. text-transform:none;
  8099. }
  8100. #u1432_div {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:0px;
  8104. top:0px;
  8105. width:49px;
  8106. height:22px;
  8107. background:inherit;
  8108. background-color:rgba(255, 255, 255, 0);
  8109. border:none;
  8110. border-radius:0px;
  8111. -moz-box-shadow:none;
  8112. -webkit-box-shadow:none;
  8113. box-shadow:none;
  8114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:16px;
  8118. }
  8119. #u1432 {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:147px;
  8123. top:354px;
  8124. width:49px;
  8125. height:22px;
  8126. display:flex;
  8127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8128. font-weight:400;
  8129. font-style:normal;
  8130. font-size:16px;
  8131. }
  8132. #u1432 .text {
  8133. position:absolute;
  8134. align-self:flex-start;
  8135. padding:0px 0px 0px 0px;
  8136. box-sizing:border-box;
  8137. width:100%;
  8138. }
  8139. #u1432_text {
  8140. border-width:0px;
  8141. white-space:nowrap;
  8142. text-transform:none;
  8143. }
  8144. #u1433_div {
  8145. border-width:0px;
  8146. position:absolute;
  8147. left:0px;
  8148. top:0px;
  8149. width:37px;
  8150. height:17px;
  8151. background:inherit;
  8152. background-color:rgba(255, 255, 255, 0);
  8153. border:none;
  8154. border-radius:0px;
  8155. -moz-box-shadow:none;
  8156. -webkit-box-shadow:none;
  8157. box-shadow:none;
  8158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8159. font-weight:400;
  8160. font-style:normal;
  8161. font-size:12px;
  8162. color:#AAAAAA;
  8163. }
  8164. #u1433 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:147px;
  8168. top:318px;
  8169. width:37px;
  8170. height:17px;
  8171. display:flex;
  8172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:12px;
  8176. color:#AAAAAA;
  8177. }
  8178. #u1433 .text {
  8179. position:absolute;
  8180. align-self:flex-start;
  8181. padding:0px 0px 0px 0px;
  8182. box-sizing:border-box;
  8183. width:100%;
  8184. }
  8185. #u1433_text {
  8186. border-width:0px;
  8187. white-space:nowrap;
  8188. text-transform:none;
  8189. }
  8190. #u1434_img {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:201px;
  8196. height:2px;
  8197. }
  8198. #u1434 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:120px;
  8202. top:293px;
  8203. width:200px;
  8204. height:1px;
  8205. display:flex;
  8206. }
  8207. #u1434 .text {
  8208. position:absolute;
  8209. align-self:center;
  8210. padding:2px 2px 2px 2px;
  8211. box-sizing:border-box;
  8212. width:100%;
  8213. }
  8214. #u1434_text {
  8215. border-width:0px;
  8216. word-wrap:break-word;
  8217. text-transform:none;
  8218. visibility:hidden;
  8219. }