styles.css 223 KB

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