styles.css 115 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2329px;
  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. #u60437_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. #u60437 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u60437 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u60437_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u60438_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. #u60438 {
  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. #u60438 .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. #u60438_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u60439_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. #u60439 {
  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. #u60439 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u60439_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u60440 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u60441_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u60441 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u60441 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u60441_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u60442_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. #u60442 {
  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. #u60442 .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. #u60442_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u60443_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. #u60443 {
  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. #u60443 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u60443_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u60444 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u60445_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. #u60445_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. #u60445_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. #u60445 {
  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. #u60445 .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. #u60445_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. #u60445.disabled {
  356. }
  357. .u60445_input_option {
  358. font-size:14px;
  359. }
  360. #u60446_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u60446 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u60446 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u60446_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u60447_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. #u60447 {
  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. #u60447 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u60447_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u60448_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. #u60448 {
  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. #u60448 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u60448_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u60449 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u60450_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. #u60450 {
  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. #u60450 .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. #u60450_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u60451_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u60451 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u60451 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u60451_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u60452 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u60453_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. #u60453 {
  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. #u60453 .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. #u60453_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u60454_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u60454 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u60454 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u60454_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u60455 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u60456_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. #u60456 {
  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. #u60456 .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. #u60456_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u60457_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u60457 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u60457 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u60457_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u60458 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u60459_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. #u60459 {
  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. #u60459 .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. #u60459_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u60460_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u60460 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u60460 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u60460_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u60461 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u60462_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. #u60462 {
  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. #u60462 .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. #u60462_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u60463_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u60463 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u60463 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u60463_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u60464 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u60465_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. #u60465 {
  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. #u60465 .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. #u60465_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u60466_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u60466 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u60466 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u60466_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u60467 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u60468_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. #u60468 {
  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. #u60468 .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. #u60468_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u60469_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u60469 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u60469 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u60469_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u60470 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u60471_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. #u60471 {
  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. #u60471 .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. #u60471_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u60472_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u60472 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u60472 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u60472_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u60473 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u60474_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. #u60474 {
  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. #u60474 .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. #u60474_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u60475_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u60475 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u60475 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u60475_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u60476 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u60477_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. #u60477 {
  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. #u60477 .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. #u60477_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u60478_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u60478 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u60478 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u60478_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u60479_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. #u60479 {
  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. #u60479 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u60479_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u60480_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u60480 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u60480 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u60480_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u60481_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. #u60481 {
  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. #u60481 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u60481_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u60482_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u60482 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u60482 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u60482_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u60483 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u60484_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. #u60484 {
  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. #u60484 .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. #u60484_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u60485_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u60485 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u60485 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u60485_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u60486 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u60487_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. #u60487 {
  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. #u60487 .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. #u60487_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u60488_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u60488 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u60488 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u60488_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u60489_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1255px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(242, 242, 242, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. }
  1656. #u60489 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:333px;
  1660. top:50px;
  1661. width:1255px;
  1662. height:1180px;
  1663. display:flex;
  1664. }
  1665. #u60489 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u60489_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u60490 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:357px;
  1682. top:192px;
  1683. width:1207px;
  1684. height:220px;
  1685. }
  1686. #u60491_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:36px;
  1692. height:30px;
  1693. }
  1694. #u60491 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:36px;
  1700. height:30px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. color:#FFFFFF;
  1707. }
  1708. #u60491 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u60491_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. }
  1720. #u60492_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:131px;
  1726. height:30px;
  1727. }
  1728. #u60492 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:36px;
  1732. top:0px;
  1733. width:131px;
  1734. height:30px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:14px;
  1740. color:#FFFFFF;
  1741. }
  1742. #u60492 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 2px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u60492_text {
  1750. border-width:0px;
  1751. word-wrap:break-word;
  1752. text-transform:none;
  1753. }
  1754. #u60493_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:185px;
  1760. height:30px;
  1761. }
  1762. #u60493 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:167px;
  1766. top:0px;
  1767. width:185px;
  1768. height:30px;
  1769. display:flex;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:14px;
  1774. color:#FFFFFF;
  1775. }
  1776. #u60493 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u60493_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u60494_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:151px;
  1794. height:30px;
  1795. }
  1796. #u60494 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:352px;
  1800. top:0px;
  1801. width:151px;
  1802. height:30px;
  1803. display:flex;
  1804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. font-size:14px;
  1808. color:#FFFFFF;
  1809. }
  1810. #u60494 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u60494_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u60495_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:187px;
  1828. height:30px;
  1829. }
  1830. #u60495 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:503px;
  1834. top:0px;
  1835. width:187px;
  1836. height:30px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:14px;
  1842. color:#FFFFFF;
  1843. }
  1844. #u60495 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u60495_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u60496_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:131px;
  1862. height:30px;
  1863. }
  1864. #u60496 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:690px;
  1868. top:0px;
  1869. width:131px;
  1870. height:30px;
  1871. display:flex;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:14px;
  1876. color:#FFFFFF;
  1877. }
  1878. #u60496 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u60496_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u60497_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:134px;
  1896. height:30px;
  1897. }
  1898. #u60497 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:821px;
  1902. top:0px;
  1903. width:134px;
  1904. height:30px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:14px;
  1910. color:#FFFFFF;
  1911. }
  1912. #u60497 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u60497_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u60498_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:134px;
  1930. height:30px;
  1931. }
  1932. #u60498 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:955px;
  1936. top:0px;
  1937. width:134px;
  1938. height:30px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:14px;
  1944. color:#FFFFFF;
  1945. }
  1946. #u60498 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 2px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u60498_text {
  1954. border-width:0px;
  1955. word-wrap:break-word;
  1956. text-transform:none;
  1957. }
  1958. #u60499_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:118px;
  1964. height:30px;
  1965. }
  1966. #u60499 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:1089px;
  1970. top:0px;
  1971. width:118px;
  1972. height:30px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:14px;
  1978. color:#FFFFFF;
  1979. }
  1980. #u60499 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u60499_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u60500_img {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:36px;
  1998. height:38px;
  1999. }
  2000. #u60500 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:30px;
  2005. width:36px;
  2006. height:38px;
  2007. display:flex;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:14px;
  2012. }
  2013. #u60500 .text {
  2014. position:absolute;
  2015. align-self:center;
  2016. padding:2px 2px 2px 2px;
  2017. box-sizing:border-box;
  2018. width:100%;
  2019. }
  2020. #u60500_text {
  2021. border-width:0px;
  2022. word-wrap:break-word;
  2023. text-transform:none;
  2024. }
  2025. #u60501_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:131px;
  2031. height:38px;
  2032. }
  2033. #u60501 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:36px;
  2037. top:30px;
  2038. width:131px;
  2039. height:38px;
  2040. display:flex;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:14px;
  2045. }
  2046. #u60501 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u60501_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. visibility:hidden;
  2058. }
  2059. #u60502_img {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:185px;
  2065. height:38px;
  2066. }
  2067. #u60502 {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:167px;
  2071. top:30px;
  2072. width:185px;
  2073. height:38px;
  2074. display:flex;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2076. font-weight:400;
  2077. font-style:normal;
  2078. font-size:14px;
  2079. }
  2080. #u60502 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u60502_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. visibility:hidden;
  2092. }
  2093. #u60503_img {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:151px;
  2099. height:38px;
  2100. }
  2101. #u60503 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:352px;
  2105. top:30px;
  2106. width:151px;
  2107. height:38px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. }
  2114. #u60503 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:2px 2px 2px 2px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u60503_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. visibility:hidden;
  2126. }
  2127. #u60504_img {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:187px;
  2133. height:38px;
  2134. }
  2135. #u60504 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:503px;
  2139. top:30px;
  2140. width:187px;
  2141. height:38px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:14px;
  2147. }
  2148. #u60504 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:2px 2px 2px 2px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u60504_text {
  2156. border-width:0px;
  2157. word-wrap:break-word;
  2158. text-transform:none;
  2159. visibility:hidden;
  2160. }
  2161. #u60505_img {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:131px;
  2167. height:38px;
  2168. }
  2169. #u60505 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:690px;
  2173. top:30px;
  2174. width:131px;
  2175. height:38px;
  2176. display:flex;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. }
  2182. #u60505 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 2px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u60505_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. visibility:hidden;
  2194. }
  2195. #u60506_img {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:134px;
  2201. height:38px;
  2202. }
  2203. #u60506 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:821px;
  2207. top:30px;
  2208. width:134px;
  2209. height:38px;
  2210. display:flex;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:14px;
  2215. color:#1890FF;
  2216. }
  2217. #u60506 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u60506_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. }
  2229. #u60507_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:134px;
  2235. height:38px;
  2236. }
  2237. #u60507 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:955px;
  2241. top:30px;
  2242. width:134px;
  2243. height:38px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:14px;
  2249. color:#1890FF;
  2250. }
  2251. #u60507 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u60507_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. }
  2263. #u60508_img {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:118px;
  2269. height:38px;
  2270. }
  2271. #u60508 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:1089px;
  2275. top:30px;
  2276. width:118px;
  2277. height:38px;
  2278. display:flex;
  2279. font-size:14px;
  2280. }
  2281. #u60508 .text {
  2282. position:absolute;
  2283. align-self:center;
  2284. padding:2px 2px 2px 2px;
  2285. box-sizing:border-box;
  2286. width:100%;
  2287. }
  2288. #u60508_text {
  2289. border-width:0px;
  2290. word-wrap:break-word;
  2291. text-transform:none;
  2292. }
  2293. #u60509_img {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:36px;
  2299. height:38px;
  2300. }
  2301. #u60509 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:68px;
  2306. width:36px;
  2307. height:38px;
  2308. display:flex;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:14px;
  2313. }
  2314. #u60509 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u60509_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. visibility:hidden;
  2326. }
  2327. #u60510_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:131px;
  2333. height:38px;
  2334. }
  2335. #u60510 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:36px;
  2339. top:68px;
  2340. width:131px;
  2341. height:38px;
  2342. display:flex;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:14px;
  2347. }
  2348. #u60510 .text {
  2349. position:absolute;
  2350. align-self:center;
  2351. padding:2px 2px 2px 2px;
  2352. box-sizing:border-box;
  2353. width:100%;
  2354. }
  2355. #u60510_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. visibility:hidden;
  2360. }
  2361. #u60511_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:185px;
  2367. height:38px;
  2368. }
  2369. #u60511 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:167px;
  2373. top:68px;
  2374. width:185px;
  2375. height:38px;
  2376. display:flex;
  2377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:14px;
  2381. }
  2382. #u60511 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 2px 2px 2px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u60511_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u60512_img {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:151px;
  2401. height:38px;
  2402. }
  2403. #u60512 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:352px;
  2407. top:68px;
  2408. width:151px;
  2409. height:38px;
  2410. display:flex;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:14px;
  2415. }
  2416. #u60512 .text {
  2417. position:absolute;
  2418. align-self:center;
  2419. padding:2px 2px 2px 2px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u60512_text {
  2424. border-width:0px;
  2425. word-wrap:break-word;
  2426. text-transform:none;
  2427. visibility:hidden;
  2428. }
  2429. #u60513_img {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:187px;
  2435. height:38px;
  2436. }
  2437. #u60513 {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:503px;
  2441. top:68px;
  2442. width:187px;
  2443. height:38px;
  2444. display:flex;
  2445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. font-size:14px;
  2449. }
  2450. #u60513 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 2px 2px 2px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u60513_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. visibility:hidden;
  2462. }
  2463. #u60514_img {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:131px;
  2469. height:38px;
  2470. }
  2471. #u60514 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:690px;
  2475. top:68px;
  2476. width:131px;
  2477. height:38px;
  2478. display:flex;
  2479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2480. font-weight:400;
  2481. font-style:normal;
  2482. font-size:14px;
  2483. }
  2484. #u60514 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u60514_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. visibility:hidden;
  2496. }
  2497. #u60515_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:134px;
  2503. height:38px;
  2504. }
  2505. #u60515 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:821px;
  2509. top:68px;
  2510. width:134px;
  2511. height:38px;
  2512. display:flex;
  2513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:14px;
  2517. }
  2518. #u60515 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 2px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u60515_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u60516_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:134px;
  2537. height:38px;
  2538. }
  2539. #u60516 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:955px;
  2543. top:68px;
  2544. width:134px;
  2545. height:38px;
  2546. display:flex;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. }
  2552. #u60516 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:2px 2px 2px 2px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u60516_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. visibility:hidden;
  2564. }
  2565. #u60517_img {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:118px;
  2571. height:38px;
  2572. }
  2573. #u60517 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:1089px;
  2577. top:68px;
  2578. width:118px;
  2579. height:38px;
  2580. display:flex;
  2581. font-size:14px;
  2582. }
  2583. #u60517 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 2px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u60517_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. visibility:hidden;
  2595. }
  2596. #u60518_img {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:36px;
  2602. height:38px;
  2603. }
  2604. #u60518 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:106px;
  2609. width:36px;
  2610. height:38px;
  2611. display:flex;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:14px;
  2616. }
  2617. #u60518 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:2px 2px 2px 2px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u60518_text {
  2625. border-width:0px;
  2626. word-wrap:break-word;
  2627. text-transform:none;
  2628. visibility:hidden;
  2629. }
  2630. #u60519_img {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:131px;
  2636. height:38px;
  2637. }
  2638. #u60519 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:36px;
  2642. top:106px;
  2643. width:131px;
  2644. height:38px;
  2645. display:flex;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:14px;
  2650. }
  2651. #u60519 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 2px 2px 2px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u60519_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. visibility:hidden;
  2663. }
  2664. #u60520_img {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:185px;
  2670. height:38px;
  2671. }
  2672. #u60520 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:167px;
  2676. top:106px;
  2677. width:185px;
  2678. height:38px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:14px;
  2684. }
  2685. #u60520 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 2px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u60520_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. visibility:hidden;
  2697. }
  2698. #u60521_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:151px;
  2704. height:38px;
  2705. }
  2706. #u60521 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:352px;
  2710. top:106px;
  2711. width:151px;
  2712. height:38px;
  2713. display:flex;
  2714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:14px;
  2718. }
  2719. #u60521 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 2px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u60521_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. visibility:hidden;
  2731. }
  2732. #u60522_img {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:187px;
  2738. height:38px;
  2739. }
  2740. #u60522 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:503px;
  2744. top:106px;
  2745. width:187px;
  2746. height:38px;
  2747. display:flex;
  2748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2749. font-weight:400;
  2750. font-style:normal;
  2751. font-size:14px;
  2752. }
  2753. #u60522 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 2px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u60522_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. visibility:hidden;
  2765. }
  2766. #u60523_img {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:131px;
  2772. height:38px;
  2773. }
  2774. #u60523 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:690px;
  2778. top:106px;
  2779. width:131px;
  2780. height:38px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:14px;
  2786. }
  2787. #u60523 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 2px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u60523_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u60524_img {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:134px;
  2806. height:38px;
  2807. }
  2808. #u60524 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:821px;
  2812. top:106px;
  2813. width:134px;
  2814. height:38px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:14px;
  2820. }
  2821. #u60524 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 2px 2px 2px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u60524_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u60525_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:134px;
  2840. height:38px;
  2841. }
  2842. #u60525 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:955px;
  2846. top:106px;
  2847. width:134px;
  2848. height:38px;
  2849. display:flex;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:14px;
  2854. }
  2855. #u60525 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 2px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u60525_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. visibility:hidden;
  2867. }
  2868. #u60526_img {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:118px;
  2874. height:38px;
  2875. }
  2876. #u60526 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:1089px;
  2880. top:106px;
  2881. width:118px;
  2882. height:38px;
  2883. display:flex;
  2884. font-size:14px;
  2885. }
  2886. #u60526 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 2px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u60526_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u60527_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:36px;
  2905. height:38px;
  2906. }
  2907. #u60527 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:144px;
  2912. width:36px;
  2913. height:38px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:14px;
  2919. }
  2920. #u60527 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 2px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u60527_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u60528_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:131px;
  2939. height:38px;
  2940. }
  2941. #u60528 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:36px;
  2945. top:144px;
  2946. width:131px;
  2947. height:38px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:14px;
  2953. }
  2954. #u60528 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:2px 2px 2px 2px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u60528_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. visibility:hidden;
  2966. }
  2967. #u60529_img {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:185px;
  2973. height:38px;
  2974. }
  2975. #u60529 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:167px;
  2979. top:144px;
  2980. width:185px;
  2981. height:38px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:14px;
  2987. }
  2988. #u60529 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u60529_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u60530_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:151px;
  3007. height:38px;
  3008. }
  3009. #u60530 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:352px;
  3013. top:144px;
  3014. width:151px;
  3015. height:38px;
  3016. display:flex;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:14px;
  3021. }
  3022. #u60530 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 2px 2px 2px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u60530_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u60531_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:187px;
  3041. height:38px;
  3042. }
  3043. #u60531 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:503px;
  3047. top:144px;
  3048. width:187px;
  3049. height:38px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. }
  3056. #u60531 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u60531_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u60532_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:131px;
  3075. height:38px;
  3076. }
  3077. #u60532 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:690px;
  3081. top:144px;
  3082. width:131px;
  3083. height:38px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:14px;
  3089. }
  3090. #u60532 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 2px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u60532_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u60533_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:134px;
  3109. height:38px;
  3110. }
  3111. #u60533 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:821px;
  3115. top:144px;
  3116. width:134px;
  3117. height:38px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:14px;
  3123. }
  3124. #u60533 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 2px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u60533_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. visibility:hidden;
  3136. }
  3137. #u60534_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:134px;
  3143. height:38px;
  3144. }
  3145. #u60534 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:955px;
  3149. top:144px;
  3150. width:134px;
  3151. height:38px;
  3152. display:flex;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:14px;
  3157. }
  3158. #u60534 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 2px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u60534_text {
  3166. border-width:0px;
  3167. word-wrap:break-word;
  3168. text-transform:none;
  3169. visibility:hidden;
  3170. }
  3171. #u60535_img {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:118px;
  3177. height:38px;
  3178. }
  3179. #u60535 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:1089px;
  3183. top:144px;
  3184. width:118px;
  3185. height:38px;
  3186. display:flex;
  3187. font-size:14px;
  3188. }
  3189. #u60535 .text {
  3190. position:absolute;
  3191. align-self:center;
  3192. padding:2px 2px 2px 2px;
  3193. box-sizing:border-box;
  3194. width:100%;
  3195. }
  3196. #u60535_text {
  3197. border-width:0px;
  3198. word-wrap:break-word;
  3199. text-transform:none;
  3200. visibility:hidden;
  3201. }
  3202. #u60536_img {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:36px;
  3208. height:38px;
  3209. }
  3210. #u60536 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:182px;
  3215. width:36px;
  3216. height:38px;
  3217. display:flex;
  3218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3219. font-weight:400;
  3220. font-style:normal;
  3221. font-size:14px;
  3222. }
  3223. #u60536 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 2px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u60536_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. visibility:hidden;
  3235. }
  3236. #u60537_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:131px;
  3242. height:38px;
  3243. }
  3244. #u60537 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:36px;
  3248. top:182px;
  3249. width:131px;
  3250. height:38px;
  3251. display:flex;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:14px;
  3256. }
  3257. #u60537 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 2px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u60537_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. visibility:hidden;
  3269. }
  3270. #u60538_img {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:185px;
  3276. height:38px;
  3277. }
  3278. #u60538 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:167px;
  3282. top:182px;
  3283. width:185px;
  3284. height:38px;
  3285. display:flex;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:14px;
  3290. }
  3291. #u60538 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 2px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u60538_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. visibility:hidden;
  3303. }
  3304. #u60539_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:151px;
  3310. height:38px;
  3311. }
  3312. #u60539 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:352px;
  3316. top:182px;
  3317. width:151px;
  3318. height:38px;
  3319. display:flex;
  3320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:14px;
  3324. }
  3325. #u60539 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 2px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u60539_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. visibility:hidden;
  3337. }
  3338. #u60540_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:187px;
  3344. height:38px;
  3345. }
  3346. #u60540 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:503px;
  3350. top:182px;
  3351. width:187px;
  3352. height:38px;
  3353. display:flex;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:14px;
  3358. }
  3359. #u60540 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:2px 2px 2px 2px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u60540_text {
  3367. border-width:0px;
  3368. word-wrap:break-word;
  3369. text-transform:none;
  3370. visibility:hidden;
  3371. }
  3372. #u60541_img {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:131px;
  3378. height:38px;
  3379. }
  3380. #u60541 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:690px;
  3384. top:182px;
  3385. width:131px;
  3386. height:38px;
  3387. display:flex;
  3388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:14px;
  3392. }
  3393. #u60541 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 2px 2px 2px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u60541_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. visibility:hidden;
  3405. }
  3406. #u60542_img {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:134px;
  3412. height:38px;
  3413. }
  3414. #u60542 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:821px;
  3418. top:182px;
  3419. width:134px;
  3420. height:38px;
  3421. display:flex;
  3422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:14px;
  3426. }
  3427. #u60542 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 2px 2px 2px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u60542_text {
  3435. border-width:0px;
  3436. word-wrap:break-word;
  3437. text-transform:none;
  3438. visibility:hidden;
  3439. }
  3440. #u60543_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:134px;
  3446. height:38px;
  3447. }
  3448. #u60543 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:955px;
  3452. top:182px;
  3453. width:134px;
  3454. height:38px;
  3455. display:flex;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:14px;
  3460. }
  3461. #u60543 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 2px 2px 2px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u60543_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. visibility:hidden;
  3473. }
  3474. #u60544_img {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:118px;
  3480. height:38px;
  3481. }
  3482. #u60544 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:1089px;
  3486. top:182px;
  3487. width:118px;
  3488. height:38px;
  3489. display:flex;
  3490. font-size:14px;
  3491. }
  3492. #u60544 .text {
  3493. position:absolute;
  3494. align-self:center;
  3495. padding:2px 2px 2px 2px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u60544_text {
  3500. border-width:0px;
  3501. word-wrap:break-word;
  3502. text-transform:none;
  3503. visibility:hidden;
  3504. }
  3505. #u60545_div {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:80px;
  3511. height:30px;
  3512. background:inherit;
  3513. background-color:rgba(24, 144, 255, 1);
  3514. border:none;
  3515. border-radius:4px;
  3516. -moz-box-shadow:none;
  3517. -webkit-box-shadow:none;
  3518. box-shadow:none;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:14px;
  3523. color:#FFFFFF;
  3524. }
  3525. #u60545 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:357px;
  3529. top:154px;
  3530. width:80px;
  3531. height:30px;
  3532. display:flex;
  3533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3534. font-weight:400;
  3535. font-style:normal;
  3536. font-size:14px;
  3537. color:#FFFFFF;
  3538. }
  3539. #u60545 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u60545_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. }
  3551. #u60546 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:0px;
  3557. height:0px;
  3558. }
  3559. #u60547_div {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:160px;
  3565. height:30px;
  3566. background:inherit;
  3567. background-color:rgba(255, 255, 255, 1);
  3568. box-sizing:border-box;
  3569. border-width:1px;
  3570. border-style:solid;
  3571. border-color:rgba(201, 201, 201, 1);
  3572. border-radius:4px;
  3573. -moz-box-shadow:none;
  3574. -webkit-box-shadow:none;
  3575. box-shadow:none;
  3576. font-family:'Microsoft YaHei', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:14px;
  3580. color:#CCCCCC;
  3581. text-align:left;
  3582. }
  3583. #u60547 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:527px;
  3587. top:103px;
  3588. width:160px;
  3589. height:30px;
  3590. display:flex;
  3591. font-family:'Microsoft YaHei', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:14px;
  3595. color:#CCCCCC;
  3596. text-align:left;
  3597. }
  3598. #u60547 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 8px 2px 8px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u60547_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u60548_input {
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:150px;
  3616. height:28px;
  3617. padding:2px 2px 2px 2px;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:14px;
  3622. letter-spacing:normal;
  3623. color:#000000;
  3624. vertical-align:none;
  3625. text-align:left;
  3626. text-transform:none;
  3627. background-color:transparent;
  3628. border-color:transparent;
  3629. }
  3630. #u60548_input.disabled {
  3631. position:absolute;
  3632. left:0px;
  3633. top:0px;
  3634. width:150px;
  3635. height:28px;
  3636. padding:2px 2px 2px 2px;
  3637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3638. font-weight:400;
  3639. font-style:normal;
  3640. font-size:14px;
  3641. letter-spacing:normal;
  3642. color:#000000;
  3643. vertical-align:none;
  3644. text-align:left;
  3645. text-transform:none;
  3646. background-color:transparent;
  3647. border-color:transparent;
  3648. }
  3649. #u60548_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:150px;
  3655. height:28px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 1);
  3658. border:none;
  3659. border-radius:0px;
  3660. -moz-box-shadow:none;
  3661. -webkit-box-shadow:none;
  3662. box-shadow:none;
  3663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3664. font-weight:400;
  3665. font-style:normal;
  3666. font-size:14px;
  3667. }
  3668. #u60548 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:533px;
  3672. top:104px;
  3673. width:150px;
  3674. height:28px;
  3675. display:flex;
  3676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3677. font-weight:400;
  3678. font-style:normal;
  3679. font-size:14px;
  3680. }
  3681. #u60548 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 2px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u60548_div.disabled {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:150px;
  3694. height:28px;
  3695. background:inherit;
  3696. background-color:rgba(240, 240, 240, 1);
  3697. border:none;
  3698. border-radius:0px;
  3699. -moz-box-shadow:none;
  3700. -webkit-box-shadow:none;
  3701. box-shadow:none;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:14px;
  3706. }
  3707. #u60548.disabled {
  3708. }
  3709. #u60549 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:0px;
  3715. height:0px;
  3716. }
  3717. #u60550_div {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:60px;
  3723. height:30px;
  3724. background:inherit;
  3725. background-color:rgba(24, 144, 255, 1);
  3726. border:none;
  3727. border-radius:4px;
  3728. -moz-box-shadow:none;
  3729. -webkit-box-shadow:none;
  3730. box-shadow:none;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:14px;
  3735. color:#FFFFFF;
  3736. }
  3737. #u60550 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:877px;
  3741. top:103px;
  3742. width:60px;
  3743. height:30px;
  3744. display:flex;
  3745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3746. font-weight:400;
  3747. font-style:normal;
  3748. font-size:14px;
  3749. color:#FFFFFF;
  3750. }
  3751. #u60550 .text {
  3752. position:absolute;
  3753. align-self:center;
  3754. padding:2px 2px 2px 2px;
  3755. box-sizing:border-box;
  3756. width:100%;
  3757. }
  3758. #u60550_text {
  3759. border-width:0px;
  3760. word-wrap:break-word;
  3761. text-transform:none;
  3762. }
  3763. #u60551_div {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:60px;
  3769. height:30px;
  3770. background:inherit;
  3771. background-color:rgba(255, 255, 255, 1);
  3772. box-sizing:border-box;
  3773. border-width:1px;
  3774. border-style:solid;
  3775. border-color:rgba(170, 170, 170, 1);
  3776. border-radius:4px;
  3777. -moz-box-shadow:none;
  3778. -webkit-box-shadow:none;
  3779. box-shadow:none;
  3780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:14px;
  3784. }
  3785. #u60551 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:947px;
  3789. top:103px;
  3790. width:60px;
  3791. height:30px;
  3792. display:flex;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:14px;
  3797. }
  3798. #u60551 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:2px 2px 2px 2px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u60551_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. }
  3810. #u60552 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:0px;
  3816. height:0px;
  3817. }
  3818. #u60553_div {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:160px;
  3824. height:30px;
  3825. background:inherit;
  3826. background-color:rgba(255, 255, 255, 1);
  3827. box-sizing:border-box;
  3828. border-width:1px;
  3829. border-style:solid;
  3830. border-color:rgba(215, 215, 215, 1);
  3831. border-radius:4px;
  3832. -moz-box-shadow:none;
  3833. -webkit-box-shadow:none;
  3834. box-shadow:none;
  3835. font-size:14px;
  3836. }
  3837. #u60553 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:697px;
  3841. top:103px;
  3842. width:160px;
  3843. height:30px;
  3844. display:flex;
  3845. font-size:14px;
  3846. }
  3847. #u60553 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 2px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u60553_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u60554_input {
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:153px;
  3865. height:23px;
  3866. padding:2px 2px 2px 2px;
  3867. font-family:'ArialMT', 'Arial', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:14px;
  3871. letter-spacing:normal;
  3872. color:#AAAAAA;
  3873. vertical-align:none;
  3874. text-align:left;
  3875. text-transform:none;
  3876. background-color:transparent;
  3877. border-color:transparent;
  3878. }
  3879. #u60554_input.disabled {
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:153px;
  3884. height:23px;
  3885. padding:2px 2px 2px 2px;
  3886. font-family:'ArialMT', 'Arial', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:14px;
  3890. letter-spacing:normal;
  3891. color:#AAAAAA;
  3892. vertical-align:none;
  3893. text-align:left;
  3894. text-transform:none;
  3895. background-color:transparent;
  3896. border-color:transparent;
  3897. }
  3898. #u60554_div {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:153px;
  3904. height:23px;
  3905. background:inherit;
  3906. background-color:rgba(255, 255, 255, 1);
  3907. border:none;
  3908. border-radius:0px;
  3909. -moz-box-shadow:none;
  3910. -webkit-box-shadow:none;
  3911. box-shadow:none;
  3912. font-size:14px;
  3913. color:#AAAAAA;
  3914. }
  3915. #u60554 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:702px;
  3919. top:105px;
  3920. width:153px;
  3921. height:23px;
  3922. display:flex;
  3923. font-size:14px;
  3924. color:#AAAAAA;
  3925. }
  3926. #u60554 .text {
  3927. position:absolute;
  3928. align-self:flex-start;
  3929. padding:2px 2px 2px 2px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u60554_div.disabled {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:153px;
  3939. height:23px;
  3940. background:inherit;
  3941. background-color:rgba(240, 240, 240, 1);
  3942. border:none;
  3943. border-radius:0px;
  3944. -moz-box-shadow:none;
  3945. -webkit-box-shadow:none;
  3946. box-shadow:none;
  3947. font-size:14px;
  3948. color:#AAAAAA;
  3949. }
  3950. #u60554.disabled {
  3951. }
  3952. .u60554_input_option {
  3953. font-size:14px;
  3954. }
  3955. #u60555_div {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:73px;
  3961. height:50px;
  3962. background:inherit;
  3963. background-color:rgba(255, 255, 255, 0);
  3964. border:none;
  3965. border-left:0px;
  3966. border-top:0px;
  3967. border-right:0px;
  3968. border-radius:0px;
  3969. border-bottom-right-radius:0px;
  3970. border-bottom-left-radius:0px;
  3971. -moz-box-shadow:none;
  3972. -webkit-box-shadow:none;
  3973. box-shadow:none;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:18px;
  3978. line-height:40px;
  3979. }
  3980. #u60555 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:356px;
  3984. top:53px;
  3985. width:73px;
  3986. height:50px;
  3987. display:flex;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:18px;
  3992. line-height:40px;
  3993. }
  3994. #u60555 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:0px 0px 0px 0px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u60555_text {
  4002. border-width:0px;
  4003. white-space:nowrap;
  4004. text-transform:none;
  4005. }
  4006. #u60556 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:0px;
  4012. height:0px;
  4013. }
  4014. #u60557_div {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:160px;
  4020. height:30px;
  4021. background:inherit;
  4022. background-color:rgba(255, 255, 255, 1);
  4023. box-sizing:border-box;
  4024. border-width:1px;
  4025. border-style:solid;
  4026. border-color:rgba(215, 215, 215, 1);
  4027. border-radius:4px;
  4028. -moz-box-shadow:none;
  4029. -webkit-box-shadow:none;
  4030. box-shadow:none;
  4031. font-size:14px;
  4032. }
  4033. #u60557 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:357px;
  4037. top:101px;
  4038. width:160px;
  4039. height:30px;
  4040. display:flex;
  4041. font-size:14px;
  4042. }
  4043. #u60557 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 2px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u60557_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u60558_input {
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:153px;
  4061. height:23px;
  4062. padding:2px 2px 2px 2px;
  4063. font-family:'ArialMT', 'Arial', sans-serif;
  4064. font-weight:400;
  4065. font-style:normal;
  4066. font-size:14px;
  4067. letter-spacing:normal;
  4068. color:#AAAAAA;
  4069. vertical-align:none;
  4070. text-align:left;
  4071. text-transform:none;
  4072. background-color:transparent;
  4073. border-color:transparent;
  4074. }
  4075. #u60558_input.disabled {
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:153px;
  4080. height:23px;
  4081. padding:2px 2px 2px 2px;
  4082. font-family:'ArialMT', 'Arial', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:14px;
  4086. letter-spacing:normal;
  4087. color:#AAAAAA;
  4088. vertical-align:none;
  4089. text-align:left;
  4090. text-transform:none;
  4091. background-color:transparent;
  4092. border-color:transparent;
  4093. }
  4094. #u60558_div {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:153px;
  4100. height:23px;
  4101. background:inherit;
  4102. background-color:rgba(255, 255, 255, 1);
  4103. border:none;
  4104. border-radius:0px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. font-size:14px;
  4109. color:#AAAAAA;
  4110. }
  4111. #u60558 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:362px;
  4115. top:103px;
  4116. width:153px;
  4117. height:23px;
  4118. display:flex;
  4119. font-size:14px;
  4120. color:#AAAAAA;
  4121. }
  4122. #u60558 .text {
  4123. position:absolute;
  4124. align-self:flex-start;
  4125. padding:2px 2px 2px 2px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u60558_div.disabled {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:153px;
  4135. height:23px;
  4136. background:inherit;
  4137. background-color:rgba(240, 240, 240, 1);
  4138. border:none;
  4139. border-radius:0px;
  4140. -moz-box-shadow:none;
  4141. -webkit-box-shadow:none;
  4142. box-shadow:none;
  4143. font-size:14px;
  4144. color:#AAAAAA;
  4145. }
  4146. #u60558.disabled {
  4147. }
  4148. .u60558_input_option {
  4149. font-size:14px;
  4150. }
  4151. #u60559 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:0px;
  4157. height:0px;
  4158. }
  4159. #u60560_div {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:680px;
  4165. height:1198px;
  4166. background:inherit;
  4167. background-color:rgba(255, 255, 255, 1);
  4168. box-sizing:border-box;
  4169. border-width:1px;
  4170. border-style:solid;
  4171. border-color:rgba(215, 215, 215, 1);
  4172. border-radius:0px;
  4173. -moz-box-shadow:none;
  4174. -webkit-box-shadow:none;
  4175. box-shadow:none;
  4176. }
  4177. #u60560 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:1649px;
  4181. top:54px;
  4182. width:680px;
  4183. height:1198px;
  4184. display:flex;
  4185. }
  4186. #u60560 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 2px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u60560_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. visibility:hidden;
  4198. }
  4199. #u60561_div {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:0px;
  4203. top:0px;
  4204. width:73px;
  4205. height:30px;
  4206. background:inherit;
  4207. background-color:rgba(255, 255, 255, 0);
  4208. border:none;
  4209. border-radius:0px;
  4210. -moz-box-shadow:none;
  4211. -webkit-box-shadow:none;
  4212. box-shadow:none;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:18px;
  4217. color:#000000;
  4218. line-height:30px;
  4219. }
  4220. #u60561 {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:1669px;
  4224. top:74px;
  4225. width:73px;
  4226. height:30px;
  4227. display:flex;
  4228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4229. font-weight:400;
  4230. font-style:normal;
  4231. font-size:18px;
  4232. color:#000000;
  4233. line-height:30px;
  4234. }
  4235. #u60561 .text {
  4236. position:absolute;
  4237. align-self:flex-start;
  4238. padding:0px 0px 0px 0px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u60561_text {
  4243. border-width:0px;
  4244. white-space:nowrap;
  4245. text-transform:none;
  4246. }
  4247. #u60562_div {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:53px;
  4253. height:30px;
  4254. background:inherit;
  4255. background-color:rgba(255, 255, 255, 0);
  4256. border:none;
  4257. border-top:0px;
  4258. border-right:0px;
  4259. border-bottom:0px;
  4260. border-radius:0px;
  4261. border-top-left-radius:0px;
  4262. border-bottom-left-radius:0px;
  4263. -moz-box-shadow:none;
  4264. -webkit-box-shadow:none;
  4265. box-shadow:none;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:14px;
  4270. }
  4271. #u60562 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:1698px;
  4275. top:338px;
  4276. width:53px;
  4277. height:30px;
  4278. display:flex;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:14px;
  4283. }
  4284. #u60562 .text {
  4285. position:absolute;
  4286. align-self:center;
  4287. padding:5px 10px 5px 0px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u60562_text {
  4292. border-width:0px;
  4293. white-space:nowrap;
  4294. text-transform:none;
  4295. }
  4296. #u60563 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:0px;
  4302. height:0px;
  4303. }
  4304. #u60564_div {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:400px;
  4310. height:40px;
  4311. background:inherit;
  4312. background-color:rgba(255, 255, 255, 1);
  4313. box-sizing:border-box;
  4314. border-width:1px;
  4315. border-style:solid;
  4316. border-color:rgba(170, 170, 170, 1);
  4317. border-radius:4px;
  4318. -moz-box-shadow:none;
  4319. -webkit-box-shadow:none;
  4320. box-shadow:none;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. text-align:left;
  4325. }
  4326. #u60564 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:1801px;
  4330. top:333px;
  4331. width:400px;
  4332. height:40px;
  4333. display:flex;
  4334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. text-align:left;
  4338. }
  4339. #u60564 .text {
  4340. position:absolute;
  4341. align-self:center;
  4342. padding:2px 2px 2px 10px;
  4343. box-sizing:border-box;
  4344. width:100%;
  4345. }
  4346. #u60564_text {
  4347. border-width:0px;
  4348. word-wrap:break-word;
  4349. text-transform:none;
  4350. visibility:hidden;
  4351. }
  4352. #u60565_input {
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:188px;
  4357. height:31px;
  4358. padding:2px 2px 2px 2px;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:13px;
  4363. letter-spacing:normal;
  4364. color:#AAAAAA;
  4365. vertical-align:none;
  4366. text-align:left;
  4367. text-transform:none;
  4368. background-color:transparent;
  4369. border-color:transparent;
  4370. }
  4371. #u60565_input.disabled {
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:188px;
  4376. height:31px;
  4377. padding:2px 2px 2px 2px;
  4378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4379. font-weight:400;
  4380. font-style:normal;
  4381. font-size:13px;
  4382. letter-spacing:normal;
  4383. color:#AAAAAA;
  4384. vertical-align:none;
  4385. text-align:left;
  4386. text-transform:none;
  4387. background-color:transparent;
  4388. border-color:transparent;
  4389. }
  4390. #u60565_div {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:188px;
  4396. height:31px;
  4397. background:inherit;
  4398. background-color:rgba(255, 255, 255, 0);
  4399. border:none;
  4400. border-radius:0px;
  4401. -moz-box-shadow:none;
  4402. -webkit-box-shadow:none;
  4403. box-shadow:none;
  4404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. color:#AAAAAA;
  4408. }
  4409. #u60565 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:1811px;
  4413. top:338px;
  4414. width:188px;
  4415. height:31px;
  4416. display:flex;
  4417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. color:#AAAAAA;
  4421. }
  4422. #u60565 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:2px 2px 2px 2px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u60565_div.disabled {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:188px;
  4435. height:31px;
  4436. background:inherit;
  4437. background-color:rgba(240, 240, 240, 1);
  4438. border:none;
  4439. border-radius:0px;
  4440. -moz-box-shadow:none;
  4441. -webkit-box-shadow:none;
  4442. box-shadow:none;
  4443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. color:#AAAAAA;
  4447. }
  4448. #u60565.disabled {
  4449. }
  4450. #u60566_div {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:81px;
  4456. height:30px;
  4457. background:inherit;
  4458. background-color:rgba(255, 255, 255, 0);
  4459. border:none;
  4460. border-top:0px;
  4461. border-right:0px;
  4462. border-bottom:0px;
  4463. border-radius:0px;
  4464. border-top-left-radius:0px;
  4465. border-bottom-left-radius:0px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:14px;
  4473. }
  4474. #u60566 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:1698px;
  4478. top:288px;
  4479. width:81px;
  4480. height:30px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:14px;
  4486. }
  4487. #u60566 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:5px 10px 5px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u60566_text {
  4495. border-width:0px;
  4496. white-space:nowrap;
  4497. text-transform:none;
  4498. }
  4499. #u60567_div {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:400px;
  4505. height:40px;
  4506. background:inherit;
  4507. background-color:rgba(242, 242, 242, 1);
  4508. box-sizing:border-box;
  4509. border-width:1px;
  4510. border-style:solid;
  4511. border-color:rgba(170, 170, 170, 1);
  4512. border-radius:4px;
  4513. -moz-box-shadow:none;
  4514. -webkit-box-shadow:none;
  4515. box-shadow:none;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:14px;
  4520. color:#AAAAAA;
  4521. text-align:left;
  4522. }
  4523. #u60567 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:1801px;
  4527. top:283px;
  4528. width:400px;
  4529. height:40px;
  4530. display:flex;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:14px;
  4535. color:#AAAAAA;
  4536. text-align:left;
  4537. }
  4538. #u60567 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 10px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u60567_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. }
  4550. #u60568 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:0px;
  4556. height:0px;
  4557. }
  4558. #u60569_div {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:40px;
  4564. height:40px;
  4565. background:inherit;
  4566. background-color:rgba(255, 255, 255, 0);
  4567. border:none;
  4568. border-top:0px;
  4569. border-right:0px;
  4570. border-bottom:0px;
  4571. border-radius:0px;
  4572. border-top-left-radius:0px;
  4573. border-bottom-left-radius:0px;
  4574. -moz-box-shadow:none;
  4575. -webkit-box-shadow:none;
  4576. box-shadow:none;
  4577. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4578. font-weight:500;
  4579. font-style:normal;
  4580. font-size:18px;
  4581. text-align:center;
  4582. }
  4583. #u60569 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:2289px;
  4587. top:54px;
  4588. width:40px;
  4589. height:40px;
  4590. display:flex;
  4591. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4592. font-weight:500;
  4593. font-style:normal;
  4594. font-size:18px;
  4595. text-align:center;
  4596. }
  4597. #u60569 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:5px 10px 5px 0px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u60569_text {
  4605. border-width:0px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. }
  4609. #u60570_img {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:0px;
  4614. width:13px;
  4615. height:17px;
  4616. }
  4617. #u60570 {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:2276px;
  4621. top:66px;
  4622. width:13px;
  4623. height:17px;
  4624. display:flex;
  4625. }
  4626. #u60570 .text {
  4627. position:absolute;
  4628. align-self:center;
  4629. padding:2px 2px 2px 2px;
  4630. box-sizing:border-box;
  4631. width:100%;
  4632. }
  4633. #u60570_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. visibility:hidden;
  4638. }
  4639. #u60571 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:0px;
  4645. height:0px;
  4646. }
  4647. #u60572_div {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:0px;
  4651. top:0px;
  4652. width:680px;
  4653. height:60px;
  4654. background:inherit;
  4655. background-color:rgba(255, 255, 255, 1);
  4656. box-sizing:border-box;
  4657. border-width:1px;
  4658. border-style:solid;
  4659. border-color:rgba(215, 215, 215, 1);
  4660. border-radius:0px;
  4661. -moz-box-shadow:none;
  4662. -webkit-box-shadow:none;
  4663. box-shadow:none;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:14px;
  4668. color:#AAAAAA;
  4669. text-align:center;
  4670. line-height:30px;
  4671. }
  4672. #u60572 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:1649px;
  4676. top:1192px;
  4677. width:680px;
  4678. height:60px;
  4679. display:flex;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:14px;
  4684. color:#AAAAAA;
  4685. text-align:center;
  4686. line-height:30px;
  4687. }
  4688. #u60572 .text {
  4689. position:absolute;
  4690. align-self:center;
  4691. padding:5px 10px 5px 10px;
  4692. box-sizing:border-box;
  4693. width:100%;
  4694. }
  4695. #u60572_text {
  4696. border-width:0px;
  4697. word-wrap:break-word;
  4698. text-transform:none;
  4699. visibility:hidden;
  4700. }
  4701. #u60573_div {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:80px;
  4707. height:30px;
  4708. background:inherit;
  4709. background-color:rgba(24, 144, 255, 1);
  4710. border:none;
  4711. border-radius:4px;
  4712. -moz-box-shadow:none;
  4713. -webkit-box-shadow:none;
  4714. box-shadow:none;
  4715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4716. font-weight:400;
  4717. font-style:normal;
  4718. font-size:14px;
  4719. color:#FFFFFF;
  4720. }
  4721. #u60573 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:2204px;
  4725. top:1207px;
  4726. width:80px;
  4727. height:30px;
  4728. display:flex;
  4729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:14px;
  4733. color:#FFFFFF;
  4734. }
  4735. #u60573 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:2px 2px 2px 2px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u60573_text {
  4743. border-width:0px;
  4744. word-wrap:break-word;
  4745. text-transform:none;
  4746. }
  4747. #u60574_div {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:80px;
  4753. height:30px;
  4754. background:inherit;
  4755. background-color:rgba(255, 255, 255, 1);
  4756. box-sizing:border-box;
  4757. border-width:1px;
  4758. border-style:solid;
  4759. border-color:rgba(170, 170, 170, 1);
  4760. border-radius:4px;
  4761. -moz-box-shadow:none;
  4762. -webkit-box-shadow:none;
  4763. box-shadow:none;
  4764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:14px;
  4768. }
  4769. #u60574 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:2105px;
  4773. top:1207px;
  4774. width:80px;
  4775. height:30px;
  4776. display:flex;
  4777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:14px;
  4781. }
  4782. #u60574 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 2px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u60574_text {
  4790. border-width:0px;
  4791. word-wrap:break-word;
  4792. text-transform:none;
  4793. }
  4794. #u60575_div {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:400px;
  4800. height:210px;
  4801. background:inherit;
  4802. background-color:rgba(242, 242, 242, 1);
  4803. border:none;
  4804. border-radius:0px;
  4805. -moz-box-shadow:none;
  4806. -webkit-box-shadow:none;
  4807. box-shadow:none;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:38px;
  4812. color:#D7D7D7;
  4813. }
  4814. #u60575 {
  4815. border-width:0px;
  4816. position:absolute;
  4817. left:1801px;
  4818. top:383px;
  4819. width:400px;
  4820. height:210px;
  4821. display:flex;
  4822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:38px;
  4826. color:#D7D7D7;
  4827. }
  4828. #u60575 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:2px 2px 2px 2px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u60575_text {
  4836. border-width:0px;
  4837. word-wrap:break-word;
  4838. text-transform:none;
  4839. }
  4840. #u60576_div {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:81px;
  4846. height:30px;
  4847. background:inherit;
  4848. background-color:rgba(255, 255, 255, 0);
  4849. border:none;
  4850. border-top:0px;
  4851. border-right:0px;
  4852. border-bottom:0px;
  4853. border-radius:0px;
  4854. border-top-left-radius:0px;
  4855. border-bottom-left-radius:0px;
  4856. -moz-box-shadow:none;
  4857. -webkit-box-shadow:none;
  4858. box-shadow:none;
  4859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4860. font-weight:400;
  4861. font-style:normal;
  4862. font-size:14px;
  4863. }
  4864. #u60576 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:1698px;
  4868. top:608px;
  4869. width:81px;
  4870. height:30px;
  4871. display:flex;
  4872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:14px;
  4876. }
  4877. #u60576 .text {
  4878. position:absolute;
  4879. align-self:center;
  4880. padding:5px 10px 5px 0px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u60576_text {
  4885. border-width:0px;
  4886. white-space:nowrap;
  4887. text-transform:none;
  4888. }
  4889. #u60577 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:0px;
  4895. height:0px;
  4896. }
  4897. #u60578_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:400px;
  4903. height:80px;
  4904. background:inherit;
  4905. background-color:rgba(255, 255, 255, 1);
  4906. box-sizing:border-box;
  4907. border-width:1px;
  4908. border-style:solid;
  4909. border-color:rgba(170, 170, 170, 1);
  4910. border-radius:4px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. text-align:left;
  4918. }
  4919. #u60578 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:1801px;
  4923. top:603px;
  4924. width:400px;
  4925. height:80px;
  4926. display:flex;
  4927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. text-align:left;
  4931. }
  4932. #u60578 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:2px 2px 2px 10px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u60578_text {
  4940. border-width:0px;
  4941. word-wrap:break-word;
  4942. text-transform:none;
  4943. visibility:hidden;
  4944. }
  4945. #u60579_input {
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:188px;
  4950. height:31px;
  4951. padding:2px 2px 2px 2px;
  4952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:13px;
  4956. letter-spacing:normal;
  4957. color:#AAAAAA;
  4958. vertical-align:none;
  4959. text-align:left;
  4960. text-transform:none;
  4961. background-color:transparent;
  4962. border-color:transparent;
  4963. }
  4964. #u60579_input.disabled {
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:188px;
  4969. height:31px;
  4970. padding:2px 2px 2px 2px;
  4971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:13px;
  4975. letter-spacing:normal;
  4976. color:#AAAAAA;
  4977. vertical-align:none;
  4978. text-align:left;
  4979. text-transform:none;
  4980. background-color:transparent;
  4981. border-color:transparent;
  4982. }
  4983. #u60579_div {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:188px;
  4989. height:31px;
  4990. background:inherit;
  4991. background-color:rgba(255, 255, 255, 0);
  4992. border:none;
  4993. border-radius:0px;
  4994. -moz-box-shadow:none;
  4995. -webkit-box-shadow:none;
  4996. box-shadow:none;
  4997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4998. font-weight:400;
  4999. font-style:normal;
  5000. color:#AAAAAA;
  5001. }
  5002. #u60579 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:1811px;
  5006. top:608px;
  5007. width:188px;
  5008. height:31px;
  5009. display:flex;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. color:#AAAAAA;
  5014. }
  5015. #u60579 .text {
  5016. position:absolute;
  5017. align-self:center;
  5018. padding:2px 2px 2px 2px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u60579_div.disabled {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:188px;
  5028. height:31px;
  5029. background:inherit;
  5030. background-color:rgba(240, 240, 240, 1);
  5031. border:none;
  5032. border-radius:0px;
  5033. -moz-box-shadow:none;
  5034. -webkit-box-shadow:none;
  5035. box-shadow:none;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. color:#AAAAAA;
  5040. }
  5041. #u60579.disabled {
  5042. }
  5043. #u60580_div {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:39px;
  5049. height:24px;
  5050. background:inherit;
  5051. background-color:rgba(255, 255, 255, 0);
  5052. border:none;
  5053. border-top:0px;
  5054. border-right:0px;
  5055. border-bottom:0px;
  5056. border-radius:0px;
  5057. border-top-left-radius:0px;
  5058. border-bottom-left-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:10px;
  5066. color:#AAAAAA;
  5067. text-align:right;
  5068. }
  5069. #u60580 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:2159px;
  5073. top:658px;
  5074. width:39px;
  5075. height:24px;
  5076. display:flex;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:10px;
  5081. color:#AAAAAA;
  5082. text-align:right;
  5083. }
  5084. #u60580 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:5px 0px 5px 0px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u60580_text {
  5092. border-width:0px;
  5093. white-space:nowrap;
  5094. text-transform:none;
  5095. }
  5096. #u60581_div {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:88px;
  5102. height:30px;
  5103. background:inherit;
  5104. background-color:rgba(255, 255, 255, 0);
  5105. border:none;
  5106. border-top:0px;
  5107. border-right:0px;
  5108. border-bottom:0px;
  5109. border-radius:0px;
  5110. border-top-left-radius:0px;
  5111. border-bottom-left-radius:0px;
  5112. -moz-box-shadow:none;
  5113. -webkit-box-shadow:none;
  5114. box-shadow:none;
  5115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5116. font-weight:400;
  5117. font-style:normal;
  5118. font-size:14px;
  5119. }
  5120. #u60581 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:1698px;
  5124. top:238px;
  5125. width:88px;
  5126. height:30px;
  5127. display:flex;
  5128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5129. font-weight:400;
  5130. font-style:normal;
  5131. font-size:14px;
  5132. }
  5133. #u60581 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:5px 10px 5px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u60581_text {
  5141. border-width:0px;
  5142. white-space:nowrap;
  5143. text-transform:none;
  5144. }
  5145. #u60582 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:0px;
  5151. height:0px;
  5152. }
  5153. #u60583_div {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:400px;
  5159. height:40px;
  5160. background:inherit;
  5161. background-color:rgba(255, 255, 255, 1);
  5162. box-sizing:border-box;
  5163. border-width:1px;
  5164. border-style:solid;
  5165. border-color:rgba(170, 170, 170, 1);
  5166. border-radius:4px;
  5167. -moz-box-shadow:none;
  5168. -webkit-box-shadow:none;
  5169. box-shadow:none;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. text-align:left;
  5174. }
  5175. #u60583 {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:1801px;
  5179. top:233px;
  5180. width:400px;
  5181. height:40px;
  5182. display:flex;
  5183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5184. font-weight:400;
  5185. font-style:normal;
  5186. text-align:left;
  5187. }
  5188. #u60583 .text {
  5189. position:absolute;
  5190. align-self:center;
  5191. padding:2px 2px 2px 10px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u60583_text {
  5196. border-width:0px;
  5197. word-wrap:break-word;
  5198. text-transform:none;
  5199. visibility:hidden;
  5200. }
  5201. #u60584_input {
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:380px;
  5206. height:31px;
  5207. padding:2px 2px 2px 2px;
  5208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5209. font-weight:400;
  5210. font-style:normal;
  5211. font-size:13px;
  5212. letter-spacing:normal;
  5213. color:#AAAAAA;
  5214. vertical-align:none;
  5215. text-align:left;
  5216. text-transform:none;
  5217. background-color:transparent;
  5218. border-color:transparent;
  5219. }
  5220. #u60584_input.disabled {
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:380px;
  5225. height:31px;
  5226. padding:2px 2px 2px 2px;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:13px;
  5231. letter-spacing:normal;
  5232. color:#AAAAAA;
  5233. vertical-align:none;
  5234. text-align:left;
  5235. text-transform:none;
  5236. background-color:transparent;
  5237. border-color:transparent;
  5238. }
  5239. #u60584_div {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:380px;
  5245. height:31px;
  5246. background:inherit;
  5247. background-color:rgba(255, 255, 255, 0);
  5248. border:none;
  5249. border-radius:0px;
  5250. -moz-box-shadow:none;
  5251. -webkit-box-shadow:none;
  5252. box-shadow:none;
  5253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5254. font-weight:400;
  5255. font-style:normal;
  5256. color:#AAAAAA;
  5257. }
  5258. #u60584 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:1811px;
  5262. top:238px;
  5263. width:380px;
  5264. height:31px;
  5265. display:flex;
  5266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. color:#AAAAAA;
  5270. }
  5271. #u60584 .text {
  5272. position:absolute;
  5273. align-self:center;
  5274. padding:2px 2px 2px 2px;
  5275. box-sizing:border-box;
  5276. width:100%;
  5277. }
  5278. #u60584_div.disabled {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:380px;
  5284. height:31px;
  5285. background:inherit;
  5286. background-color:rgba(240, 240, 240, 1);
  5287. border:none;
  5288. border-radius:0px;
  5289. -moz-box-shadow:none;
  5290. -webkit-box-shadow:none;
  5291. box-shadow:none;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. color:#AAAAAA;
  5296. }
  5297. #u60584.disabled {
  5298. }
  5299. #u60585_div {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:59px;
  5305. height:27px;
  5306. background:inherit;
  5307. background-color:rgba(255, 255, 255, 0);
  5308. border:none;
  5309. border-top:0px;
  5310. border-right:0px;
  5311. border-bottom:0px;
  5312. border-radius:0px;
  5313. border-top-left-radius:0px;
  5314. border-bottom-left-radius:0px;
  5315. -moz-box-shadow:none;
  5316. -webkit-box-shadow:none;
  5317. box-shadow:none;
  5318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:12px;
  5322. color:#1890FF;
  5323. }
  5324. #u60585 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:2208px;
  5328. top:290px;
  5329. width:59px;
  5330. height:27px;
  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:#1890FF;
  5337. }
  5338. #u60585 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:5px 10px 5px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u60585_text {
  5346. border-width:0px;
  5347. white-space:nowrap;
  5348. text-transform:none;
  5349. }
  5350. #u60586_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:49px;
  5356. height:30px;
  5357. background:inherit;
  5358. background-color:rgba(255, 255, 255, 1);
  5359. box-sizing:border-box;
  5360. border-width:1px;
  5361. border-style:solid;
  5362. border-color:rgba(170, 170, 170, 1);
  5363. border-radius:4px;
  5364. -moz-box-shadow:none;
  5365. -webkit-box-shadow:none;
  5366. box-shadow:none;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:12px;
  5371. }
  5372. #u60586 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:2208px;
  5376. top:338px;
  5377. width:49px;
  5378. height:30px;
  5379. display:flex;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:12px;
  5384. }
  5385. #u60586 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u60586_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. }
  5397. #u60587_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:88px;
  5403. height:30px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 0);
  5406. border:none;
  5407. border-top:0px;
  5408. border-right:0px;
  5409. border-bottom:0px;
  5410. border-radius:0px;
  5411. border-top-left-radius:0px;
  5412. border-bottom-left-radius:0px;
  5413. -moz-box-shadow:none;
  5414. -webkit-box-shadow:none;
  5415. box-shadow:none;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:14px;
  5420. }
  5421. #u60587 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:1698px;
  5425. top:138px;
  5426. width:88px;
  5427. height:30px;
  5428. display:flex;
  5429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5430. font-weight:400;
  5431. font-style:normal;
  5432. font-size:14px;
  5433. }
  5434. #u60587 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:5px 10px 5px 0px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u60587_text {
  5442. border-width:0px;
  5443. white-space:nowrap;
  5444. text-transform:none;
  5445. }
  5446. #u60588_div {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:88px;
  5452. height:30px;
  5453. background:inherit;
  5454. background-color:rgba(255, 255, 255, 0);
  5455. border:none;
  5456. border-top:0px;
  5457. border-right:0px;
  5458. border-bottom:0px;
  5459. border-radius:0px;
  5460. border-top-left-radius:0px;
  5461. border-bottom-left-radius:0px;
  5462. -moz-box-shadow:none;
  5463. -webkit-box-shadow:none;
  5464. box-shadow:none;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:14px;
  5469. }
  5470. #u60588 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:1698px;
  5474. top:188px;
  5475. width:88px;
  5476. height:30px;
  5477. display:flex;
  5478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:14px;
  5482. }
  5483. #u60588 .text {
  5484. position:absolute;
  5485. align-self:center;
  5486. padding:5px 10px 5px 0px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u60588_text {
  5491. border-width:0px;
  5492. white-space:nowrap;
  5493. text-transform:none;
  5494. }
  5495. #u60589 {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:0px;
  5501. height:0px;
  5502. }
  5503. #u60590_div {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:400px;
  5509. height:40px;
  5510. background:inherit;
  5511. background-color:rgba(255, 255, 255, 1);
  5512. box-sizing:border-box;
  5513. border-width:1px;
  5514. border-style:solid;
  5515. border-color:rgba(170, 170, 170, 1);
  5516. border-radius:4px;
  5517. -moz-box-shadow:none;
  5518. -webkit-box-shadow:none;
  5519. box-shadow:none;
  5520. }
  5521. #u60590 {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:1801px;
  5525. top:133px;
  5526. width:400px;
  5527. height:40px;
  5528. display:flex;
  5529. }
  5530. #u60590 .text {
  5531. position:absolute;
  5532. align-self:center;
  5533. padding:2px 2px 2px 0px;
  5534. box-sizing:border-box;
  5535. width:100%;
  5536. }
  5537. #u60590_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. visibility:hidden;
  5542. }
  5543. #u60591_input {
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:380px;
  5548. height:30px;
  5549. padding:2px 2px 2px 0px;
  5550. font-family:'ArialMT', 'Arial', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:13px;
  5554. letter-spacing:normal;
  5555. color:#AAAAAA;
  5556. vertical-align:none;
  5557. text-align:left;
  5558. text-transform:none;
  5559. background-color:transparent;
  5560. border-color:transparent;
  5561. }
  5562. #u60591_input.disabled {
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:380px;
  5567. height:30px;
  5568. padding:2px 2px 2px 0px;
  5569. font-family:'ArialMT', 'Arial', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:13px;
  5573. letter-spacing:normal;
  5574. color:#AAAAAA;
  5575. vertical-align:none;
  5576. text-align:left;
  5577. text-transform:none;
  5578. background-color:transparent;
  5579. border-color:transparent;
  5580. }
  5581. #u60591_div {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:380px;
  5587. height:30px;
  5588. background:inherit;
  5589. background-color:rgba(255, 255, 255, 1);
  5590. border:none;
  5591. border-radius:0px;
  5592. -moz-box-shadow:none;
  5593. -webkit-box-shadow:none;
  5594. box-shadow:none;
  5595. color:#AAAAAA;
  5596. }
  5597. #u60591 {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:1811px;
  5601. top:139px;
  5602. width:380px;
  5603. height:30px;
  5604. display:flex;
  5605. color:#AAAAAA;
  5606. }
  5607. #u60591 .text {
  5608. position:absolute;
  5609. align-self:flex-start;
  5610. padding:2px 2px 2px 0px;
  5611. box-sizing:border-box;
  5612. width:100%;
  5613. }
  5614. #u60591_div.disabled {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:380px;
  5620. height:30px;
  5621. background:inherit;
  5622. background-color:rgba(240, 240, 240, 1);
  5623. border:none;
  5624. border-radius:0px;
  5625. -moz-box-shadow:none;
  5626. -webkit-box-shadow:none;
  5627. box-shadow:none;
  5628. color:#AAAAAA;
  5629. }
  5630. #u60591.disabled {
  5631. }
  5632. .u60591_input_option {
  5633. }
  5634. #u60592 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:0px;
  5640. height:0px;
  5641. }
  5642. #u60593_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:400px;
  5648. height:40px;
  5649. background:inherit;
  5650. background-color:rgba(255, 255, 255, 1);
  5651. box-sizing:border-box;
  5652. border-width:1px;
  5653. border-style:solid;
  5654. border-color:rgba(170, 170, 170, 1);
  5655. border-radius:4px;
  5656. -moz-box-shadow:none;
  5657. -webkit-box-shadow:none;
  5658. box-shadow:none;
  5659. }
  5660. #u60593 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:1801px;
  5664. top:183px;
  5665. width:400px;
  5666. height:40px;
  5667. display:flex;
  5668. }
  5669. #u60593 .text {
  5670. position:absolute;
  5671. align-self:center;
  5672. padding:2px 2px 2px 0px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u60593_text {
  5677. border-width:0px;
  5678. word-wrap:break-word;
  5679. text-transform:none;
  5680. visibility:hidden;
  5681. }
  5682. #u60594_input {
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:380px;
  5687. height:30px;
  5688. padding:2px 2px 2px 0px;
  5689. font-family:'ArialMT', 'Arial', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:13px;
  5693. letter-spacing:normal;
  5694. color:#AAAAAA;
  5695. vertical-align:none;
  5696. text-align:left;
  5697. text-transform:none;
  5698. background-color:transparent;
  5699. border-color:transparent;
  5700. }
  5701. #u60594_input.disabled {
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:380px;
  5706. height:30px;
  5707. padding:2px 2px 2px 0px;
  5708. font-family:'ArialMT', 'Arial', sans-serif;
  5709. font-weight:400;
  5710. font-style:normal;
  5711. font-size:13px;
  5712. letter-spacing:normal;
  5713. color:#AAAAAA;
  5714. vertical-align:none;
  5715. text-align:left;
  5716. text-transform:none;
  5717. background-color:transparent;
  5718. border-color:transparent;
  5719. }
  5720. #u60594_div {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:380px;
  5726. height:30px;
  5727. background:inherit;
  5728. background-color:rgba(255, 255, 255, 1);
  5729. border:none;
  5730. border-radius:0px;
  5731. -moz-box-shadow:none;
  5732. -webkit-box-shadow:none;
  5733. box-shadow:none;
  5734. color:#AAAAAA;
  5735. }
  5736. #u60594 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:1811px;
  5740. top:189px;
  5741. width:380px;
  5742. height:30px;
  5743. display:flex;
  5744. color:#AAAAAA;
  5745. }
  5746. #u60594 .text {
  5747. position:absolute;
  5748. align-self:flex-start;
  5749. padding:2px 2px 2px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u60594_div.disabled {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:380px;
  5759. height:30px;
  5760. background:inherit;
  5761. background-color:rgba(240, 240, 240, 1);
  5762. border:none;
  5763. border-radius:0px;
  5764. -moz-box-shadow:none;
  5765. -webkit-box-shadow:none;
  5766. box-shadow:none;
  5767. color:#AAAAAA;
  5768. }
  5769. #u60594.disabled {
  5770. }
  5771. .u60594_input_option {
  5772. }
  5773. #u60595 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:0px;
  5779. height:0px;
  5780. }
  5781. #u60596_div {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:200px;
  5787. height:1180px;
  5788. background:inherit;
  5789. background-color:rgba(255, 255, 255, 1);
  5790. border:none;
  5791. border-radius:0px;
  5792. -moz-box-shadow:none;
  5793. -webkit-box-shadow:none;
  5794. box-shadow:none;
  5795. }
  5796. #u60596 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:120px;
  5800. top:50px;
  5801. width:200px;
  5802. height:1180px;
  5803. display:flex;
  5804. }
  5805. #u60596 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:2px 2px 2px 2px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u60596_text {
  5813. border-width:0px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u60597_div {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:200px;
  5824. height:60px;
  5825. background:inherit;
  5826. background-color:rgba(224, 231, 247, 1);
  5827. border:none;
  5828. border-radius:0px;
  5829. -moz-box-shadow:none;
  5830. -webkit-box-shadow:none;
  5831. box-shadow:none;
  5832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5833. font-weight:500;
  5834. font-style:normal;
  5835. font-size:18px;
  5836. }
  5837. #u60597 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:120px;
  5841. top:50px;
  5842. width:200px;
  5843. height:60px;
  5844. display:flex;
  5845. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5846. font-weight:500;
  5847. font-style:normal;
  5848. font-size:18px;
  5849. }
  5850. #u60597 .text {
  5851. position:absolute;
  5852. align-self:center;
  5853. padding:0px 0px 0px 20px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u60597_text {
  5858. border-width:0px;
  5859. word-wrap:break-word;
  5860. text-transform:none;
  5861. }
  5862. #u60598_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:65px;
  5868. height:22px;
  5869. background:inherit;
  5870. background-color:rgba(255, 255, 255, 0);
  5871. border:none;
  5872. border-radius:0px;
  5873. -moz-box-shadow:none;
  5874. -webkit-box-shadow:none;
  5875. box-shadow:none;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:16px;
  5880. }
  5881. #u60598 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:147px;
  5885. top:160px;
  5886. width:65px;
  5887. height:22px;
  5888. display:flex;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:16px;
  5893. }
  5894. #u60598 .text {
  5895. position:absolute;
  5896. align-self:flex-start;
  5897. padding:0px 0px 0px 0px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u60598_text {
  5902. border-width:0px;
  5903. white-space:nowrap;
  5904. text-transform:none;
  5905. }
  5906. #u60599_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:201px;
  5912. height:2px;
  5913. }
  5914. #u60599 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:120px;
  5918. top:279px;
  5919. width:200px;
  5920. height:1px;
  5921. display:flex;
  5922. }
  5923. #u60599 .text {
  5924. position:absolute;
  5925. align-self:center;
  5926. padding:2px 2px 2px 2px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u60599_text {
  5931. border-width:0px;
  5932. word-wrap:break-word;
  5933. text-transform:none;
  5934. visibility:hidden;
  5935. }
  5936. #u60600_div {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:65px;
  5942. height:22px;
  5943. background:inherit;
  5944. background-color:rgba(255, 255, 255, 0);
  5945. border:none;
  5946. border-radius:0px;
  5947. -moz-box-shadow:none;
  5948. -webkit-box-shadow:none;
  5949. box-shadow:none;
  5950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:16px;
  5954. }
  5955. #u60600 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:147px;
  5959. top:336px;
  5960. width:65px;
  5961. height:22px;
  5962. display:flex;
  5963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5964. font-weight:400;
  5965. font-style:normal;
  5966. font-size:16px;
  5967. }
  5968. #u60600 .text {
  5969. position:absolute;
  5970. align-self:flex-start;
  5971. padding:0px 0px 0px 0px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u60600_text {
  5976. border-width:0px;
  5977. white-space:nowrap;
  5978. text-transform:none;
  5979. }
  5980. #u60601_div {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:49px;
  5986. height:17px;
  5987. background:inherit;
  5988. background-color:rgba(255, 255, 255, 0);
  5989. border:none;
  5990. border-radius:0px;
  5991. -moz-box-shadow:none;
  5992. -webkit-box-shadow:none;
  5993. box-shadow:none;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:12px;
  5998. color:#AAAAAA;
  5999. }
  6000. #u60601 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:147px;
  6004. top:300px;
  6005. width:49px;
  6006. height:17px;
  6007. display:flex;
  6008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:12px;
  6012. color:#AAAAAA;
  6013. }
  6014. #u60601 .text {
  6015. position:absolute;
  6016. align-self:flex-start;
  6017. padding:0px 0px 0px 0px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u60601_text {
  6022. border-width:0px;
  6023. white-space:nowrap;
  6024. text-transform:none;
  6025. }
  6026. #u60602_div {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:65px;
  6032. height:22px;
  6033. background:inherit;
  6034. background-color:rgba(255, 255, 255, 0);
  6035. border:none;
  6036. border-radius:0px;
  6037. -moz-box-shadow:none;
  6038. -webkit-box-shadow:none;
  6039. box-shadow:none;
  6040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6041. font-weight:400;
  6042. font-style:normal;
  6043. font-size:16px;
  6044. }
  6045. #u60602 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:147px;
  6049. top:202px;
  6050. width:65px;
  6051. height:22px;
  6052. display:flex;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:16px;
  6057. }
  6058. #u60602 .text {
  6059. position:absolute;
  6060. align-self:flex-start;
  6061. padding:0px 0px 0px 0px;
  6062. box-sizing:border-box;
  6063. width:100%;
  6064. }
  6065. #u60602_text {
  6066. border-width:0px;
  6067. white-space:nowrap;
  6068. text-transform:none;
  6069. }
  6070. #u60603_div {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:65px;
  6076. height:22px;
  6077. background:inherit;
  6078. background-color:rgba(255, 255, 255, 0);
  6079. border:none;
  6080. border-radius:0px;
  6081. -moz-box-shadow:none;
  6082. -webkit-box-shadow:none;
  6083. box-shadow:none;
  6084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:16px;
  6088. }
  6089. #u60603 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:147px;
  6093. top:244px;
  6094. width:65px;
  6095. height:22px;
  6096. display:flex;
  6097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:16px;
  6101. }
  6102. #u60603 .text {
  6103. position:absolute;
  6104. align-self:flex-start;
  6105. padding:0px 0px 0px 0px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u60603_text {
  6110. border-width:0px;
  6111. white-space:nowrap;
  6112. text-transform:none;
  6113. }
  6114. #u60604_img {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:201px;
  6120. height:2px;
  6121. }
  6122. #u60604 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:120px;
  6126. top:422px;
  6127. width:200px;
  6128. height:1px;
  6129. display:flex;
  6130. }
  6131. #u60604 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:2px 2px 2px 2px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u60604_text {
  6139. border-width:0px;
  6140. word-wrap:break-word;
  6141. text-transform:none;
  6142. visibility:hidden;
  6143. }
  6144. #u60605_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:65px;
  6150. height:22px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 0);
  6153. border:none;
  6154. border-radius:0px;
  6155. -moz-box-shadow:none;
  6156. -webkit-box-shadow:none;
  6157. box-shadow:none;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. font-size:16px;
  6162. }
  6163. #u60605 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:147px;
  6167. top:479px;
  6168. width:65px;
  6169. height:22px;
  6170. display:flex;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:16px;
  6175. }
  6176. #u60605 .text {
  6177. position:absolute;
  6178. align-self:flex-start;
  6179. padding:0px 0px 0px 0px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u60605_text {
  6184. border-width:0px;
  6185. white-space:nowrap;
  6186. text-transform:none;
  6187. }
  6188. #u60606_div {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:49px;
  6194. height:17px;
  6195. background:inherit;
  6196. background-color:rgba(255, 255, 255, 0);
  6197. border:none;
  6198. border-radius:0px;
  6199. -moz-box-shadow:none;
  6200. -webkit-box-shadow:none;
  6201. box-shadow:none;
  6202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:12px;
  6206. color:#AAAAAA;
  6207. }
  6208. #u60606 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:147px;
  6212. top:443px;
  6213. width:49px;
  6214. height:17px;
  6215. display:flex;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:12px;
  6220. color:#AAAAAA;
  6221. }
  6222. #u60606 .text {
  6223. position:absolute;
  6224. align-self:flex-start;
  6225. padding:0px 0px 0px 0px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u60606_text {
  6230. border-width:0px;
  6231. white-space:nowrap;
  6232. text-transform:none;
  6233. }
  6234. #u60607_div {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:65px;
  6240. height:22px;
  6241. background:inherit;
  6242. background-color:rgba(255, 255, 255, 0);
  6243. border:none;
  6244. border-radius:0px;
  6245. -moz-box-shadow:none;
  6246. -webkit-box-shadow:none;
  6247. box-shadow:none;
  6248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:16px;
  6252. }
  6253. #u60607 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:147px;
  6257. top:561px;
  6258. width:65px;
  6259. height:22px;
  6260. display:flex;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:16px;
  6265. }
  6266. #u60607 .text {
  6267. position:absolute;
  6268. align-self:flex-start;
  6269. padding:0px 0px 0px 0px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u60607_text {
  6274. border-width:0px;
  6275. white-space:nowrap;
  6276. text-transform:none;
  6277. }
  6278. #u60608_div {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:65px;
  6284. height:22px;
  6285. background:inherit;
  6286. background-color:rgba(255, 255, 255, 0);
  6287. border:none;
  6288. border-radius:0px;
  6289. -moz-box-shadow:none;
  6290. -webkit-box-shadow:none;
  6291. box-shadow:none;
  6292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:16px;
  6296. }
  6297. #u60608 {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:147px;
  6301. top:603px;
  6302. width:65px;
  6303. height:22px;
  6304. display:flex;
  6305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6306. font-weight:400;
  6307. font-style:normal;
  6308. font-size:16px;
  6309. }
  6310. #u60608 .text {
  6311. position:absolute;
  6312. align-self:flex-start;
  6313. padding:0px 0px 0px 0px;
  6314. box-sizing:border-box;
  6315. width:100%;
  6316. }
  6317. #u60608_text {
  6318. border-width:0px;
  6319. white-space:nowrap;
  6320. text-transform:none;
  6321. }
  6322. #u60609_div {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:65px;
  6328. height:22px;
  6329. background:inherit;
  6330. background-color:rgba(255, 255, 255, 0);
  6331. border:none;
  6332. border-radius:0px;
  6333. -moz-box-shadow:none;
  6334. -webkit-box-shadow:none;
  6335. box-shadow:none;
  6336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. font-size:16px;
  6340. }
  6341. #u60609 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:147px;
  6345. top:378px;
  6346. width:65px;
  6347. height:22px;
  6348. display:flex;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:16px;
  6353. }
  6354. #u60609 .text {
  6355. position:absolute;
  6356. align-self:flex-start;
  6357. padding:0px 0px 0px 0px;
  6358. box-sizing:border-box;
  6359. width:100%;
  6360. }
  6361. #u60609_text {
  6362. border-width:0px;
  6363. white-space:nowrap;
  6364. text-transform:none;
  6365. }
  6366. #u60610_div {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:49px;
  6372. height:17px;
  6373. background:inherit;
  6374. background-color:rgba(255, 255, 255, 0);
  6375. border:none;
  6376. border-radius:0px;
  6377. -moz-box-shadow:none;
  6378. -webkit-box-shadow:none;
  6379. box-shadow:none;
  6380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:12px;
  6384. color:#AAAAAA;
  6385. }
  6386. #u60610 {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:147px;
  6390. top:123px;
  6391. width:49px;
  6392. height:17px;
  6393. display:flex;
  6394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6395. font-weight:400;
  6396. font-style:normal;
  6397. font-size:12px;
  6398. color:#AAAAAA;
  6399. }
  6400. #u60610 .text {
  6401. position:absolute;
  6402. align-self:flex-start;
  6403. padding:0px 0px 0px 0px;
  6404. box-sizing:border-box;
  6405. width:100%;
  6406. }
  6407. #u60610_text {
  6408. border-width:0px;
  6409. white-space:nowrap;
  6410. text-transform:none;
  6411. }
  6412. #u60611_div {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:65px;
  6418. height:22px;
  6419. background:inherit;
  6420. background-color:rgba(255, 255, 255, 0);
  6421. border:none;
  6422. border-radius:0px;
  6423. -moz-box-shadow:none;
  6424. -webkit-box-shadow:none;
  6425. box-shadow:none;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:16px;
  6430. }
  6431. #u60611 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:147px;
  6435. top:521px;
  6436. width:65px;
  6437. height:22px;
  6438. display:flex;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:16px;
  6443. }
  6444. #u60611 .text {
  6445. position:absolute;
  6446. align-self:flex-start;
  6447. padding:0px 0px 0px 0px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u60611_text {
  6452. border-width:0px;
  6453. white-space:nowrap;
  6454. text-transform:none;
  6455. }