styles.css 175 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2191px;
  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. #u60546_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. #u60546 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u60546 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u60546_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u60547_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. #u60547 {
  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. #u60547 .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. #u60547_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u60548_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. #u60548 {
  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. #u60548 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u60548_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u60549 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u60550_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u60550 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u60550 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u60550_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u60551_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. #u60551 {
  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. #u60551 .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. #u60551_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u60552_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. #u60552 {
  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. #u60552 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u60552_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u60553 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u60554_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u60554 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u60554 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u60554_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u60555_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u60555 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u60555 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u60555_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u60556 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u60557_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u60557 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u60557 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u60557_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u60558_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u60558 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u60558 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u60558_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u60559 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u60560_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u60560 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u60560 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u60560_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u60561_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u60561 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u60561 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u60561_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u60562 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u60563_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u60563 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u60563 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u60563_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u60564_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u60564 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u60564 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u60564_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u60565 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u60566_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u60566 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u60566 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u60566_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u60567_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u60567 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u60567 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u60567_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u60568 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u60569_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u60569 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u60569 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u60569_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u60570_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u60570 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u60570 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u60570_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u60571 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u60572_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u60572 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u60572 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u60572_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u60573_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u60573 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u60573 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u60573_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u60574 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u60575_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u60575 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u60575 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u60575_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u60576_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u60576 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u60576 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u60576_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u60577 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u60578_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u60578 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u60578 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u60578_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u60579_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u60579 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u60579 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u60579_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u60580_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u60580 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u60580 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u60580_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u60581_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u60581 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u60581 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u60581_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u60582_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u60582 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u60582 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u60582_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u60583_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u60583 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u60583 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u60583_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u60584 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u60585_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u60585 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u60585 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u60585_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u60586_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u60586 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u60586 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u60586_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u60587 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u60588_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u60588 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u60588 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u60588_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u60589_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u60589 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u60589 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u60589_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u60590 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u60591_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u60591_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u60591_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u60591 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u60591 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u60591_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u60591.disabled {
  1428. }
  1429. .u60591_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u60592_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u60592 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u60592 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u60592_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u60593_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u60593 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u60593 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u60593_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u60594_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u60594 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u60594 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u60594_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u60595_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1259px;
  1544. height:1060px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. box-sizing:border-box;
  1548. border-width:1px;
  1549. border-style:solid;
  1550. border-color:rgba(242, 242, 242, 1);
  1551. border-radius:0px;
  1552. -moz-box-shadow:none;
  1553. -webkit-box-shadow:none;
  1554. box-shadow:none;
  1555. }
  1556. #u60595 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:332px;
  1560. top:150px;
  1561. width:1259px;
  1562. height:1060px;
  1563. display:flex;
  1564. }
  1565. #u60595 .text {
  1566. position:absolute;
  1567. align-self:center;
  1568. padding:2px 2px 2px 2px;
  1569. box-sizing:border-box;
  1570. width:100%;
  1571. }
  1572. #u60595_text {
  1573. border-width:0px;
  1574. word-wrap:break-word;
  1575. text-transform:none;
  1576. visibility:hidden;
  1577. }
  1578. #u60596 {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:356px;
  1582. top:299px;
  1583. width:1835px;
  1584. height:208px;
  1585. }
  1586. #u60597_img {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:44px;
  1592. height:44px;
  1593. }
  1594. #u60597 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:44px;
  1600. height:44px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:14px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u60597 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:2px 2px 2px 2px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u60597_text {
  1616. border-width:0px;
  1617. word-wrap:break-word;
  1618. text-transform:none;
  1619. }
  1620. #u60598_img {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:77px;
  1626. height:44px;
  1627. }
  1628. #u60598 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:44px;
  1632. top:0px;
  1633. width:77px;
  1634. height:44px;
  1635. display:flex;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:14px;
  1640. color:#FFFFFF;
  1641. }
  1642. #u60598 .text {
  1643. position:absolute;
  1644. align-self:center;
  1645. padding:2px 2px 2px 2px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u60598_text {
  1650. border-width:0px;
  1651. word-wrap:break-word;
  1652. text-transform:none;
  1653. }
  1654. #u60599_img {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:77px;
  1660. height:44px;
  1661. }
  1662. #u60599 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:121px;
  1666. top:0px;
  1667. width:77px;
  1668. height:44px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:14px;
  1674. color:#FFFFFF;
  1675. }
  1676. #u60599 .text {
  1677. position:absolute;
  1678. align-self:center;
  1679. padding:2px 2px 2px 2px;
  1680. box-sizing:border-box;
  1681. width:100%;
  1682. }
  1683. #u60599_text {
  1684. border-width:0px;
  1685. word-wrap:break-word;
  1686. text-transform:none;
  1687. }
  1688. #u60600_img {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:77px;
  1694. height:44px;
  1695. }
  1696. #u60600 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:198px;
  1700. top:0px;
  1701. width:77px;
  1702. height:44px;
  1703. display:flex;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:14px;
  1708. color:#FFFFFF;
  1709. }
  1710. #u60600 .text {
  1711. position:absolute;
  1712. align-self:center;
  1713. padding:2px 2px 2px 2px;
  1714. box-sizing:border-box;
  1715. width:100%;
  1716. }
  1717. #u60600_text {
  1718. border-width:0px;
  1719. word-wrap:break-word;
  1720. text-transform:none;
  1721. }
  1722. #u60601_img {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:78px;
  1728. height:44px;
  1729. }
  1730. #u60601 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:275px;
  1734. top:0px;
  1735. width:78px;
  1736. height:44px;
  1737. display:flex;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. color:#FFFFFF;
  1743. }
  1744. #u60601 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:2px 2px 2px 2px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u60601_text {
  1752. border-width:0px;
  1753. word-wrap:break-word;
  1754. text-transform:none;
  1755. }
  1756. #u60602_img {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:77px;
  1762. height:44px;
  1763. }
  1764. #u60602 {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:353px;
  1768. top:0px;
  1769. width:77px;
  1770. height:44px;
  1771. display:flex;
  1772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1773. font-weight:400;
  1774. font-style:normal;
  1775. font-size:14px;
  1776. color:#FFFFFF;
  1777. }
  1778. #u60602 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 2px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u60602_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. }
  1790. #u60603_img {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:76px;
  1796. height:44px;
  1797. }
  1798. #u60603 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:430px;
  1802. top:0px;
  1803. width:76px;
  1804. height:44px;
  1805. display:flex;
  1806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:14px;
  1810. color:#FFFFFF;
  1811. }
  1812. #u60603 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 2px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u60603_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. }
  1824. #u60604_img {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:76px;
  1830. height:44px;
  1831. }
  1832. #u60604 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:506px;
  1836. top:0px;
  1837. width:76px;
  1838. height:44px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:14px;
  1844. color:#FFFFFF;
  1845. }
  1846. #u60604 .text {
  1847. position:absolute;
  1848. align-self:center;
  1849. padding:2px 2px 2px 2px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u60604_text {
  1854. border-width:0px;
  1855. word-wrap:break-word;
  1856. text-transform:none;
  1857. }
  1858. #u60605_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:76px;
  1864. height:44px;
  1865. }
  1866. #u60605 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:582px;
  1870. top:0px;
  1871. width:76px;
  1872. height:44px;
  1873. display:flex;
  1874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1875. font-weight:400;
  1876. font-style:normal;
  1877. font-size:14px;
  1878. color:#FFFFFF;
  1879. }
  1880. #u60605 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u60605_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. }
  1892. #u60606_img {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:76px;
  1898. height:44px;
  1899. }
  1900. #u60606 {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:658px;
  1904. top:0px;
  1905. width:76px;
  1906. height:44px;
  1907. display:flex;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:14px;
  1912. color:#FFFFFF;
  1913. }
  1914. #u60606 .text {
  1915. position:absolute;
  1916. align-self:center;
  1917. padding:2px 2px 2px 2px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u60606_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. }
  1926. #u60607_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:78px;
  1932. height:44px;
  1933. }
  1934. #u60607 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:734px;
  1938. top:0px;
  1939. width:78px;
  1940. height:44px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:14px;
  1946. color:#FFFFFF;
  1947. }
  1948. #u60607 .text {
  1949. position:absolute;
  1950. align-self:center;
  1951. padding:2px 2px 2px 2px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u60607_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. }
  1960. #u60608_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:77px;
  1966. height:44px;
  1967. }
  1968. #u60608 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:812px;
  1972. top:0px;
  1973. width:77px;
  1974. height:44px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:14px;
  1980. color:#FFFFFF;
  1981. }
  1982. #u60608 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 2px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u60608_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. }
  1994. #u60609_img {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:77px;
  2000. height:44px;
  2001. }
  2002. #u60609 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:889px;
  2006. top:0px;
  2007. width:77px;
  2008. height:44px;
  2009. display:flex;
  2010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2011. font-weight:400;
  2012. font-style:normal;
  2013. font-size:14px;
  2014. color:#FFFFFF;
  2015. }
  2016. #u60609 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 2px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u60609_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. }
  2028. #u60610_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:77px;
  2034. height:44px;
  2035. }
  2036. #u60610 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:966px;
  2040. top:0px;
  2041. width:77px;
  2042. height:44px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:14px;
  2048. color:#FFFFFF;
  2049. }
  2050. #u60610 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 2px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u60610_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u60611_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:77px;
  2068. height:44px;
  2069. }
  2070. #u60611 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:1043px;
  2074. top:0px;
  2075. width:77px;
  2076. height:44px;
  2077. display:flex;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:14px;
  2082. color:#FFFFFF;
  2083. }
  2084. #u60611 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u60611_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. }
  2096. #u60612_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:77px;
  2102. height:44px;
  2103. }
  2104. #u60612 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:1120px;
  2108. top:0px;
  2109. width:77px;
  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:14px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u60612 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u60612_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u60613_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:80px;
  2136. height:44px;
  2137. }
  2138. #u60613 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:1197px;
  2142. top:0px;
  2143. width:80px;
  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:14px;
  2150. color:#FFFFFF;
  2151. }
  2152. #u60613 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 2px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u60613_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. }
  2164. #u60614_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:77px;
  2170. height:44px;
  2171. }
  2172. #u60614 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:1277px;
  2176. top:0px;
  2177. width:77px;
  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:14px;
  2184. color:#FFFFFF;
  2185. }
  2186. #u60614 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 2px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u60614_text {
  2194. border-width:0px;
  2195. word-wrap:break-word;
  2196. text-transform:none;
  2197. }
  2198. #u60615_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:80px;
  2204. height:44px;
  2205. }
  2206. #u60615 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:1354px;
  2210. top:0px;
  2211. width:80px;
  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:14px;
  2218. color:#FFFFFF;
  2219. }
  2220. #u60615 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 2px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u60615_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. }
  2232. #u60616_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:77px;
  2238. height:44px;
  2239. }
  2240. #u60616 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:1434px;
  2244. top:0px;
  2245. width:77px;
  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:14px;
  2252. color:#FFFFFF;
  2253. }
  2254. #u60616 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 2px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u60616_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. }
  2266. #u60617_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:80px;
  2272. height:44px;
  2273. }
  2274. #u60617 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:1511px;
  2278. top:0px;
  2279. width:80px;
  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:14px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u60617 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 2px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u60617_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. }
  2300. #u60618_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:77px;
  2306. height:44px;
  2307. }
  2308. #u60618 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:1591px;
  2312. top:0px;
  2313. width:77px;
  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:14px;
  2320. color:#FFFFFF;
  2321. }
  2322. #u60618 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 2px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u60618_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u60619_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:80px;
  2340. height:44px;
  2341. }
  2342. #u60619 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:1668px;
  2346. top:0px;
  2347. width:80px;
  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:14px;
  2354. color:#FFFFFF;
  2355. }
  2356. #u60619 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 2px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u60619_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. }
  2368. #u60620_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:87px;
  2374. height:44px;
  2375. }
  2376. #u60620 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:1748px;
  2380. top:0px;
  2381. width:87px;
  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:14px;
  2388. color:#FFFFFF;
  2389. }
  2390. #u60620 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 2px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u60620_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. }
  2402. #u60621_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:44px;
  2408. height:44px;
  2409. }
  2410. #u60621 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:44px;
  2415. width:44px;
  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:14px;
  2422. }
  2423. #u60621 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 2px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u60621_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. }
  2435. #u60622_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:77px;
  2441. height:44px;
  2442. }
  2443. #u60622 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:44px;
  2447. top:44px;
  2448. width:77px;
  2449. height:44px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:14px;
  2455. }
  2456. #u60622 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 2px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u60622_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u60623_img {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:77px;
  2474. height:44px;
  2475. }
  2476. #u60623 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:121px;
  2480. top:44px;
  2481. width:77px;
  2482. height:44px;
  2483. display:flex;
  2484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2485. font-weight:400;
  2486. font-style:normal;
  2487. font-size:14px;
  2488. }
  2489. #u60623 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 2px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u60623_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. }
  2501. #u60624_img {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:77px;
  2507. height:44px;
  2508. }
  2509. #u60624 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:198px;
  2513. top:44px;
  2514. width:77px;
  2515. height:44px;
  2516. display:flex;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:14px;
  2521. }
  2522. #u60624 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:2px 2px 2px 2px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u60624_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. }
  2534. #u60625_img {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:78px;
  2540. height:44px;
  2541. }
  2542. #u60625 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:275px;
  2546. top:44px;
  2547. width:78px;
  2548. height:44px;
  2549. display:flex;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. font-size:14px;
  2554. }
  2555. #u60625 .text {
  2556. position:absolute;
  2557. align-self:center;
  2558. padding:2px 2px 2px 2px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u60625_text {
  2563. border-width:0px;
  2564. word-wrap:break-word;
  2565. text-transform:none;
  2566. visibility:hidden;
  2567. }
  2568. #u60626_img {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:77px;
  2574. height:44px;
  2575. }
  2576. #u60626 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:353px;
  2580. top:44px;
  2581. width:77px;
  2582. height:44px;
  2583. display:flex;
  2584. font-size:14px;
  2585. }
  2586. #u60626 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 2px 2px 2px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u60626_text {
  2594. border-width:0px;
  2595. word-wrap:break-word;
  2596. text-transform:none;
  2597. visibility:hidden;
  2598. }
  2599. #u60627_img {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:76px;
  2605. height:44px;
  2606. }
  2607. #u60627 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:430px;
  2611. top:44px;
  2612. width:76px;
  2613. height:44px;
  2614. display:flex;
  2615. font-size:14px;
  2616. }
  2617. #u60627 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:2px 2px 2px 2px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u60627_text {
  2625. border-width:0px;
  2626. word-wrap:break-word;
  2627. text-transform:none;
  2628. visibility:hidden;
  2629. }
  2630. #u60628_img {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:76px;
  2636. height:44px;
  2637. }
  2638. #u60628 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:506px;
  2642. top:44px;
  2643. width:76px;
  2644. height:44px;
  2645. display:flex;
  2646. font-size:14px;
  2647. }
  2648. #u60628 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 2px 2px 2px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u60628_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u60629_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:76px;
  2667. height:44px;
  2668. }
  2669. #u60629 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:582px;
  2673. top:44px;
  2674. width:76px;
  2675. height:44px;
  2676. display:flex;
  2677. font-size:14px;
  2678. }
  2679. #u60629 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 2px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u60629_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. visibility:hidden;
  2691. }
  2692. #u60630_img {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:76px;
  2698. height:44px;
  2699. }
  2700. #u60630 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:658px;
  2704. top:44px;
  2705. width:76px;
  2706. height:44px;
  2707. display:flex;
  2708. font-size:14px;
  2709. }
  2710. #u60630 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u60630_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u60631_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:78px;
  2729. height:44px;
  2730. }
  2731. #u60631 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:734px;
  2735. top:44px;
  2736. width:78px;
  2737. height:44px;
  2738. display:flex;
  2739. font-size:14px;
  2740. }
  2741. #u60631 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 2px 2px 2px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u60631_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. visibility:hidden;
  2753. }
  2754. #u60632_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:77px;
  2760. height:44px;
  2761. }
  2762. #u60632 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:812px;
  2766. top:44px;
  2767. width:77px;
  2768. height:44px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:14px;
  2774. }
  2775. #u60632 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u60632_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. }
  2787. #u60633_img {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:77px;
  2793. height:44px;
  2794. }
  2795. #u60633 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:889px;
  2799. top:44px;
  2800. width:77px;
  2801. height:44px;
  2802. display:flex;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. }
  2808. #u60633 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 2px 2px 2px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u60633_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u60634_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:77px;
  2827. height:44px;
  2828. }
  2829. #u60634 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:966px;
  2833. top:44px;
  2834. width:77px;
  2835. height:44px;
  2836. display:flex;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:14px;
  2841. }
  2842. #u60634 .text {
  2843. position:absolute;
  2844. align-self:center;
  2845. padding:2px 2px 2px 2px;
  2846. box-sizing:border-box;
  2847. width:100%;
  2848. }
  2849. #u60634_text {
  2850. border-width:0px;
  2851. word-wrap:break-word;
  2852. text-transform:none;
  2853. }
  2854. #u60635_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:77px;
  2860. height:44px;
  2861. }
  2862. #u60635 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:1043px;
  2866. top:44px;
  2867. width:77px;
  2868. height:44px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:14px;
  2874. }
  2875. #u60635 .text {
  2876. position:absolute;
  2877. align-self:center;
  2878. padding:2px 2px 2px 2px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u60635_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. }
  2887. #u60636_img {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:77px;
  2893. height:44px;
  2894. }
  2895. #u60636 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:1120px;
  2899. top:44px;
  2900. width:77px;
  2901. height:44px;
  2902. display:flex;
  2903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2904. font-weight:400;
  2905. font-style:normal;
  2906. font-size:14px;
  2907. }
  2908. #u60636 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 2px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u60636_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. }
  2920. #u60637_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:80px;
  2926. height:44px;
  2927. }
  2928. #u60637 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:1197px;
  2932. top:44px;
  2933. width:80px;
  2934. height:44px;
  2935. display:flex;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:14px;
  2940. }
  2941. #u60637 .text {
  2942. position:absolute;
  2943. align-self:center;
  2944. padding:2px 2px 2px 2px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u60637_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. visibility:hidden;
  2953. }
  2954. #u60638_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:77px;
  2960. height:44px;
  2961. }
  2962. #u60638 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:1277px;
  2966. top:44px;
  2967. width:77px;
  2968. height:44px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. }
  2975. #u60638 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 2px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u60638_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. visibility:hidden;
  2987. }
  2988. #u60639_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:80px;
  2994. height:44px;
  2995. }
  2996. #u60639 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:1354px;
  3000. top:44px;
  3001. width:80px;
  3002. height:44px;
  3003. display:flex;
  3004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:14px;
  3008. }
  3009. #u60639 .text {
  3010. position:absolute;
  3011. align-self:center;
  3012. padding:2px 2px 2px 2px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u60639_text {
  3017. border-width:0px;
  3018. word-wrap:break-word;
  3019. text-transform:none;
  3020. visibility:hidden;
  3021. }
  3022. #u60640_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:77px;
  3028. height:44px;
  3029. }
  3030. #u60640 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:1434px;
  3034. top:44px;
  3035. width:77px;
  3036. height:44px;
  3037. display:flex;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:14px;
  3042. }
  3043. #u60640 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u60640_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. visibility:hidden;
  3055. }
  3056. #u60641_img {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:80px;
  3062. height:44px;
  3063. }
  3064. #u60641 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:1511px;
  3068. top:44px;
  3069. width:80px;
  3070. height:44px;
  3071. display:flex;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. font-size:14px;
  3076. }
  3077. #u60641 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u60641_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u60642_img {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:77px;
  3096. height:44px;
  3097. }
  3098. #u60642 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:1591px;
  3102. top:44px;
  3103. width:77px;
  3104. height:44px;
  3105. display:flex;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:14px;
  3110. }
  3111. #u60642 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 2px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u60642_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. }
  3123. #u60643_img {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:80px;
  3129. height:44px;
  3130. }
  3131. #u60643 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:1668px;
  3135. top:44px;
  3136. width:80px;
  3137. height:44px;
  3138. display:flex;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:14px;
  3143. }
  3144. #u60643 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 2px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u60643_text {
  3152. border-width:0px;
  3153. word-wrap:break-word;
  3154. text-transform:none;
  3155. visibility:hidden;
  3156. }
  3157. #u60644_img {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:87px;
  3163. height:44px;
  3164. }
  3165. #u60644 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1748px;
  3169. top:44px;
  3170. width:87px;
  3171. height:44px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:14px;
  3177. color:#1890FF;
  3178. }
  3179. #u60644 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:2px 2px 2px 2px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u60644_text {
  3187. border-width:0px;
  3188. word-wrap:break-word;
  3189. text-transform:none;
  3190. }
  3191. #u60645_img {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:44px;
  3197. height:30px;
  3198. }
  3199. #u60645 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:88px;
  3204. width:44px;
  3205. height:30px;
  3206. display:flex;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:14px;
  3211. }
  3212. #u60645 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 2px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u60645_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u60646_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:77px;
  3231. height:30px;
  3232. }
  3233. #u60646 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:44px;
  3237. top:88px;
  3238. width:77px;
  3239. height:30px;
  3240. display:flex;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:14px;
  3245. }
  3246. #u60646 .text {
  3247. position:absolute;
  3248. align-self:center;
  3249. padding:2px 2px 2px 2px;
  3250. box-sizing:border-box;
  3251. width:100%;
  3252. }
  3253. #u60646_text {
  3254. border-width:0px;
  3255. word-wrap:break-word;
  3256. text-transform:none;
  3257. visibility:hidden;
  3258. }
  3259. #u60647_img {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:77px;
  3265. height:30px;
  3266. }
  3267. #u60647 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:121px;
  3271. top:88px;
  3272. width:77px;
  3273. height:30px;
  3274. display:flex;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:14px;
  3279. }
  3280. #u60647 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 2px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u60647_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. visibility:hidden;
  3292. }
  3293. #u60648_img {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:77px;
  3299. height:30px;
  3300. }
  3301. #u60648 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:198px;
  3305. top:88px;
  3306. width:77px;
  3307. height:30px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:14px;
  3313. }
  3314. #u60648 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 2px 2px 2px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u60648_text {
  3322. border-width:0px;
  3323. word-wrap:break-word;
  3324. text-transform:none;
  3325. visibility:hidden;
  3326. }
  3327. #u60649_img {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:78px;
  3333. height:30px;
  3334. }
  3335. #u60649 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:275px;
  3339. top:88px;
  3340. width:78px;
  3341. height:30px;
  3342. display:flex;
  3343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3344. font-weight:400;
  3345. font-style:normal;
  3346. font-size:14px;
  3347. }
  3348. #u60649 .text {
  3349. position:absolute;
  3350. align-self:center;
  3351. padding:2px 2px 2px 2px;
  3352. box-sizing:border-box;
  3353. width:100%;
  3354. }
  3355. #u60649_text {
  3356. border-width:0px;
  3357. word-wrap:break-word;
  3358. text-transform:none;
  3359. visibility:hidden;
  3360. }
  3361. #u60650_img {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:77px;
  3367. height:30px;
  3368. }
  3369. #u60650 {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:353px;
  3373. top:88px;
  3374. width:77px;
  3375. height:30px;
  3376. display:flex;
  3377. font-size:14px;
  3378. }
  3379. #u60650 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 2px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u60650_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. visibility:hidden;
  3391. }
  3392. #u60651_img {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:76px;
  3398. height:30px;
  3399. }
  3400. #u60651 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:430px;
  3404. top:88px;
  3405. width:76px;
  3406. height:30px;
  3407. display:flex;
  3408. font-size:14px;
  3409. }
  3410. #u60651 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 2px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u60651_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u60652_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:76px;
  3429. height:30px;
  3430. }
  3431. #u60652 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:506px;
  3435. top:88px;
  3436. width:76px;
  3437. height:30px;
  3438. display:flex;
  3439. font-size:14px;
  3440. }
  3441. #u60652 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 2px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u60652_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u60653_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:76px;
  3460. height:30px;
  3461. }
  3462. #u60653 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:582px;
  3466. top:88px;
  3467. width:76px;
  3468. height:30px;
  3469. display:flex;
  3470. font-size:14px;
  3471. }
  3472. #u60653 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u60653_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u60654_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:76px;
  3491. height:30px;
  3492. }
  3493. #u60654 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:658px;
  3497. top:88px;
  3498. width:76px;
  3499. height:30px;
  3500. display:flex;
  3501. font-size:14px;
  3502. }
  3503. #u60654 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 2px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u60654_text {
  3511. border-width:0px;
  3512. word-wrap:break-word;
  3513. text-transform:none;
  3514. visibility:hidden;
  3515. }
  3516. #u60655_img {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:78px;
  3522. height:30px;
  3523. }
  3524. #u60655 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:734px;
  3528. top:88px;
  3529. width:78px;
  3530. height:30px;
  3531. display:flex;
  3532. font-size:14px;
  3533. }
  3534. #u60655 .text {
  3535. position:absolute;
  3536. align-self:center;
  3537. padding:2px 2px 2px 2px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u60655_text {
  3542. border-width:0px;
  3543. word-wrap:break-word;
  3544. text-transform:none;
  3545. visibility:hidden;
  3546. }
  3547. #u60656_img {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:77px;
  3553. height:30px;
  3554. }
  3555. #u60656 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:812px;
  3559. top:88px;
  3560. width:77px;
  3561. height:30px;
  3562. display:flex;
  3563. font-size:14px;
  3564. }
  3565. #u60656 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 2px 2px 2px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u60656_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u60657_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:77px;
  3584. height:30px;
  3585. }
  3586. #u60657 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:889px;
  3590. top:88px;
  3591. width:77px;
  3592. height:30px;
  3593. display:flex;
  3594. font-size:14px;
  3595. }
  3596. #u60657 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 2px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u60657_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u60658_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:77px;
  3615. height:30px;
  3616. }
  3617. #u60658 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:966px;
  3621. top:88px;
  3622. width:77px;
  3623. height:30px;
  3624. display:flex;
  3625. font-size:14px;
  3626. }
  3627. #u60658 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 2px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u60658_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. visibility:hidden;
  3639. }
  3640. #u60659_img {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:77px;
  3646. height:30px;
  3647. }
  3648. #u60659 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:1043px;
  3652. top:88px;
  3653. width:77px;
  3654. height:30px;
  3655. display:flex;
  3656. font-size:14px;
  3657. }
  3658. #u60659 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u60659_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u60660_img {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:77px;
  3677. height:30px;
  3678. }
  3679. #u60660 {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:1120px;
  3683. top:88px;
  3684. width:77px;
  3685. height:30px;
  3686. display:flex;
  3687. font-size:14px;
  3688. }
  3689. #u60660 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 2px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u60660_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u60661_img {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:80px;
  3708. height:30px;
  3709. }
  3710. #u60661 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:1197px;
  3714. top:88px;
  3715. width:80px;
  3716. height:30px;
  3717. display:flex;
  3718. font-size:14px;
  3719. }
  3720. #u60661 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u60661_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u60662_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:77px;
  3739. height:30px;
  3740. }
  3741. #u60662 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:1277px;
  3745. top:88px;
  3746. width:77px;
  3747. height:30px;
  3748. display:flex;
  3749. font-size:14px;
  3750. }
  3751. #u60662 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 2px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u60662_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. visibility:hidden;
  3763. }
  3764. #u60663_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:80px;
  3770. height:30px;
  3771. }
  3772. #u60663 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:1354px;
  3776. top:88px;
  3777. width:80px;
  3778. height:30px;
  3779. display:flex;
  3780. font-size:14px;
  3781. }
  3782. #u60663 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:2px 2px 2px 2px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u60663_text {
  3790. border-width:0px;
  3791. word-wrap:break-word;
  3792. text-transform:none;
  3793. visibility:hidden;
  3794. }
  3795. #u60664_img {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:77px;
  3801. height:30px;
  3802. }
  3803. #u60664 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:1434px;
  3807. top:88px;
  3808. width:77px;
  3809. height:30px;
  3810. display:flex;
  3811. font-size:14px;
  3812. }
  3813. #u60664 .text {
  3814. position:absolute;
  3815. align-self:center;
  3816. padding:2px 2px 2px 2px;
  3817. box-sizing:border-box;
  3818. width:100%;
  3819. }
  3820. #u60664_text {
  3821. border-width:0px;
  3822. word-wrap:break-word;
  3823. text-transform:none;
  3824. visibility:hidden;
  3825. }
  3826. #u60665_img {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:0px;
  3830. top:0px;
  3831. width:80px;
  3832. height:30px;
  3833. }
  3834. #u60665 {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:1511px;
  3838. top:88px;
  3839. width:80px;
  3840. height:30px;
  3841. display:flex;
  3842. font-size:14px;
  3843. }
  3844. #u60665 .text {
  3845. position:absolute;
  3846. align-self:center;
  3847. padding:2px 2px 2px 2px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u60665_text {
  3852. border-width:0px;
  3853. word-wrap:break-word;
  3854. text-transform:none;
  3855. visibility:hidden;
  3856. }
  3857. #u60666_img {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:77px;
  3863. height:30px;
  3864. }
  3865. #u60666 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:1591px;
  3869. top:88px;
  3870. width:77px;
  3871. height:30px;
  3872. display:flex;
  3873. font-size:14px;
  3874. }
  3875. #u60666 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u60666_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u60667_img {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:80px;
  3894. height:30px;
  3895. }
  3896. #u60667 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:1668px;
  3900. top:88px;
  3901. width:80px;
  3902. height:30px;
  3903. display:flex;
  3904. font-size:14px;
  3905. }
  3906. #u60667 .text {
  3907. position:absolute;
  3908. align-self:center;
  3909. padding:2px 2px 2px 2px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u60667_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. visibility:hidden;
  3918. }
  3919. #u60668_img {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:87px;
  3925. height:30px;
  3926. }
  3927. #u60668 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:1748px;
  3931. top:88px;
  3932. width:87px;
  3933. height:30px;
  3934. display:flex;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:14px;
  3939. color:#1890FF;
  3940. }
  3941. #u60668 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 2px 2px 2px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u60668_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. }
  3953. #u60669_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:44px;
  3959. height:30px;
  3960. }
  3961. #u60669 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:118px;
  3966. width:44px;
  3967. height:30px;
  3968. display:flex;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:14px;
  3973. }
  3974. #u60669 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:2px 2px 2px 2px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u60669_text {
  3982. border-width:0px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. visibility:hidden;
  3986. }
  3987. #u60670_img {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:0px;
  3991. top:0px;
  3992. width:77px;
  3993. height:30px;
  3994. }
  3995. #u60670 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:44px;
  3999. top:118px;
  4000. width:77px;
  4001. height:30px;
  4002. display:flex;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:14px;
  4007. }
  4008. #u60670 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u60670_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u60671_img {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:77px;
  4027. height:30px;
  4028. }
  4029. #u60671 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:121px;
  4033. top:118px;
  4034. width:77px;
  4035. height:30px;
  4036. display:flex;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:14px;
  4041. }
  4042. #u60671 .text {
  4043. position:absolute;
  4044. align-self:center;
  4045. padding:2px 2px 2px 2px;
  4046. box-sizing:border-box;
  4047. width:100%;
  4048. }
  4049. #u60671_text {
  4050. border-width:0px;
  4051. word-wrap:break-word;
  4052. text-transform:none;
  4053. visibility:hidden;
  4054. }
  4055. #u60672_img {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:77px;
  4061. height:30px;
  4062. }
  4063. #u60672 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:198px;
  4067. top:118px;
  4068. width:77px;
  4069. height:30px;
  4070. display:flex;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:14px;
  4075. }
  4076. #u60672 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u60672_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. visibility:hidden;
  4088. }
  4089. #u60673_img {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:78px;
  4095. height:30px;
  4096. }
  4097. #u60673 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:275px;
  4101. top:118px;
  4102. width:78px;
  4103. height:30px;
  4104. display:flex;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:14px;
  4109. }
  4110. #u60673 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 2px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u60673_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u60674_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:77px;
  4129. height:30px;
  4130. }
  4131. #u60674 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:353px;
  4135. top:118px;
  4136. width:77px;
  4137. height:30px;
  4138. display:flex;
  4139. font-size:14px;
  4140. }
  4141. #u60674 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 2px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u60674_text {
  4149. border-width:0px;
  4150. word-wrap:break-word;
  4151. text-transform:none;
  4152. visibility:hidden;
  4153. }
  4154. #u60675_img {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:76px;
  4160. height:30px;
  4161. }
  4162. #u60675 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:430px;
  4166. top:118px;
  4167. width:76px;
  4168. height:30px;
  4169. display:flex;
  4170. font-size:14px;
  4171. }
  4172. #u60675 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 2px 2px 2px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u60675_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. visibility:hidden;
  4184. }
  4185. #u60676_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:76px;
  4191. height:30px;
  4192. }
  4193. #u60676 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:506px;
  4197. top:118px;
  4198. width:76px;
  4199. height:30px;
  4200. display:flex;
  4201. font-size:14px;
  4202. }
  4203. #u60676 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u60676_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u60677_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:76px;
  4222. height:30px;
  4223. }
  4224. #u60677 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:582px;
  4228. top:118px;
  4229. width:76px;
  4230. height:30px;
  4231. display:flex;
  4232. font-size:14px;
  4233. }
  4234. #u60677 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 2px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u60677_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. visibility:hidden;
  4246. }
  4247. #u60678_img {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:76px;
  4253. height:30px;
  4254. }
  4255. #u60678 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:658px;
  4259. top:118px;
  4260. width:76px;
  4261. height:30px;
  4262. display:flex;
  4263. font-size:14px;
  4264. }
  4265. #u60678 .text {
  4266. position:absolute;
  4267. align-self:center;
  4268. padding:2px 2px 2px 2px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u60678_text {
  4273. border-width:0px;
  4274. word-wrap:break-word;
  4275. text-transform:none;
  4276. visibility:hidden;
  4277. }
  4278. #u60679_img {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:78px;
  4284. height:30px;
  4285. }
  4286. #u60679 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:734px;
  4290. top:118px;
  4291. width:78px;
  4292. height:30px;
  4293. display:flex;
  4294. font-size:14px;
  4295. }
  4296. #u60679 .text {
  4297. position:absolute;
  4298. align-self:center;
  4299. padding:2px 2px 2px 2px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u60679_text {
  4304. border-width:0px;
  4305. word-wrap:break-word;
  4306. text-transform:none;
  4307. visibility:hidden;
  4308. }
  4309. #u60680_img {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:77px;
  4315. height:30px;
  4316. }
  4317. #u60680 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:812px;
  4321. top:118px;
  4322. width:77px;
  4323. height:30px;
  4324. display:flex;
  4325. font-size:14px;
  4326. }
  4327. #u60680 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u60680_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u60681_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:77px;
  4346. height:30px;
  4347. }
  4348. #u60681 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:889px;
  4352. top:118px;
  4353. width:77px;
  4354. height:30px;
  4355. display:flex;
  4356. font-size:14px;
  4357. }
  4358. #u60681 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:2px 2px 2px 2px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u60681_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. visibility:hidden;
  4370. }
  4371. #u60682_img {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:77px;
  4377. height:30px;
  4378. }
  4379. #u60682 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:966px;
  4383. top:118px;
  4384. width:77px;
  4385. height:30px;
  4386. display:flex;
  4387. font-size:14px;
  4388. }
  4389. #u60682 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 2px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u60682_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. visibility:hidden;
  4401. }
  4402. #u60683_img {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:77px;
  4408. height:30px;
  4409. }
  4410. #u60683 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:1043px;
  4414. top:118px;
  4415. width:77px;
  4416. height:30px;
  4417. display:flex;
  4418. font-size:14px;
  4419. }
  4420. #u60683 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 2px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u60683_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. visibility:hidden;
  4432. }
  4433. #u60684_img {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:77px;
  4439. height:30px;
  4440. }
  4441. #u60684 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:1120px;
  4445. top:118px;
  4446. width:77px;
  4447. height:30px;
  4448. display:flex;
  4449. font-size:14px;
  4450. }
  4451. #u60684 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:2px 2px 2px 2px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u60684_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. visibility:hidden;
  4463. }
  4464. #u60685_img {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:80px;
  4470. height:30px;
  4471. }
  4472. #u60685 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:1197px;
  4476. top:118px;
  4477. width:80px;
  4478. height:30px;
  4479. display:flex;
  4480. font-size:14px;
  4481. }
  4482. #u60685 .text {
  4483. position:absolute;
  4484. align-self:center;
  4485. padding:2px 2px 2px 2px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u60685_text {
  4490. border-width:0px;
  4491. word-wrap:break-word;
  4492. text-transform:none;
  4493. visibility:hidden;
  4494. }
  4495. #u60686_img {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:77px;
  4501. height:30px;
  4502. }
  4503. #u60686 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:1277px;
  4507. top:118px;
  4508. width:77px;
  4509. height:30px;
  4510. display:flex;
  4511. font-size:14px;
  4512. }
  4513. #u60686 .text {
  4514. position:absolute;
  4515. align-self:center;
  4516. padding:2px 2px 2px 2px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u60686_text {
  4521. border-width:0px;
  4522. word-wrap:break-word;
  4523. text-transform:none;
  4524. visibility:hidden;
  4525. }
  4526. #u60687_img {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:80px;
  4532. height:30px;
  4533. }
  4534. #u60687 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:1354px;
  4538. top:118px;
  4539. width:80px;
  4540. height:30px;
  4541. display:flex;
  4542. font-size:14px;
  4543. }
  4544. #u60687 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 2px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u60687_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. visibility:hidden;
  4556. }
  4557. #u60688_img {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:77px;
  4563. height:30px;
  4564. }
  4565. #u60688 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:1434px;
  4569. top:118px;
  4570. width:77px;
  4571. height:30px;
  4572. display:flex;
  4573. font-size:14px;
  4574. }
  4575. #u60688 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 2px 2px 2px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u60688_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u60689_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:80px;
  4594. height:30px;
  4595. }
  4596. #u60689 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:1511px;
  4600. top:118px;
  4601. width:80px;
  4602. height:30px;
  4603. display:flex;
  4604. font-size:14px;
  4605. }
  4606. #u60689 .text {
  4607. position:absolute;
  4608. align-self:center;
  4609. padding:2px 2px 2px 2px;
  4610. box-sizing:border-box;
  4611. width:100%;
  4612. }
  4613. #u60689_text {
  4614. border-width:0px;
  4615. word-wrap:break-word;
  4616. text-transform:none;
  4617. visibility:hidden;
  4618. }
  4619. #u60690_img {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:77px;
  4625. height:30px;
  4626. }
  4627. #u60690 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:1591px;
  4631. top:118px;
  4632. width:77px;
  4633. height:30px;
  4634. display:flex;
  4635. font-size:14px;
  4636. }
  4637. #u60690 .text {
  4638. position:absolute;
  4639. align-self:center;
  4640. padding:2px 2px 2px 2px;
  4641. box-sizing:border-box;
  4642. width:100%;
  4643. }
  4644. #u60690_text {
  4645. border-width:0px;
  4646. word-wrap:break-word;
  4647. text-transform:none;
  4648. visibility:hidden;
  4649. }
  4650. #u60691_img {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:0px;
  4654. top:0px;
  4655. width:80px;
  4656. height:30px;
  4657. }
  4658. #u60691 {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:1668px;
  4662. top:118px;
  4663. width:80px;
  4664. height:30px;
  4665. display:flex;
  4666. font-size:14px;
  4667. }
  4668. #u60691 .text {
  4669. position:absolute;
  4670. align-self:center;
  4671. padding:2px 2px 2px 2px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u60691_text {
  4676. border-width:0px;
  4677. word-wrap:break-word;
  4678. text-transform:none;
  4679. visibility:hidden;
  4680. }
  4681. #u60692_img {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:87px;
  4687. height:30px;
  4688. }
  4689. #u60692 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:1748px;
  4693. top:118px;
  4694. width:87px;
  4695. height:30px;
  4696. display:flex;
  4697. font-size:14px;
  4698. }
  4699. #u60692 .text {
  4700. position:absolute;
  4701. align-self:center;
  4702. padding:2px 2px 2px 2px;
  4703. box-sizing:border-box;
  4704. width:100%;
  4705. }
  4706. #u60692_text {
  4707. border-width:0px;
  4708. word-wrap:break-word;
  4709. text-transform:none;
  4710. visibility:hidden;
  4711. }
  4712. #u60693_img {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:44px;
  4718. height:30px;
  4719. }
  4720. #u60693 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:148px;
  4725. width:44px;
  4726. height:30px;
  4727. display:flex;
  4728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4729. font-weight:400;
  4730. font-style:normal;
  4731. font-size:14px;
  4732. }
  4733. #u60693 .text {
  4734. position:absolute;
  4735. align-self:center;
  4736. padding:2px 2px 2px 2px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u60693_text {
  4741. border-width:0px;
  4742. word-wrap:break-word;
  4743. text-transform:none;
  4744. visibility:hidden;
  4745. }
  4746. #u60694_img {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:0px;
  4750. top:0px;
  4751. width:77px;
  4752. height:30px;
  4753. }
  4754. #u60694 {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:44px;
  4758. top:148px;
  4759. width:77px;
  4760. height:30px;
  4761. display:flex;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:14px;
  4766. }
  4767. #u60694 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 2px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u60694_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u60695_img {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:77px;
  4786. height:30px;
  4787. }
  4788. #u60695 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:121px;
  4792. top:148px;
  4793. width:77px;
  4794. height:30px;
  4795. display:flex;
  4796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:14px;
  4800. }
  4801. #u60695 .text {
  4802. position:absolute;
  4803. align-self:center;
  4804. padding:2px 2px 2px 2px;
  4805. box-sizing:border-box;
  4806. width:100%;
  4807. }
  4808. #u60695_text {
  4809. border-width:0px;
  4810. word-wrap:break-word;
  4811. text-transform:none;
  4812. visibility:hidden;
  4813. }
  4814. #u60696_img {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:0px;
  4818. top:0px;
  4819. width:77px;
  4820. height:30px;
  4821. }
  4822. #u60696 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:198px;
  4826. top:148px;
  4827. width:77px;
  4828. height:30px;
  4829. display:flex;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:14px;
  4834. }
  4835. #u60696 .text {
  4836. position:absolute;
  4837. align-self:center;
  4838. padding:2px 2px 2px 2px;
  4839. box-sizing:border-box;
  4840. width:100%;
  4841. }
  4842. #u60696_text {
  4843. border-width:0px;
  4844. word-wrap:break-word;
  4845. text-transform:none;
  4846. visibility:hidden;
  4847. }
  4848. #u60697_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:78px;
  4854. height:30px;
  4855. }
  4856. #u60697 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:275px;
  4860. top:148px;
  4861. width:78px;
  4862. height:30px;
  4863. display:flex;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:14px;
  4868. }
  4869. #u60697 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:2px 2px 2px 2px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u60697_text {
  4877. border-width:0px;
  4878. word-wrap:break-word;
  4879. text-transform:none;
  4880. visibility:hidden;
  4881. }
  4882. #u60698_img {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:77px;
  4888. height:30px;
  4889. }
  4890. #u60698 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:353px;
  4894. top:148px;
  4895. width:77px;
  4896. height:30px;
  4897. display:flex;
  4898. font-size:14px;
  4899. }
  4900. #u60698 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u60698_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u60699_img {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:76px;
  4919. height:30px;
  4920. }
  4921. #u60699 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:430px;
  4925. top:148px;
  4926. width:76px;
  4927. height:30px;
  4928. display:flex;
  4929. font-size:14px;
  4930. }
  4931. #u60699 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:2px 2px 2px 2px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u60699_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. visibility:hidden;
  4943. }
  4944. #u60700_img {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:76px;
  4950. height:30px;
  4951. }
  4952. #u60700 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:506px;
  4956. top:148px;
  4957. width:76px;
  4958. height:30px;
  4959. display:flex;
  4960. font-size:14px;
  4961. }
  4962. #u60700 .text {
  4963. position:absolute;
  4964. align-self:center;
  4965. padding:2px 2px 2px 2px;
  4966. box-sizing:border-box;
  4967. width:100%;
  4968. }
  4969. #u60700_text {
  4970. border-width:0px;
  4971. word-wrap:break-word;
  4972. text-transform:none;
  4973. visibility:hidden;
  4974. }
  4975. #u60701_img {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:76px;
  4981. height:30px;
  4982. }
  4983. #u60701 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:582px;
  4987. top:148px;
  4988. width:76px;
  4989. height:30px;
  4990. display:flex;
  4991. font-size:14px;
  4992. }
  4993. #u60701 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:2px 2px 2px 2px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u60701_text {
  5001. border-width:0px;
  5002. word-wrap:break-word;
  5003. text-transform:none;
  5004. visibility:hidden;
  5005. }
  5006. #u60702_img {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:76px;
  5012. height:30px;
  5013. }
  5014. #u60702 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:658px;
  5018. top:148px;
  5019. width:76px;
  5020. height:30px;
  5021. display:flex;
  5022. font-size:14px;
  5023. }
  5024. #u60702 .text {
  5025. position:absolute;
  5026. align-self:center;
  5027. padding:2px 2px 2px 2px;
  5028. box-sizing:border-box;
  5029. width:100%;
  5030. }
  5031. #u60702_text {
  5032. border-width:0px;
  5033. word-wrap:break-word;
  5034. text-transform:none;
  5035. visibility:hidden;
  5036. }
  5037. #u60703_img {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:78px;
  5043. height:30px;
  5044. }
  5045. #u60703 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:734px;
  5049. top:148px;
  5050. width:78px;
  5051. height:30px;
  5052. display:flex;
  5053. font-size:14px;
  5054. }
  5055. #u60703 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 2px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u60703_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. visibility:hidden;
  5067. }
  5068. #u60704_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:77px;
  5074. height:30px;
  5075. }
  5076. #u60704 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:812px;
  5080. top:148px;
  5081. width:77px;
  5082. height:30px;
  5083. display:flex;
  5084. font-size:14px;
  5085. }
  5086. #u60704 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 2px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u60704_text {
  5094. border-width:0px;
  5095. word-wrap:break-word;
  5096. text-transform:none;
  5097. visibility:hidden;
  5098. }
  5099. #u60705_img {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:77px;
  5105. height:30px;
  5106. }
  5107. #u60705 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:889px;
  5111. top:148px;
  5112. width:77px;
  5113. height:30px;
  5114. display:flex;
  5115. font-size:14px;
  5116. }
  5117. #u60705 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 2px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u60705_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u60706_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:77px;
  5136. height:30px;
  5137. }
  5138. #u60706 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:966px;
  5142. top:148px;
  5143. width:77px;
  5144. height:30px;
  5145. display:flex;
  5146. font-size:14px;
  5147. }
  5148. #u60706 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u60706_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u60707_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:77px;
  5167. height:30px;
  5168. }
  5169. #u60707 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:1043px;
  5173. top:148px;
  5174. width:77px;
  5175. height:30px;
  5176. display:flex;
  5177. font-size:14px;
  5178. }
  5179. #u60707 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 2px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u60707_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. visibility:hidden;
  5191. }
  5192. #u60708_img {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:77px;
  5198. height:30px;
  5199. }
  5200. #u60708 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:1120px;
  5204. top:148px;
  5205. width:77px;
  5206. height:30px;
  5207. display:flex;
  5208. font-size:14px;
  5209. }
  5210. #u60708 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 2px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u60708_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. visibility:hidden;
  5222. }
  5223. #u60709_img {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:80px;
  5229. height:30px;
  5230. }
  5231. #u60709 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:1197px;
  5235. top:148px;
  5236. width:80px;
  5237. height:30px;
  5238. display:flex;
  5239. font-size:14px;
  5240. }
  5241. #u60709 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 2px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u60709_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u60710_img {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:77px;
  5260. height:30px;
  5261. }
  5262. #u60710 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:1277px;
  5266. top:148px;
  5267. width:77px;
  5268. height:30px;
  5269. display:flex;
  5270. font-size:14px;
  5271. }
  5272. #u60710 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u60710_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u60711_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:80px;
  5291. height:30px;
  5292. }
  5293. #u60711 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1354px;
  5297. top:148px;
  5298. width:80px;
  5299. height:30px;
  5300. display:flex;
  5301. font-size:14px;
  5302. }
  5303. #u60711 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u60711_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u60712_img {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:77px;
  5322. height:30px;
  5323. }
  5324. #u60712 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:1434px;
  5328. top:148px;
  5329. width:77px;
  5330. height:30px;
  5331. display:flex;
  5332. font-size:14px;
  5333. }
  5334. #u60712 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 2px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u60712_text {
  5342. border-width:0px;
  5343. word-wrap:break-word;
  5344. text-transform:none;
  5345. visibility:hidden;
  5346. }
  5347. #u60713_img {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:80px;
  5353. height:30px;
  5354. }
  5355. #u60713 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:1511px;
  5359. top:148px;
  5360. width:80px;
  5361. height:30px;
  5362. display:flex;
  5363. font-size:14px;
  5364. }
  5365. #u60713 .text {
  5366. position:absolute;
  5367. align-self:center;
  5368. padding:2px 2px 2px 2px;
  5369. box-sizing:border-box;
  5370. width:100%;
  5371. }
  5372. #u60713_text {
  5373. border-width:0px;
  5374. word-wrap:break-word;
  5375. text-transform:none;
  5376. visibility:hidden;
  5377. }
  5378. #u60714_img {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:77px;
  5384. height:30px;
  5385. }
  5386. #u60714 {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:1591px;
  5390. top:148px;
  5391. width:77px;
  5392. height:30px;
  5393. display:flex;
  5394. font-size:14px;
  5395. }
  5396. #u60714 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:2px 2px 2px 2px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u60714_text {
  5404. border-width:0px;
  5405. word-wrap:break-word;
  5406. text-transform:none;
  5407. visibility:hidden;
  5408. }
  5409. #u60715_img {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:80px;
  5415. height:30px;
  5416. }
  5417. #u60715 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:1668px;
  5421. top:148px;
  5422. width:80px;
  5423. height:30px;
  5424. display:flex;
  5425. font-size:14px;
  5426. }
  5427. #u60715 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u60715_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. visibility:hidden;
  5439. }
  5440. #u60716_img {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:87px;
  5446. height:30px;
  5447. }
  5448. #u60716 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:1748px;
  5452. top:148px;
  5453. width:87px;
  5454. height:30px;
  5455. display:flex;
  5456. font-size:14px;
  5457. }
  5458. #u60716 .text {
  5459. position:absolute;
  5460. align-self:center;
  5461. padding:2px 2px 2px 2px;
  5462. box-sizing:border-box;
  5463. width:100%;
  5464. }
  5465. #u60716_text {
  5466. border-width:0px;
  5467. word-wrap:break-word;
  5468. text-transform:none;
  5469. visibility:hidden;
  5470. }
  5471. #u60717_img {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:44px;
  5477. height:30px;
  5478. }
  5479. #u60717 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:178px;
  5484. width:44px;
  5485. height:30px;
  5486. display:flex;
  5487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:14px;
  5491. }
  5492. #u60717 .text {
  5493. position:absolute;
  5494. align-self:center;
  5495. padding:2px 2px 2px 2px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u60717_text {
  5500. border-width:0px;
  5501. word-wrap:break-word;
  5502. text-transform:none;
  5503. visibility:hidden;
  5504. }
  5505. #u60718_img {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:77px;
  5511. height:30px;
  5512. }
  5513. #u60718 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:44px;
  5517. top:178px;
  5518. width:77px;
  5519. height:30px;
  5520. display:flex;
  5521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:14px;
  5525. }
  5526. #u60718 .text {
  5527. position:absolute;
  5528. align-self:center;
  5529. padding:2px 2px 2px 2px;
  5530. box-sizing:border-box;
  5531. width:100%;
  5532. }
  5533. #u60718_text {
  5534. border-width:0px;
  5535. word-wrap:break-word;
  5536. text-transform:none;
  5537. visibility:hidden;
  5538. }
  5539. #u60719_img {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:77px;
  5545. height:30px;
  5546. }
  5547. #u60719 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:121px;
  5551. top:178px;
  5552. width:77px;
  5553. height:30px;
  5554. display:flex;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:14px;
  5559. }
  5560. #u60719 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:2px 2px 2px 2px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u60719_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. visibility:hidden;
  5572. }
  5573. #u60720_img {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:77px;
  5579. height:30px;
  5580. }
  5581. #u60720 {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:198px;
  5585. top:178px;
  5586. width:77px;
  5587. height:30px;
  5588. display:flex;
  5589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5590. font-weight:400;
  5591. font-style:normal;
  5592. font-size:14px;
  5593. }
  5594. #u60720 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u60720_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u60721_img {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:78px;
  5613. height:30px;
  5614. }
  5615. #u60721 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:275px;
  5619. top:178px;
  5620. width:78px;
  5621. height:30px;
  5622. display:flex;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:14px;
  5627. }
  5628. #u60721 .text {
  5629. position:absolute;
  5630. align-self:center;
  5631. padding:2px 2px 2px 2px;
  5632. box-sizing:border-box;
  5633. width:100%;
  5634. }
  5635. #u60721_text {
  5636. border-width:0px;
  5637. word-wrap:break-word;
  5638. text-transform:none;
  5639. visibility:hidden;
  5640. }
  5641. #u60722_img {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:77px;
  5647. height:30px;
  5648. }
  5649. #u60722 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:353px;
  5653. top:178px;
  5654. width:77px;
  5655. height:30px;
  5656. display:flex;
  5657. font-size:14px;
  5658. }
  5659. #u60722 .text {
  5660. position:absolute;
  5661. align-self:center;
  5662. padding:2px 2px 2px 2px;
  5663. box-sizing:border-box;
  5664. width:100%;
  5665. }
  5666. #u60722_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u60723_img {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:76px;
  5678. height:30px;
  5679. }
  5680. #u60723 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:430px;
  5684. top:178px;
  5685. width:76px;
  5686. height:30px;
  5687. display:flex;
  5688. font-size:14px;
  5689. }
  5690. #u60723 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:2px 2px 2px 2px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u60723_text {
  5698. border-width:0px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. visibility:hidden;
  5702. }
  5703. #u60724_img {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:76px;
  5709. height:30px;
  5710. }
  5711. #u60724 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:506px;
  5715. top:178px;
  5716. width:76px;
  5717. height:30px;
  5718. display:flex;
  5719. font-size:14px;
  5720. }
  5721. #u60724 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 2px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u60724_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u60725_img {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:76px;
  5740. height:30px;
  5741. }
  5742. #u60725 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:582px;
  5746. top:178px;
  5747. width:76px;
  5748. height:30px;
  5749. display:flex;
  5750. font-size:14px;
  5751. }
  5752. #u60725 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:2px 2px 2px 2px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u60725_text {
  5760. border-width:0px;
  5761. word-wrap:break-word;
  5762. text-transform:none;
  5763. visibility:hidden;
  5764. }
  5765. #u60726_img {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:76px;
  5771. height:30px;
  5772. }
  5773. #u60726 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:658px;
  5777. top:178px;
  5778. width:76px;
  5779. height:30px;
  5780. display:flex;
  5781. font-size:14px;
  5782. }
  5783. #u60726 .text {
  5784. position:absolute;
  5785. align-self:center;
  5786. padding:2px 2px 2px 2px;
  5787. box-sizing:border-box;
  5788. width:100%;
  5789. }
  5790. #u60726_text {
  5791. border-width:0px;
  5792. word-wrap:break-word;
  5793. text-transform:none;
  5794. visibility:hidden;
  5795. }
  5796. #u60727_img {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:78px;
  5802. height:30px;
  5803. }
  5804. #u60727 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:734px;
  5808. top:178px;
  5809. width:78px;
  5810. height:30px;
  5811. display:flex;
  5812. font-size:14px;
  5813. }
  5814. #u60727 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:2px 2px 2px 2px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u60727_text {
  5822. border-width:0px;
  5823. word-wrap:break-word;
  5824. text-transform:none;
  5825. visibility:hidden;
  5826. }
  5827. #u60728_img {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:77px;
  5833. height:30px;
  5834. }
  5835. #u60728 {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:812px;
  5839. top:178px;
  5840. width:77px;
  5841. height:30px;
  5842. display:flex;
  5843. font-size:14px;
  5844. }
  5845. #u60728 .text {
  5846. position:absolute;
  5847. align-self:center;
  5848. padding:2px 2px 2px 2px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u60728_text {
  5853. border-width:0px;
  5854. word-wrap:break-word;
  5855. text-transform:none;
  5856. visibility:hidden;
  5857. }
  5858. #u60729_img {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:77px;
  5864. height:30px;
  5865. }
  5866. #u60729 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:889px;
  5870. top:178px;
  5871. width:77px;
  5872. height:30px;
  5873. display:flex;
  5874. font-size:14px;
  5875. }
  5876. #u60729 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:2px 2px 2px 2px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u60729_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. visibility:hidden;
  5888. }
  5889. #u60730_img {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:77px;
  5895. height:30px;
  5896. }
  5897. #u60730 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:966px;
  5901. top:178px;
  5902. width:77px;
  5903. height:30px;
  5904. display:flex;
  5905. font-size:14px;
  5906. }
  5907. #u60730 .text {
  5908. position:absolute;
  5909. align-self:center;
  5910. padding:2px 2px 2px 2px;
  5911. box-sizing:border-box;
  5912. width:100%;
  5913. }
  5914. #u60730_text {
  5915. border-width:0px;
  5916. word-wrap:break-word;
  5917. text-transform:none;
  5918. visibility:hidden;
  5919. }
  5920. #u60731_img {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:77px;
  5926. height:30px;
  5927. }
  5928. #u60731 {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:1043px;
  5932. top:178px;
  5933. width:77px;
  5934. height:30px;
  5935. display:flex;
  5936. font-size:14px;
  5937. }
  5938. #u60731 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:2px 2px 2px 2px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u60731_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. visibility:hidden;
  5950. }
  5951. #u60732_img {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:77px;
  5957. height:30px;
  5958. }
  5959. #u60732 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:1120px;
  5963. top:178px;
  5964. width:77px;
  5965. height:30px;
  5966. display:flex;
  5967. font-size:14px;
  5968. }
  5969. #u60732 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:2px 2px 2px 2px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u60732_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. visibility:hidden;
  5981. }
  5982. #u60733_img {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:80px;
  5988. height:30px;
  5989. }
  5990. #u60733 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:1197px;
  5994. top:178px;
  5995. width:80px;
  5996. height:30px;
  5997. display:flex;
  5998. font-size:14px;
  5999. }
  6000. #u60733 .text {
  6001. position:absolute;
  6002. align-self:center;
  6003. padding:2px 2px 2px 2px;
  6004. box-sizing:border-box;
  6005. width:100%;
  6006. }
  6007. #u60733_text {
  6008. border-width:0px;
  6009. word-wrap:break-word;
  6010. text-transform:none;
  6011. visibility:hidden;
  6012. }
  6013. #u60734_img {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:77px;
  6019. height:30px;
  6020. }
  6021. #u60734 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:1277px;
  6025. top:178px;
  6026. width:77px;
  6027. height:30px;
  6028. display:flex;
  6029. font-size:14px;
  6030. }
  6031. #u60734 .text {
  6032. position:absolute;
  6033. align-self:center;
  6034. padding:2px 2px 2px 2px;
  6035. box-sizing:border-box;
  6036. width:100%;
  6037. }
  6038. #u60734_text {
  6039. border-width:0px;
  6040. word-wrap:break-word;
  6041. text-transform:none;
  6042. visibility:hidden;
  6043. }
  6044. #u60735_img {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:80px;
  6050. height:30px;
  6051. }
  6052. #u60735 {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:1354px;
  6056. top:178px;
  6057. width:80px;
  6058. height:30px;
  6059. display:flex;
  6060. font-size:14px;
  6061. }
  6062. #u60735 .text {
  6063. position:absolute;
  6064. align-self:center;
  6065. padding:2px 2px 2px 2px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u60735_text {
  6070. border-width:0px;
  6071. word-wrap:break-word;
  6072. text-transform:none;
  6073. visibility:hidden;
  6074. }
  6075. #u60736_img {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:77px;
  6081. height:30px;
  6082. }
  6083. #u60736 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:1434px;
  6087. top:178px;
  6088. width:77px;
  6089. height:30px;
  6090. display:flex;
  6091. font-size:14px;
  6092. }
  6093. #u60736 .text {
  6094. position:absolute;
  6095. align-self:center;
  6096. padding:2px 2px 2px 2px;
  6097. box-sizing:border-box;
  6098. width:100%;
  6099. }
  6100. #u60736_text {
  6101. border-width:0px;
  6102. word-wrap:break-word;
  6103. text-transform:none;
  6104. visibility:hidden;
  6105. }
  6106. #u60737_img {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:80px;
  6112. height:30px;
  6113. }
  6114. #u60737 {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:1511px;
  6118. top:178px;
  6119. width:80px;
  6120. height:30px;
  6121. display:flex;
  6122. font-size:14px;
  6123. }
  6124. #u60737 .text {
  6125. position:absolute;
  6126. align-self:center;
  6127. padding:2px 2px 2px 2px;
  6128. box-sizing:border-box;
  6129. width:100%;
  6130. }
  6131. #u60737_text {
  6132. border-width:0px;
  6133. word-wrap:break-word;
  6134. text-transform:none;
  6135. visibility:hidden;
  6136. }
  6137. #u60738_img {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:0px;
  6141. top:0px;
  6142. width:77px;
  6143. height:30px;
  6144. }
  6145. #u60738 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:1591px;
  6149. top:178px;
  6150. width:77px;
  6151. height:30px;
  6152. display:flex;
  6153. font-size:14px;
  6154. }
  6155. #u60738 .text {
  6156. position:absolute;
  6157. align-self:center;
  6158. padding:2px 2px 2px 2px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u60738_text {
  6163. border-width:0px;
  6164. word-wrap:break-word;
  6165. text-transform:none;
  6166. visibility:hidden;
  6167. }
  6168. #u60739_img {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:80px;
  6174. height:30px;
  6175. }
  6176. #u60739 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:1668px;
  6180. top:178px;
  6181. width:80px;
  6182. height:30px;
  6183. display:flex;
  6184. font-size:14px;
  6185. }
  6186. #u60739 .text {
  6187. position:absolute;
  6188. align-self:center;
  6189. padding:2px 2px 2px 2px;
  6190. box-sizing:border-box;
  6191. width:100%;
  6192. }
  6193. #u60739_text {
  6194. border-width:0px;
  6195. word-wrap:break-word;
  6196. text-transform:none;
  6197. visibility:hidden;
  6198. }
  6199. #u60740_img {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:87px;
  6205. height:30px;
  6206. }
  6207. #u60740 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:1748px;
  6211. top:178px;
  6212. width:87px;
  6213. height:30px;
  6214. display:flex;
  6215. font-size:14px;
  6216. }
  6217. #u60740 .text {
  6218. position:absolute;
  6219. align-self:center;
  6220. padding:2px 2px 2px 2px;
  6221. box-sizing:border-box;
  6222. width:100%;
  6223. }
  6224. #u60740_text {
  6225. border-width:0px;
  6226. word-wrap:break-word;
  6227. text-transform:none;
  6228. visibility:hidden;
  6229. }
  6230. #u60741 {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:0px;
  6236. height:0px;
  6237. }
  6238. #u60742_div {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:160px;
  6244. height:30px;
  6245. background:inherit;
  6246. background-color:rgba(255, 255, 255, 1);
  6247. box-sizing:border-box;
  6248. border-width:1px;
  6249. border-style:solid;
  6250. border-color:rgba(201, 201, 201, 1);
  6251. border-radius:4px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'Microsoft YaHei', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. color:#CCCCCC;
  6260. text-align:left;
  6261. }
  6262. #u60742 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:356px;
  6266. top:169px;
  6267. width:160px;
  6268. height:30px;
  6269. display:flex;
  6270. font-family:'Microsoft YaHei', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:14px;
  6274. color:#CCCCCC;
  6275. text-align:left;
  6276. }
  6277. #u60742 .text {
  6278. position:absolute;
  6279. align-self:center;
  6280. padding:2px 8px 2px 8px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u60742_text {
  6285. border-width:0px;
  6286. word-wrap:break-word;
  6287. text-transform:none;
  6288. visibility:hidden;
  6289. }
  6290. #u60743_input {
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:150px;
  6295. height:28px;
  6296. padding:2px 2px 2px 2px;
  6297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:14px;
  6301. letter-spacing:normal;
  6302. color:#000000;
  6303. vertical-align:none;
  6304. text-align:left;
  6305. text-transform:none;
  6306. background-color:transparent;
  6307. border-color:transparent;
  6308. }
  6309. #u60743_input.disabled {
  6310. position:absolute;
  6311. left:0px;
  6312. top:0px;
  6313. width:150px;
  6314. height:28px;
  6315. padding:2px 2px 2px 2px;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:14px;
  6320. letter-spacing:normal;
  6321. color:#000000;
  6322. vertical-align:none;
  6323. text-align:left;
  6324. text-transform:none;
  6325. background-color:transparent;
  6326. border-color:transparent;
  6327. }
  6328. #u60743_div {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:150px;
  6334. height:28px;
  6335. background:inherit;
  6336. background-color:rgba(255, 255, 255, 1);
  6337. border:none;
  6338. border-radius:0px;
  6339. -moz-box-shadow:none;
  6340. -webkit-box-shadow:none;
  6341. box-shadow:none;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:14px;
  6346. }
  6347. #u60743 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:362px;
  6351. top:170px;
  6352. width:150px;
  6353. height:28px;
  6354. display:flex;
  6355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. }
  6360. #u60743 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 2px 2px 2px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u60743_div.disabled {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:150px;
  6373. height:28px;
  6374. background:inherit;
  6375. background-color:rgba(240, 240, 240, 1);
  6376. border:none;
  6377. border-radius:0px;
  6378. -moz-box-shadow:none;
  6379. -webkit-box-shadow:none;
  6380. box-shadow:none;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:14px;
  6385. }
  6386. #u60743.disabled {
  6387. }
  6388. #u60744 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:0px;
  6394. height:0px;
  6395. }
  6396. #u60745_div {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:160px;
  6402. height:30px;
  6403. background:inherit;
  6404. background-color:rgba(255, 255, 255, 1);
  6405. box-sizing:border-box;
  6406. border-width:1px;
  6407. border-style:solid;
  6408. border-color:rgba(201, 201, 201, 1);
  6409. border-radius:4px;
  6410. -moz-box-shadow:none;
  6411. -webkit-box-shadow:none;
  6412. box-shadow:none;
  6413. font-family:'Microsoft YaHei', sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. font-size:14px;
  6417. color:#CCCCCC;
  6418. text-align:left;
  6419. }
  6420. #u60745 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:526px;
  6424. top:169px;
  6425. width:160px;
  6426. height:30px;
  6427. display:flex;
  6428. font-family:'Microsoft YaHei', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:14px;
  6432. color:#CCCCCC;
  6433. text-align:left;
  6434. }
  6435. #u60745 .text {
  6436. position:absolute;
  6437. align-self:center;
  6438. padding:2px 8px 2px 8px;
  6439. box-sizing:border-box;
  6440. width:100%;
  6441. }
  6442. #u60745_text {
  6443. border-width:0px;
  6444. word-wrap:break-word;
  6445. text-transform:none;
  6446. visibility:hidden;
  6447. }
  6448. #u60746_input {
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:150px;
  6453. height:28px;
  6454. padding:2px 2px 2px 2px;
  6455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:14px;
  6459. letter-spacing:normal;
  6460. color:#000000;
  6461. vertical-align:none;
  6462. text-align:left;
  6463. text-transform:none;
  6464. background-color:transparent;
  6465. border-color:transparent;
  6466. }
  6467. #u60746_input.disabled {
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:150px;
  6472. height:28px;
  6473. padding:2px 2px 2px 2px;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:14px;
  6478. letter-spacing:normal;
  6479. color:#000000;
  6480. vertical-align:none;
  6481. text-align:left;
  6482. text-transform:none;
  6483. background-color:transparent;
  6484. border-color:transparent;
  6485. }
  6486. #u60746_div {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:150px;
  6492. height:28px;
  6493. background:inherit;
  6494. background-color:rgba(255, 255, 255, 1);
  6495. border:none;
  6496. border-radius:0px;
  6497. -moz-box-shadow:none;
  6498. -webkit-box-shadow:none;
  6499. box-shadow:none;
  6500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:14px;
  6504. }
  6505. #u60746 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:532px;
  6509. top:170px;
  6510. width:150px;
  6511. height:28px;
  6512. display:flex;
  6513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6514. font-weight:400;
  6515. font-style:normal;
  6516. font-size:14px;
  6517. }
  6518. #u60746 .text {
  6519. position:absolute;
  6520. align-self:center;
  6521. padding:2px 2px 2px 2px;
  6522. box-sizing:border-box;
  6523. width:100%;
  6524. }
  6525. #u60746_div.disabled {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:150px;
  6531. height:28px;
  6532. background:inherit;
  6533. background-color:rgba(240, 240, 240, 1);
  6534. border:none;
  6535. border-radius:0px;
  6536. -moz-box-shadow:none;
  6537. -webkit-box-shadow:none;
  6538. box-shadow:none;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:14px;
  6543. }
  6544. #u60746.disabled {
  6545. }
  6546. #u60747 {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:0px;
  6552. height:0px;
  6553. }
  6554. #u60748_div {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:60px;
  6560. height:30px;
  6561. background:inherit;
  6562. background-color:rgba(24, 144, 255, 1);
  6563. border:none;
  6564. border-radius:4px;
  6565. -moz-box-shadow:none;
  6566. -webkit-box-shadow:none;
  6567. box-shadow:none;
  6568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:14px;
  6572. color:#FFFFFF;
  6573. }
  6574. #u60748 {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:1031px;
  6578. top:208px;
  6579. width:60px;
  6580. height:30px;
  6581. display:flex;
  6582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6583. font-weight:400;
  6584. font-style:normal;
  6585. font-size:14px;
  6586. color:#FFFFFF;
  6587. }
  6588. #u60748 .text {
  6589. position:absolute;
  6590. align-self:center;
  6591. padding:2px 2px 2px 2px;
  6592. box-sizing:border-box;
  6593. width:100%;
  6594. }
  6595. #u60748_text {
  6596. border-width:0px;
  6597. word-wrap:break-word;
  6598. text-transform:none;
  6599. }
  6600. #u60749_div {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:60px;
  6606. height:30px;
  6607. background:inherit;
  6608. background-color:rgba(255, 255, 255, 1);
  6609. box-sizing:border-box;
  6610. border-width:1px;
  6611. border-style:solid;
  6612. border-color:rgba(170, 170, 170, 1);
  6613. border-radius:4px;
  6614. -moz-box-shadow:none;
  6615. -webkit-box-shadow:none;
  6616. box-shadow:none;
  6617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6618. font-weight:400;
  6619. font-style:normal;
  6620. font-size:14px;
  6621. }
  6622. #u60749 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:1101px;
  6626. top:208px;
  6627. width:60px;
  6628. height:30px;
  6629. display:flex;
  6630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6631. font-weight:400;
  6632. font-style:normal;
  6633. font-size:14px;
  6634. }
  6635. #u60749 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:2px 2px 2px 2px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u60749_text {
  6643. border-width:0px;
  6644. word-wrap:break-word;
  6645. text-transform:none;
  6646. }
  6647. #u60750 {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:0px;
  6653. height:0px;
  6654. }
  6655. #u60751_div {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:160px;
  6661. height:30px;
  6662. background:inherit;
  6663. background-color:rgba(255, 255, 255, 1);
  6664. box-sizing:border-box;
  6665. border-width:1px;
  6666. border-style:solid;
  6667. border-color:rgba(215, 215, 215, 1);
  6668. border-radius:4px;
  6669. -moz-box-shadow:none;
  6670. -webkit-box-shadow:none;
  6671. box-shadow:none;
  6672. font-size:14px;
  6673. }
  6674. #u60751 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:526px;
  6678. top:208px;
  6679. width:160px;
  6680. height:30px;
  6681. display:flex;
  6682. font-size:14px;
  6683. }
  6684. #u60751 .text {
  6685. position:absolute;
  6686. align-self:center;
  6687. padding:2px 2px 2px 2px;
  6688. box-sizing:border-box;
  6689. width:100%;
  6690. }
  6691. #u60751_text {
  6692. border-width:0px;
  6693. word-wrap:break-word;
  6694. text-transform:none;
  6695. visibility:hidden;
  6696. }
  6697. #u60752_input {
  6698. position:absolute;
  6699. left:0px;
  6700. top:0px;
  6701. width:153px;
  6702. height:23px;
  6703. padding:2px 2px 2px 2px;
  6704. font-family:'ArialMT', 'Arial', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:14px;
  6708. letter-spacing:normal;
  6709. color:#AAAAAA;
  6710. vertical-align:none;
  6711. text-align:left;
  6712. text-transform:none;
  6713. background-color:transparent;
  6714. border-color:transparent;
  6715. }
  6716. #u60752_input.disabled {
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:153px;
  6721. height:23px;
  6722. padding:2px 2px 2px 2px;
  6723. font-family:'ArialMT', 'Arial', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:14px;
  6727. letter-spacing:normal;
  6728. color:#AAAAAA;
  6729. vertical-align:none;
  6730. text-align:left;
  6731. text-transform:none;
  6732. background-color:transparent;
  6733. border-color:transparent;
  6734. }
  6735. #u60752_div {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:153px;
  6741. height:23px;
  6742. background:inherit;
  6743. background-color:rgba(255, 255, 255, 1);
  6744. border:none;
  6745. border-radius:0px;
  6746. -moz-box-shadow:none;
  6747. -webkit-box-shadow:none;
  6748. box-shadow:none;
  6749. font-size:14px;
  6750. color:#AAAAAA;
  6751. }
  6752. #u60752 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:531px;
  6756. top:210px;
  6757. width:153px;
  6758. height:23px;
  6759. display:flex;
  6760. font-size:14px;
  6761. color:#AAAAAA;
  6762. }
  6763. #u60752 .text {
  6764. position:absolute;
  6765. align-self:flex-start;
  6766. padding:2px 2px 2px 2px;
  6767. box-sizing:border-box;
  6768. width:100%;
  6769. }
  6770. #u60752_div.disabled {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:0px;
  6774. top:0px;
  6775. width:153px;
  6776. height:23px;
  6777. background:inherit;
  6778. background-color:rgba(240, 240, 240, 1);
  6779. border:none;
  6780. border-radius:0px;
  6781. -moz-box-shadow:none;
  6782. -webkit-box-shadow:none;
  6783. box-shadow:none;
  6784. font-size:14px;
  6785. color:#AAAAAA;
  6786. }
  6787. #u60752.disabled {
  6788. }
  6789. .u60752_input_option {
  6790. font-size:14px;
  6791. }
  6792. #u60753 {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:0px;
  6798. height:0px;
  6799. }
  6800. #u60754_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:160px;
  6806. height:30px;
  6807. background:inherit;
  6808. background-color:rgba(255, 255, 255, 1);
  6809. box-sizing:border-box;
  6810. border-width:1px;
  6811. border-style:solid;
  6812. border-color:rgba(215, 215, 215, 1);
  6813. border-radius:4px;
  6814. -moz-box-shadow:none;
  6815. -webkit-box-shadow:none;
  6816. box-shadow:none;
  6817. font-size:14px;
  6818. }
  6819. #u60754 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:696px;
  6823. top:209px;
  6824. width:160px;
  6825. height:30px;
  6826. display:flex;
  6827. font-size:14px;
  6828. }
  6829. #u60754 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:2px 2px 2px 2px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u60754_text {
  6837. border-width:0px;
  6838. word-wrap:break-word;
  6839. text-transform:none;
  6840. visibility:hidden;
  6841. }
  6842. #u60755_input {
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:153px;
  6847. height:23px;
  6848. padding:2px 2px 2px 2px;
  6849. font-family:'ArialMT', 'Arial', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:14px;
  6853. letter-spacing:normal;
  6854. color:#AAAAAA;
  6855. vertical-align:none;
  6856. text-align:left;
  6857. text-transform:none;
  6858. background-color:transparent;
  6859. border-color:transparent;
  6860. }
  6861. #u60755_input.disabled {
  6862. position:absolute;
  6863. left:0px;
  6864. top:0px;
  6865. width:153px;
  6866. height:23px;
  6867. padding:2px 2px 2px 2px;
  6868. font-family:'ArialMT', 'Arial', sans-serif;
  6869. font-weight:400;
  6870. font-style:normal;
  6871. font-size:14px;
  6872. letter-spacing:normal;
  6873. color:#AAAAAA;
  6874. vertical-align:none;
  6875. text-align:left;
  6876. text-transform:none;
  6877. background-color:transparent;
  6878. border-color:transparent;
  6879. }
  6880. #u60755_div {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:153px;
  6886. height:23px;
  6887. background:inherit;
  6888. background-color:rgba(255, 255, 255, 1);
  6889. border:none;
  6890. border-radius:0px;
  6891. -moz-box-shadow:none;
  6892. -webkit-box-shadow:none;
  6893. box-shadow:none;
  6894. font-size:14px;
  6895. color:#AAAAAA;
  6896. }
  6897. #u60755 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:701px;
  6901. top:211px;
  6902. width:153px;
  6903. height:23px;
  6904. display:flex;
  6905. font-size:14px;
  6906. color:#AAAAAA;
  6907. }
  6908. #u60755 .text {
  6909. position:absolute;
  6910. align-self:flex-start;
  6911. padding:2px 2px 2px 2px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u60755_div.disabled {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:153px;
  6921. height:23px;
  6922. background:inherit;
  6923. background-color:rgba(240, 240, 240, 1);
  6924. border:none;
  6925. border-radius:0px;
  6926. -moz-box-shadow:none;
  6927. -webkit-box-shadow:none;
  6928. box-shadow:none;
  6929. font-size:14px;
  6930. color:#AAAAAA;
  6931. }
  6932. #u60755.disabled {
  6933. }
  6934. .u60755_input_option {
  6935. font-size:14px;
  6936. }
  6937. #u60756 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:0px;
  6943. height:0px;
  6944. }
  6945. #u60757_div {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:160px;
  6951. height:30px;
  6952. background:inherit;
  6953. background-color:rgba(255, 255, 255, 1);
  6954. box-sizing:border-box;
  6955. border-width:1px;
  6956. border-style:solid;
  6957. border-color:rgba(201, 201, 201, 1);
  6958. border-radius:4px;
  6959. -moz-box-shadow:none;
  6960. -webkit-box-shadow:none;
  6961. box-shadow:none;
  6962. font-family:'Microsoft YaHei', sans-serif;
  6963. font-weight:400;
  6964. font-style:normal;
  6965. font-size:14px;
  6966. color:#CCCCCC;
  6967. text-align:left;
  6968. }
  6969. #u60757 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:1201px;
  6973. top:169px;
  6974. width:160px;
  6975. height:30px;
  6976. display:flex;
  6977. font-family:'Microsoft YaHei', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:14px;
  6981. color:#CCCCCC;
  6982. text-align:left;
  6983. }
  6984. #u60757 .text {
  6985. position:absolute;
  6986. align-self:center;
  6987. padding:2px 8px 2px 8px;
  6988. box-sizing:border-box;
  6989. width:100%;
  6990. }
  6991. #u60757_text {
  6992. border-width:0px;
  6993. word-wrap:break-word;
  6994. text-transform:none;
  6995. visibility:hidden;
  6996. }
  6997. #u60758_input {
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:150px;
  7002. height:28px;
  7003. padding:2px 2px 2px 2px;
  7004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7005. font-weight:400;
  7006. font-style:normal;
  7007. font-size:14px;
  7008. letter-spacing:normal;
  7009. color:#000000;
  7010. vertical-align:none;
  7011. text-align:left;
  7012. text-transform:none;
  7013. background-color:transparent;
  7014. border-color:transparent;
  7015. }
  7016. #u60758_input.disabled {
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:150px;
  7021. height:28px;
  7022. padding:2px 2px 2px 2px;
  7023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7024. font-weight:400;
  7025. font-style:normal;
  7026. font-size:14px;
  7027. letter-spacing:normal;
  7028. color:#000000;
  7029. vertical-align:none;
  7030. text-align:left;
  7031. text-transform:none;
  7032. background-color:transparent;
  7033. border-color:transparent;
  7034. }
  7035. #u60758_div {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:150px;
  7041. height:28px;
  7042. background:inherit;
  7043. background-color:rgba(255, 255, 255, 1);
  7044. border:none;
  7045. border-radius:0px;
  7046. -moz-box-shadow:none;
  7047. -webkit-box-shadow:none;
  7048. box-shadow:none;
  7049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7050. font-weight:400;
  7051. font-style:normal;
  7052. font-size:14px;
  7053. }
  7054. #u60758 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:1207px;
  7058. top:170px;
  7059. width:150px;
  7060. height:28px;
  7061. display:flex;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:14px;
  7066. }
  7067. #u60758 .text {
  7068. position:absolute;
  7069. align-self:center;
  7070. padding:2px 2px 2px 2px;
  7071. box-sizing:border-box;
  7072. width:100%;
  7073. }
  7074. #u60758_div.disabled {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:150px;
  7080. height:28px;
  7081. background:inherit;
  7082. background-color:rgba(240, 240, 240, 1);
  7083. border:none;
  7084. border-radius:0px;
  7085. -moz-box-shadow:none;
  7086. -webkit-box-shadow:none;
  7087. box-shadow:none;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:14px;
  7092. }
  7093. #u60758.disabled {
  7094. }
  7095. #u60759_div {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:1259px;
  7101. height:90px;
  7102. background:inherit;
  7103. background-color:rgba(255, 255, 255, 1);
  7104. box-sizing:border-box;
  7105. border-width:1px;
  7106. border-style:solid;
  7107. border-color:rgba(242, 242, 242, 1);
  7108. border-radius:0px;
  7109. -moz-box-shadow:none;
  7110. -webkit-box-shadow:none;
  7111. box-shadow:none;
  7112. }
  7113. #u60759 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:332px;
  7117. top:50px;
  7118. width:1259px;
  7119. height:90px;
  7120. display:flex;
  7121. }
  7122. #u60759 .text {
  7123. position:absolute;
  7124. align-self:center;
  7125. padding:2px 2px 2px 2px;
  7126. box-sizing:border-box;
  7127. width:100%;
  7128. }
  7129. #u60759_text {
  7130. border-width:0px;
  7131. word-wrap:break-word;
  7132. text-transform:none;
  7133. visibility:hidden;
  7134. }
  7135. #u60760_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:109px;
  7141. height:50px;
  7142. background:inherit;
  7143. background-color:rgba(255, 255, 255, 0);
  7144. border:none;
  7145. border-left:0px;
  7146. border-top:0px;
  7147. border-right:0px;
  7148. border-radius:0px;
  7149. border-bottom-right-radius:0px;
  7150. border-bottom-left-radius:0px;
  7151. -moz-box-shadow:none;
  7152. -webkit-box-shadow:none;
  7153. box-shadow:none;
  7154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7155. font-weight:500;
  7156. font-style:normal;
  7157. font-size:18px;
  7158. line-height:40px;
  7159. }
  7160. #u60760 {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:352px;
  7164. top:50px;
  7165. width:109px;
  7166. height:50px;
  7167. display:flex;
  7168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7169. font-weight:500;
  7170. font-style:normal;
  7171. font-size:18px;
  7172. line-height:40px;
  7173. }
  7174. #u60760 .text {
  7175. position:absolute;
  7176. align-self:center;
  7177. padding:0px 0px 0px 0px;
  7178. box-sizing:border-box;
  7179. width:100%;
  7180. }
  7181. #u60760_text {
  7182. border-width:0px;
  7183. white-space:nowrap;
  7184. text-transform:none;
  7185. }
  7186. #u60761_img {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:0px;
  7191. width:13px;
  7192. height:13px;
  7193. }
  7194. #u60761 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:466px;
  7198. top:69px;
  7199. width:13px;
  7200. height:13px;
  7201. display:flex;
  7202. }
  7203. #u60761 .text {
  7204. position:absolute;
  7205. align-self:center;
  7206. padding:2px 2px 2px 2px;
  7207. box-sizing:border-box;
  7208. width:100%;
  7209. }
  7210. #u60761_text {
  7211. border-width:0px;
  7212. word-wrap:break-word;
  7213. text-transform:none;
  7214. visibility:hidden;
  7215. }
  7216. #u60762_div {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:61px;
  7222. height:50px;
  7223. background:inherit;
  7224. background-color:rgba(0, 191, 191, 0);
  7225. box-sizing:border-box;
  7226. border-width:2px;
  7227. border-style:solid;
  7228. border-color:rgba(41, 143, 255, 1);
  7229. border-left:0px;
  7230. border-top:0px;
  7231. border-right:0px;
  7232. border-radius:0px;
  7233. border-bottom-right-radius:0px;
  7234. border-bottom-left-radius:0px;
  7235. -moz-box-shadow:none;
  7236. -webkit-box-shadow:none;
  7237. box-shadow:none;
  7238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7239. font-weight:400;
  7240. font-style:normal;
  7241. font-size:14px;
  7242. color:#1890FF;
  7243. line-height:40px;
  7244. }
  7245. #u60762 {
  7246. border-width:0px;
  7247. position:absolute;
  7248. left:352px;
  7249. top:90px;
  7250. width:61px;
  7251. height:50px;
  7252. display:flex;
  7253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7254. font-weight:400;
  7255. font-style:normal;
  7256. font-size:14px;
  7257. color:#1890FF;
  7258. line-height:40px;
  7259. }
  7260. #u60762 .text {
  7261. position:absolute;
  7262. align-self:center;
  7263. padding:0px 0px 0px 0px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u60762_text {
  7268. border-width:0px;
  7269. white-space:nowrap;
  7270. text-transform:none;
  7271. }
  7272. #u60763_div {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:69px;
  7278. height:50px;
  7279. background:inherit;
  7280. background-color:rgba(0, 191, 191, 0);
  7281. border:none;
  7282. border-left:0px;
  7283. border-top:0px;
  7284. border-right:0px;
  7285. border-radius:0px;
  7286. border-bottom-right-radius:0px;
  7287. border-bottom-left-radius:0px;
  7288. -moz-box-shadow:none;
  7289. -webkit-box-shadow:none;
  7290. box-shadow:none;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. line-height:40px;
  7296. }
  7297. #u60763 {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:444px;
  7301. top:90px;
  7302. width:69px;
  7303. height:50px;
  7304. display:flex;
  7305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7306. font-weight:400;
  7307. font-style:normal;
  7308. font-size:14px;
  7309. line-height:40px;
  7310. }
  7311. #u60763 .text {
  7312. position:absolute;
  7313. align-self:center;
  7314. padding:0px 0px 0px 0px;
  7315. box-sizing:border-box;
  7316. width:100%;
  7317. }
  7318. #u60763_text {
  7319. border-width:0px;
  7320. white-space:nowrap;
  7321. text-transform:none;
  7322. }
  7323. #u60764_div {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:0px;
  7327. top:0px;
  7328. width:69px;
  7329. height:50px;
  7330. background:inherit;
  7331. background-color:rgba(255, 255, 255, 0);
  7332. border:none;
  7333. border-left:0px;
  7334. border-top:0px;
  7335. border-right:0px;
  7336. border-radius:0px;
  7337. border-bottom-right-radius:0px;
  7338. border-bottom-left-radius:0px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:14px;
  7346. line-height:40px;
  7347. }
  7348. #u60764 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:545px;
  7352. top:90px;
  7353. width:69px;
  7354. height:50px;
  7355. display:flex;
  7356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:14px;
  7360. line-height:40px;
  7361. }
  7362. #u60764 .text {
  7363. position:absolute;
  7364. align-self:center;
  7365. padding:0px 0px 0px 0px;
  7366. box-sizing:border-box;
  7367. width:100%;
  7368. }
  7369. #u60764_text {
  7370. border-width:0px;
  7371. white-space:nowrap;
  7372. text-transform:none;
  7373. }
  7374. #u60765_div {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:69px;
  7380. height:50px;
  7381. background:inherit;
  7382. background-color:rgba(255, 255, 255, 0);
  7383. border:none;
  7384. border-left:0px;
  7385. border-top:0px;
  7386. border-right:0px;
  7387. border-radius:0px;
  7388. border-bottom-right-radius:0px;
  7389. border-bottom-left-radius:0px;
  7390. -moz-box-shadow:none;
  7391. -webkit-box-shadow:none;
  7392. box-shadow:none;
  7393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:14px;
  7397. line-height:40px;
  7398. }
  7399. #u60765 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:645px;
  7403. top:90px;
  7404. width:69px;
  7405. height:50px;
  7406. display:flex;
  7407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7408. font-weight:400;
  7409. font-style:normal;
  7410. font-size:14px;
  7411. line-height:40px;
  7412. }
  7413. #u60765 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:0px 0px 0px 0px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u60765_text {
  7421. border-width:0px;
  7422. white-space:nowrap;
  7423. text-transform:none;
  7424. }
  7425. #u60766_div {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:60px;
  7431. height:30px;
  7432. background:inherit;
  7433. background-color:rgba(255, 255, 255, 1);
  7434. box-sizing:border-box;
  7435. border-width:1px;
  7436. border-style:solid;
  7437. border-color:rgba(170, 170, 170, 1);
  7438. border-radius:4px;
  7439. -moz-box-shadow:none;
  7440. -webkit-box-shadow:none;
  7441. box-shadow:none;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:14px;
  7446. }
  7447. #u60766 {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:356px;
  7451. top:259px;
  7452. width:60px;
  7453. height:30px;
  7454. display:flex;
  7455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7456. font-weight:400;
  7457. font-style:normal;
  7458. font-size:14px;
  7459. }
  7460. #u60766 .text {
  7461. position:absolute;
  7462. align-self:center;
  7463. padding:2px 2px 2px 2px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u60766_text {
  7468. border-width:0px;
  7469. word-wrap:break-word;
  7470. text-transform:none;
  7471. }
  7472. #u60767_div {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:61px;
  7478. height:80px;
  7479. background:inherit;
  7480. background-color:rgba(255, 255, 255, 0);
  7481. border:none;
  7482. border-left:0px;
  7483. border-right:0px;
  7484. border-radius:0px;
  7485. border-top-left-radius:0px;
  7486. border-top-right-radius:0px;
  7487. border-bottom-right-radius:0px;
  7488. border-bottom-left-radius:0px;
  7489. -moz-box-shadow:none;
  7490. -webkit-box-shadow:none;
  7491. box-shadow:none;
  7492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7493. font-weight:400;
  7494. font-style:normal;
  7495. font-size:12px;
  7496. line-height:40px;
  7497. }
  7498. #u60767 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:377px;
  7502. top:549px;
  7503. width:61px;
  7504. height:80px;
  7505. display:flex;
  7506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7507. font-weight:400;
  7508. font-style:normal;
  7509. font-size:12px;
  7510. line-height:40px;
  7511. }
  7512. #u60767 .text {
  7513. position:absolute;
  7514. align-self:flex-start;
  7515. padding:0px 0px 0px 0px;
  7516. box-sizing:border-box;
  7517. width:100%;
  7518. }
  7519. #u60767_text {
  7520. border-width:0px;
  7521. white-space:nowrap;
  7522. text-transform:none;
  7523. }
  7524. #u60768_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:61px;
  7530. height:80px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 0);
  7533. border:none;
  7534. border-left:0px;
  7535. border-right:0px;
  7536. border-radius:0px;
  7537. border-top-left-radius:0px;
  7538. border-top-right-radius:0px;
  7539. border-bottom-right-radius:0px;
  7540. border-bottom-left-radius:0px;
  7541. -moz-box-shadow:none;
  7542. -webkit-box-shadow:none;
  7543. box-shadow:none;
  7544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. font-size:12px;
  7548. line-height:40px;
  7549. }
  7550. #u60768 {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:512px;
  7554. top:549px;
  7555. width:61px;
  7556. height:80px;
  7557. display:flex;
  7558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7559. font-weight:400;
  7560. font-style:normal;
  7561. font-size:12px;
  7562. line-height:40px;
  7563. }
  7564. #u60768 .text {
  7565. position:absolute;
  7566. align-self:flex-start;
  7567. padding:0px 0px 0px 0px;
  7568. box-sizing:border-box;
  7569. width:100%;
  7570. }
  7571. #u60768_text {
  7572. border-width:0px;
  7573. white-space:nowrap;
  7574. text-transform:none;
  7575. }
  7576. #u60769 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:0px;
  7580. top:0px;
  7581. width:0px;
  7582. height:0px;
  7583. }
  7584. #u60770_div {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:0px;
  7588. top:0px;
  7589. width:100px;
  7590. height:100px;
  7591. background:inherit;
  7592. background-color:rgba(255, 255, 255, 1);
  7593. box-sizing:border-box;
  7594. border-width:1px;
  7595. border-style:solid;
  7596. border-color:rgba(242, 242, 242, 1);
  7597. border-radius:4px;
  7598. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7599. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7600. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7602. font-weight:400;
  7603. font-style:normal;
  7604. font-size:14px;
  7605. text-align:left;
  7606. }
  7607. #u60770 {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:377px;
  7611. top:629px;
  7612. width:100px;
  7613. height:100px;
  7614. display:flex;
  7615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:14px;
  7619. text-align:left;
  7620. }
  7621. #u60770 .text {
  7622. position:absolute;
  7623. align-self:center;
  7624. padding:2px 2px 2px 2px;
  7625. box-sizing:border-box;
  7626. width:100%;
  7627. }
  7628. #u60770_text {
  7629. border-width:0px;
  7630. word-wrap:break-word;
  7631. text-transform:none;
  7632. visibility:hidden;
  7633. }
  7634. #u60771_div {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:85px;
  7640. height:40px;
  7641. background:inherit;
  7642. background-color:rgba(255, 255, 255, 1);
  7643. box-sizing:border-box;
  7644. border-width:1px;
  7645. border-style:solid;
  7646. border-color:rgba(215, 215, 215, 1);
  7647. border-left:0px;
  7648. border-top:0px;
  7649. border-right:0px;
  7650. border-radius:0px;
  7651. border-bottom-right-radius:0px;
  7652. border-bottom-left-radius:0px;
  7653. -moz-box-shadow:none;
  7654. -webkit-box-shadow:none;
  7655. box-shadow:none;
  7656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7657. font-weight:400;
  7658. font-style:normal;
  7659. font-size:14px;
  7660. }
  7661. #u60771 {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:385px;
  7665. top:639px;
  7666. width:85px;
  7667. height:40px;
  7668. display:flex;
  7669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7670. font-weight:400;
  7671. font-style:normal;
  7672. font-size:14px;
  7673. }
  7674. #u60771 .text {
  7675. position:absolute;
  7676. align-self:center;
  7677. padding:2px 2px 2px 2px;
  7678. box-sizing:border-box;
  7679. width:100%;
  7680. }
  7681. #u60771_text {
  7682. border-width:0px;
  7683. word-wrap:break-word;
  7684. text-transform:none;
  7685. }
  7686. #u60772_div {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:0px;
  7690. top:0px;
  7691. width:85px;
  7692. height:40px;
  7693. background:inherit;
  7694. background-color:rgba(255, 255, 255, 1);
  7695. border:none;
  7696. border-left:0px;
  7697. border-top:0px;
  7698. border-right:0px;
  7699. border-radius:0px;
  7700. border-bottom-right-radius:0px;
  7701. border-bottom-left-radius:0px;
  7702. -moz-box-shadow:none;
  7703. -webkit-box-shadow:none;
  7704. box-shadow:none;
  7705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7706. font-weight:400;
  7707. font-style:normal;
  7708. font-size:14px;
  7709. }
  7710. #u60772 {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:385px;
  7714. top:679px;
  7715. width:85px;
  7716. height:40px;
  7717. display:flex;
  7718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:14px;
  7722. }
  7723. #u60772 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 2px 2px 2px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u60772_text {
  7731. border-width:0px;
  7732. word-wrap:break-word;
  7733. text-transform:none;
  7734. }
  7735. #u60773_div {
  7736. border-width:0px;
  7737. position:absolute;
  7738. left:0px;
  7739. top:0px;
  7740. width:61px;
  7741. height:80px;
  7742. background:inherit;
  7743. background-color:rgba(255, 255, 255, 0);
  7744. border:none;
  7745. border-left:0px;
  7746. border-right:0px;
  7747. border-radius:0px;
  7748. border-top-left-radius:0px;
  7749. border-top-right-radius:0px;
  7750. border-bottom-right-radius:0px;
  7751. border-bottom-left-radius:0px;
  7752. -moz-box-shadow:none;
  7753. -webkit-box-shadow:none;
  7754. box-shadow:none;
  7755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7756. font-weight:400;
  7757. font-style:normal;
  7758. font-size:12px;
  7759. line-height:40px;
  7760. }
  7761. #u60773 {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:643px;
  7765. top:549px;
  7766. width:61px;
  7767. height:80px;
  7768. display:flex;
  7769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7770. font-weight:400;
  7771. font-style:normal;
  7772. font-size:12px;
  7773. line-height:40px;
  7774. }
  7775. #u60773 .text {
  7776. position:absolute;
  7777. align-self:flex-start;
  7778. padding:0px 0px 0px 0px;
  7779. box-sizing:border-box;
  7780. width:100%;
  7781. }
  7782. #u60773_text {
  7783. border-width:0px;
  7784. white-space:nowrap;
  7785. text-transform:none;
  7786. }
  7787. #u60774 {
  7788. border-width:0px;
  7789. position:absolute;
  7790. left:0px;
  7791. top:0px;
  7792. width:0px;
  7793. height:0px;
  7794. }
  7795. #u60775_div {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:160px;
  7801. height:30px;
  7802. background:inherit;
  7803. background-color:rgba(255, 255, 255, 1);
  7804. box-sizing:border-box;
  7805. border-width:1px;
  7806. border-style:solid;
  7807. border-color:rgba(215, 215, 215, 1);
  7808. border-radius:4px;
  7809. -moz-box-shadow:none;
  7810. -webkit-box-shadow:none;
  7811. box-shadow:none;
  7812. font-size:14px;
  7813. }
  7814. #u60775 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:1031px;
  7818. top:169px;
  7819. width:160px;
  7820. height:30px;
  7821. display:flex;
  7822. font-size:14px;
  7823. }
  7824. #u60775 .text {
  7825. position:absolute;
  7826. align-self:center;
  7827. padding:2px 2px 2px 2px;
  7828. box-sizing:border-box;
  7829. width:100%;
  7830. }
  7831. #u60775_text {
  7832. border-width:0px;
  7833. word-wrap:break-word;
  7834. text-transform:none;
  7835. visibility:hidden;
  7836. }
  7837. #u60776_input {
  7838. position:absolute;
  7839. left:0px;
  7840. top:0px;
  7841. width:153px;
  7842. height:23px;
  7843. padding:2px 2px 2px 2px;
  7844. font-family:'ArialMT', 'Arial', sans-serif;
  7845. font-weight:400;
  7846. font-style:normal;
  7847. font-size:14px;
  7848. letter-spacing:normal;
  7849. color:#AAAAAA;
  7850. vertical-align:none;
  7851. text-align:left;
  7852. text-transform:none;
  7853. background-color:transparent;
  7854. border-color:transparent;
  7855. }
  7856. #u60776_input.disabled {
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:153px;
  7861. height:23px;
  7862. padding:2px 2px 2px 2px;
  7863. font-family:'ArialMT', 'Arial', sans-serif;
  7864. font-weight:400;
  7865. font-style:normal;
  7866. font-size:14px;
  7867. letter-spacing:normal;
  7868. color:#AAAAAA;
  7869. vertical-align:none;
  7870. text-align:left;
  7871. text-transform:none;
  7872. background-color:transparent;
  7873. border-color:transparent;
  7874. }
  7875. #u60776_div {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:0px;
  7880. width:153px;
  7881. height:23px;
  7882. background:inherit;
  7883. background-color:rgba(255, 255, 255, 1);
  7884. border:none;
  7885. border-radius:0px;
  7886. -moz-box-shadow:none;
  7887. -webkit-box-shadow:none;
  7888. box-shadow:none;
  7889. font-size:14px;
  7890. color:#AAAAAA;
  7891. }
  7892. #u60776 {
  7893. border-width:0px;
  7894. position:absolute;
  7895. left:1036px;
  7896. top:171px;
  7897. width:153px;
  7898. height:23px;
  7899. display:flex;
  7900. font-size:14px;
  7901. color:#AAAAAA;
  7902. }
  7903. #u60776 .text {
  7904. position:absolute;
  7905. align-self:flex-start;
  7906. padding:2px 2px 2px 2px;
  7907. box-sizing:border-box;
  7908. width:100%;
  7909. }
  7910. #u60776_div.disabled {
  7911. border-width:0px;
  7912. position:absolute;
  7913. left:0px;
  7914. top:0px;
  7915. width:153px;
  7916. height:23px;
  7917. background:inherit;
  7918. background-color:rgba(240, 240, 240, 1);
  7919. border:none;
  7920. border-radius:0px;
  7921. -moz-box-shadow:none;
  7922. -webkit-box-shadow:none;
  7923. box-shadow:none;
  7924. font-size:14px;
  7925. color:#AAAAAA;
  7926. }
  7927. #u60776.disabled {
  7928. }
  7929. .u60776_input_option {
  7930. font-size:14px;
  7931. }
  7932. #u60777 {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:0px;
  7938. height:0px;
  7939. }
  7940. #u60778_div {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:0px;
  7944. top:0px;
  7945. width:160px;
  7946. height:30px;
  7947. background:inherit;
  7948. background-color:rgba(255, 255, 255, 1);
  7949. box-sizing:border-box;
  7950. border-width:1px;
  7951. border-style:solid;
  7952. border-color:rgba(201, 201, 201, 1);
  7953. border-radius:4px;
  7954. -moz-box-shadow:none;
  7955. -webkit-box-shadow:none;
  7956. box-shadow:none;
  7957. font-family:'Microsoft YaHei', sans-serif;
  7958. font-weight:400;
  7959. font-style:normal;
  7960. font-size:14px;
  7961. color:#CCCCCC;
  7962. text-align:left;
  7963. }
  7964. #u60778 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:1371px;
  7968. top:170px;
  7969. width:160px;
  7970. height:30px;
  7971. display:flex;
  7972. font-family:'Microsoft YaHei', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:14px;
  7976. color:#CCCCCC;
  7977. text-align:left;
  7978. }
  7979. #u60778 .text {
  7980. position:absolute;
  7981. align-self:center;
  7982. padding:2px 8px 2px 8px;
  7983. box-sizing:border-box;
  7984. width:100%;
  7985. }
  7986. #u60778_text {
  7987. border-width:0px;
  7988. word-wrap:break-word;
  7989. text-transform:none;
  7990. visibility:hidden;
  7991. }
  7992. #u60779_input {
  7993. position:absolute;
  7994. left:0px;
  7995. top:0px;
  7996. width:150px;
  7997. height:28px;
  7998. padding:2px 2px 2px 2px;
  7999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:14px;
  8003. letter-spacing:normal;
  8004. color:#000000;
  8005. vertical-align:none;
  8006. text-align:left;
  8007. text-transform:none;
  8008. background-color:transparent;
  8009. border-color:transparent;
  8010. }
  8011. #u60779_input.disabled {
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:150px;
  8016. height:28px;
  8017. padding:2px 2px 2px 2px;
  8018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8019. font-weight:400;
  8020. font-style:normal;
  8021. font-size:14px;
  8022. letter-spacing:normal;
  8023. color:#000000;
  8024. vertical-align:none;
  8025. text-align:left;
  8026. text-transform:none;
  8027. background-color:transparent;
  8028. border-color:transparent;
  8029. }
  8030. #u60779_div {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:0px;
  8034. top:0px;
  8035. width:150px;
  8036. height:28px;
  8037. background:inherit;
  8038. background-color:rgba(255, 255, 255, 1);
  8039. border:none;
  8040. border-radius:0px;
  8041. -moz-box-shadow:none;
  8042. -webkit-box-shadow:none;
  8043. box-shadow:none;
  8044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. font-size:14px;
  8048. }
  8049. #u60779 {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:1377px;
  8053. top:171px;
  8054. width:150px;
  8055. height:28px;
  8056. display:flex;
  8057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8058. font-weight:400;
  8059. font-style:normal;
  8060. font-size:14px;
  8061. }
  8062. #u60779 .text {
  8063. position:absolute;
  8064. align-self:center;
  8065. padding:2px 2px 2px 2px;
  8066. box-sizing:border-box;
  8067. width:100%;
  8068. }
  8069. #u60779_div.disabled {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:0px;
  8073. top:0px;
  8074. width:150px;
  8075. height:28px;
  8076. background:inherit;
  8077. background-color:rgba(240, 240, 240, 1);
  8078. border:none;
  8079. border-radius:0px;
  8080. -moz-box-shadow:none;
  8081. -webkit-box-shadow:none;
  8082. box-shadow:none;
  8083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8084. font-weight:400;
  8085. font-style:normal;
  8086. font-size:14px;
  8087. }
  8088. #u60779.disabled {
  8089. }
  8090. #u60780 {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:0px;
  8094. top:0px;
  8095. width:0px;
  8096. height:0px;
  8097. }
  8098. #u60781_div {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:0px;
  8102. top:0px;
  8103. width:100px;
  8104. height:60px;
  8105. background:inherit;
  8106. background-color:rgba(255, 255, 255, 1);
  8107. box-sizing:border-box;
  8108. border-width:1px;
  8109. border-style:solid;
  8110. border-color:rgba(242, 242, 242, 1);
  8111. border-radius:4px;
  8112. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8113. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8114. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8116. font-weight:400;
  8117. font-style:normal;
  8118. font-size:14px;
  8119. text-align:left;
  8120. }
  8121. #u60781 {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:512px;
  8125. top:629px;
  8126. width:100px;
  8127. height:60px;
  8128. display:flex;
  8129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:14px;
  8133. text-align:left;
  8134. }
  8135. #u60781 .text {
  8136. position:absolute;
  8137. align-self:center;
  8138. padding:2px 2px 2px 2px;
  8139. box-sizing:border-box;
  8140. width:100%;
  8141. }
  8142. #u60781_text {
  8143. border-width:0px;
  8144. word-wrap:break-word;
  8145. text-transform:none;
  8146. visibility:hidden;
  8147. }
  8148. #u60782_div {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:0px;
  8152. top:0px;
  8153. width:85px;
  8154. height:40px;
  8155. background:inherit;
  8156. background-color:rgba(255, 255, 255, 1);
  8157. border:none;
  8158. border-left:0px;
  8159. border-top:0px;
  8160. border-right:0px;
  8161. border-radius:0px;
  8162. border-bottom-right-radius:0px;
  8163. border-bottom-left-radius:0px;
  8164. -moz-box-shadow:none;
  8165. -webkit-box-shadow:none;
  8166. box-shadow:none;
  8167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8168. font-weight:400;
  8169. font-style:normal;
  8170. font-size:14px;
  8171. }
  8172. #u60782 {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:520px;
  8176. top:639px;
  8177. width:85px;
  8178. height:40px;
  8179. display:flex;
  8180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8181. font-weight:400;
  8182. font-style:normal;
  8183. font-size:14px;
  8184. }
  8185. #u60782 .text {
  8186. position:absolute;
  8187. align-self:center;
  8188. padding:2px 2px 2px 2px;
  8189. box-sizing:border-box;
  8190. width:100%;
  8191. }
  8192. #u60782_text {
  8193. border-width:0px;
  8194. word-wrap:break-word;
  8195. text-transform:none;
  8196. }
  8197. #u60783 {
  8198. border-width:0px;
  8199. position:absolute;
  8200. left:0px;
  8201. top:0px;
  8202. width:0px;
  8203. height:0px;
  8204. }
  8205. #u60784 {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:0px;
  8211. height:0px;
  8212. }
  8213. #u60785_div {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:0px;
  8217. top:0px;
  8218. width:480px;
  8219. height:280px;
  8220. background:inherit;
  8221. background-color:rgba(255, 255, 255, 1);
  8222. border:none;
  8223. border-radius:4px;
  8224. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8225. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8226. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8227. font-family:'Microsoft YaHei', sans-serif;
  8228. font-weight:400;
  8229. font-style:normal;
  8230. }
  8231. #u60785 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:427px;
  8235. top:753px;
  8236. width:480px;
  8237. height:280px;
  8238. display:flex;
  8239. font-family:'Microsoft YaHei', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. }
  8243. #u60785 .text {
  8244. position:absolute;
  8245. align-self:center;
  8246. padding:2px 2px 2px 2px;
  8247. box-sizing:border-box;
  8248. width:100%;
  8249. }
  8250. #u60785_text {
  8251. border-width:0px;
  8252. word-wrap:break-word;
  8253. text-transform:none;
  8254. visibility:hidden;
  8255. }
  8256. #u60786_div {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:64px;
  8262. height:22px;
  8263. background:inherit;
  8264. background-color:rgba(255, 255, 255, 0);
  8265. border:none;
  8266. border-radius:0px;
  8267. -moz-box-shadow:none;
  8268. -webkit-box-shadow:none;
  8269. box-shadow:none;
  8270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8271. font-weight:400;
  8272. font-style:normal;
  8273. font-size:14px;
  8274. color:#666666;
  8275. line-height:22px;
  8276. }
  8277. #u60786 {
  8278. border-width:0px;
  8279. position:absolute;
  8280. left:454px;
  8281. top:816px;
  8282. width:64px;
  8283. height:22px;
  8284. display:flex;
  8285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8286. font-weight:400;
  8287. font-style:normal;
  8288. font-size:14px;
  8289. color:#666666;
  8290. line-height:22px;
  8291. }
  8292. #u60786 .text {
  8293. position:absolute;
  8294. align-self:flex-start;
  8295. padding:0px 0px 0px 0px;
  8296. box-sizing:border-box;
  8297. width:100%;
  8298. }
  8299. #u60786_text {
  8300. border-width:0px;
  8301. white-space:nowrap;
  8302. text-transform:none;
  8303. }
  8304. #u60787_div {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:109px;
  8310. height:21px;
  8311. background:inherit;
  8312. background-color:rgba(255, 255, 255, 0);
  8313. border:none;
  8314. border-radius:0px;
  8315. -moz-box-shadow:none;
  8316. -webkit-box-shadow:none;
  8317. box-shadow:none;
  8318. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8319. font-weight:650;
  8320. font-style:normal;
  8321. font-size:18px;
  8322. color:#000000;
  8323. line-height:22px;
  8324. }
  8325. #u60787 {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:454px;
  8329. top:774px;
  8330. width:109px;
  8331. height:21px;
  8332. display:flex;
  8333. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8334. font-weight:650;
  8335. font-style:normal;
  8336. font-size:18px;
  8337. color:#000000;
  8338. line-height:22px;
  8339. }
  8340. #u60787 .text {
  8341. position:absolute;
  8342. align-self:flex-start;
  8343. padding:0px 0px 0px 0px;
  8344. box-sizing:border-box;
  8345. width:100%;
  8346. }
  8347. #u60787_text {
  8348. border-width:0px;
  8349. white-space:nowrap;
  8350. text-transform:none;
  8351. }
  8352. #u60788 label {
  8353. left:0px;
  8354. width:100%;
  8355. }
  8356. #u60788_img {
  8357. border-width:0px;
  8358. position:absolute;
  8359. left:0px;
  8360. top:3px;
  8361. width:12px;
  8362. height:12px;
  8363. }
  8364. #u60788 {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:531px;
  8368. top:819px;
  8369. width:100px;
  8370. height:18px;
  8371. display:flex;
  8372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8373. font-weight:400;
  8374. font-style:normal;
  8375. }
  8376. #u60788 .text {
  8377. position:absolute;
  8378. align-self:center;
  8379. padding:0px 2px 0px 2px;
  8380. box-sizing:border-box;
  8381. }
  8382. #u60788_img.selected {
  8383. }
  8384. #u60788.selected {
  8385. }
  8386. #u60788_img.disabled {
  8387. }
  8388. #u60788.disabled {
  8389. }
  8390. #u60788_img.selectedDisabled {
  8391. }
  8392. #u60788.selectedDisabled {
  8393. }
  8394. #u60788_text {
  8395. border-width:0px;
  8396. position:absolute;
  8397. left:14px;
  8398. top:0px;
  8399. width:84px;
  8400. word-wrap:break-word;
  8401. text-transform:none;
  8402. }
  8403. #u60788_input {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:0px;
  8407. top:0px;
  8408. width:0px;
  8409. height:0px;
  8410. opacity:0;
  8411. }
  8412. #u60789 label {
  8413. left:0px;
  8414. width:100%;
  8415. }
  8416. #u60789_img {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:3px;
  8421. width:12px;
  8422. height:12px;
  8423. }
  8424. #u60789 {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:531px;
  8428. top:852px;
  8429. width:100px;
  8430. height:18px;
  8431. display:flex;
  8432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8433. font-weight:400;
  8434. font-style:normal;
  8435. }
  8436. #u60789 .text {
  8437. position:absolute;
  8438. align-self:center;
  8439. padding:0px 2px 0px 2px;
  8440. box-sizing:border-box;
  8441. }
  8442. #u60789_img.selected {
  8443. }
  8444. #u60789.selected {
  8445. }
  8446. #u60789_img.disabled {
  8447. }
  8448. #u60789.disabled {
  8449. }
  8450. #u60789_img.selectedDisabled {
  8451. }
  8452. #u60789.selectedDisabled {
  8453. }
  8454. #u60789_text {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:14px;
  8458. top:0px;
  8459. width:84px;
  8460. word-wrap:break-word;
  8461. text-transform:none;
  8462. }
  8463. #u60789_input {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:0px;
  8467. top:0px;
  8468. width:0px;
  8469. height:0px;
  8470. opacity:0;
  8471. }
  8472. #u60790 label {
  8473. left:0px;
  8474. width:100%;
  8475. }
  8476. #u60790_img {
  8477. border-width:0px;
  8478. position:absolute;
  8479. left:0px;
  8480. top:3px;
  8481. width:12px;
  8482. height:12px;
  8483. }
  8484. #u60790 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:531px;
  8488. top:884px;
  8489. width:100px;
  8490. height:18px;
  8491. display:flex;
  8492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8493. font-weight:400;
  8494. font-style:normal;
  8495. }
  8496. #u60790 .text {
  8497. position:absolute;
  8498. align-self:center;
  8499. padding:0px 2px 0px 2px;
  8500. box-sizing:border-box;
  8501. }
  8502. #u60790_img.selected {
  8503. }
  8504. #u60790.selected {
  8505. }
  8506. #u60790_img.disabled {
  8507. }
  8508. #u60790.disabled {
  8509. }
  8510. #u60790_img.selectedDisabled {
  8511. }
  8512. #u60790.selectedDisabled {
  8513. }
  8514. #u60790_text {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:14px;
  8518. top:0px;
  8519. width:84px;
  8520. word-wrap:break-word;
  8521. text-transform:none;
  8522. }
  8523. #u60790_input {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:0px;
  8529. height:0px;
  8530. opacity:0;
  8531. }
  8532. #u60791 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:0px;
  8536. top:0px;
  8537. width:0px;
  8538. height:0px;
  8539. }
  8540. #u60792_div {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:347px;
  8546. height:60px;
  8547. background:inherit;
  8548. background-color:rgba(255, 255, 255, 1);
  8549. box-sizing:border-box;
  8550. border-width:1px;
  8551. border-style:solid;
  8552. border-color:rgba(41, 143, 255, 1);
  8553. border-radius:4px;
  8554. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8555. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8556. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8557. font-family:'Microsoft YaHei', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:14px;
  8561. color:#CCCCCC;
  8562. text-align:left;
  8563. }
  8564. #u60792 {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:531px;
  8568. top:912px;
  8569. width:347px;
  8570. height:60px;
  8571. display:flex;
  8572. font-family:'Microsoft YaHei', sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:14px;
  8576. color:#CCCCCC;
  8577. text-align:left;
  8578. }
  8579. #u60792 .text {
  8580. position:absolute;
  8581. align-self:center;
  8582. padding:2px 8px 2px 8px;
  8583. box-sizing:border-box;
  8584. width:100%;
  8585. }
  8586. #u60792_text {
  8587. border-width:0px;
  8588. word-wrap:break-word;
  8589. text-transform:none;
  8590. visibility:hidden;
  8591. }
  8592. #u60793_input {
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:330px;
  8597. height:38px;
  8598. padding:2px 2px 2px 2px;
  8599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8600. font-weight:400;
  8601. font-style:normal;
  8602. font-size:14px;
  8603. letter-spacing:normal;
  8604. color:#000000;
  8605. vertical-align:none;
  8606. text-align:left;
  8607. text-transform:none;
  8608. background-color:transparent;
  8609. border-color:transparent;
  8610. }
  8611. #u60793_input.disabled {
  8612. position:absolute;
  8613. left:0px;
  8614. top:0px;
  8615. width:330px;
  8616. height:38px;
  8617. padding:2px 2px 2px 2px;
  8618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8619. font-weight:400;
  8620. font-style:normal;
  8621. font-size:14px;
  8622. letter-spacing:normal;
  8623. color:#000000;
  8624. vertical-align:none;
  8625. text-align:left;
  8626. text-transform:none;
  8627. background-color:transparent;
  8628. border-color:transparent;
  8629. }
  8630. #u60793_div {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:0px;
  8634. top:0px;
  8635. width:330px;
  8636. height:38px;
  8637. background:inherit;
  8638. background-color:rgba(255, 255, 255, 1);
  8639. border:none;
  8640. border-radius:0px;
  8641. -moz-box-shadow:none;
  8642. -webkit-box-shadow:none;
  8643. box-shadow:none;
  8644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8645. font-weight:400;
  8646. font-style:normal;
  8647. font-size:14px;
  8648. }
  8649. #u60793 {
  8650. border-width:0px;
  8651. position:absolute;
  8652. left:540px;
  8653. top:913px;
  8654. width:330px;
  8655. height:38px;
  8656. display:flex;
  8657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8658. font-weight:400;
  8659. font-style:normal;
  8660. font-size:14px;
  8661. }
  8662. #u60793 .text {
  8663. position:absolute;
  8664. align-self:center;
  8665. padding:2px 2px 2px 2px;
  8666. box-sizing:border-box;
  8667. width:100%;
  8668. }
  8669. #u60793_div.disabled {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:0px;
  8673. top:0px;
  8674. width:330px;
  8675. height:38px;
  8676. background:inherit;
  8677. background-color:rgba(240, 240, 240, 1);
  8678. border:none;
  8679. border-radius:0px;
  8680. -moz-box-shadow:none;
  8681. -webkit-box-shadow:none;
  8682. box-shadow:none;
  8683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:14px;
  8687. }
  8688. #u60793.disabled {
  8689. }
  8690. #u60794 {
  8691. border-width:0px;
  8692. position:absolute;
  8693. left:0px;
  8694. top:0px;
  8695. width:0px;
  8696. height:0px;
  8697. }
  8698. #u60795_div {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:0px;
  8702. top:0px;
  8703. width:80px;
  8704. height:30px;
  8705. background:inherit;
  8706. background-color:rgba(24, 144, 255, 1);
  8707. border:none;
  8708. border-radius:4px;
  8709. -moz-box-shadow:none;
  8710. -webkit-box-shadow:none;
  8711. box-shadow:none;
  8712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8713. font-weight:400;
  8714. font-style:normal;
  8715. font-size:14px;
  8716. color:#FFFFFF;
  8717. }
  8718. #u60795 {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:798px;
  8722. top:991px;
  8723. width:80px;
  8724. height:30px;
  8725. display:flex;
  8726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:14px;
  8730. color:#FFFFFF;
  8731. }
  8732. #u60795 .text {
  8733. position:absolute;
  8734. align-self:center;
  8735. padding:2px 2px 2px 2px;
  8736. box-sizing:border-box;
  8737. width:100%;
  8738. }
  8739. #u60795_text {
  8740. border-width:0px;
  8741. word-wrap:break-word;
  8742. text-transform:none;
  8743. }
  8744. #u60796_div {
  8745. border-width:0px;
  8746. position:absolute;
  8747. left:0px;
  8748. top:0px;
  8749. width:80px;
  8750. height:30px;
  8751. background:inherit;
  8752. background-color:rgba(255, 255, 255, 1);
  8753. box-sizing:border-box;
  8754. border-width:1px;
  8755. border-style:solid;
  8756. border-color:rgba(170, 170, 170, 1);
  8757. border-radius:4px;
  8758. -moz-box-shadow:none;
  8759. -webkit-box-shadow:none;
  8760. box-shadow:none;
  8761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8762. font-weight:400;
  8763. font-style:normal;
  8764. font-size:14px;
  8765. }
  8766. #u60796 {
  8767. border-width:0px;
  8768. position:absolute;
  8769. left:699px;
  8770. top:991px;
  8771. width:80px;
  8772. height:30px;
  8773. display:flex;
  8774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8775. font-weight:400;
  8776. font-style:normal;
  8777. font-size:14px;
  8778. }
  8779. #u60796 .text {
  8780. position:absolute;
  8781. align-self:center;
  8782. padding:2px 2px 2px 2px;
  8783. box-sizing:border-box;
  8784. width:100%;
  8785. }
  8786. #u60796_text {
  8787. border-width:0px;
  8788. word-wrap:break-word;
  8789. text-transform:none;
  8790. }
  8791. #u60797_div {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:61px;
  8797. height:80px;
  8798. background:inherit;
  8799. background-color:rgba(255, 255, 255, 0);
  8800. border:none;
  8801. border-left:0px;
  8802. border-right:0px;
  8803. border-radius:0px;
  8804. border-top-left-radius:0px;
  8805. border-top-right-radius:0px;
  8806. border-bottom-right-radius:0px;
  8807. border-bottom-left-radius:0px;
  8808. -moz-box-shadow:none;
  8809. -webkit-box-shadow:none;
  8810. box-shadow:none;
  8811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8812. font-weight:400;
  8813. font-style:normal;
  8814. font-size:12px;
  8815. line-height:40px;
  8816. }
  8817. #u60797 {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:776px;
  8821. top:549px;
  8822. width:61px;
  8823. height:80px;
  8824. display:flex;
  8825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8826. font-weight:400;
  8827. font-style:normal;
  8828. font-size:12px;
  8829. line-height:40px;
  8830. }
  8831. #u60797 .text {
  8832. position:absolute;
  8833. align-self:flex-start;
  8834. padding:0px 0px 0px 0px;
  8835. box-sizing:border-box;
  8836. width:100%;
  8837. }
  8838. #u60797_text {
  8839. border-width:0px;
  8840. white-space:nowrap;
  8841. text-transform:none;
  8842. }
  8843. #u60798 {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:0px;
  8849. height:0px;
  8850. }
  8851. #u60799_div {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:0px;
  8855. top:0px;
  8856. width:100px;
  8857. height:60px;
  8858. background:inherit;
  8859. background-color:rgba(255, 255, 255, 1);
  8860. box-sizing:border-box;
  8861. border-width:1px;
  8862. border-style:solid;
  8863. border-color:rgba(242, 242, 242, 1);
  8864. border-radius:4px;
  8865. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8866. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8867. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8869. font-weight:400;
  8870. font-style:normal;
  8871. font-size:14px;
  8872. text-align:left;
  8873. }
  8874. #u60799 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:643px;
  8878. top:629px;
  8879. width:100px;
  8880. height:60px;
  8881. display:flex;
  8882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:14px;
  8886. text-align:left;
  8887. }
  8888. #u60799 .text {
  8889. position:absolute;
  8890. align-self:center;
  8891. padding:2px 2px 2px 2px;
  8892. box-sizing:border-box;
  8893. width:100%;
  8894. }
  8895. #u60799_text {
  8896. border-width:0px;
  8897. word-wrap:break-word;
  8898. text-transform:none;
  8899. visibility:hidden;
  8900. }
  8901. #u60800_div {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:0px;
  8905. top:0px;
  8906. width:85px;
  8907. height:40px;
  8908. background:inherit;
  8909. background-color:rgba(255, 255, 255, 1);
  8910. border:none;
  8911. border-left:0px;
  8912. border-top:0px;
  8913. border-right:0px;
  8914. border-radius:0px;
  8915. border-bottom-right-radius:0px;
  8916. border-bottom-left-radius:0px;
  8917. -moz-box-shadow:none;
  8918. -webkit-box-shadow:none;
  8919. box-shadow:none;
  8920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8921. font-weight:400;
  8922. font-style:normal;
  8923. font-size:14px;
  8924. }
  8925. #u60800 {
  8926. border-width:0px;
  8927. position:absolute;
  8928. left:651px;
  8929. top:639px;
  8930. width:85px;
  8931. height:40px;
  8932. display:flex;
  8933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8934. font-weight:400;
  8935. font-style:normal;
  8936. font-size:14px;
  8937. }
  8938. #u60800 .text {
  8939. position:absolute;
  8940. align-self:center;
  8941. padding:2px 2px 2px 2px;
  8942. box-sizing:border-box;
  8943. width:100%;
  8944. }
  8945. #u60800_text {
  8946. border-width:0px;
  8947. word-wrap:break-word;
  8948. text-transform:none;
  8949. }
  8950. #u60801 {
  8951. border-width:0px;
  8952. position:absolute;
  8953. left:0px;
  8954. top:0px;
  8955. width:0px;
  8956. height:0px;
  8957. }
  8958. #u60802_div {
  8959. border-width:0px;
  8960. position:absolute;
  8961. left:0px;
  8962. top:0px;
  8963. width:200px;
  8964. height:1180px;
  8965. background:inherit;
  8966. background-color:rgba(255, 255, 255, 1);
  8967. border:none;
  8968. border-radius:0px;
  8969. -moz-box-shadow:none;
  8970. -webkit-box-shadow:none;
  8971. box-shadow:none;
  8972. }
  8973. #u60802 {
  8974. border-width:0px;
  8975. position:absolute;
  8976. left:122px;
  8977. top:50px;
  8978. width:200px;
  8979. height:1180px;
  8980. display:flex;
  8981. }
  8982. #u60802 .text {
  8983. position:absolute;
  8984. align-self:center;
  8985. padding:2px 2px 2px 2px;
  8986. box-sizing:border-box;
  8987. width:100%;
  8988. }
  8989. #u60802_text {
  8990. border-width:0px;
  8991. word-wrap:break-word;
  8992. text-transform:none;
  8993. visibility:hidden;
  8994. }
  8995. #u60803_div {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:200px;
  9001. height:60px;
  9002. background:inherit;
  9003. background-color:rgba(224, 231, 247, 1);
  9004. border:none;
  9005. border-radius:0px;
  9006. -moz-box-shadow:none;
  9007. -webkit-box-shadow:none;
  9008. box-shadow:none;
  9009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9010. font-weight:500;
  9011. font-style:normal;
  9012. font-size:18px;
  9013. }
  9014. #u60803 {
  9015. border-width:0px;
  9016. position:absolute;
  9017. left:122px;
  9018. top:50px;
  9019. width:200px;
  9020. height:60px;
  9021. display:flex;
  9022. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9023. font-weight:500;
  9024. font-style:normal;
  9025. font-size:18px;
  9026. }
  9027. #u60803 .text {
  9028. position:absolute;
  9029. align-self:center;
  9030. padding:0px 0px 0px 20px;
  9031. box-sizing:border-box;
  9032. width:100%;
  9033. }
  9034. #u60803_text {
  9035. border-width:0px;
  9036. word-wrap:break-word;
  9037. text-transform:none;
  9038. }
  9039. #u60804_div {
  9040. border-width:0px;
  9041. position:absolute;
  9042. left:0px;
  9043. top:0px;
  9044. width:65px;
  9045. height:22px;
  9046. background:inherit;
  9047. background-color:rgba(255, 255, 255, 0);
  9048. border:none;
  9049. border-radius:0px;
  9050. -moz-box-shadow:none;
  9051. -webkit-box-shadow:none;
  9052. box-shadow:none;
  9053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9054. font-weight:400;
  9055. font-style:normal;
  9056. font-size:16px;
  9057. color:#1890FF;
  9058. }
  9059. #u60804 {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:149px;
  9063. top:161px;
  9064. width:65px;
  9065. height:22px;
  9066. display:flex;
  9067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9068. font-weight:400;
  9069. font-style:normal;
  9070. font-size:16px;
  9071. color:#1890FF;
  9072. }
  9073. #u60804 .text {
  9074. position:absolute;
  9075. align-self:flex-start;
  9076. padding:0px 0px 0px 0px;
  9077. box-sizing:border-box;
  9078. width:100%;
  9079. }
  9080. #u60804_text {
  9081. border-width:0px;
  9082. white-space:nowrap;
  9083. text-transform:none;
  9084. }
  9085. #u60805_div {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:65px;
  9091. height:22px;
  9092. background:inherit;
  9093. background-color:rgba(255, 255, 255, 0);
  9094. border:none;
  9095. border-radius:0px;
  9096. -moz-box-shadow:none;
  9097. -webkit-box-shadow:none;
  9098. box-shadow:none;
  9099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9100. font-weight:400;
  9101. font-style:normal;
  9102. font-size:16px;
  9103. }
  9104. #u60805 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:149px;
  9108. top:203px;
  9109. width:65px;
  9110. height:22px;
  9111. display:flex;
  9112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9113. font-weight:400;
  9114. font-style:normal;
  9115. font-size:16px;
  9116. }
  9117. #u60805 .text {
  9118. position:absolute;
  9119. align-self:flex-start;
  9120. padding:0px 0px 0px 0px;
  9121. box-sizing:border-box;
  9122. width:100%;
  9123. }
  9124. #u60805_text {
  9125. border-width:0px;
  9126. white-space:nowrap;
  9127. text-transform:none;
  9128. }
  9129. #u60806_div {
  9130. border-width:0px;
  9131. position:absolute;
  9132. left:0px;
  9133. top:0px;
  9134. width:65px;
  9135. height:22px;
  9136. background:inherit;
  9137. background-color:rgba(255, 255, 255, 0);
  9138. border:none;
  9139. border-radius:0px;
  9140. -moz-box-shadow:none;
  9141. -webkit-box-shadow:none;
  9142. box-shadow:none;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:16px;
  9147. }
  9148. #u60806 {
  9149. border-width:0px;
  9150. position:absolute;
  9151. left:149px;
  9152. top:245px;
  9153. width:65px;
  9154. height:22px;
  9155. display:flex;
  9156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9157. font-weight:400;
  9158. font-style:normal;
  9159. font-size:16px;
  9160. }
  9161. #u60806 .text {
  9162. position:absolute;
  9163. align-self:flex-start;
  9164. padding:0px 0px 0px 0px;
  9165. box-sizing:border-box;
  9166. width:100%;
  9167. }
  9168. #u60806_text {
  9169. border-width:0px;
  9170. white-space:nowrap;
  9171. text-transform:none;
  9172. }
  9173. #u60807_div {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:65px;
  9179. height:22px;
  9180. background:inherit;
  9181. background-color:rgba(255, 255, 255, 0);
  9182. border:none;
  9183. border-radius:0px;
  9184. -moz-box-shadow:none;
  9185. -webkit-box-shadow:none;
  9186. box-shadow:none;
  9187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9188. font-weight:400;
  9189. font-style:normal;
  9190. font-size:16px;
  9191. }
  9192. #u60807 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:149px;
  9196. top:287px;
  9197. width:65px;
  9198. height:22px;
  9199. display:flex;
  9200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9201. font-weight:400;
  9202. font-style:normal;
  9203. font-size:16px;
  9204. }
  9205. #u60807 .text {
  9206. position:absolute;
  9207. align-self:flex-start;
  9208. padding:0px 0px 0px 0px;
  9209. box-sizing:border-box;
  9210. width:100%;
  9211. }
  9212. #u60807_text {
  9213. border-width:0px;
  9214. white-space:nowrap;
  9215. text-transform:none;
  9216. }
  9217. #u60808_div {
  9218. border-width:0px;
  9219. position:absolute;
  9220. left:0px;
  9221. top:0px;
  9222. width:49px;
  9223. height:17px;
  9224. background:inherit;
  9225. background-color:rgba(255, 255, 255, 0);
  9226. border:none;
  9227. border-radius:0px;
  9228. -moz-box-shadow:none;
  9229. -webkit-box-shadow:none;
  9230. box-shadow:none;
  9231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9232. font-weight:400;
  9233. font-style:normal;
  9234. font-size:12px;
  9235. color:#AAAAAA;
  9236. }
  9237. #u60808 {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:149px;
  9241. top:125px;
  9242. width:49px;
  9243. height:17px;
  9244. display:flex;
  9245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9246. font-weight:400;
  9247. font-style:normal;
  9248. font-size:12px;
  9249. color:#AAAAAA;
  9250. }
  9251. #u60808 .text {
  9252. position:absolute;
  9253. align-self:flex-start;
  9254. padding:0px 0px 0px 0px;
  9255. box-sizing:border-box;
  9256. width:100%;
  9257. }
  9258. #u60808_text {
  9259. border-width:0px;
  9260. white-space:nowrap;
  9261. text-transform:none;
  9262. }
  9263. #u60809_div {
  9264. border-width:0px;
  9265. position:absolute;
  9266. left:0px;
  9267. top:0px;
  9268. width:65px;
  9269. height:22px;
  9270. background:inherit;
  9271. background-color:rgba(255, 255, 255, 0);
  9272. border:none;
  9273. border-radius:0px;
  9274. -moz-box-shadow:none;
  9275. -webkit-box-shadow:none;
  9276. box-shadow:none;
  9277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9278. font-weight:400;
  9279. font-style:normal;
  9280. font-size:16px;
  9281. }
  9282. #u60809 {
  9283. border-width:0px;
  9284. position:absolute;
  9285. left:149px;
  9286. top:387px;
  9287. width:65px;
  9288. height:22px;
  9289. display:flex;
  9290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9291. font-weight:400;
  9292. font-style:normal;
  9293. font-size:16px;
  9294. }
  9295. #u60809 .text {
  9296. position:absolute;
  9297. align-self:flex-start;
  9298. padding:0px 0px 0px 0px;
  9299. box-sizing:border-box;
  9300. width:100%;
  9301. }
  9302. #u60809_text {
  9303. border-width:0px;
  9304. white-space:nowrap;
  9305. text-transform:none;
  9306. }
  9307. #u60810_div {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:49px;
  9313. height:17px;
  9314. background:inherit;
  9315. background-color:rgba(255, 255, 255, 0);
  9316. border:none;
  9317. border-radius:0px;
  9318. -moz-box-shadow:none;
  9319. -webkit-box-shadow:none;
  9320. box-shadow:none;
  9321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9322. font-weight:400;
  9323. font-style:normal;
  9324. font-size:12px;
  9325. color:#AAAAAA;
  9326. }
  9327. #u60810 {
  9328. border-width:0px;
  9329. position:absolute;
  9330. left:149px;
  9331. top:351px;
  9332. width:49px;
  9333. height:17px;
  9334. display:flex;
  9335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9336. font-weight:400;
  9337. font-style:normal;
  9338. font-size:12px;
  9339. color:#AAAAAA;
  9340. }
  9341. #u60810 .text {
  9342. position:absolute;
  9343. align-self:flex-start;
  9344. padding:0px 0px 0px 0px;
  9345. box-sizing:border-box;
  9346. width:100%;
  9347. }
  9348. #u60810_text {
  9349. border-width:0px;
  9350. white-space:nowrap;
  9351. text-transform:none;
  9352. }
  9353. #u60811_img {
  9354. border-width:0px;
  9355. position:absolute;
  9356. left:0px;
  9357. top:0px;
  9358. width:201px;
  9359. height:2px;
  9360. }
  9361. #u60811 {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:122px;
  9365. top:329px;
  9366. width:200px;
  9367. height:1px;
  9368. display:flex;
  9369. }
  9370. #u60811 .text {
  9371. position:absolute;
  9372. align-self:center;
  9373. padding:2px 2px 2px 2px;
  9374. box-sizing:border-box;
  9375. width:100%;
  9376. }
  9377. #u60811_text {
  9378. border-width:0px;
  9379. word-wrap:break-word;
  9380. text-transform:none;
  9381. visibility:hidden;
  9382. }
  9383. #u60812_div {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:65px;
  9389. height:22px;
  9390. background:inherit;
  9391. background-color:rgba(255, 255, 255, 0);
  9392. border:none;
  9393. border-radius:0px;
  9394. -moz-box-shadow:none;
  9395. -webkit-box-shadow:none;
  9396. box-shadow:none;
  9397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9398. font-weight:400;
  9399. font-style:normal;
  9400. font-size:16px;
  9401. }
  9402. #u60812 {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:149px;
  9406. top:484px;
  9407. width:65px;
  9408. height:22px;
  9409. display:flex;
  9410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9411. font-weight:400;
  9412. font-style:normal;
  9413. font-size:16px;
  9414. }
  9415. #u60812 .text {
  9416. position:absolute;
  9417. align-self:flex-start;
  9418. padding:0px 0px 0px 0px;
  9419. box-sizing:border-box;
  9420. width:100%;
  9421. }
  9422. #u60812_text {
  9423. border-width:0px;
  9424. white-space:nowrap;
  9425. text-transform:none;
  9426. }
  9427. #u60813_div {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:0px;
  9431. top:0px;
  9432. width:49px;
  9433. height:17px;
  9434. background:inherit;
  9435. background-color:rgba(255, 255, 255, 0);
  9436. border:none;
  9437. border-radius:0px;
  9438. -moz-box-shadow:none;
  9439. -webkit-box-shadow:none;
  9440. box-shadow:none;
  9441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9442. font-weight:400;
  9443. font-style:normal;
  9444. font-size:12px;
  9445. color:#AAAAAA;
  9446. }
  9447. #u60813 {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:149px;
  9451. top:448px;
  9452. width:49px;
  9453. height:17px;
  9454. display:flex;
  9455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9456. font-weight:400;
  9457. font-style:normal;
  9458. font-size:12px;
  9459. color:#AAAAAA;
  9460. }
  9461. #u60813 .text {
  9462. position:absolute;
  9463. align-self:flex-start;
  9464. padding:0px 0px 0px 0px;
  9465. box-sizing:border-box;
  9466. width:100%;
  9467. }
  9468. #u60813_text {
  9469. border-width:0px;
  9470. white-space:nowrap;
  9471. text-transform:none;
  9472. }
  9473. #u60814_img {
  9474. border-width:0px;
  9475. position:absolute;
  9476. left:0px;
  9477. top:0px;
  9478. width:201px;
  9479. height:2px;
  9480. }
  9481. #u60814 {
  9482. border-width:0px;
  9483. position:absolute;
  9484. left:122px;
  9485. top:426px;
  9486. width:200px;
  9487. height:1px;
  9488. display:flex;
  9489. }
  9490. #u60814 .text {
  9491. position:absolute;
  9492. align-self:center;
  9493. padding:2px 2px 2px 2px;
  9494. box-sizing:border-box;
  9495. width:100%;
  9496. }
  9497. #u60814_text {
  9498. border-width:0px;
  9499. word-wrap:break-word;
  9500. text-transform:none;
  9501. visibility:hidden;
  9502. }
  9503. #u60815_div {
  9504. border-width:0px;
  9505. position:absolute;
  9506. left:0px;
  9507. top:0px;
  9508. width:65px;
  9509. height:22px;
  9510. background:inherit;
  9511. background-color:rgba(255, 255, 255, 0);
  9512. border:none;
  9513. border-radius:0px;
  9514. -moz-box-shadow:none;
  9515. -webkit-box-shadow:none;
  9516. box-shadow:none;
  9517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9518. font-weight:400;
  9519. font-style:normal;
  9520. font-size:16px;
  9521. }
  9522. #u60815 {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:149px;
  9526. top:526px;
  9527. width:65px;
  9528. height:22px;
  9529. display:flex;
  9530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9531. font-weight:400;
  9532. font-style:normal;
  9533. font-size:16px;
  9534. }
  9535. #u60815 .text {
  9536. position:absolute;
  9537. align-self:flex-start;
  9538. padding:0px 0px 0px 0px;
  9539. box-sizing:border-box;
  9540. width:100%;
  9541. }
  9542. #u60815_text {
  9543. border-width:0px;
  9544. white-space:nowrap;
  9545. text-transform:none;
  9546. }
  9547. #u60816 {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:0px;
  9551. top:0px;
  9552. width:0px;
  9553. height:0px;
  9554. }
  9555. #u60817_div {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:0px;
  9559. top:0px;
  9560. width:160px;
  9561. height:30px;
  9562. background:inherit;
  9563. background-color:rgba(255, 255, 255, 1);
  9564. box-sizing:border-box;
  9565. border-width:1px;
  9566. border-style:solid;
  9567. border-color:rgba(215, 215, 215, 1);
  9568. border-radius:4px;
  9569. -moz-box-shadow:none;
  9570. -webkit-box-shadow:none;
  9571. box-shadow:none;
  9572. font-size:14px;
  9573. }
  9574. #u60817 {
  9575. border-width:0px;
  9576. position:absolute;
  9577. left:696px;
  9578. top:169px;
  9579. width:160px;
  9580. height:30px;
  9581. display:flex;
  9582. font-size:14px;
  9583. }
  9584. #u60817 .text {
  9585. position:absolute;
  9586. align-self:center;
  9587. padding:2px 2px 2px 2px;
  9588. box-sizing:border-box;
  9589. width:100%;
  9590. }
  9591. #u60817_text {
  9592. border-width:0px;
  9593. word-wrap:break-word;
  9594. text-transform:none;
  9595. visibility:hidden;
  9596. }
  9597. #u60818_input {
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:153px;
  9602. height:23px;
  9603. padding:2px 2px 2px 2px;
  9604. font-family:'ArialMT', 'Arial', sans-serif;
  9605. font-weight:400;
  9606. font-style:normal;
  9607. font-size:14px;
  9608. letter-spacing:normal;
  9609. color:#AAAAAA;
  9610. vertical-align:none;
  9611. text-align:left;
  9612. text-transform:none;
  9613. background-color:transparent;
  9614. border-color:transparent;
  9615. }
  9616. #u60818_input.disabled {
  9617. position:absolute;
  9618. left:0px;
  9619. top:0px;
  9620. width:153px;
  9621. height:23px;
  9622. padding:2px 2px 2px 2px;
  9623. font-family:'ArialMT', 'Arial', sans-serif;
  9624. font-weight:400;
  9625. font-style:normal;
  9626. font-size:14px;
  9627. letter-spacing:normal;
  9628. color:#AAAAAA;
  9629. vertical-align:none;
  9630. text-align:left;
  9631. text-transform:none;
  9632. background-color:transparent;
  9633. border-color:transparent;
  9634. }
  9635. #u60818_div {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:0px;
  9639. top:0px;
  9640. width:153px;
  9641. height:23px;
  9642. background:inherit;
  9643. background-color:rgba(255, 255, 255, 1);
  9644. border:none;
  9645. border-radius:0px;
  9646. -moz-box-shadow:none;
  9647. -webkit-box-shadow:none;
  9648. box-shadow:none;
  9649. font-size:14px;
  9650. color:#AAAAAA;
  9651. }
  9652. #u60818 {
  9653. border-width:0px;
  9654. position:absolute;
  9655. left:701px;
  9656. top:171px;
  9657. width:153px;
  9658. height:23px;
  9659. display:flex;
  9660. font-size:14px;
  9661. color:#AAAAAA;
  9662. }
  9663. #u60818 .text {
  9664. position:absolute;
  9665. align-self:flex-start;
  9666. padding:2px 2px 2px 2px;
  9667. box-sizing:border-box;
  9668. width:100%;
  9669. }
  9670. #u60818_div.disabled {
  9671. border-width:0px;
  9672. position:absolute;
  9673. left:0px;
  9674. top:0px;
  9675. width:153px;
  9676. height:23px;
  9677. background:inherit;
  9678. background-color:rgba(240, 240, 240, 1);
  9679. border:none;
  9680. border-radius:0px;
  9681. -moz-box-shadow:none;
  9682. -webkit-box-shadow:none;
  9683. box-shadow:none;
  9684. font-size:14px;
  9685. color:#AAAAAA;
  9686. }
  9687. #u60818.disabled {
  9688. }
  9689. .u60818_input_option {
  9690. font-size:14px;
  9691. }
  9692. #u60819 {
  9693. border-width:0px;
  9694. position:absolute;
  9695. left:0px;
  9696. top:0px;
  9697. width:0px;
  9698. height:0px;
  9699. }
  9700. #u60820_div {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:160px;
  9706. height:30px;
  9707. background:inherit;
  9708. background-color:rgba(255, 255, 255, 1);
  9709. box-sizing:border-box;
  9710. border-width:1px;
  9711. border-style:solid;
  9712. border-color:rgba(215, 215, 215, 1);
  9713. border-radius:4px;
  9714. -moz-box-shadow:none;
  9715. -webkit-box-shadow:none;
  9716. box-shadow:none;
  9717. font-size:14px;
  9718. }
  9719. #u60820 {
  9720. border-width:0px;
  9721. position:absolute;
  9722. left:866px;
  9723. top:169px;
  9724. width:160px;
  9725. height:30px;
  9726. display:flex;
  9727. font-size:14px;
  9728. }
  9729. #u60820 .text {
  9730. position:absolute;
  9731. align-self:center;
  9732. padding:2px 2px 2px 2px;
  9733. box-sizing:border-box;
  9734. width:100%;
  9735. }
  9736. #u60820_text {
  9737. border-width:0px;
  9738. word-wrap:break-word;
  9739. text-transform:none;
  9740. visibility:hidden;
  9741. }
  9742. #u60821_input {
  9743. position:absolute;
  9744. left:0px;
  9745. top:0px;
  9746. width:153px;
  9747. height:23px;
  9748. padding:2px 2px 2px 2px;
  9749. font-family:'ArialMT', 'Arial', sans-serif;
  9750. font-weight:400;
  9751. font-style:normal;
  9752. font-size:14px;
  9753. letter-spacing:normal;
  9754. color:#AAAAAA;
  9755. vertical-align:none;
  9756. text-align:left;
  9757. text-transform:none;
  9758. background-color:transparent;
  9759. border-color:transparent;
  9760. }
  9761. #u60821_input.disabled {
  9762. position:absolute;
  9763. left:0px;
  9764. top:0px;
  9765. width:153px;
  9766. height:23px;
  9767. padding:2px 2px 2px 2px;
  9768. font-family:'ArialMT', 'Arial', sans-serif;
  9769. font-weight:400;
  9770. font-style:normal;
  9771. font-size:14px;
  9772. letter-spacing:normal;
  9773. color:#AAAAAA;
  9774. vertical-align:none;
  9775. text-align:left;
  9776. text-transform:none;
  9777. background-color:transparent;
  9778. border-color:transparent;
  9779. }
  9780. #u60821_div {
  9781. border-width:0px;
  9782. position:absolute;
  9783. left:0px;
  9784. top:0px;
  9785. width:153px;
  9786. height:23px;
  9787. background:inherit;
  9788. background-color:rgba(255, 255, 255, 1);
  9789. border:none;
  9790. border-radius:0px;
  9791. -moz-box-shadow:none;
  9792. -webkit-box-shadow:none;
  9793. box-shadow:none;
  9794. font-size:14px;
  9795. color:#AAAAAA;
  9796. }
  9797. #u60821 {
  9798. border-width:0px;
  9799. position:absolute;
  9800. left:871px;
  9801. top:171px;
  9802. width:153px;
  9803. height:23px;
  9804. display:flex;
  9805. font-size:14px;
  9806. color:#AAAAAA;
  9807. }
  9808. #u60821 .text {
  9809. position:absolute;
  9810. align-self:flex-start;
  9811. padding:2px 2px 2px 2px;
  9812. box-sizing:border-box;
  9813. width:100%;
  9814. }
  9815. #u60821_div.disabled {
  9816. border-width:0px;
  9817. position:absolute;
  9818. left:0px;
  9819. top:0px;
  9820. width:153px;
  9821. height:23px;
  9822. background:inherit;
  9823. background-color:rgba(240, 240, 240, 1);
  9824. border:none;
  9825. border-radius:0px;
  9826. -moz-box-shadow:none;
  9827. -webkit-box-shadow:none;
  9828. box-shadow:none;
  9829. font-size:14px;
  9830. color:#AAAAAA;
  9831. }
  9832. #u60821.disabled {
  9833. }
  9834. .u60821_input_option {
  9835. font-size:14px;
  9836. }
  9837. #u60822 {
  9838. border-width:0px;
  9839. position:absolute;
  9840. left:0px;
  9841. top:0px;
  9842. width:0px;
  9843. height:0px;
  9844. }
  9845. #u60823_div {
  9846. border-width:0px;
  9847. position:absolute;
  9848. left:0px;
  9849. top:0px;
  9850. width:160px;
  9851. height:30px;
  9852. background:inherit;
  9853. background-color:rgba(255, 255, 255, 1);
  9854. box-sizing:border-box;
  9855. border-width:1px;
  9856. border-style:solid;
  9857. border-color:rgba(215, 215, 215, 1);
  9858. border-radius:4px;
  9859. -moz-box-shadow:none;
  9860. -webkit-box-shadow:none;
  9861. box-shadow:none;
  9862. font-size:14px;
  9863. }
  9864. #u60823 {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:866px;
  9868. top:209px;
  9869. width:160px;
  9870. height:30px;
  9871. display:flex;
  9872. font-size:14px;
  9873. }
  9874. #u60823 .text {
  9875. position:absolute;
  9876. align-self:center;
  9877. padding:2px 2px 2px 2px;
  9878. box-sizing:border-box;
  9879. width:100%;
  9880. }
  9881. #u60823_text {
  9882. border-width:0px;
  9883. word-wrap:break-word;
  9884. text-transform:none;
  9885. visibility:hidden;
  9886. }
  9887. #u60824_input {
  9888. position:absolute;
  9889. left:0px;
  9890. top:0px;
  9891. width:153px;
  9892. height:23px;
  9893. padding:2px 2px 2px 2px;
  9894. font-family:'ArialMT', 'Arial', sans-serif;
  9895. font-weight:400;
  9896. font-style:normal;
  9897. font-size:14px;
  9898. letter-spacing:normal;
  9899. color:#AAAAAA;
  9900. vertical-align:none;
  9901. text-align:left;
  9902. text-transform:none;
  9903. background-color:transparent;
  9904. border-color:transparent;
  9905. }
  9906. #u60824_input.disabled {
  9907. position:absolute;
  9908. left:0px;
  9909. top:0px;
  9910. width:153px;
  9911. height:23px;
  9912. padding:2px 2px 2px 2px;
  9913. font-family:'ArialMT', 'Arial', sans-serif;
  9914. font-weight:400;
  9915. font-style:normal;
  9916. font-size:14px;
  9917. letter-spacing:normal;
  9918. color:#AAAAAA;
  9919. vertical-align:none;
  9920. text-align:left;
  9921. text-transform:none;
  9922. background-color:transparent;
  9923. border-color:transparent;
  9924. }
  9925. #u60824_div {
  9926. border-width:0px;
  9927. position:absolute;
  9928. left:0px;
  9929. top:0px;
  9930. width:153px;
  9931. height:23px;
  9932. background:inherit;
  9933. background-color:rgba(255, 255, 255, 1);
  9934. border:none;
  9935. border-radius:0px;
  9936. -moz-box-shadow:none;
  9937. -webkit-box-shadow:none;
  9938. box-shadow:none;
  9939. font-size:14px;
  9940. color:#AAAAAA;
  9941. }
  9942. #u60824 {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:871px;
  9946. top:211px;
  9947. width:153px;
  9948. height:23px;
  9949. display:flex;
  9950. font-size:14px;
  9951. color:#AAAAAA;
  9952. }
  9953. #u60824 .text {
  9954. position:absolute;
  9955. align-self:flex-start;
  9956. padding:2px 2px 2px 2px;
  9957. box-sizing:border-box;
  9958. width:100%;
  9959. }
  9960. #u60824_div.disabled {
  9961. border-width:0px;
  9962. position:absolute;
  9963. left:0px;
  9964. top:0px;
  9965. width:153px;
  9966. height:23px;
  9967. background:inherit;
  9968. background-color:rgba(240, 240, 240, 1);
  9969. border:none;
  9970. border-radius:0px;
  9971. -moz-box-shadow:none;
  9972. -webkit-box-shadow:none;
  9973. box-shadow:none;
  9974. font-size:14px;
  9975. color:#AAAAAA;
  9976. }
  9977. #u60824.disabled {
  9978. }
  9979. .u60824_input_option {
  9980. font-size:14px;
  9981. }
  9982. #u60825_div {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:0px;
  9986. top:0px;
  9987. width:69px;
  9988. height:50px;
  9989. background:inherit;
  9990. background-color:rgba(255, 255, 255, 0);
  9991. border:none;
  9992. border-left:0px;
  9993. border-top:0px;
  9994. border-right:0px;
  9995. border-radius:0px;
  9996. border-bottom-right-radius:0px;
  9997. border-bottom-left-radius:0px;
  9998. -moz-box-shadow:none;
  9999. -webkit-box-shadow:none;
  10000. box-shadow:none;
  10001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10002. font-weight:400;
  10003. font-style:normal;
  10004. font-size:14px;
  10005. line-height:40px;
  10006. }
  10007. #u60825 {
  10008. border-width:0px;
  10009. position:absolute;
  10010. left:734px;
  10011. top:90px;
  10012. width:69px;
  10013. height:50px;
  10014. display:flex;
  10015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10016. font-weight:400;
  10017. font-style:normal;
  10018. font-size:14px;
  10019. line-height:40px;
  10020. }
  10021. #u60825 .text {
  10022. position:absolute;
  10023. align-self:center;
  10024. padding:0px 0px 0px 0px;
  10025. box-sizing:border-box;
  10026. width:100%;
  10027. }
  10028. #u60825_text {
  10029. border-width:0px;
  10030. white-space:nowrap;
  10031. text-transform:none;
  10032. }
  10033. #u60826 {
  10034. border-width:0px;
  10035. position:absolute;
  10036. left:0px;
  10037. top:0px;
  10038. width:0px;
  10039. height:0px;
  10040. }
  10041. #u60827_div {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:0px;
  10045. top:0px;
  10046. width:160px;
  10047. height:30px;
  10048. background:inherit;
  10049. background-color:rgba(255, 255, 255, 1);
  10050. box-sizing:border-box;
  10051. border-width:1px;
  10052. border-style:solid;
  10053. border-color:rgba(215, 215, 215, 1);
  10054. border-radius:4px;
  10055. -moz-box-shadow:none;
  10056. -webkit-box-shadow:none;
  10057. box-shadow:none;
  10058. font-size:14px;
  10059. }
  10060. #u60827 {
  10061. border-width:0px;
  10062. position:absolute;
  10063. left:356px;
  10064. top:208px;
  10065. width:160px;
  10066. height:30px;
  10067. display:flex;
  10068. font-size:14px;
  10069. }
  10070. #u60827 .text {
  10071. position:absolute;
  10072. align-self:center;
  10073. padding:2px 2px 2px 2px;
  10074. box-sizing:border-box;
  10075. width:100%;
  10076. }
  10077. #u60827_text {
  10078. border-width:0px;
  10079. word-wrap:break-word;
  10080. text-transform:none;
  10081. visibility:hidden;
  10082. }
  10083. #u60828_input {
  10084. position:absolute;
  10085. left:0px;
  10086. top:0px;
  10087. width:153px;
  10088. height:23px;
  10089. padding:2px 2px 2px 2px;
  10090. font-family:'ArialMT', 'Arial', sans-serif;
  10091. font-weight:400;
  10092. font-style:normal;
  10093. font-size:14px;
  10094. letter-spacing:normal;
  10095. color:#AAAAAA;
  10096. vertical-align:none;
  10097. text-align:left;
  10098. text-transform:none;
  10099. background-color:transparent;
  10100. border-color:transparent;
  10101. }
  10102. #u60828_input.disabled {
  10103. position:absolute;
  10104. left:0px;
  10105. top:0px;
  10106. width:153px;
  10107. height:23px;
  10108. padding:2px 2px 2px 2px;
  10109. font-family:'ArialMT', 'Arial', sans-serif;
  10110. font-weight:400;
  10111. font-style:normal;
  10112. font-size:14px;
  10113. letter-spacing:normal;
  10114. color:#AAAAAA;
  10115. vertical-align:none;
  10116. text-align:left;
  10117. text-transform:none;
  10118. background-color:transparent;
  10119. border-color:transparent;
  10120. }
  10121. #u60828_div {
  10122. border-width:0px;
  10123. position:absolute;
  10124. left:0px;
  10125. top:0px;
  10126. width:153px;
  10127. height:23px;
  10128. background:inherit;
  10129. background-color:rgba(255, 255, 255, 1);
  10130. border:none;
  10131. border-radius:0px;
  10132. -moz-box-shadow:none;
  10133. -webkit-box-shadow:none;
  10134. box-shadow:none;
  10135. font-size:14px;
  10136. color:#AAAAAA;
  10137. }
  10138. #u60828 {
  10139. border-width:0px;
  10140. position:absolute;
  10141. left:361px;
  10142. top:210px;
  10143. width:153px;
  10144. height:23px;
  10145. display:flex;
  10146. font-size:14px;
  10147. color:#AAAAAA;
  10148. }
  10149. #u60828 .text {
  10150. position:absolute;
  10151. align-self:flex-start;
  10152. padding:2px 2px 2px 2px;
  10153. box-sizing:border-box;
  10154. width:100%;
  10155. }
  10156. #u60828_div.disabled {
  10157. border-width:0px;
  10158. position:absolute;
  10159. left:0px;
  10160. top:0px;
  10161. width:153px;
  10162. height:23px;
  10163. background:inherit;
  10164. background-color:rgba(240, 240, 240, 1);
  10165. border:none;
  10166. border-radius:0px;
  10167. -moz-box-shadow:none;
  10168. -webkit-box-shadow:none;
  10169. box-shadow:none;
  10170. font-size:14px;
  10171. color:#AAAAAA;
  10172. }
  10173. #u60828.disabled {
  10174. }
  10175. .u60828_input_option {
  10176. font-size:14px;
  10177. }