styles.css 167 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u63097_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. #u63097 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u63097 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u63097_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u63098_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. #u63098 {
  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. #u63098 .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. #u63098_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u63099_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. #u63099 {
  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. #u63099 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u63099_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u63100 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u63101_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u63101 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u63101 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u63101_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u63102_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. #u63102 {
  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. #u63102 .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. #u63102_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u63103_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. #u63103 {
  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. #u63103 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u63103_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u63104 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u63105_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. #u63105_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. #u63105_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. #u63105 {
  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. #u63105 .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. #u63105_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. #u63105.disabled {
  356. }
  357. .u63105_input_option {
  358. font-size:14px;
  359. }
  360. #u63106_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u63106 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u63106 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u63106_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u63107_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. #u63107 {
  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. #u63107 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u63107_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u63108_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. #u63108 {
  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. #u63108 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u63108_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u63109 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u63110_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. #u63110 {
  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. #u63110 .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. #u63110_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u63111_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u63111 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u63111 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u63111_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u63112 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u63113_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. #u63113 {
  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. #u63113 .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. #u63113_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u63114_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u63114 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u63114 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u63114_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u63115 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u63116_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. #u63116 {
  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. #u63116 .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. #u63116_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u63117_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u63117 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u63117 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u63117_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u63118 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u63119_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. #u63119 {
  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. #u63119 .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. #u63119_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u63120_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u63120 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u63120 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u63120_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u63121 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u63122_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. #u63122 {
  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. #u63122 .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. #u63122_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u63123_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u63123 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u63123 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u63123_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u63124 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u63125_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. #u63125 {
  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. #u63125 .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. #u63125_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u63126_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u63126 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u63126 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u63126_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u63127 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u63128_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. #u63128 {
  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. #u63128 .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. #u63128_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u63129_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u63129 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u63129 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u63129_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u63130 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u63131_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. #u63131 {
  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. #u63131 .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. #u63131_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u63132_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u63132 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u63132 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u63132_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u63133 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u63134_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. #u63134 {
  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. #u63134 .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. #u63134_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u63135_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u63135 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u63135 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u63135_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u63136 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u63137_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. #u63137 {
  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. #u63137 .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. #u63137_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u63138_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u63138 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u63138 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u63138_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u63139_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. #u63139 {
  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. #u63139 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u63139_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u63140_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u63140 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u63140 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u63140_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u63141_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. #u63141 {
  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. #u63141 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u63141_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u63142_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u63142 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u63142 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u63142_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u63143 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u63144_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. #u63144 {
  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. #u63144 .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. #u63144_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u63145_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u63145 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u63145 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u63145_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u63146 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u63147_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. #u63147 {
  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. #u63147 .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. #u63147_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u63148_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u63148 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u63148 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u63148_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u63149 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u63150_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:200px;
  1652. height:1188px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. }
  1661. #u63150 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:120px;
  1665. top:50px;
  1666. width:200px;
  1667. height:1188px;
  1668. display:flex;
  1669. }
  1670. #u63150 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u63150_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u63151_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:200px;
  1689. height:60px;
  1690. background:inherit;
  1691. background-color:rgba(224, 231, 247, 1);
  1692. border:none;
  1693. border-radius:0px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1698. font-weight:500;
  1699. font-style:normal;
  1700. font-size:18px;
  1701. }
  1702. #u63151 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:120px;
  1706. top:50px;
  1707. width:200px;
  1708. height:60px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1711. font-weight:500;
  1712. font-style:normal;
  1713. font-size:18px;
  1714. }
  1715. #u63151 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:0px 0px 0px 20px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u63151_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u63152_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:65px;
  1733. height:22px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. border:none;
  1737. border-radius:0px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:16px;
  1745. }
  1746. #u63152 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:147px;
  1750. top:346px;
  1751. width:65px;
  1752. height:22px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:16px;
  1758. }
  1759. #u63152 .text {
  1760. position:absolute;
  1761. align-self:flex-start;
  1762. padding:0px 0px 0px 0px;
  1763. box-sizing:border-box;
  1764. width:100%;
  1765. }
  1766. #u63152_text {
  1767. border-width:0px;
  1768. white-space:nowrap;
  1769. text-transform:none;
  1770. }
  1771. #u63153_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:65px;
  1777. height:22px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:16px;
  1789. }
  1790. #u63153 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:147px;
  1794. top:388px;
  1795. width:65px;
  1796. height:22px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:16px;
  1802. }
  1803. #u63153 .text {
  1804. position:absolute;
  1805. align-self:flex-start;
  1806. padding:0px 0px 0px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u63153_text {
  1811. border-width:0px;
  1812. white-space:nowrap;
  1813. text-transform:none;
  1814. }
  1815. #u63154_div {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:81px;
  1821. height:22px;
  1822. background:inherit;
  1823. background-color:rgba(255, 255, 255, 0);
  1824. border:none;
  1825. border-radius:0px;
  1826. -moz-box-shadow:none;
  1827. -webkit-box-shadow:none;
  1828. box-shadow:none;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:16px;
  1833. }
  1834. #u63154 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:147px;
  1838. top:430px;
  1839. width:81px;
  1840. height:22px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:16px;
  1846. }
  1847. #u63154 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u63154_text {
  1855. border-width:0px;
  1856. white-space:nowrap;
  1857. text-transform:none;
  1858. }
  1859. #u63155_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:81px;
  1865. height:22px;
  1866. background:inherit;
  1867. background-color:rgba(255, 255, 255, 0);
  1868. border:none;
  1869. border-radius:0px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:16px;
  1877. }
  1878. #u63155 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:147px;
  1882. top:472px;
  1883. width:81px;
  1884. height:22px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:16px;
  1890. }
  1891. #u63155 .text {
  1892. position:absolute;
  1893. align-self:flex-start;
  1894. padding:0px 0px 0px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u63155_text {
  1899. border-width:0px;
  1900. white-space:nowrap;
  1901. text-transform:none;
  1902. }
  1903. #u63156_div {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:49px;
  1909. height:17px;
  1910. background:inherit;
  1911. background-color:rgba(255, 255, 255, 0);
  1912. border:none;
  1913. border-radius:0px;
  1914. -moz-box-shadow:none;
  1915. -webkit-box-shadow:none;
  1916. box-shadow:none;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:12px;
  1921. color:#AAAAAA;
  1922. }
  1923. #u63156 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:147px;
  1927. top:310px;
  1928. width:49px;
  1929. height:17px;
  1930. display:flex;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#AAAAAA;
  1936. }
  1937. #u63156 .text {
  1938. position:absolute;
  1939. align-self:flex-start;
  1940. padding:0px 0px 0px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u63156_text {
  1945. border-width:0px;
  1946. white-space:nowrap;
  1947. text-transform:none;
  1948. }
  1949. #u63157_img {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:201px;
  1955. height:2px;
  1956. }
  1957. #u63157 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:120px;
  1961. top:598px;
  1962. width:200px;
  1963. height:1px;
  1964. display:flex;
  1965. }
  1966. #u63157 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 2px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u63157_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. visibility:hidden;
  1978. }
  1979. #u63158_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:65px;
  1985. height:22px;
  1986. background:inherit;
  1987. background-color:rgba(255, 255, 255, 0);
  1988. border:none;
  1989. border-radius:0px;
  1990. -moz-box-shadow:none;
  1991. -webkit-box-shadow:none;
  1992. box-shadow:none;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:16px;
  1997. }
  1998. #u63158 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:147px;
  2002. top:514px;
  2003. width:65px;
  2004. height:22px;
  2005. display:flex;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:16px;
  2010. }
  2011. #u63158 .text {
  2012. position:absolute;
  2013. align-self:flex-start;
  2014. padding:0px 0px 0px 0px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u63158_text {
  2019. border-width:0px;
  2020. white-space:nowrap;
  2021. text-transform:none;
  2022. }
  2023. #u63159_div {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:65px;
  2029. height:22px;
  2030. background:inherit;
  2031. background-color:rgba(255, 255, 255, 0);
  2032. border:none;
  2033. border-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2038. font-weight:400;
  2039. font-style:normal;
  2040. font-size:16px;
  2041. }
  2042. #u63159 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:147px;
  2046. top:556px;
  2047. width:65px;
  2048. height:22px;
  2049. display:flex;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:16px;
  2054. }
  2055. #u63159 .text {
  2056. position:absolute;
  2057. align-self:flex-start;
  2058. padding:0px 0px 0px 0px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u63159_text {
  2063. border-width:0px;
  2064. white-space:nowrap;
  2065. text-transform:none;
  2066. }
  2067. #u63160_div {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:65px;
  2073. height:22px;
  2074. background:inherit;
  2075. background-color:rgba(255, 255, 255, 0);
  2076. border:none;
  2077. border-radius:0px;
  2078. -moz-box-shadow:none;
  2079. -webkit-box-shadow:none;
  2080. box-shadow:none;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:16px;
  2085. }
  2086. #u63160 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:147px;
  2090. top:656px;
  2091. width:65px;
  2092. height:22px;
  2093. display:flex;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:16px;
  2098. }
  2099. #u63160 .text {
  2100. position:absolute;
  2101. align-self:flex-start;
  2102. padding:0px 0px 0px 0px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u63160_text {
  2107. border-width:0px;
  2108. white-space:nowrap;
  2109. text-transform:none;
  2110. }
  2111. #u63161_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:49px;
  2117. height:17px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border:none;
  2121. border-radius:0px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:12px;
  2129. color:#AAAAAA;
  2130. }
  2131. #u63161 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:147px;
  2135. top:620px;
  2136. width:49px;
  2137. height:17px;
  2138. display:flex;
  2139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2140. font-weight:400;
  2141. font-style:normal;
  2142. font-size:12px;
  2143. color:#AAAAAA;
  2144. }
  2145. #u63161 .text {
  2146. position:absolute;
  2147. align-self:flex-start;
  2148. padding:0px 0px 0px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u63161_text {
  2153. border-width:0px;
  2154. white-space:nowrap;
  2155. text-transform:none;
  2156. }
  2157. #u63162_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:65px;
  2163. height:22px;
  2164. background:inherit;
  2165. background-color:rgba(255, 255, 255, 0);
  2166. border:none;
  2167. border-radius:0px;
  2168. -moz-box-shadow:none;
  2169. -webkit-box-shadow:none;
  2170. box-shadow:none;
  2171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2172. font-weight:400;
  2173. font-style:normal;
  2174. font-size:16px;
  2175. }
  2176. #u63162 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:147px;
  2180. top:166px;
  2181. width:65px;
  2182. height:22px;
  2183. display:flex;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:16px;
  2188. }
  2189. #u63162 .text {
  2190. position:absolute;
  2191. align-self:flex-start;
  2192. padding:0px 0px 0px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u63162_text {
  2197. border-width:0px;
  2198. white-space:nowrap;
  2199. text-transform:none;
  2200. }
  2201. #u63163_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:65px;
  2207. height:22px;
  2208. background:inherit;
  2209. background-color:rgba(255, 255, 255, 0);
  2210. border:none;
  2211. border-radius:0px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:16px;
  2219. }
  2220. #u63163 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:147px;
  2224. top:248px;
  2225. width:65px;
  2226. height:22px;
  2227. display:flex;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:16px;
  2232. }
  2233. #u63163 .text {
  2234. position:absolute;
  2235. align-self:flex-start;
  2236. padding:0px 0px 0px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u63163_text {
  2241. border-width:0px;
  2242. white-space:nowrap;
  2243. text-transform:none;
  2244. }
  2245. #u63164_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:49px;
  2251. height:17px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 0);
  2254. border:none;
  2255. border-radius:0px;
  2256. -moz-box-shadow:none;
  2257. -webkit-box-shadow:none;
  2258. box-shadow:none;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. color:#AAAAAA;
  2264. }
  2265. #u63164 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:147px;
  2269. top:130px;
  2270. width:49px;
  2271. height:17px;
  2272. display:flex;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:12px;
  2277. color:#AAAAAA;
  2278. }
  2279. #u63164 .text {
  2280. position:absolute;
  2281. align-self:flex-start;
  2282. padding:0px 0px 0px 0px;
  2283. box-sizing:border-box;
  2284. width:100%;
  2285. }
  2286. #u63164_text {
  2287. border-width:0px;
  2288. white-space:nowrap;
  2289. text-transform:none;
  2290. }
  2291. #u63165_img {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:201px;
  2297. height:2px;
  2298. }
  2299. #u63165 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:120px;
  2303. top:289px;
  2304. width:200px;
  2305. height:1px;
  2306. display:flex;
  2307. }
  2308. #u63165 .text {
  2309. position:absolute;
  2310. align-self:center;
  2311. padding:2px 2px 2px 2px;
  2312. box-sizing:border-box;
  2313. width:100%;
  2314. }
  2315. #u63165_text {
  2316. border-width:0px;
  2317. word-wrap:break-word;
  2318. text-transform:none;
  2319. visibility:hidden;
  2320. }
  2321. #u63166_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:65px;
  2327. height:22px;
  2328. background:inherit;
  2329. background-color:rgba(255, 255, 255, 0);
  2330. border:none;
  2331. border-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:16px;
  2339. }
  2340. #u63166 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:147px;
  2344. top:206px;
  2345. width:65px;
  2346. height:22px;
  2347. display:flex;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:16px;
  2352. }
  2353. #u63166 .text {
  2354. position:absolute;
  2355. align-self:flex-start;
  2356. padding:0px 0px 0px 0px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u63166_text {
  2361. border-width:0px;
  2362. white-space:nowrap;
  2363. text-transform:none;
  2364. }
  2365. #u63167_div {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:1258px;
  2371. height:995px;
  2372. background:inherit;
  2373. background-color:rgba(255, 255, 255, 1);
  2374. border:none;
  2375. border-radius:0px;
  2376. -moz-box-shadow:none;
  2377. -webkit-box-shadow:none;
  2378. box-shadow:none;
  2379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. font-size:12px;
  2383. color:#FFFFFF;
  2384. text-align:left;
  2385. }
  2386. #u63167 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:330px;
  2390. top:235px;
  2391. width:1258px;
  2392. height:995px;
  2393. display:flex;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. color:#FFFFFF;
  2399. text-align:left;
  2400. }
  2401. #u63167 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 50px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u63167_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u63168_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:1258px;
  2420. height:175px;
  2421. background:inherit;
  2422. background-color:rgba(255, 255, 255, 1);
  2423. border:none;
  2424. border-radius:0px;
  2425. -moz-box-shadow:none;
  2426. -webkit-box-shadow:none;
  2427. box-shadow:none;
  2428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2429. font-weight:400;
  2430. font-style:normal;
  2431. font-size:12px;
  2432. color:#FFFFFF;
  2433. text-align:left;
  2434. }
  2435. #u63168 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:330px;
  2439. top:50px;
  2440. width:1258px;
  2441. height:175px;
  2442. display:flex;
  2443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. font-size:12px;
  2447. color:#FFFFFF;
  2448. text-align:left;
  2449. }
  2450. #u63168 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 2px 2px 50px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u63168_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. visibility:hidden;
  2462. }
  2463. #u63169_div {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:73px;
  2469. height:50px;
  2470. background:inherit;
  2471. background-color:rgba(255, 255, 255, 0);
  2472. border:none;
  2473. border-left:0px;
  2474. border-top:0px;
  2475. border-right:0px;
  2476. border-radius:0px;
  2477. border-bottom-right-radius:0px;
  2478. border-bottom-left-radius:0px;
  2479. -moz-box-shadow:none;
  2480. -webkit-box-shadow:none;
  2481. box-shadow:none;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:18px;
  2486. }
  2487. #u63169 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:351px;
  2491. top:50px;
  2492. width:73px;
  2493. height:50px;
  2494. display:flex;
  2495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:18px;
  2499. }
  2500. #u63169 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:0px 0px 0px 0px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u63169_text {
  2508. border-width:0px;
  2509. white-space:nowrap;
  2510. text-transform:none;
  2511. }
  2512. #u63170_img {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:13px;
  2518. height:13px;
  2519. }
  2520. #u63170 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:430px;
  2524. top:69px;
  2525. width:13px;
  2526. height:13px;
  2527. display:flex;
  2528. }
  2529. #u63170 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:2px 2px 2px 2px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u63170_text {
  2537. border-width:0px;
  2538. word-wrap:break-word;
  2539. text-transform:none;
  2540. visibility:hidden;
  2541. }
  2542. #u63171 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:0px;
  2548. height:0px;
  2549. }
  2550. #u63172_div {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:259px;
  2556. height:100px;
  2557. background:inherit;
  2558. background-color:rgba(242, 242, 242, 1);
  2559. border:none;
  2560. border-radius:5px;
  2561. -moz-box-shadow:none;
  2562. -webkit-box-shadow:none;
  2563. box-shadow:none;
  2564. }
  2565. #u63172 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:351px;
  2569. top:100px;
  2570. width:259px;
  2571. height:100px;
  2572. display:flex;
  2573. }
  2574. #u63172 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 2px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u63172_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u63173_div {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:118px;
  2593. height:40px;
  2594. background:inherit;
  2595. background-color:rgba(255, 255, 255, 0);
  2596. border:none;
  2597. border-left:0px;
  2598. border-top:0px;
  2599. border-right:0px;
  2600. border-radius:0px;
  2601. border-bottom-right-radius:0px;
  2602. border-bottom-left-radius:0px;
  2603. -moz-box-shadow:none;
  2604. -webkit-box-shadow:none;
  2605. box-shadow:none;
  2606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2607. font-weight:500;
  2608. font-style:normal;
  2609. font-size:18px;
  2610. line-height:40px;
  2611. }
  2612. #u63173 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:373px;
  2616. top:110px;
  2617. width:118px;
  2618. height:40px;
  2619. display:flex;
  2620. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2621. font-weight:500;
  2622. font-style:normal;
  2623. font-size:18px;
  2624. line-height:40px;
  2625. }
  2626. #u63173 .text {
  2627. position:absolute;
  2628. align-self:center;
  2629. padding:0px 0px 0px 0px;
  2630. box-sizing:border-box;
  2631. width:100%;
  2632. }
  2633. #u63173_text {
  2634. border-width:0px;
  2635. word-wrap:break-word;
  2636. text-transform:none;
  2637. }
  2638. #u63174_div {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:215px;
  2644. height:17px;
  2645. background:inherit;
  2646. background-color:rgba(255, 255, 255, 0);
  2647. border:none;
  2648. border-left:0px;
  2649. border-top:0px;
  2650. border-right:0px;
  2651. border-radius:0px;
  2652. border-bottom-right-radius:0px;
  2653. border-bottom-left-radius:0px;
  2654. -moz-box-shadow:none;
  2655. -webkit-box-shadow:none;
  2656. box-shadow:none;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:12px;
  2661. color:#7F7F7F;
  2662. }
  2663. #u63174 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:373px;
  2667. top:173px;
  2668. width:215px;
  2669. height:17px;
  2670. display:flex;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. color:#7F7F7F;
  2676. }
  2677. #u63174 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:0px 0px 0px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u63174_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. }
  2689. #u63175 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:0px;
  2695. height:0px;
  2696. }
  2697. #u63176_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:17px;
  2703. height:16px;
  2704. }
  2705. #u63176 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:541px;
  2709. top:122px;
  2710. width:17px;
  2711. height:16px;
  2712. display:flex;
  2713. font-family:'Microsoft YaHei', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. }
  2718. #u63176 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u63176_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u63177_div {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:27px;
  2737. height:17px;
  2738. background:inherit;
  2739. background-color:rgba(255, 255, 255, 0);
  2740. border:none;
  2741. border-radius:0px;
  2742. -moz-box-shadow:none;
  2743. -webkit-box-shadow:none;
  2744. box-shadow:none;
  2745. font-family:'微软雅黑', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. text-decoration:underline ;
  2750. color:#0099FF;
  2751. }
  2752. #u63177 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:560px;
  2756. top:122px;
  2757. width:27px;
  2758. height:17px;
  2759. display:flex;
  2760. font-family:'微软雅黑', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:12px;
  2764. text-decoration:underline ;
  2765. color:#0099FF;
  2766. }
  2767. #u63177 .text {
  2768. position:absolute;
  2769. align-self:flex-start;
  2770. padding:0px 0px 0px 0px;
  2771. box-sizing:border-box;
  2772. width:100%;
  2773. }
  2774. #u63177_text {
  2775. border-width:0px;
  2776. word-wrap:break-word;
  2777. text-transform:none;
  2778. }
  2779. #u63178 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:0px;
  2785. height:0px;
  2786. }
  2787. #u63179_div {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:396px;
  2793. height:100px;
  2794. background:inherit;
  2795. background-color:rgba(242, 242, 242, 1);
  2796. border:none;
  2797. border-radius:5px;
  2798. -moz-box-shadow:none;
  2799. -webkit-box-shadow:none;
  2800. box-shadow:none;
  2801. }
  2802. #u63179 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:621px;
  2806. top:100px;
  2807. width:396px;
  2808. height:100px;
  2809. display:flex;
  2810. }
  2811. #u63179 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 2px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u63179_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u63180_div {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:38px;
  2830. height:40px;
  2831. background:inherit;
  2832. background-color:rgba(255, 255, 255, 0);
  2833. border:none;
  2834. border-left:0px;
  2835. border-top:0px;
  2836. border-right:0px;
  2837. border-radius:0px;
  2838. border-bottom-right-radius:0px;
  2839. border-bottom-left-radius:0px;
  2840. -moz-box-shadow:none;
  2841. -webkit-box-shadow:none;
  2842. box-shadow:none;
  2843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2844. font-weight:500;
  2845. font-style:normal;
  2846. font-size:28px;
  2847. line-height:40px;
  2848. }
  2849. #u63180 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:658px;
  2853. top:144px;
  2854. width:38px;
  2855. height:40px;
  2856. display:flex;
  2857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2858. font-weight:500;
  2859. font-style:normal;
  2860. font-size:28px;
  2861. line-height:40px;
  2862. }
  2863. #u63180 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:0px 0px 0px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u63180_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. }
  2875. #u63181_div {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:53px;
  2881. height:17px;
  2882. background:inherit;
  2883. background-color:rgba(255, 255, 255, 0);
  2884. border:none;
  2885. border-left:0px;
  2886. border-top:0px;
  2887. border-right:0px;
  2888. border-radius:0px;
  2889. border-bottom-right-radius:0px;
  2890. border-bottom-left-radius:0px;
  2891. -moz-box-shadow:none;
  2892. -webkit-box-shadow:none;
  2893. box-shadow:none;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. color:#7F7F7F;
  2899. }
  2900. #u63181 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:643px;
  2904. top:112px;
  2905. width:53px;
  2906. height:17px;
  2907. display:flex;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. color:#7F7F7F;
  2913. }
  2914. #u63181 .text {
  2915. position:absolute;
  2916. align-self:center;
  2917. padding:0px 0px 0px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u63181_text {
  2922. border-width:0px;
  2923. word-wrap:break-word;
  2924. text-transform:none;
  2925. }
  2926. #u63182_div {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:53px;
  2932. height:50px;
  2933. background:inherit;
  2934. background-color:rgba(255, 255, 255, 0);
  2935. border:none;
  2936. border-left:0px;
  2937. border-top:0px;
  2938. border-right:0px;
  2939. border-radius:0px;
  2940. border-bottom-right-radius:0px;
  2941. border-bottom-left-radius:0px;
  2942. -moz-box-shadow:none;
  2943. -webkit-box-shadow:none;
  2944. box-shadow:none;
  2945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:12px;
  2949. color:#7F7F7F;
  2950. line-height:25px;
  2951. }
  2952. #u63182 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:757px;
  2956. top:139px;
  2957. width:53px;
  2958. height:50px;
  2959. display:flex;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:12px;
  2964. color:#7F7F7F;
  2965. line-height:25px;
  2966. }
  2967. #u63182 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:0px 0px 0px 0px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u63182_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. }
  2979. #u63183_div {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:53px;
  2985. height:50px;
  2986. background:inherit;
  2987. background-color:rgba(255, 255, 255, 0);
  2988. border:none;
  2989. border-left:0px;
  2990. border-top:0px;
  2991. border-right:0px;
  2992. border-radius:0px;
  2993. border-bottom-right-radius:0px;
  2994. border-bottom-left-radius:0px;
  2995. -moz-box-shadow:none;
  2996. -webkit-box-shadow:none;
  2997. box-shadow:none;
  2998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:12px;
  3002. color:#7F7F7F;
  3003. line-height:25px;
  3004. }
  3005. #u63183 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:894px;
  3009. top:139px;
  3010. width:53px;
  3011. height:50px;
  3012. display:flex;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. color:#7F7F7F;
  3018. line-height:25px;
  3019. }
  3020. #u63183 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:0px 0px 0px 0px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u63183_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. }
  3032. #u63184_div {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:14px;
  3038. height:50px;
  3039. background:inherit;
  3040. background-color:rgba(255, 255, 255, 0);
  3041. border:none;
  3042. border-left:0px;
  3043. border-top:0px;
  3044. border-right:0px;
  3045. border-radius:0px;
  3046. border-bottom-right-radius:0px;
  3047. border-bottom-left-radius:0px;
  3048. -moz-box-shadow:none;
  3049. -webkit-box-shadow:none;
  3050. box-shadow:none;
  3051. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3052. font-weight:500;
  3053. font-style:normal;
  3054. font-size:12px;
  3055. line-height:25px;
  3056. }
  3057. #u63184 {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:810px;
  3061. top:139px;
  3062. width:14px;
  3063. height:50px;
  3064. display:flex;
  3065. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3066. font-weight:500;
  3067. font-style:normal;
  3068. font-size:12px;
  3069. line-height:25px;
  3070. }
  3071. #u63184 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:0px 0px 0px 0px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u63184_text {
  3079. border-width:0px;
  3080. word-wrap:break-word;
  3081. text-transform:none;
  3082. }
  3083. #u63185_div {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:14px;
  3089. height:50px;
  3090. background:inherit;
  3091. background-color:rgba(255, 255, 255, 0);
  3092. border:none;
  3093. border-left:0px;
  3094. border-top:0px;
  3095. border-right:0px;
  3096. border-radius:0px;
  3097. border-bottom-right-radius:0px;
  3098. border-bottom-left-radius:0px;
  3099. -moz-box-shadow:none;
  3100. -webkit-box-shadow:none;
  3101. box-shadow:none;
  3102. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3103. font-weight:500;
  3104. font-style:normal;
  3105. font-size:12px;
  3106. line-height:25px;
  3107. }
  3108. #u63185 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:947px;
  3112. top:139px;
  3113. width:14px;
  3114. height:50px;
  3115. display:flex;
  3116. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3117. font-weight:500;
  3118. font-style:normal;
  3119. font-size:12px;
  3120. line-height:25px;
  3121. }
  3122. #u63185 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:0px 0px 0px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u63185_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. }
  3134. #u63186 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:0px;
  3140. height:0px;
  3141. }
  3142. #u63187_div {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:173px;
  3148. height:100px;
  3149. background:inherit;
  3150. background-color:rgba(242, 242, 242, 1);
  3151. border:none;
  3152. border-radius:5px;
  3153. -moz-box-shadow:none;
  3154. -webkit-box-shadow:none;
  3155. box-shadow:none;
  3156. }
  3157. #u63187 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:1028px;
  3161. top:100px;
  3162. width:173px;
  3163. height:100px;
  3164. display:flex;
  3165. }
  3166. #u63187 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 2px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u63187_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. visibility:hidden;
  3178. }
  3179. #u63188_div {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:26px;
  3185. height:40px;
  3186. background:inherit;
  3187. background-color:rgba(255, 255, 255, 0);
  3188. border:none;
  3189. border-left:0px;
  3190. border-top:0px;
  3191. border-right:0px;
  3192. border-radius:0px;
  3193. border-bottom-right-radius:0px;
  3194. border-bottom-left-radius:0px;
  3195. -moz-box-shadow:none;
  3196. -webkit-box-shadow:none;
  3197. box-shadow:none;
  3198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3199. font-weight:500;
  3200. font-style:normal;
  3201. font-size:28px;
  3202. line-height:40px;
  3203. }
  3204. #u63188 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:1065px;
  3208. top:144px;
  3209. width:26px;
  3210. height:40px;
  3211. display:flex;
  3212. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3213. font-weight:500;
  3214. font-style:normal;
  3215. font-size:28px;
  3216. line-height:40px;
  3217. }
  3218. #u63188 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:0px 0px 0px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u63188_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. }
  3230. #u63189_div {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:79px;
  3236. height:17px;
  3237. background:inherit;
  3238. background-color:rgba(255, 255, 255, 0);
  3239. border:none;
  3240. border-left:0px;
  3241. border-top:0px;
  3242. border-right:0px;
  3243. border-radius:0px;
  3244. border-bottom-right-radius:0px;
  3245. border-bottom-left-radius:0px;
  3246. -moz-box-shadow:none;
  3247. -webkit-box-shadow:none;
  3248. box-shadow:none;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:12px;
  3253. color:#7F7F7F;
  3254. }
  3255. #u63189 {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:1050px;
  3259. top:112px;
  3260. width:79px;
  3261. height:17px;
  3262. display:flex;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:12px;
  3267. color:#7F7F7F;
  3268. }
  3269. #u63189 .text {
  3270. position:absolute;
  3271. align-self:center;
  3272. padding:0px 0px 0px 0px;
  3273. box-sizing:border-box;
  3274. width:100%;
  3275. }
  3276. #u63189_text {
  3277. border-width:0px;
  3278. word-wrap:break-word;
  3279. text-transform:none;
  3280. }
  3281. #u63190 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:0px;
  3287. height:0px;
  3288. }
  3289. #u63191_div {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:173px;
  3295. height:100px;
  3296. background:inherit;
  3297. background-color:rgba(242, 242, 242, 1);
  3298. border:none;
  3299. border-radius:5px;
  3300. -moz-box-shadow:none;
  3301. -webkit-box-shadow:none;
  3302. box-shadow:none;
  3303. }
  3304. #u63191 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:1212px;
  3308. top:100px;
  3309. width:173px;
  3310. height:100px;
  3311. display:flex;
  3312. }
  3313. #u63191 .text {
  3314. position:absolute;
  3315. align-self:center;
  3316. padding:2px 2px 2px 2px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u63191_text {
  3321. border-width:0px;
  3322. word-wrap:break-word;
  3323. text-transform:none;
  3324. visibility:hidden;
  3325. }
  3326. #u63192_div {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:31px;
  3332. height:40px;
  3333. background:inherit;
  3334. background-color:rgba(255, 255, 255, 0);
  3335. border:none;
  3336. border-left:0px;
  3337. border-top:0px;
  3338. border-right:0px;
  3339. border-radius:0px;
  3340. border-bottom-right-radius:0px;
  3341. border-bottom-left-radius:0px;
  3342. -moz-box-shadow:none;
  3343. -webkit-box-shadow:none;
  3344. box-shadow:none;
  3345. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3346. font-weight:500;
  3347. font-style:normal;
  3348. font-size:28px;
  3349. line-height:40px;
  3350. }
  3351. #u63192 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:1233px;
  3355. top:144px;
  3356. width:31px;
  3357. height:40px;
  3358. display:flex;
  3359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3360. font-weight:500;
  3361. font-style:normal;
  3362. font-size:28px;
  3363. line-height:40px;
  3364. }
  3365. #u63192 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:0px 0px 0px 0px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u63192_text {
  3373. border-width:0px;
  3374. word-wrap:break-word;
  3375. text-transform:none;
  3376. }
  3377. #u63193_div {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:79px;
  3383. height:17px;
  3384. background:inherit;
  3385. background-color:rgba(255, 255, 255, 0);
  3386. border:none;
  3387. border-left:0px;
  3388. border-top:0px;
  3389. border-right:0px;
  3390. border-radius:0px;
  3391. border-bottom-right-radius:0px;
  3392. border-bottom-left-radius:0px;
  3393. -moz-box-shadow:none;
  3394. -webkit-box-shadow:none;
  3395. box-shadow:none;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:12px;
  3400. color:#7F7F7F;
  3401. }
  3402. #u63193 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:1233px;
  3406. top:112px;
  3407. width:79px;
  3408. height:17px;
  3409. display:flex;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:12px;
  3414. color:#7F7F7F;
  3415. }
  3416. #u63193 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:0px 0px 0px 0px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u63193_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. }
  3428. #u63194_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:65px;
  3434. height:20px;
  3435. background:inherit;
  3436. background-color:rgba(255, 255, 255, 0);
  3437. box-sizing:border-box;
  3438. border-width:1px;
  3439. border-style:solid;
  3440. border-color:rgba(24, 144, 255, 1);
  3441. border-radius:2px;
  3442. -moz-box-shadow:none;
  3443. -webkit-box-shadow:none;
  3444. box-shadow:none;
  3445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:11px;
  3449. color:#1890FF;
  3450. }
  3451. #u63194 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:1305px;
  3455. top:154px;
  3456. width:65px;
  3457. height:20px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:11px;
  3463. color:#1890FF;
  3464. }
  3465. #u63194 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 2px 2px 2px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u63194_text {
  3473. border-width:0px;
  3474. word-wrap:break-word;
  3475. text-transform:none;
  3476. }
  3477. #u63195 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:0px;
  3483. height:0px;
  3484. }
  3485. #u63196_div {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:173px;
  3491. height:100px;
  3492. background:inherit;
  3493. background-color:rgba(242, 242, 242, 1);
  3494. border:none;
  3495. border-radius:5px;
  3496. -moz-box-shadow:none;
  3497. -webkit-box-shadow:none;
  3498. box-shadow:none;
  3499. }
  3500. #u63196 {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:1395px;
  3504. top:100px;
  3505. width:173px;
  3506. height:100px;
  3507. display:flex;
  3508. }
  3509. #u63196 .text {
  3510. position:absolute;
  3511. align-self:center;
  3512. padding:2px 2px 2px 2px;
  3513. box-sizing:border-box;
  3514. width:100%;
  3515. }
  3516. #u63196_text {
  3517. border-width:0px;
  3518. word-wrap:break-word;
  3519. text-transform:none;
  3520. visibility:hidden;
  3521. }
  3522. #u63197_div {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:31px;
  3528. height:40px;
  3529. background:inherit;
  3530. background-color:rgba(255, 255, 255, 0);
  3531. border:none;
  3532. border-left:0px;
  3533. border-top:0px;
  3534. border-right:0px;
  3535. border-radius:0px;
  3536. border-bottom-right-radius:0px;
  3537. border-bottom-left-radius:0px;
  3538. -moz-box-shadow:none;
  3539. -webkit-box-shadow:none;
  3540. box-shadow:none;
  3541. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3542. font-weight:500;
  3543. font-style:normal;
  3544. font-size:28px;
  3545. line-height:40px;
  3546. }
  3547. #u63197 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:1417px;
  3551. top:144px;
  3552. width:31px;
  3553. height:40px;
  3554. display:flex;
  3555. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3556. font-weight:500;
  3557. font-style:normal;
  3558. font-size:28px;
  3559. line-height:40px;
  3560. }
  3561. #u63197 .text {
  3562. position:absolute;
  3563. align-self:center;
  3564. padding:0px 0px 0px 0px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u63197_text {
  3569. border-width:0px;
  3570. word-wrap:break-word;
  3571. text-transform:none;
  3572. }
  3573. #u63198_div {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:105px;
  3579. height:17px;
  3580. background:inherit;
  3581. background-color:rgba(255, 255, 255, 0);
  3582. border:none;
  3583. border-left:0px;
  3584. border-top:0px;
  3585. border-right:0px;
  3586. border-radius:0px;
  3587. border-bottom-right-radius:0px;
  3588. border-bottom-left-radius:0px;
  3589. -moz-box-shadow:none;
  3590. -webkit-box-shadow:none;
  3591. box-shadow:none;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:12px;
  3596. color:#7F7F7F;
  3597. }
  3598. #u63198 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:1417px;
  3602. top:112px;
  3603. width:105px;
  3604. height:17px;
  3605. display:flex;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:12px;
  3610. color:#7F7F7F;
  3611. }
  3612. #u63198 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:0px 0px 0px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u63198_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. }
  3624. #u63199_div {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:67px;
  3630. height:20px;
  3631. background:inherit;
  3632. background-color:rgba(255, 255, 255, 0);
  3633. box-sizing:border-box;
  3634. border-width:1px;
  3635. border-style:solid;
  3636. border-color:rgba(24, 144, 255, 1);
  3637. border-radius:2px;
  3638. -moz-box-shadow:none;
  3639. -webkit-box-shadow:none;
  3640. box-shadow:none;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:11px;
  3645. color:#1890FF;
  3646. }
  3647. #u63199 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:1488px;
  3651. top:154px;
  3652. width:67px;
  3653. height:20px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:11px;
  3659. color:#1890FF;
  3660. }
  3661. #u63199 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 2px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u63199_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. }
  3673. #u63200 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:350px;
  3677. top:398px;
  3678. width:1218px;
  3679. height:366px;
  3680. }
  3681. #u63201_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:161px;
  3687. height:39px;
  3688. }
  3689. #u63201 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:161px;
  3695. height:39px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:12px;
  3701. color:#FFFFFF;
  3702. }
  3703. #u63201 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u63201_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. }
  3715. #u63202_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:131px;
  3721. height:39px;
  3722. }
  3723. #u63202 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:161px;
  3727. top:0px;
  3728. width:131px;
  3729. height:39px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:12px;
  3735. color:#FFFFFF;
  3736. }
  3737. #u63202 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u63202_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. }
  3749. #u63203_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:110px;
  3755. height:39px;
  3756. }
  3757. #u63203 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:292px;
  3761. top:0px;
  3762. width:110px;
  3763. height:39px;
  3764. display:flex;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:12px;
  3769. color:#FFFFFF;
  3770. }
  3771. #u63203 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u63203_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. }
  3783. #u63204_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:100px;
  3789. height:39px;
  3790. }
  3791. #u63204 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:402px;
  3795. top:0px;
  3796. width:100px;
  3797. height:39px;
  3798. display:flex;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:12px;
  3803. color:#FFFFFF;
  3804. }
  3805. #u63204 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u63204_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. }
  3817. #u63205_img {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:100px;
  3823. height:39px;
  3824. }
  3825. #u63205 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:502px;
  3829. top:0px;
  3830. width:100px;
  3831. height:39px;
  3832. display:flex;
  3833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:12px;
  3837. color:#FFFFFF;
  3838. }
  3839. #u63205 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u63205_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. }
  3851. #u63206_img {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:100px;
  3857. height:39px;
  3858. }
  3859. #u63206 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:602px;
  3863. top:0px;
  3864. width:100px;
  3865. height:39px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:12px;
  3871. color:#FFFFFF;
  3872. }
  3873. #u63206 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u63206_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. }
  3885. #u63207_img {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:100px;
  3891. height:39px;
  3892. }
  3893. #u63207 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:702px;
  3897. top:0px;
  3898. width:100px;
  3899. height:39px;
  3900. display:flex;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:12px;
  3905. color:#FFFFFF;
  3906. }
  3907. #u63207 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u63207_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. }
  3919. #u63208_img {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:100px;
  3925. height:39px;
  3926. }
  3927. #u63208 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:802px;
  3931. top:0px;
  3932. width:100px;
  3933. height:39px;
  3934. display:flex;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:12px;
  3939. color:#FFFFFF;
  3940. }
  3941. #u63208 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 2px 2px 0px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u63208_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. }
  3953. #u63209_img {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:100px;
  3959. height:39px;
  3960. }
  3961. #u63209 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:902px;
  3965. top:0px;
  3966. width:100px;
  3967. height:39px;
  3968. display:flex;
  3969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:12px;
  3973. color:#FFFFFF;
  3974. }
  3975. #u63209 .text {
  3976. position:absolute;
  3977. align-self:center;
  3978. padding:2px 2px 2px 0px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u63209_text {
  3983. border-width:0px;
  3984. word-wrap:break-word;
  3985. text-transform:none;
  3986. }
  3987. #u63210_img {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:0px;
  3991. top:0px;
  3992. width:111px;
  3993. height:39px;
  3994. }
  3995. #u63210 {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:1002px;
  3999. top:0px;
  4000. width:111px;
  4001. height:39px;
  4002. display:flex;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:12px;
  4007. color:#FFFFFF;
  4008. }
  4009. #u63210 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 0px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u63210_text {
  4017. border-width:0px;
  4018. word-wrap:break-word;
  4019. text-transform:none;
  4020. }
  4021. #u63211_img {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:105px;
  4027. height:39px;
  4028. }
  4029. #u63211 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:1113px;
  4033. top:0px;
  4034. width:105px;
  4035. height:39px;
  4036. display:flex;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:12px;
  4041. color:#FFFFFF;
  4042. }
  4043. #u63211 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u63211_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. }
  4055. #u63212_img {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:161px;
  4061. height:38px;
  4062. }
  4063. #u63212 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:39px;
  4068. width:161px;
  4069. height:38px;
  4070. display:flex;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:12px;
  4075. color:#1890FF;
  4076. }
  4077. #u63212 .text {
  4078. position:absolute;
  4079. align-self:center;
  4080. padding:2px 2px 2px 0px;
  4081. box-sizing:border-box;
  4082. width:100%;
  4083. }
  4084. #u63212_text {
  4085. border-width:0px;
  4086. word-wrap:break-word;
  4087. text-transform:none;
  4088. }
  4089. #u63213_img {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:131px;
  4095. height:38px;
  4096. }
  4097. #u63213 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:161px;
  4101. top:39px;
  4102. width:131px;
  4103. height:38px;
  4104. display:flex;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:12px;
  4109. }
  4110. #u63213 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u63213_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. }
  4122. #u63214_img {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:110px;
  4128. height:38px;
  4129. }
  4130. #u63214 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:292px;
  4134. top:39px;
  4135. width:110px;
  4136. height:38px;
  4137. display:flex;
  4138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:12px;
  4142. }
  4143. #u63214 .text {
  4144. position:absolute;
  4145. align-self:center;
  4146. padding:2px 2px 2px 0px;
  4147. box-sizing:border-box;
  4148. width:100%;
  4149. }
  4150. #u63214_text {
  4151. border-width:0px;
  4152. word-wrap:break-word;
  4153. text-transform:none;
  4154. }
  4155. #u63215_img {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:100px;
  4161. height:38px;
  4162. }
  4163. #u63215 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:402px;
  4167. top:39px;
  4168. width:100px;
  4169. height:38px;
  4170. display:flex;
  4171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:12px;
  4175. }
  4176. #u63215 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 0px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u63215_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. }
  4188. #u63216_img {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:100px;
  4194. height:38px;
  4195. }
  4196. #u63216 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:502px;
  4200. top:39px;
  4201. width:100px;
  4202. height:38px;
  4203. display:flex;
  4204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4205. font-weight:400;
  4206. font-style:normal;
  4207. font-size:12px;
  4208. }
  4209. #u63216 .text {
  4210. position:absolute;
  4211. align-self:center;
  4212. padding:2px 2px 2px 0px;
  4213. box-sizing:border-box;
  4214. width:100%;
  4215. }
  4216. #u63216_text {
  4217. border-width:0px;
  4218. word-wrap:break-word;
  4219. text-transform:none;
  4220. }
  4221. #u63217_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:100px;
  4227. height:38px;
  4228. }
  4229. #u63217 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:602px;
  4233. top:39px;
  4234. width:100px;
  4235. height:38px;
  4236. display:flex;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. }
  4242. #u63217 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 0px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u63217_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u63218_img {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:100px;
  4261. height:38px;
  4262. }
  4263. #u63218 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:702px;
  4267. top:39px;
  4268. width:100px;
  4269. height:38px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:12px;
  4275. }
  4276. #u63218 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 0px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u63218_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. }
  4288. #u63219_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:100px;
  4294. height:38px;
  4295. }
  4296. #u63219 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:802px;
  4300. top:39px;
  4301. width:100px;
  4302. height:38px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:12px;
  4308. }
  4309. #u63219 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u63219_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u63220_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:100px;
  4328. height:38px;
  4329. }
  4330. #u63220 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:902px;
  4334. top:39px;
  4335. width:100px;
  4336. height:38px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. }
  4343. #u63220 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 0px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u63220_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. visibility:hidden;
  4355. }
  4356. #u63221_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:111px;
  4362. height:38px;
  4363. }
  4364. #u63221 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:1002px;
  4368. top:39px;
  4369. width:111px;
  4370. height:38px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. }
  4377. #u63221 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 0px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u63221_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. visibility:hidden;
  4389. }
  4390. #u63222_img {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:105px;
  4396. height:38px;
  4397. }
  4398. #u63222 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:1113px;
  4402. top:39px;
  4403. width:105px;
  4404. height:38px;
  4405. display:flex;
  4406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. font-size:12px;
  4410. color:#1890FF;
  4411. }
  4412. #u63222 .text {
  4413. position:absolute;
  4414. align-self:center;
  4415. padding:2px 2px 2px 0px;
  4416. box-sizing:border-box;
  4417. width:100%;
  4418. }
  4419. #u63222_text {
  4420. border-width:0px;
  4421. word-wrap:break-word;
  4422. text-transform:none;
  4423. }
  4424. #u63223_img {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:161px;
  4430. height:38px;
  4431. }
  4432. #u63223 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:77px;
  4437. width:161px;
  4438. height:38px;
  4439. display:flex;
  4440. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:12px;
  4444. }
  4445. #u63223 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 0px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u63223_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u63224_img {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:131px;
  4464. height:38px;
  4465. }
  4466. #u63224 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:161px;
  4470. top:77px;
  4471. width:131px;
  4472. height:38px;
  4473. display:flex;
  4474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:12px;
  4478. }
  4479. #u63224 .text {
  4480. position:absolute;
  4481. align-self:center;
  4482. padding:2px 2px 2px 0px;
  4483. box-sizing:border-box;
  4484. width:100%;
  4485. }
  4486. #u63224_text {
  4487. border-width:0px;
  4488. word-wrap:break-word;
  4489. text-transform:none;
  4490. }
  4491. #u63225_img {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:110px;
  4497. height:38px;
  4498. }
  4499. #u63225 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:292px;
  4503. top:77px;
  4504. width:110px;
  4505. height:38px;
  4506. display:flex;
  4507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4508. font-weight:400;
  4509. font-style:normal;
  4510. font-size:12px;
  4511. }
  4512. #u63225 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u63225_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. }
  4524. #u63226_img {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:100px;
  4530. height:38px;
  4531. }
  4532. #u63226 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:402px;
  4536. top:77px;
  4537. width:100px;
  4538. height:38px;
  4539. display:flex;
  4540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:12px;
  4544. }
  4545. #u63226 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 0px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u63226_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. }
  4557. #u63227_img {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:100px;
  4563. height:38px;
  4564. }
  4565. #u63227 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:502px;
  4569. top:77px;
  4570. width:100px;
  4571. height:38px;
  4572. display:flex;
  4573. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:12px;
  4577. }
  4578. #u63227 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u63227_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. visibility:hidden;
  4590. }
  4591. #u63228_img {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:100px;
  4597. height:38px;
  4598. }
  4599. #u63228 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:602px;
  4603. top:77px;
  4604. width:100px;
  4605. height:38px;
  4606. display:flex;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:12px;
  4611. }
  4612. #u63228 .text {
  4613. position:absolute;
  4614. align-self:center;
  4615. padding:2px 2px 2px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u63228_text {
  4620. border-width:0px;
  4621. word-wrap:break-word;
  4622. text-transform:none;
  4623. visibility:hidden;
  4624. }
  4625. #u63229_img {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:100px;
  4631. height:38px;
  4632. }
  4633. #u63229 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:702px;
  4637. top:77px;
  4638. width:100px;
  4639. height:38px;
  4640. display:flex;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:12px;
  4645. }
  4646. #u63229 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:2px 2px 2px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u63229_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. }
  4658. #u63230_img {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:100px;
  4664. height:38px;
  4665. }
  4666. #u63230 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:802px;
  4670. top:77px;
  4671. width:100px;
  4672. height:38px;
  4673. display:flex;
  4674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:12px;
  4678. }
  4679. #u63230 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 0px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u63230_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u63231_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:100px;
  4698. height:38px;
  4699. }
  4700. #u63231 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:902px;
  4704. top:77px;
  4705. width:100px;
  4706. height:38px;
  4707. display:flex;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:12px;
  4712. }
  4713. #u63231 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:2px 2px 2px 0px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u63231_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. visibility:hidden;
  4725. }
  4726. #u63232_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:111px;
  4732. height:38px;
  4733. }
  4734. #u63232 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:1002px;
  4738. top:77px;
  4739. width:111px;
  4740. height:38px;
  4741. display:flex;
  4742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:12px;
  4746. }
  4747. #u63232 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u63232_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. visibility:hidden;
  4759. }
  4760. #u63233_img {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:105px;
  4766. height:38px;
  4767. }
  4768. #u63233 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:1113px;
  4772. top:77px;
  4773. width:105px;
  4774. height:38px;
  4775. display:flex;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:12px;
  4780. }
  4781. #u63233 .text {
  4782. position:absolute;
  4783. align-self:center;
  4784. padding:2px 2px 2px 0px;
  4785. box-sizing:border-box;
  4786. width:100%;
  4787. }
  4788. #u63233_text {
  4789. border-width:0px;
  4790. word-wrap:break-word;
  4791. text-transform:none;
  4792. }
  4793. #u63234_img {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:0px;
  4797. top:0px;
  4798. width:161px;
  4799. height:38px;
  4800. }
  4801. #u63234 {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:115px;
  4806. width:161px;
  4807. height:38px;
  4808. display:flex;
  4809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:12px;
  4813. }
  4814. #u63234 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 0px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u63234_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u63235_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:131px;
  4833. height:38px;
  4834. }
  4835. #u63235 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:161px;
  4839. top:115px;
  4840. width:131px;
  4841. height:38px;
  4842. display:flex;
  4843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:12px;
  4847. }
  4848. #u63235 .text {
  4849. position:absolute;
  4850. align-self:center;
  4851. padding:2px 2px 2px 0px;
  4852. box-sizing:border-box;
  4853. width:100%;
  4854. }
  4855. #u63235_text {
  4856. border-width:0px;
  4857. word-wrap:break-word;
  4858. text-transform:none;
  4859. visibility:hidden;
  4860. }
  4861. #u63236_img {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:110px;
  4867. height:38px;
  4868. }
  4869. #u63236 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:292px;
  4873. top:115px;
  4874. width:110px;
  4875. height:38px;
  4876. display:flex;
  4877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:12px;
  4881. }
  4882. #u63236 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:2px 2px 2px 0px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u63236_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. }
  4894. #u63237_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:100px;
  4900. height:38px;
  4901. }
  4902. #u63237 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:402px;
  4906. top:115px;
  4907. width:100px;
  4908. height:38px;
  4909. display:flex;
  4910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. }
  4915. #u63237 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 0px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u63237_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. }
  4927. #u63238_img {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:100px;
  4933. height:38px;
  4934. }
  4935. #u63238 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:502px;
  4939. top:115px;
  4940. width:100px;
  4941. height:38px;
  4942. display:flex;
  4943. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:12px;
  4947. }
  4948. #u63238 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 2px 2px 0px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u63238_text {
  4956. border-width:0px;
  4957. word-wrap:break-word;
  4958. text-transform:none;
  4959. visibility:hidden;
  4960. }
  4961. #u63239_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:100px;
  4967. height:38px;
  4968. }
  4969. #u63239 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:602px;
  4973. top:115px;
  4974. width:100px;
  4975. height:38px;
  4976. display:flex;
  4977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:12px;
  4981. }
  4982. #u63239 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 0px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u63239_text {
  4990. border-width:0px;
  4991. word-wrap:break-word;
  4992. text-transform:none;
  4993. visibility:hidden;
  4994. }
  4995. #u63240_img {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:100px;
  5001. height:38px;
  5002. }
  5003. #u63240 {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:702px;
  5007. top:115px;
  5008. width:100px;
  5009. height:38px;
  5010. display:flex;
  5011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. font-size:12px;
  5015. }
  5016. #u63240 .text {
  5017. position:absolute;
  5018. align-self:center;
  5019. padding:2px 2px 2px 0px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u63240_text {
  5024. border-width:0px;
  5025. word-wrap:break-word;
  5026. text-transform:none;
  5027. }
  5028. #u63241_img {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:100px;
  5034. height:38px;
  5035. }
  5036. #u63241 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:802px;
  5040. top:115px;
  5041. width:100px;
  5042. height:38px;
  5043. display:flex;
  5044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:12px;
  5048. }
  5049. #u63241 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 0px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u63241_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u63242_img {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:100px;
  5068. height:38px;
  5069. }
  5070. #u63242 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:902px;
  5074. top:115px;
  5075. width:100px;
  5076. height:38px;
  5077. display:flex;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:12px;
  5082. }
  5083. #u63242 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 0px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u63242_text {
  5091. border-width:0px;
  5092. word-wrap:break-word;
  5093. text-transform:none;
  5094. visibility:hidden;
  5095. }
  5096. #u63243_img {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:111px;
  5102. height:38px;
  5103. }
  5104. #u63243 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:1002px;
  5108. top:115px;
  5109. width:111px;
  5110. height:38px;
  5111. display:flex;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:12px;
  5116. }
  5117. #u63243 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 0px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u63243_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u63244_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:105px;
  5136. height:38px;
  5137. }
  5138. #u63244 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:1113px;
  5142. top:115px;
  5143. width:105px;
  5144. height:38px;
  5145. display:flex;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:12px;
  5150. color:#1890FF;
  5151. }
  5152. #u63244 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 2px 2px 0px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u63244_text {
  5160. border-width:0px;
  5161. word-wrap:break-word;
  5162. text-transform:none;
  5163. }
  5164. #u63245_img {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:161px;
  5170. height:38px;
  5171. }
  5172. #u63245 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:153px;
  5177. width:161px;
  5178. height:38px;
  5179. display:flex;
  5180. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:12px;
  5184. }
  5185. #u63245 .text {
  5186. position:absolute;
  5187. align-self:center;
  5188. padding:2px 2px 2px 0px;
  5189. box-sizing:border-box;
  5190. width:100%;
  5191. }
  5192. #u63245_text {
  5193. border-width:0px;
  5194. word-wrap:break-word;
  5195. text-transform:none;
  5196. visibility:hidden;
  5197. }
  5198. #u63246_img {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:131px;
  5204. height:38px;
  5205. }
  5206. #u63246 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:161px;
  5210. top:153px;
  5211. width:131px;
  5212. height:38px;
  5213. display:flex;
  5214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:12px;
  5218. }
  5219. #u63246 .text {
  5220. position:absolute;
  5221. align-self:center;
  5222. padding:2px 2px 2px 0px;
  5223. box-sizing:border-box;
  5224. width:100%;
  5225. }
  5226. #u63246_text {
  5227. border-width:0px;
  5228. word-wrap:break-word;
  5229. text-transform:none;
  5230. visibility:hidden;
  5231. }
  5232. #u63247_img {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:0px;
  5236. top:0px;
  5237. width:110px;
  5238. height:38px;
  5239. }
  5240. #u63247 {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:292px;
  5244. top:153px;
  5245. width:110px;
  5246. height:38px;
  5247. display:flex;
  5248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5249. font-weight:400;
  5250. font-style:normal;
  5251. font-size:12px;
  5252. }
  5253. #u63247 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 2px 2px 0px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u63247_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u63248_img {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:100px;
  5272. height:38px;
  5273. }
  5274. #u63248 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:402px;
  5278. top:153px;
  5279. width:100px;
  5280. height:38px;
  5281. display:flex;
  5282. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:12px;
  5286. }
  5287. #u63248 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 0px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u63248_text {
  5295. border-width:0px;
  5296. word-wrap:break-word;
  5297. text-transform:none;
  5298. visibility:hidden;
  5299. }
  5300. #u63249_img {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:100px;
  5306. height:38px;
  5307. }
  5308. #u63249 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:502px;
  5312. top:153px;
  5313. width:100px;
  5314. height:38px;
  5315. display:flex;
  5316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:12px;
  5320. }
  5321. #u63249 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 0px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u63249_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. visibility:hidden;
  5333. }
  5334. #u63250_img {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:100px;
  5340. height:38px;
  5341. }
  5342. #u63250 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:602px;
  5346. top:153px;
  5347. width:100px;
  5348. height:38px;
  5349. display:flex;
  5350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5351. font-weight:400;
  5352. font-style:normal;
  5353. font-size:12px;
  5354. }
  5355. #u63250 .text {
  5356. position:absolute;
  5357. align-self:center;
  5358. padding:2px 2px 2px 0px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u63250_text {
  5363. border-width:0px;
  5364. word-wrap:break-word;
  5365. text-transform:none;
  5366. visibility:hidden;
  5367. }
  5368. #u63251_img {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:100px;
  5374. height:38px;
  5375. }
  5376. #u63251 {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:702px;
  5380. top:153px;
  5381. width:100px;
  5382. height:38px;
  5383. display:flex;
  5384. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5385. font-weight:400;
  5386. font-style:normal;
  5387. font-size:12px;
  5388. }
  5389. #u63251 .text {
  5390. position:absolute;
  5391. align-self:center;
  5392. padding:2px 2px 2px 0px;
  5393. box-sizing:border-box;
  5394. width:100%;
  5395. }
  5396. #u63251_text {
  5397. border-width:0px;
  5398. word-wrap:break-word;
  5399. text-transform:none;
  5400. visibility:hidden;
  5401. }
  5402. #u63252_img {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:100px;
  5408. height:38px;
  5409. }
  5410. #u63252 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:802px;
  5414. top:153px;
  5415. width:100px;
  5416. height:38px;
  5417. display:flex;
  5418. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:12px;
  5422. }
  5423. #u63252 .text {
  5424. position:absolute;
  5425. align-self:center;
  5426. padding:2px 2px 2px 0px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u63252_text {
  5431. border-width:0px;
  5432. word-wrap:break-word;
  5433. text-transform:none;
  5434. visibility:hidden;
  5435. }
  5436. #u63253_img {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:0px;
  5441. width:100px;
  5442. height:38px;
  5443. }
  5444. #u63253 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:902px;
  5448. top:153px;
  5449. width:100px;
  5450. height:38px;
  5451. display:flex;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:12px;
  5456. }
  5457. #u63253 .text {
  5458. position:absolute;
  5459. align-self:center;
  5460. padding:2px 2px 2px 0px;
  5461. box-sizing:border-box;
  5462. width:100%;
  5463. }
  5464. #u63253_text {
  5465. border-width:0px;
  5466. word-wrap:break-word;
  5467. text-transform:none;
  5468. visibility:hidden;
  5469. }
  5470. #u63254_img {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:111px;
  5476. height:38px;
  5477. }
  5478. #u63254 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:1002px;
  5482. top:153px;
  5483. width:111px;
  5484. height:38px;
  5485. display:flex;
  5486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:12px;
  5490. }
  5491. #u63254 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:2px 2px 2px 0px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u63254_text {
  5499. border-width:0px;
  5500. word-wrap:break-word;
  5501. text-transform:none;
  5502. visibility:hidden;
  5503. }
  5504. #u63255_img {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:0px;
  5508. top:0px;
  5509. width:105px;
  5510. height:38px;
  5511. }
  5512. #u63255 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:1113px;
  5516. top:153px;
  5517. width:105px;
  5518. height:38px;
  5519. display:flex;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:12px;
  5524. color:#1890FF;
  5525. }
  5526. #u63255 .text {
  5527. position:absolute;
  5528. align-self:center;
  5529. padding:2px 2px 2px 0px;
  5530. box-sizing:border-box;
  5531. width:100%;
  5532. }
  5533. #u63255_text {
  5534. border-width:0px;
  5535. word-wrap:break-word;
  5536. text-transform:none;
  5537. visibility:hidden;
  5538. }
  5539. #u63256_img {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:161px;
  5545. height:35px;
  5546. }
  5547. #u63256 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:191px;
  5552. width:161px;
  5553. height:35px;
  5554. display:flex;
  5555. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:12px;
  5559. color:#606266;
  5560. }
  5561. #u63256 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 0px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u63256_text {
  5569. border-width:0px;
  5570. word-wrap:break-word;
  5571. text-transform:none;
  5572. visibility:hidden;
  5573. }
  5574. #u63257_img {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:131px;
  5580. height:35px;
  5581. }
  5582. #u63257 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:161px;
  5586. top:191px;
  5587. width:131px;
  5588. height:35px;
  5589. display:flex;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:12px;
  5594. color:#606266;
  5595. }
  5596. #u63257 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 0px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u63257_text {
  5604. border-width:0px;
  5605. word-wrap:break-word;
  5606. text-transform:none;
  5607. visibility:hidden;
  5608. }
  5609. #u63258_img {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:110px;
  5615. height:35px;
  5616. }
  5617. #u63258 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:292px;
  5621. top:191px;
  5622. width:110px;
  5623. height:35px;
  5624. display:flex;
  5625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5626. font-weight:400;
  5627. font-style:normal;
  5628. font-size:12px;
  5629. color:#606266;
  5630. }
  5631. #u63258 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 0px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u63258_text {
  5639. border-width:0px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. visibility:hidden;
  5643. }
  5644. #u63259_img {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:100px;
  5650. height:35px;
  5651. }
  5652. #u63259 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:402px;
  5656. top:191px;
  5657. width:100px;
  5658. height:35px;
  5659. display:flex;
  5660. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5661. font-weight:400;
  5662. font-style:normal;
  5663. font-size:12px;
  5664. color:#606266;
  5665. }
  5666. #u63259 .text {
  5667. position:absolute;
  5668. align-self:center;
  5669. padding:2px 2px 2px 0px;
  5670. box-sizing:border-box;
  5671. width:100%;
  5672. }
  5673. #u63259_text {
  5674. border-width:0px;
  5675. word-wrap:break-word;
  5676. text-transform:none;
  5677. visibility:hidden;
  5678. }
  5679. #u63260_img {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:100px;
  5685. height:35px;
  5686. }
  5687. #u63260 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:502px;
  5691. top:191px;
  5692. width:100px;
  5693. height:35px;
  5694. display:flex;
  5695. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:12px;
  5699. color:#606266;
  5700. }
  5701. #u63260 .text {
  5702. position:absolute;
  5703. align-self:center;
  5704. padding:2px 2px 2px 0px;
  5705. box-sizing:border-box;
  5706. width:100%;
  5707. }
  5708. #u63260_text {
  5709. border-width:0px;
  5710. word-wrap:break-word;
  5711. text-transform:none;
  5712. visibility:hidden;
  5713. }
  5714. #u63261_img {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:100px;
  5720. height:35px;
  5721. }
  5722. #u63261 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:602px;
  5726. top:191px;
  5727. width:100px;
  5728. height:35px;
  5729. display:flex;
  5730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:12px;
  5734. color:#606266;
  5735. }
  5736. #u63261 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 0px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u63261_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. visibility:hidden;
  5748. }
  5749. #u63262_img {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:100px;
  5755. height:35px;
  5756. }
  5757. #u63262 {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:702px;
  5761. top:191px;
  5762. width:100px;
  5763. height:35px;
  5764. display:flex;
  5765. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:12px;
  5769. color:#606266;
  5770. }
  5771. #u63262 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:2px 2px 2px 0px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u63262_text {
  5779. border-width:0px;
  5780. word-wrap:break-word;
  5781. text-transform:none;
  5782. visibility:hidden;
  5783. }
  5784. #u63263_img {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:100px;
  5790. height:35px;
  5791. }
  5792. #u63263 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:802px;
  5796. top:191px;
  5797. width:100px;
  5798. height:35px;
  5799. display:flex;
  5800. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5801. font-weight:400;
  5802. font-style:normal;
  5803. font-size:12px;
  5804. color:#606266;
  5805. }
  5806. #u63263 .text {
  5807. position:absolute;
  5808. align-self:center;
  5809. padding:2px 2px 2px 0px;
  5810. box-sizing:border-box;
  5811. width:100%;
  5812. }
  5813. #u63263_text {
  5814. border-width:0px;
  5815. word-wrap:break-word;
  5816. text-transform:none;
  5817. visibility:hidden;
  5818. }
  5819. #u63264_img {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:100px;
  5825. height:35px;
  5826. }
  5827. #u63264 {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:902px;
  5831. top:191px;
  5832. width:100px;
  5833. height:35px;
  5834. display:flex;
  5835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5836. font-weight:400;
  5837. font-style:normal;
  5838. font-size:12px;
  5839. color:#606266;
  5840. }
  5841. #u63264 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:2px 2px 2px 0px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u63264_text {
  5849. border-width:0px;
  5850. word-wrap:break-word;
  5851. text-transform:none;
  5852. visibility:hidden;
  5853. }
  5854. #u63265_img {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:111px;
  5860. height:35px;
  5861. }
  5862. #u63265 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:1002px;
  5866. top:191px;
  5867. width:111px;
  5868. height:35px;
  5869. display:flex;
  5870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:12px;
  5874. color:#606266;
  5875. }
  5876. #u63265 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:2px 2px 2px 0px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u63265_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. visibility:hidden;
  5888. }
  5889. #u63266_img {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:105px;
  5895. height:35px;
  5896. }
  5897. #u63266 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:1113px;
  5901. top:191px;
  5902. width:105px;
  5903. height:35px;
  5904. display:flex;
  5905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. font-size:12px;
  5909. color:#02A7F0;
  5910. }
  5911. #u63266 .text {
  5912. position:absolute;
  5913. align-self:center;
  5914. padding:2px 2px 2px 0px;
  5915. box-sizing:border-box;
  5916. width:100%;
  5917. }
  5918. #u63266_text {
  5919. border-width:0px;
  5920. word-wrap:break-word;
  5921. text-transform:none;
  5922. visibility:hidden;
  5923. }
  5924. #u63267_img {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:161px;
  5930. height:35px;
  5931. }
  5932. #u63267 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:0px;
  5936. top:226px;
  5937. width:161px;
  5938. height:35px;
  5939. display:flex;
  5940. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:12px;
  5944. color:#606266;
  5945. }
  5946. #u63267 .text {
  5947. position:absolute;
  5948. align-self:center;
  5949. padding:2px 2px 2px 0px;
  5950. box-sizing:border-box;
  5951. width:100%;
  5952. }
  5953. #u63267_text {
  5954. border-width:0px;
  5955. word-wrap:break-word;
  5956. text-transform:none;
  5957. visibility:hidden;
  5958. }
  5959. #u63268_img {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:0px;
  5963. top:0px;
  5964. width:131px;
  5965. height:35px;
  5966. }
  5967. #u63268 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:161px;
  5971. top:226px;
  5972. width:131px;
  5973. height:35px;
  5974. display:flex;
  5975. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5976. font-weight:400;
  5977. font-style:normal;
  5978. font-size:12px;
  5979. color:#606266;
  5980. }
  5981. #u63268 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:2px 2px 2px 0px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u63268_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. visibility:hidden;
  5993. }
  5994. #u63269_img {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:110px;
  6000. height:35px;
  6001. }
  6002. #u63269 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:292px;
  6006. top:226px;
  6007. width:110px;
  6008. height:35px;
  6009. display:flex;
  6010. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:12px;
  6014. color:#606266;
  6015. }
  6016. #u63269 .text {
  6017. position:absolute;
  6018. align-self:center;
  6019. padding:2px 2px 2px 0px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u63269_text {
  6024. border-width:0px;
  6025. word-wrap:break-word;
  6026. text-transform:none;
  6027. visibility:hidden;
  6028. }
  6029. #u63270_img {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:100px;
  6035. height:35px;
  6036. }
  6037. #u63270 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:402px;
  6041. top:226px;
  6042. width:100px;
  6043. height:35px;
  6044. display:flex;
  6045. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6046. font-weight:400;
  6047. font-style:normal;
  6048. font-size:12px;
  6049. color:#606266;
  6050. }
  6051. #u63270 .text {
  6052. position:absolute;
  6053. align-self:center;
  6054. padding:2px 2px 2px 0px;
  6055. box-sizing:border-box;
  6056. width:100%;
  6057. }
  6058. #u63270_text {
  6059. border-width:0px;
  6060. word-wrap:break-word;
  6061. text-transform:none;
  6062. visibility:hidden;
  6063. }
  6064. #u63271_img {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:100px;
  6070. height:35px;
  6071. }
  6072. #u63271 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:502px;
  6076. top:226px;
  6077. width:100px;
  6078. height:35px;
  6079. display:flex;
  6080. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:12px;
  6084. color:#606266;
  6085. }
  6086. #u63271 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:2px 2px 2px 0px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u63271_text {
  6094. border-width:0px;
  6095. word-wrap:break-word;
  6096. text-transform:none;
  6097. visibility:hidden;
  6098. }
  6099. #u63272_img {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:0px;
  6103. top:0px;
  6104. width:100px;
  6105. height:35px;
  6106. }
  6107. #u63272 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:602px;
  6111. top:226px;
  6112. width:100px;
  6113. height:35px;
  6114. display:flex;
  6115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6116. font-weight:400;
  6117. font-style:normal;
  6118. font-size:12px;
  6119. color:#606266;
  6120. }
  6121. #u63272 .text {
  6122. position:absolute;
  6123. align-self:center;
  6124. padding:2px 2px 2px 0px;
  6125. box-sizing:border-box;
  6126. width:100%;
  6127. }
  6128. #u63272_text {
  6129. border-width:0px;
  6130. word-wrap:break-word;
  6131. text-transform:none;
  6132. visibility:hidden;
  6133. }
  6134. #u63273_img {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:100px;
  6140. height:35px;
  6141. }
  6142. #u63273 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:702px;
  6146. top:226px;
  6147. width:100px;
  6148. height:35px;
  6149. display:flex;
  6150. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:12px;
  6154. color:#606266;
  6155. }
  6156. #u63273 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:2px 2px 2px 0px;
  6160. box-sizing:border-box;
  6161. width:100%;
  6162. }
  6163. #u63273_text {
  6164. border-width:0px;
  6165. word-wrap:break-word;
  6166. text-transform:none;
  6167. visibility:hidden;
  6168. }
  6169. #u63274_img {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:100px;
  6175. height:35px;
  6176. }
  6177. #u63274 {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:802px;
  6181. top:226px;
  6182. width:100px;
  6183. height:35px;
  6184. display:flex;
  6185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6186. font-weight:400;
  6187. font-style:normal;
  6188. font-size:12px;
  6189. color:#606266;
  6190. }
  6191. #u63274 .text {
  6192. position:absolute;
  6193. align-self:center;
  6194. padding:2px 2px 2px 0px;
  6195. box-sizing:border-box;
  6196. width:100%;
  6197. }
  6198. #u63274_text {
  6199. border-width:0px;
  6200. word-wrap:break-word;
  6201. text-transform:none;
  6202. visibility:hidden;
  6203. }
  6204. #u63275_img {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:0px;
  6209. width:100px;
  6210. height:35px;
  6211. }
  6212. #u63275 {
  6213. border-width:0px;
  6214. position:absolute;
  6215. left:902px;
  6216. top:226px;
  6217. width:100px;
  6218. height:35px;
  6219. display:flex;
  6220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. font-size:12px;
  6224. color:#606266;
  6225. }
  6226. #u63275 .text {
  6227. position:absolute;
  6228. align-self:center;
  6229. padding:2px 2px 2px 0px;
  6230. box-sizing:border-box;
  6231. width:100%;
  6232. }
  6233. #u63275_text {
  6234. border-width:0px;
  6235. word-wrap:break-word;
  6236. text-transform:none;
  6237. visibility:hidden;
  6238. }
  6239. #u63276_img {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:111px;
  6245. height:35px;
  6246. }
  6247. #u63276 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:1002px;
  6251. top:226px;
  6252. width:111px;
  6253. height:35px;
  6254. display:flex;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:12px;
  6259. color:#606266;
  6260. }
  6261. #u63276 .text {
  6262. position:absolute;
  6263. align-self:center;
  6264. padding:2px 2px 2px 0px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u63276_text {
  6269. border-width:0px;
  6270. word-wrap:break-word;
  6271. text-transform:none;
  6272. visibility:hidden;
  6273. }
  6274. #u63277_img {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:105px;
  6280. height:35px;
  6281. }
  6282. #u63277 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:1113px;
  6286. top:226px;
  6287. width:105px;
  6288. height:35px;
  6289. display:flex;
  6290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. font-size:12px;
  6294. color:#02A7F0;
  6295. }
  6296. #u63277 .text {
  6297. position:absolute;
  6298. align-self:center;
  6299. padding:2px 2px 2px 0px;
  6300. box-sizing:border-box;
  6301. width:100%;
  6302. }
  6303. #u63277_text {
  6304. border-width:0px;
  6305. word-wrap:break-word;
  6306. text-transform:none;
  6307. visibility:hidden;
  6308. }
  6309. #u63278_img {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:161px;
  6315. height:35px;
  6316. }
  6317. #u63278 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:261px;
  6322. width:161px;
  6323. height:35px;
  6324. display:flex;
  6325. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:12px;
  6329. color:#606266;
  6330. }
  6331. #u63278 .text {
  6332. position:absolute;
  6333. align-self:center;
  6334. padding:2px 2px 2px 0px;
  6335. box-sizing:border-box;
  6336. width:100%;
  6337. }
  6338. #u63278_text {
  6339. border-width:0px;
  6340. word-wrap:break-word;
  6341. text-transform:none;
  6342. visibility:hidden;
  6343. }
  6344. #u63279_img {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:131px;
  6350. height:35px;
  6351. }
  6352. #u63279 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:161px;
  6356. top:261px;
  6357. width:131px;
  6358. height:35px;
  6359. display:flex;
  6360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:12px;
  6364. color:#606266;
  6365. }
  6366. #u63279 .text {
  6367. position:absolute;
  6368. align-self:center;
  6369. padding:2px 2px 2px 0px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u63279_text {
  6374. border-width:0px;
  6375. word-wrap:break-word;
  6376. text-transform:none;
  6377. visibility:hidden;
  6378. }
  6379. #u63280_img {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:110px;
  6385. height:35px;
  6386. }
  6387. #u63280 {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:292px;
  6391. top:261px;
  6392. width:110px;
  6393. height:35px;
  6394. display:flex;
  6395. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6396. font-weight:400;
  6397. font-style:normal;
  6398. font-size:12px;
  6399. color:#606266;
  6400. }
  6401. #u63280 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 0px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u63280_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. visibility:hidden;
  6413. }
  6414. #u63281_img {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:100px;
  6420. height:35px;
  6421. }
  6422. #u63281 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:402px;
  6426. top:261px;
  6427. width:100px;
  6428. height:35px;
  6429. display:flex;
  6430. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:12px;
  6434. color:#606266;
  6435. }
  6436. #u63281 .text {
  6437. position:absolute;
  6438. align-self:center;
  6439. padding:2px 2px 2px 0px;
  6440. box-sizing:border-box;
  6441. width:100%;
  6442. }
  6443. #u63281_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. visibility:hidden;
  6448. }
  6449. #u63282_img {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:100px;
  6455. height:35px;
  6456. }
  6457. #u63282 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:502px;
  6461. top:261px;
  6462. width:100px;
  6463. height:35px;
  6464. display:flex;
  6465. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:12px;
  6469. color:#606266;
  6470. }
  6471. #u63282 .text {
  6472. position:absolute;
  6473. align-self:center;
  6474. padding:2px 2px 2px 0px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u63282_text {
  6479. border-width:0px;
  6480. word-wrap:break-word;
  6481. text-transform:none;
  6482. visibility:hidden;
  6483. }
  6484. #u63283_img {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:100px;
  6490. height:35px;
  6491. }
  6492. #u63283 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:602px;
  6496. top:261px;
  6497. width:100px;
  6498. height:35px;
  6499. display:flex;
  6500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:12px;
  6504. color:#606266;
  6505. }
  6506. #u63283 .text {
  6507. position:absolute;
  6508. align-self:center;
  6509. padding:2px 2px 2px 0px;
  6510. box-sizing:border-box;
  6511. width:100%;
  6512. }
  6513. #u63283_text {
  6514. border-width:0px;
  6515. word-wrap:break-word;
  6516. text-transform:none;
  6517. visibility:hidden;
  6518. }
  6519. #u63284_img {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:0px;
  6523. top:0px;
  6524. width:100px;
  6525. height:35px;
  6526. }
  6527. #u63284 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:702px;
  6531. top:261px;
  6532. width:100px;
  6533. height:35px;
  6534. display:flex;
  6535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:12px;
  6539. color:#606266;
  6540. }
  6541. #u63284 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:2px 2px 2px 0px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u63284_text {
  6549. border-width:0px;
  6550. word-wrap:break-word;
  6551. text-transform:none;
  6552. visibility:hidden;
  6553. }
  6554. #u63285_img {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:100px;
  6560. height:35px;
  6561. }
  6562. #u63285 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:802px;
  6566. top:261px;
  6567. width:100px;
  6568. height:35px;
  6569. display:flex;
  6570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6571. font-weight:400;
  6572. font-style:normal;
  6573. font-size:12px;
  6574. color:#606266;
  6575. }
  6576. #u63285 .text {
  6577. position:absolute;
  6578. align-self:center;
  6579. padding:2px 2px 2px 0px;
  6580. box-sizing:border-box;
  6581. width:100%;
  6582. }
  6583. #u63285_text {
  6584. border-width:0px;
  6585. word-wrap:break-word;
  6586. text-transform:none;
  6587. visibility:hidden;
  6588. }
  6589. #u63286_img {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:100px;
  6595. height:35px;
  6596. }
  6597. #u63286 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:902px;
  6601. top:261px;
  6602. width:100px;
  6603. height:35px;
  6604. display:flex;
  6605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6606. font-weight:400;
  6607. font-style:normal;
  6608. font-size:12px;
  6609. color:#606266;
  6610. }
  6611. #u63286 .text {
  6612. position:absolute;
  6613. align-self:center;
  6614. padding:2px 2px 2px 0px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u63286_text {
  6619. border-width:0px;
  6620. word-wrap:break-word;
  6621. text-transform:none;
  6622. visibility:hidden;
  6623. }
  6624. #u63287_img {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:0px;
  6628. top:0px;
  6629. width:111px;
  6630. height:35px;
  6631. }
  6632. #u63287 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:1002px;
  6636. top:261px;
  6637. width:111px;
  6638. height:35px;
  6639. display:flex;
  6640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6641. font-weight:400;
  6642. font-style:normal;
  6643. font-size:12px;
  6644. color:#606266;
  6645. }
  6646. #u63287 .text {
  6647. position:absolute;
  6648. align-self:center;
  6649. padding:2px 2px 2px 0px;
  6650. box-sizing:border-box;
  6651. width:100%;
  6652. }
  6653. #u63287_text {
  6654. border-width:0px;
  6655. word-wrap:break-word;
  6656. text-transform:none;
  6657. visibility:hidden;
  6658. }
  6659. #u63288_img {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:105px;
  6665. height:35px;
  6666. }
  6667. #u63288 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:1113px;
  6671. top:261px;
  6672. width:105px;
  6673. height:35px;
  6674. display:flex;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:12px;
  6679. color:#02A7F0;
  6680. }
  6681. #u63288 .text {
  6682. position:absolute;
  6683. align-self:center;
  6684. padding:2px 2px 2px 0px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u63288_text {
  6689. border-width:0px;
  6690. word-wrap:break-word;
  6691. text-transform:none;
  6692. visibility:hidden;
  6693. }
  6694. #u63289_img {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:161px;
  6700. height:35px;
  6701. }
  6702. #u63289 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:296px;
  6707. width:161px;
  6708. height:35px;
  6709. display:flex;
  6710. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:12px;
  6714. color:#606266;
  6715. }
  6716. #u63289 .text {
  6717. position:absolute;
  6718. align-self:center;
  6719. padding:2px 2px 2px 0px;
  6720. box-sizing:border-box;
  6721. width:100%;
  6722. }
  6723. #u63289_text {
  6724. border-width:0px;
  6725. word-wrap:break-word;
  6726. text-transform:none;
  6727. visibility:hidden;
  6728. }
  6729. #u63290_img {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:131px;
  6735. height:35px;
  6736. }
  6737. #u63290 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:161px;
  6741. top:296px;
  6742. width:131px;
  6743. height:35px;
  6744. display:flex;
  6745. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:12px;
  6749. color:#606266;
  6750. }
  6751. #u63290 .text {
  6752. position:absolute;
  6753. align-self:center;
  6754. padding:2px 2px 2px 0px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u63290_text {
  6759. border-width:0px;
  6760. word-wrap:break-word;
  6761. text-transform:none;
  6762. visibility:hidden;
  6763. }
  6764. #u63291_img {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:110px;
  6770. height:35px;
  6771. }
  6772. #u63291 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:292px;
  6776. top:296px;
  6777. width:110px;
  6778. height:35px;
  6779. display:flex;
  6780. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6781. font-weight:400;
  6782. font-style:normal;
  6783. font-size:12px;
  6784. color:#606266;
  6785. }
  6786. #u63291 .text {
  6787. position:absolute;
  6788. align-self:center;
  6789. padding:2px 2px 2px 0px;
  6790. box-sizing:border-box;
  6791. width:100%;
  6792. }
  6793. #u63291_text {
  6794. border-width:0px;
  6795. word-wrap:break-word;
  6796. text-transform:none;
  6797. visibility:hidden;
  6798. }
  6799. #u63292_img {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:100px;
  6805. height:35px;
  6806. }
  6807. #u63292 {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:402px;
  6811. top:296px;
  6812. width:100px;
  6813. height:35px;
  6814. display:flex;
  6815. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:12px;
  6819. color:#606266;
  6820. }
  6821. #u63292 .text {
  6822. position:absolute;
  6823. align-self:center;
  6824. padding:2px 2px 2px 0px;
  6825. box-sizing:border-box;
  6826. width:100%;
  6827. }
  6828. #u63292_text {
  6829. border-width:0px;
  6830. word-wrap:break-word;
  6831. text-transform:none;
  6832. visibility:hidden;
  6833. }
  6834. #u63293_img {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:100px;
  6840. height:35px;
  6841. }
  6842. #u63293 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:502px;
  6846. top:296px;
  6847. width:100px;
  6848. height:35px;
  6849. display:flex;
  6850. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:12px;
  6854. color:#606266;
  6855. }
  6856. #u63293 .text {
  6857. position:absolute;
  6858. align-self:center;
  6859. padding:2px 2px 2px 0px;
  6860. box-sizing:border-box;
  6861. width:100%;
  6862. }
  6863. #u63293_text {
  6864. border-width:0px;
  6865. word-wrap:break-word;
  6866. text-transform:none;
  6867. visibility:hidden;
  6868. }
  6869. #u63294_img {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:100px;
  6875. height:35px;
  6876. }
  6877. #u63294 {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:602px;
  6881. top:296px;
  6882. width:100px;
  6883. height:35px;
  6884. display:flex;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:12px;
  6889. color:#606266;
  6890. }
  6891. #u63294 .text {
  6892. position:absolute;
  6893. align-self:center;
  6894. padding:2px 2px 2px 0px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u63294_text {
  6899. border-width:0px;
  6900. word-wrap:break-word;
  6901. text-transform:none;
  6902. visibility:hidden;
  6903. }
  6904. #u63295_img {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:0px;
  6908. top:0px;
  6909. width:100px;
  6910. height:35px;
  6911. }
  6912. #u63295 {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:702px;
  6916. top:296px;
  6917. width:100px;
  6918. height:35px;
  6919. display:flex;
  6920. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6921. font-weight:400;
  6922. font-style:normal;
  6923. font-size:12px;
  6924. color:#606266;
  6925. }
  6926. #u63295 .text {
  6927. position:absolute;
  6928. align-self:center;
  6929. padding:2px 2px 2px 0px;
  6930. box-sizing:border-box;
  6931. width:100%;
  6932. }
  6933. #u63295_text {
  6934. border-width:0px;
  6935. word-wrap:break-word;
  6936. text-transform:none;
  6937. visibility:hidden;
  6938. }
  6939. #u63296_img {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:0px;
  6943. top:0px;
  6944. width:100px;
  6945. height:35px;
  6946. }
  6947. #u63296 {
  6948. border-width:0px;
  6949. position:absolute;
  6950. left:802px;
  6951. top:296px;
  6952. width:100px;
  6953. height:35px;
  6954. display:flex;
  6955. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6956. font-weight:400;
  6957. font-style:normal;
  6958. font-size:12px;
  6959. color:#606266;
  6960. }
  6961. #u63296 .text {
  6962. position:absolute;
  6963. align-self:center;
  6964. padding:2px 2px 2px 0px;
  6965. box-sizing:border-box;
  6966. width:100%;
  6967. }
  6968. #u63296_text {
  6969. border-width:0px;
  6970. word-wrap:break-word;
  6971. text-transform:none;
  6972. visibility:hidden;
  6973. }
  6974. #u63297_img {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:100px;
  6980. height:35px;
  6981. }
  6982. #u63297 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:902px;
  6986. top:296px;
  6987. width:100px;
  6988. height:35px;
  6989. display:flex;
  6990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:12px;
  6994. color:#606266;
  6995. }
  6996. #u63297 .text {
  6997. position:absolute;
  6998. align-self:center;
  6999. padding:2px 2px 2px 0px;
  7000. box-sizing:border-box;
  7001. width:100%;
  7002. }
  7003. #u63297_text {
  7004. border-width:0px;
  7005. word-wrap:break-word;
  7006. text-transform:none;
  7007. visibility:hidden;
  7008. }
  7009. #u63298_img {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:0px;
  7013. top:0px;
  7014. width:111px;
  7015. height:35px;
  7016. }
  7017. #u63298 {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:1002px;
  7021. top:296px;
  7022. width:111px;
  7023. height:35px;
  7024. display:flex;
  7025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7026. font-weight:400;
  7027. font-style:normal;
  7028. font-size:12px;
  7029. color:#606266;
  7030. }
  7031. #u63298 .text {
  7032. position:absolute;
  7033. align-self:center;
  7034. padding:2px 2px 2px 0px;
  7035. box-sizing:border-box;
  7036. width:100%;
  7037. }
  7038. #u63298_text {
  7039. border-width:0px;
  7040. word-wrap:break-word;
  7041. text-transform:none;
  7042. visibility:hidden;
  7043. }
  7044. #u63299_img {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:105px;
  7050. height:35px;
  7051. }
  7052. #u63299 {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:1113px;
  7056. top:296px;
  7057. width:105px;
  7058. height:35px;
  7059. display:flex;
  7060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7061. font-weight:400;
  7062. font-style:normal;
  7063. font-size:12px;
  7064. color:#02A7F0;
  7065. }
  7066. #u63299 .text {
  7067. position:absolute;
  7068. align-self:center;
  7069. padding:2px 2px 2px 0px;
  7070. box-sizing:border-box;
  7071. width:100%;
  7072. }
  7073. #u63299_text {
  7074. border-width:0px;
  7075. word-wrap:break-word;
  7076. text-transform:none;
  7077. visibility:hidden;
  7078. }
  7079. #u63300_img {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:161px;
  7085. height:35px;
  7086. }
  7087. #u63300 {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:0px;
  7091. top:331px;
  7092. width:161px;
  7093. height:35px;
  7094. display:flex;
  7095. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7096. font-weight:400;
  7097. font-style:normal;
  7098. font-size:12px;
  7099. color:#606266;
  7100. }
  7101. #u63300 .text {
  7102. position:absolute;
  7103. align-self:center;
  7104. padding:2px 2px 2px 0px;
  7105. box-sizing:border-box;
  7106. width:100%;
  7107. }
  7108. #u63300_text {
  7109. border-width:0px;
  7110. word-wrap:break-word;
  7111. text-transform:none;
  7112. visibility:hidden;
  7113. }
  7114. #u63301_img {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:131px;
  7120. height:35px;
  7121. }
  7122. #u63301 {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:161px;
  7126. top:331px;
  7127. width:131px;
  7128. height:35px;
  7129. display:flex;
  7130. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:12px;
  7134. color:#606266;
  7135. }
  7136. #u63301 .text {
  7137. position:absolute;
  7138. align-self:center;
  7139. padding:2px 2px 2px 0px;
  7140. box-sizing:border-box;
  7141. width:100%;
  7142. }
  7143. #u63301_text {
  7144. border-width:0px;
  7145. word-wrap:break-word;
  7146. text-transform:none;
  7147. visibility:hidden;
  7148. }
  7149. #u63302_img {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:0px;
  7153. top:0px;
  7154. width:110px;
  7155. height:35px;
  7156. }
  7157. #u63302 {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:292px;
  7161. top:331px;
  7162. width:110px;
  7163. height:35px;
  7164. display:flex;
  7165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:12px;
  7169. color:#606266;
  7170. }
  7171. #u63302 .text {
  7172. position:absolute;
  7173. align-self:center;
  7174. padding:2px 2px 2px 0px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u63302_text {
  7179. border-width:0px;
  7180. word-wrap:break-word;
  7181. text-transform:none;
  7182. visibility:hidden;
  7183. }
  7184. #u63303_img {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:100px;
  7190. height:35px;
  7191. }
  7192. #u63303 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:402px;
  7196. top:331px;
  7197. width:100px;
  7198. height:35px;
  7199. display:flex;
  7200. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7201. font-weight:400;
  7202. font-style:normal;
  7203. font-size:12px;
  7204. color:#606266;
  7205. }
  7206. #u63303 .text {
  7207. position:absolute;
  7208. align-self:center;
  7209. padding:2px 2px 2px 0px;
  7210. box-sizing:border-box;
  7211. width:100%;
  7212. }
  7213. #u63303_text {
  7214. border-width:0px;
  7215. word-wrap:break-word;
  7216. text-transform:none;
  7217. visibility:hidden;
  7218. }
  7219. #u63304_img {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:100px;
  7225. height:35px;
  7226. }
  7227. #u63304 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:502px;
  7231. top:331px;
  7232. width:100px;
  7233. height:35px;
  7234. display:flex;
  7235. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:12px;
  7239. color:#606266;
  7240. }
  7241. #u63304 .text {
  7242. position:absolute;
  7243. align-self:center;
  7244. padding:2px 2px 2px 0px;
  7245. box-sizing:border-box;
  7246. width:100%;
  7247. }
  7248. #u63304_text {
  7249. border-width:0px;
  7250. word-wrap:break-word;
  7251. text-transform:none;
  7252. visibility:hidden;
  7253. }
  7254. #u63305_img {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:100px;
  7260. height:35px;
  7261. }
  7262. #u63305 {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:602px;
  7266. top:331px;
  7267. width:100px;
  7268. height:35px;
  7269. display:flex;
  7270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7271. font-weight:400;
  7272. font-style:normal;
  7273. font-size:12px;
  7274. color:#606266;
  7275. }
  7276. #u63305 .text {
  7277. position:absolute;
  7278. align-self:center;
  7279. padding:2px 2px 2px 0px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u63305_text {
  7284. border-width:0px;
  7285. word-wrap:break-word;
  7286. text-transform:none;
  7287. visibility:hidden;
  7288. }
  7289. #u63306_img {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:100px;
  7295. height:35px;
  7296. }
  7297. #u63306 {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:702px;
  7301. top:331px;
  7302. width:100px;
  7303. height:35px;
  7304. display:flex;
  7305. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7306. font-weight:400;
  7307. font-style:normal;
  7308. font-size:12px;
  7309. color:#606266;
  7310. }
  7311. #u63306 .text {
  7312. position:absolute;
  7313. align-self:center;
  7314. padding:2px 2px 2px 0px;
  7315. box-sizing:border-box;
  7316. width:100%;
  7317. }
  7318. #u63306_text {
  7319. border-width:0px;
  7320. word-wrap:break-word;
  7321. text-transform:none;
  7322. visibility:hidden;
  7323. }
  7324. #u63307_img {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:100px;
  7330. height:35px;
  7331. }
  7332. #u63307 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:802px;
  7336. top:331px;
  7337. width:100px;
  7338. height:35px;
  7339. display:flex;
  7340. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. font-size:12px;
  7344. color:#606266;
  7345. }
  7346. #u63307 .text {
  7347. position:absolute;
  7348. align-self:center;
  7349. padding:2px 2px 2px 0px;
  7350. box-sizing:border-box;
  7351. width:100%;
  7352. }
  7353. #u63307_text {
  7354. border-width:0px;
  7355. word-wrap:break-word;
  7356. text-transform:none;
  7357. visibility:hidden;
  7358. }
  7359. #u63308_img {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:100px;
  7365. height:35px;
  7366. }
  7367. #u63308 {
  7368. border-width:0px;
  7369. position:absolute;
  7370. left:902px;
  7371. top:331px;
  7372. width:100px;
  7373. height:35px;
  7374. display:flex;
  7375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7376. font-weight:400;
  7377. font-style:normal;
  7378. font-size:12px;
  7379. color:#606266;
  7380. }
  7381. #u63308 .text {
  7382. position:absolute;
  7383. align-self:center;
  7384. padding:2px 2px 2px 0px;
  7385. box-sizing:border-box;
  7386. width:100%;
  7387. }
  7388. #u63308_text {
  7389. border-width:0px;
  7390. word-wrap:break-word;
  7391. text-transform:none;
  7392. visibility:hidden;
  7393. }
  7394. #u63309_img {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:111px;
  7400. height:35px;
  7401. }
  7402. #u63309 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:1002px;
  7406. top:331px;
  7407. width:111px;
  7408. height:35px;
  7409. display:flex;
  7410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7411. font-weight:400;
  7412. font-style:normal;
  7413. font-size:12px;
  7414. color:#606266;
  7415. }
  7416. #u63309 .text {
  7417. position:absolute;
  7418. align-self:center;
  7419. padding:2px 2px 2px 0px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u63309_text {
  7424. border-width:0px;
  7425. word-wrap:break-word;
  7426. text-transform:none;
  7427. visibility:hidden;
  7428. }
  7429. #u63310_img {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:105px;
  7435. height:35px;
  7436. }
  7437. #u63310 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:1113px;
  7441. top:331px;
  7442. width:105px;
  7443. height:35px;
  7444. display:flex;
  7445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7446. font-weight:400;
  7447. font-style:normal;
  7448. font-size:12px;
  7449. color:#02A7F0;
  7450. }
  7451. #u63310 .text {
  7452. position:absolute;
  7453. align-self:center;
  7454. padding:2px 2px 2px 0px;
  7455. box-sizing:border-box;
  7456. width:100%;
  7457. }
  7458. #u63310_text {
  7459. border-width:0px;
  7460. word-wrap:break-word;
  7461. text-transform:none;
  7462. visibility:hidden;
  7463. }
  7464. #u63311 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:0px;
  7470. height:0px;
  7471. }
  7472. #u63312_div {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:59px;
  7478. height:30px;
  7479. background:inherit;
  7480. background-color:rgba(24, 144, 255, 1);
  7481. box-sizing:border-box;
  7482. border-width:1px;
  7483. border-style:solid;
  7484. border-color:rgba(0, 153, 255, 1);
  7485. border-radius:4px;
  7486. -moz-box-shadow:none;
  7487. -webkit-box-shadow:none;
  7488. box-shadow:none;
  7489. font-family:'Microsoft YaHei', sans-serif;
  7490. font-weight:400;
  7491. font-style:normal;
  7492. font-size:14px;
  7493. color:#FFFFFF;
  7494. }
  7495. #u63312 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:1400px;
  7499. top:307px;
  7500. width:59px;
  7501. height:30px;
  7502. display:flex;
  7503. font-family:'Microsoft YaHei', sans-serif;
  7504. font-weight:400;
  7505. font-style:normal;
  7506. font-size:14px;
  7507. color:#FFFFFF;
  7508. }
  7509. #u63312 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:5px 15px 5px 15px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u63312_text {
  7517. border-width:0px;
  7518. white-space:nowrap;
  7519. text-transform:none;
  7520. }
  7521. #u63313_div {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:55px;
  7527. height:30px;
  7528. background:inherit;
  7529. background-color:rgba(255, 255, 255, 1);
  7530. box-sizing:border-box;
  7531. border-width:1px;
  7532. border-style:solid;
  7533. border-color:rgba(170, 170, 170, 1);
  7534. border-radius:4px;
  7535. -moz-box-shadow:none;
  7536. -webkit-box-shadow:none;
  7537. box-shadow:none;
  7538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:12px;
  7542. color:#555555;
  7543. }
  7544. #u63313 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:1469px;
  7548. top:307px;
  7549. width:55px;
  7550. height:30px;
  7551. display:flex;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:12px;
  7556. color:#555555;
  7557. }
  7558. #u63313 .text {
  7559. position:absolute;
  7560. align-self:center;
  7561. padding:5px 15px 5px 15px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u63313_text {
  7566. border-width:0px;
  7567. white-space:nowrap;
  7568. text-transform:none;
  7569. }
  7570. #u63314 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:0px;
  7576. height:0px;
  7577. }
  7578. #u63315_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:140px;
  7584. height:30px;
  7585. background:inherit;
  7586. background-color:rgba(255, 255, 255, 1);
  7587. box-sizing:border-box;
  7588. border-width:1px;
  7589. border-style:solid;
  7590. border-color:rgba(201, 201, 201, 1);
  7591. border-radius:4px;
  7592. -moz-box-shadow:none;
  7593. -webkit-box-shadow:none;
  7594. box-shadow:none;
  7595. font-family:'Microsoft YaHei', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:14px;
  7599. color:#CCCCCC;
  7600. text-align:left;
  7601. }
  7602. #u63315 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:950px;
  7606. top:306px;
  7607. width:140px;
  7608. height:30px;
  7609. display:flex;
  7610. font-family:'Microsoft YaHei', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:14px;
  7614. color:#CCCCCC;
  7615. text-align:left;
  7616. }
  7617. #u63315 .text {
  7618. position:absolute;
  7619. align-self:center;
  7620. padding:2px 8px 2px 8px;
  7621. box-sizing:border-box;
  7622. width:100%;
  7623. }
  7624. #u63315_text {
  7625. border-width:0px;
  7626. word-wrap:break-word;
  7627. text-transform:none;
  7628. visibility:hidden;
  7629. }
  7630. #u63316_input {
  7631. position:absolute;
  7632. left:0px;
  7633. top:0px;
  7634. width:127px;
  7635. height:25px;
  7636. padding:2px 2px 2px 2px;
  7637. font-family:'Microsoft YaHei', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:10px;
  7641. letter-spacing:normal;
  7642. color:#000000;
  7643. vertical-align:none;
  7644. text-align:left;
  7645. text-transform:none;
  7646. background-color:transparent;
  7647. border-color:transparent;
  7648. }
  7649. #u63316_input.disabled {
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:127px;
  7654. height:25px;
  7655. padding:2px 2px 2px 2px;
  7656. font-family:'Microsoft YaHei', sans-serif;
  7657. font-weight:400;
  7658. font-style:normal;
  7659. font-size:10px;
  7660. letter-spacing:normal;
  7661. color:#000000;
  7662. vertical-align:none;
  7663. text-align:left;
  7664. text-transform:none;
  7665. background-color:transparent;
  7666. border-color:transparent;
  7667. }
  7668. #u63316_div {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:127px;
  7674. height:25px;
  7675. background:inherit;
  7676. background-color:rgba(255, 255, 255, 1);
  7677. border:none;
  7678. border-radius:0px;
  7679. -moz-box-shadow:none;
  7680. -webkit-box-shadow:none;
  7681. box-shadow:none;
  7682. font-family:'Microsoft YaHei', sans-serif;
  7683. font-weight:400;
  7684. font-style:normal;
  7685. font-size:10px;
  7686. }
  7687. #u63316 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:958px;
  7691. top:307px;
  7692. width:127px;
  7693. height:25px;
  7694. display:flex;
  7695. font-family:'Microsoft YaHei', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:10px;
  7699. }
  7700. #u63316 .text {
  7701. position:absolute;
  7702. align-self:center;
  7703. padding:2px 2px 2px 2px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u63316_div.disabled {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:127px;
  7713. height:25px;
  7714. background:inherit;
  7715. background-color:rgba(240, 240, 240, 1);
  7716. border:none;
  7717. border-radius:0px;
  7718. -moz-box-shadow:none;
  7719. -webkit-box-shadow:none;
  7720. box-shadow:none;
  7721. font-family:'Microsoft YaHei', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:10px;
  7725. }
  7726. #u63316.disabled {
  7727. }
  7728. #u63317 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:0px;
  7734. height:0px;
  7735. }
  7736. #u63318_div {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:140px;
  7742. height:30px;
  7743. background:inherit;
  7744. background-color:rgba(255, 255, 255, 1);
  7745. box-sizing:border-box;
  7746. border-width:1px;
  7747. border-style:solid;
  7748. border-color:rgba(215, 215, 215, 1);
  7749. border-radius:4px;
  7750. -moz-box-shadow:none;
  7751. -webkit-box-shadow:none;
  7752. box-shadow:none;
  7753. font-size:11px;
  7754. }
  7755. #u63318 {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:500px;
  7759. top:307px;
  7760. width:140px;
  7761. height:30px;
  7762. display:flex;
  7763. font-size:11px;
  7764. }
  7765. #u63318 .text {
  7766. position:absolute;
  7767. align-self:center;
  7768. padding:2px 2px 2px 2px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u63318_text {
  7773. border-width:0px;
  7774. word-wrap:break-word;
  7775. text-transform:none;
  7776. visibility:hidden;
  7777. }
  7778. #u63319_input {
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:126px;
  7783. height:23px;
  7784. padding:2px 2px 2px 2px;
  7785. font-family:'ArialMT', 'Arial', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:11px;
  7789. letter-spacing:normal;
  7790. color:#AAAAAA;
  7791. vertical-align:none;
  7792. text-align:left;
  7793. text-transform:none;
  7794. background-color:transparent;
  7795. border-color:transparent;
  7796. }
  7797. #u63319_input.disabled {
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:126px;
  7802. height:23px;
  7803. padding:2px 2px 2px 2px;
  7804. font-family:'ArialMT', 'Arial', sans-serif;
  7805. font-weight:400;
  7806. font-style:normal;
  7807. font-size:11px;
  7808. letter-spacing:normal;
  7809. color:#AAAAAA;
  7810. vertical-align:none;
  7811. text-align:left;
  7812. text-transform:none;
  7813. background-color:transparent;
  7814. border-color:transparent;
  7815. }
  7816. #u63319_div {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:126px;
  7822. height:23px;
  7823. background:inherit;
  7824. background-color:rgba(255, 255, 255, 1);
  7825. border:none;
  7826. border-radius:0px;
  7827. -moz-box-shadow:none;
  7828. -webkit-box-shadow:none;
  7829. box-shadow:none;
  7830. font-size:11px;
  7831. color:#AAAAAA;
  7832. }
  7833. #u63319 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:507px;
  7837. top:309px;
  7838. width:126px;
  7839. height:23px;
  7840. display:flex;
  7841. font-size:11px;
  7842. color:#AAAAAA;
  7843. }
  7844. #u63319 .text {
  7845. position:absolute;
  7846. align-self:flex-start;
  7847. padding:2px 2px 2px 2px;
  7848. box-sizing:border-box;
  7849. width:100%;
  7850. }
  7851. #u63319_div.disabled {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:126px;
  7857. height:23px;
  7858. background:inherit;
  7859. background-color:rgba(240, 240, 240, 1);
  7860. border:none;
  7861. border-radius:0px;
  7862. -moz-box-shadow:none;
  7863. -webkit-box-shadow:none;
  7864. box-shadow:none;
  7865. font-size:11px;
  7866. color:#AAAAAA;
  7867. }
  7868. #u63319.disabled {
  7869. }
  7870. .u63319_input_option {
  7871. font-size:11px;
  7872. }
  7873. #u63320_div {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:0px;
  7877. top:0px;
  7878. width:43px;
  7879. height:50px;
  7880. background:inherit;
  7881. background-color:rgba(255, 255, 255, 0);
  7882. box-sizing:border-box;
  7883. border-width:2px;
  7884. border-style:solid;
  7885. border-color:rgba(24, 144, 255, 1);
  7886. border-left:0px;
  7887. border-top:0px;
  7888. border-right:0px;
  7889. border-radius:0px;
  7890. border-bottom-right-radius:0px;
  7891. border-bottom-left-radius:0px;
  7892. -moz-box-shadow:none;
  7893. -webkit-box-shadow:none;
  7894. box-shadow:none;
  7895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7896. font-weight:400;
  7897. font-style:normal;
  7898. font-size:14px;
  7899. color:#1890FF;
  7900. }
  7901. #u63320 {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:350px;
  7905. top:245px;
  7906. width:43px;
  7907. height:50px;
  7908. display:flex;
  7909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7910. font-weight:400;
  7911. font-style:normal;
  7912. font-size:14px;
  7913. color:#1890FF;
  7914. }
  7915. #u63320 .text {
  7916. position:absolute;
  7917. align-self:center;
  7918. padding:0px 0px 0px 0px;
  7919. box-sizing:border-box;
  7920. width:100%;
  7921. }
  7922. #u63320_text {
  7923. border-width:0px;
  7924. white-space:nowrap;
  7925. text-transform:none;
  7926. }
  7927. #u63321_div {
  7928. border-width:0px;
  7929. position:absolute;
  7930. left:0px;
  7931. top:0px;
  7932. width:43px;
  7933. height:50px;
  7934. background:inherit;
  7935. background-color:rgba(255, 255, 255, 0);
  7936. border:none;
  7937. border-left:0px;
  7938. border-top:0px;
  7939. border-right:0px;
  7940. border-radius:0px;
  7941. border-bottom-right-radius:0px;
  7942. border-bottom-left-radius:0px;
  7943. -moz-box-shadow:none;
  7944. -webkit-box-shadow:none;
  7945. box-shadow:none;
  7946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7947. font-weight:400;
  7948. font-style:normal;
  7949. font-size:14px;
  7950. }
  7951. #u63321 {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:423px;
  7955. top:245px;
  7956. width:43px;
  7957. height:50px;
  7958. display:flex;
  7959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7960. font-weight:400;
  7961. font-style:normal;
  7962. font-size:14px;
  7963. }
  7964. #u63321 .text {
  7965. position:absolute;
  7966. align-self:center;
  7967. padding:0px 0px 0px 0px;
  7968. box-sizing:border-box;
  7969. width:100%;
  7970. }
  7971. #u63321_text {
  7972. border-width:0px;
  7973. white-space:nowrap;
  7974. text-transform:none;
  7975. }
  7976. #u63322_div {
  7977. border-width:0px;
  7978. position:absolute;
  7979. left:0px;
  7980. top:0px;
  7981. width:43px;
  7982. height:50px;
  7983. background:inherit;
  7984. background-color:rgba(255, 255, 255, 0);
  7985. border:none;
  7986. border-left:0px;
  7987. border-top:0px;
  7988. border-right:0px;
  7989. border-radius:0px;
  7990. border-bottom-right-radius:0px;
  7991. border-bottom-left-radius:0px;
  7992. -moz-box-shadow:none;
  7993. -webkit-box-shadow:none;
  7994. box-shadow:none;
  7995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7996. font-weight:400;
  7997. font-style:normal;
  7998. font-size:14px;
  7999. }
  8000. #u63322 {
  8001. border-width:0px;
  8002. position:absolute;
  8003. left:496px;
  8004. top:245px;
  8005. width:43px;
  8006. height:50px;
  8007. display:flex;
  8008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8009. font-weight:400;
  8010. font-style:normal;
  8011. font-size:14px;
  8012. }
  8013. #u63322 .text {
  8014. position:absolute;
  8015. align-self:center;
  8016. padding:0px 0px 0px 0px;
  8017. box-sizing:border-box;
  8018. width:100%;
  8019. }
  8020. #u63322_text {
  8021. border-width:0px;
  8022. white-space:nowrap;
  8023. text-transform:none;
  8024. }
  8025. #u63323_div {
  8026. border-width:0px;
  8027. position:absolute;
  8028. left:0px;
  8029. top:0px;
  8030. width:59px;
  8031. height:30px;
  8032. background:inherit;
  8033. background-color:rgba(255, 255, 255, 1);
  8034. box-sizing:border-box;
  8035. border-width:1px;
  8036. border-style:solid;
  8037. border-color:rgba(170, 170, 170, 1);
  8038. border-radius:4px;
  8039. -moz-box-shadow:none;
  8040. -webkit-box-shadow:none;
  8041. box-shadow:none;
  8042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:14px;
  8046. color:#555555;
  8047. }
  8048. #u63323 {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:447px;
  8052. top:357px;
  8053. width:59px;
  8054. height:30px;
  8055. display:flex;
  8056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8057. font-weight:400;
  8058. font-style:normal;
  8059. font-size:14px;
  8060. color:#555555;
  8061. }
  8062. #u63323 .text {
  8063. position:absolute;
  8064. align-self:center;
  8065. padding:5px 15px 5px 15px;
  8066. box-sizing:border-box;
  8067. width:100%;
  8068. }
  8069. #u63323_text {
  8070. border-width:0px;
  8071. white-space:nowrap;
  8072. text-transform:none;
  8073. }
  8074. #u63324_div {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:0px;
  8078. top:0px;
  8079. width:87px;
  8080. height:30px;
  8081. background:inherit;
  8082. background-color:rgba(255, 255, 255, 1);
  8083. box-sizing:border-box;
  8084. border-width:1px;
  8085. border-style:solid;
  8086. border-color:rgba(170, 170, 170, 1);
  8087. border-radius:4px;
  8088. -moz-box-shadow:none;
  8089. -webkit-box-shadow:none;
  8090. box-shadow:none;
  8091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8092. font-weight:400;
  8093. font-style:normal;
  8094. font-size:14px;
  8095. color:#555555;
  8096. }
  8097. #u63324 {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:350px;
  8101. top:357px;
  8102. width:87px;
  8103. height:30px;
  8104. display:flex;
  8105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8106. font-weight:400;
  8107. font-style:normal;
  8108. font-size:14px;
  8109. color:#555555;
  8110. }
  8111. #u63324 .text {
  8112. position:absolute;
  8113. align-self:center;
  8114. padding:5px 15px 5px 15px;
  8115. box-sizing:border-box;
  8116. width:100%;
  8117. }
  8118. #u63324_text {
  8119. border-width:0px;
  8120. white-space:nowrap;
  8121. text-transform:none;
  8122. }
  8123. #u63325 {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:0px;
  8127. top:0px;
  8128. width:0px;
  8129. height:0px;
  8130. }
  8131. #u63326_div {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:0px;
  8135. top:0px;
  8136. width:140px;
  8137. height:30px;
  8138. background:inherit;
  8139. background-color:rgba(255, 255, 255, 1);
  8140. box-sizing:border-box;
  8141. border-width:1px;
  8142. border-style:solid;
  8143. border-color:rgba(201, 201, 201, 1);
  8144. border-radius:4px;
  8145. -moz-box-shadow:none;
  8146. -webkit-box-shadow:none;
  8147. box-shadow:none;
  8148. font-family:'Microsoft YaHei', sans-serif;
  8149. font-weight:400;
  8150. font-style:normal;
  8151. font-size:14px;
  8152. color:#CCCCCC;
  8153. text-align:left;
  8154. }
  8155. #u63326 {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:1100px;
  8159. top:306px;
  8160. width:140px;
  8161. height:30px;
  8162. display:flex;
  8163. font-family:'Microsoft YaHei', sans-serif;
  8164. font-weight:400;
  8165. font-style:normal;
  8166. font-size:14px;
  8167. color:#CCCCCC;
  8168. text-align:left;
  8169. }
  8170. #u63326 .text {
  8171. position:absolute;
  8172. align-self:center;
  8173. padding:2px 8px 2px 8px;
  8174. box-sizing:border-box;
  8175. width:100%;
  8176. }
  8177. #u63326_text {
  8178. border-width:0px;
  8179. word-wrap:break-word;
  8180. text-transform:none;
  8181. visibility:hidden;
  8182. }
  8183. #u63327_input {
  8184. position:absolute;
  8185. left:0px;
  8186. top:0px;
  8187. width:127px;
  8188. height:25px;
  8189. padding:2px 2px 2px 2px;
  8190. font-family:'Microsoft YaHei', sans-serif;
  8191. font-weight:400;
  8192. font-style:normal;
  8193. font-size:10px;
  8194. letter-spacing:normal;
  8195. color:#000000;
  8196. vertical-align:none;
  8197. text-align:left;
  8198. text-transform:none;
  8199. background-color:transparent;
  8200. border-color:transparent;
  8201. }
  8202. #u63327_input.disabled {
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:127px;
  8207. height:25px;
  8208. padding:2px 2px 2px 2px;
  8209. font-family:'Microsoft YaHei', sans-serif;
  8210. font-weight:400;
  8211. font-style:normal;
  8212. font-size:10px;
  8213. letter-spacing:normal;
  8214. color:#000000;
  8215. vertical-align:none;
  8216. text-align:left;
  8217. text-transform:none;
  8218. background-color:transparent;
  8219. border-color:transparent;
  8220. }
  8221. #u63327_div {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:127px;
  8227. height:25px;
  8228. background:inherit;
  8229. background-color:rgba(255, 255, 255, 1);
  8230. border:none;
  8231. border-radius:0px;
  8232. -moz-box-shadow:none;
  8233. -webkit-box-shadow:none;
  8234. box-shadow:none;
  8235. font-family:'Microsoft YaHei', sans-serif;
  8236. font-weight:400;
  8237. font-style:normal;
  8238. font-size:10px;
  8239. }
  8240. #u63327 {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:1108px;
  8244. top:307px;
  8245. width:127px;
  8246. height:25px;
  8247. display:flex;
  8248. font-family:'Microsoft YaHei', sans-serif;
  8249. font-weight:400;
  8250. font-style:normal;
  8251. font-size:10px;
  8252. }
  8253. #u63327 .text {
  8254. position:absolute;
  8255. align-self:center;
  8256. padding:2px 2px 2px 2px;
  8257. box-sizing:border-box;
  8258. width:100%;
  8259. }
  8260. #u63327_div.disabled {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:127px;
  8266. height:25px;
  8267. background:inherit;
  8268. background-color:rgba(240, 240, 240, 1);
  8269. border:none;
  8270. border-radius:0px;
  8271. -moz-box-shadow:none;
  8272. -webkit-box-shadow:none;
  8273. box-shadow:none;
  8274. font-family:'Microsoft YaHei', sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. font-size:10px;
  8278. }
  8279. #u63327.disabled {
  8280. }
  8281. #u63328 {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:0px;
  8287. height:0px;
  8288. }
  8289. #u63329_div {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:0px;
  8293. top:0px;
  8294. width:140px;
  8295. height:30px;
  8296. background:inherit;
  8297. background-color:rgba(255, 255, 255, 1);
  8298. box-sizing:border-box;
  8299. border-width:1px;
  8300. border-style:solid;
  8301. border-color:rgba(215, 215, 215, 1);
  8302. border-radius:4px;
  8303. -moz-box-shadow:none;
  8304. -webkit-box-shadow:none;
  8305. box-shadow:none;
  8306. font-size:11px;
  8307. }
  8308. #u63329 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:1250px;
  8312. top:307px;
  8313. width:140px;
  8314. height:30px;
  8315. display:flex;
  8316. font-size:11px;
  8317. }
  8318. #u63329 .text {
  8319. position:absolute;
  8320. align-self:center;
  8321. padding:2px 2px 2px 2px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u63329_text {
  8326. border-width:0px;
  8327. word-wrap:break-word;
  8328. text-transform:none;
  8329. visibility:hidden;
  8330. }
  8331. #u63330_input {
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:126px;
  8336. height:23px;
  8337. padding:2px 2px 2px 2px;
  8338. font-family:'ArialMT', 'Arial', sans-serif;
  8339. font-weight:400;
  8340. font-style:normal;
  8341. font-size:11px;
  8342. letter-spacing:normal;
  8343. color:#AAAAAA;
  8344. vertical-align:none;
  8345. text-align:left;
  8346. text-transform:none;
  8347. background-color:transparent;
  8348. border-color:transparent;
  8349. }
  8350. #u63330_input.disabled {
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:126px;
  8355. height:23px;
  8356. padding:2px 2px 2px 2px;
  8357. font-family:'ArialMT', 'Arial', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:11px;
  8361. letter-spacing:normal;
  8362. color:#AAAAAA;
  8363. vertical-align:none;
  8364. text-align:left;
  8365. text-transform:none;
  8366. background-color:transparent;
  8367. border-color:transparent;
  8368. }
  8369. #u63330_div {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:126px;
  8375. height:23px;
  8376. background:inherit;
  8377. background-color:rgba(255, 255, 255, 1);
  8378. border:none;
  8379. border-radius:0px;
  8380. -moz-box-shadow:none;
  8381. -webkit-box-shadow:none;
  8382. box-shadow:none;
  8383. font-size:11px;
  8384. color:#AAAAAA;
  8385. }
  8386. #u63330 {
  8387. border-width:0px;
  8388. position:absolute;
  8389. left:1257px;
  8390. top:309px;
  8391. width:126px;
  8392. height:23px;
  8393. display:flex;
  8394. font-size:11px;
  8395. color:#AAAAAA;
  8396. }
  8397. #u63330 .text {
  8398. position:absolute;
  8399. align-self:flex-start;
  8400. padding:2px 2px 2px 2px;
  8401. box-sizing:border-box;
  8402. width:100%;
  8403. }
  8404. #u63330_div.disabled {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:126px;
  8410. height:23px;
  8411. background:inherit;
  8412. background-color:rgba(240, 240, 240, 1);
  8413. border:none;
  8414. border-radius:0px;
  8415. -moz-box-shadow:none;
  8416. -webkit-box-shadow:none;
  8417. box-shadow:none;
  8418. font-size:11px;
  8419. color:#AAAAAA;
  8420. }
  8421. #u63330.disabled {
  8422. }
  8423. .u63330_input_option {
  8424. font-size:11px;
  8425. }
  8426. #u63331 {
  8427. border-width:0px;
  8428. position:absolute;
  8429. left:0px;
  8430. top:0px;
  8431. width:0px;
  8432. height:0px;
  8433. }
  8434. #u63332_div {
  8435. border-width:0px;
  8436. position:absolute;
  8437. left:0px;
  8438. top:0px;
  8439. width:140px;
  8440. height:30px;
  8441. background:inherit;
  8442. background-color:rgba(255, 255, 255, 1);
  8443. box-sizing:border-box;
  8444. border-width:1px;
  8445. border-style:solid;
  8446. border-color:rgba(215, 215, 215, 1);
  8447. border-radius:4px;
  8448. -moz-box-shadow:none;
  8449. -webkit-box-shadow:none;
  8450. box-shadow:none;
  8451. font-size:11px;
  8452. }
  8453. #u63332 {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:350px;
  8457. top:307px;
  8458. width:140px;
  8459. height:30px;
  8460. display:flex;
  8461. font-size:11px;
  8462. }
  8463. #u63332 .text {
  8464. position:absolute;
  8465. align-self:center;
  8466. padding:2px 2px 2px 2px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u63332_text {
  8471. border-width:0px;
  8472. word-wrap:break-word;
  8473. text-transform:none;
  8474. visibility:hidden;
  8475. }
  8476. #u63333_input {
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:126px;
  8481. height:23px;
  8482. padding:2px 2px 2px 2px;
  8483. font-family:'ArialMT', 'Arial', sans-serif;
  8484. font-weight:400;
  8485. font-style:normal;
  8486. font-size:11px;
  8487. letter-spacing:normal;
  8488. color:#AAAAAA;
  8489. vertical-align:none;
  8490. text-align:left;
  8491. text-transform:none;
  8492. background-color:transparent;
  8493. border-color:transparent;
  8494. }
  8495. #u63333_input.disabled {
  8496. position:absolute;
  8497. left:0px;
  8498. top:0px;
  8499. width:126px;
  8500. height:23px;
  8501. padding:2px 2px 2px 2px;
  8502. font-family:'ArialMT', 'Arial', sans-serif;
  8503. font-weight:400;
  8504. font-style:normal;
  8505. font-size:11px;
  8506. letter-spacing:normal;
  8507. color:#AAAAAA;
  8508. vertical-align:none;
  8509. text-align:left;
  8510. text-transform:none;
  8511. background-color:transparent;
  8512. border-color:transparent;
  8513. }
  8514. #u63333_div {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:126px;
  8520. height:23px;
  8521. background:inherit;
  8522. background-color:rgba(255, 255, 255, 1);
  8523. border:none;
  8524. border-radius:0px;
  8525. -moz-box-shadow:none;
  8526. -webkit-box-shadow:none;
  8527. box-shadow:none;
  8528. font-size:11px;
  8529. color:#AAAAAA;
  8530. }
  8531. #u63333 {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:357px;
  8535. top:309px;
  8536. width:126px;
  8537. height:23px;
  8538. display:flex;
  8539. font-size:11px;
  8540. color:#AAAAAA;
  8541. }
  8542. #u63333 .text {
  8543. position:absolute;
  8544. align-self:flex-start;
  8545. padding:2px 2px 2px 2px;
  8546. box-sizing:border-box;
  8547. width:100%;
  8548. }
  8549. #u63333_div.disabled {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:0px;
  8553. top:0px;
  8554. width:126px;
  8555. height:23px;
  8556. background:inherit;
  8557. background-color:rgba(240, 240, 240, 1);
  8558. border:none;
  8559. border-radius:0px;
  8560. -moz-box-shadow:none;
  8561. -webkit-box-shadow:none;
  8562. box-shadow:none;
  8563. font-size:11px;
  8564. color:#AAAAAA;
  8565. }
  8566. #u63333.disabled {
  8567. }
  8568. .u63333_input_option {
  8569. font-size:11px;
  8570. }
  8571. #u63334 {
  8572. border-width:0px;
  8573. position:absolute;
  8574. left:0px;
  8575. top:0px;
  8576. width:0px;
  8577. height:0px;
  8578. }
  8579. #u63335_div {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:140px;
  8585. height:30px;
  8586. background:inherit;
  8587. background-color:rgba(255, 255, 255, 1);
  8588. box-sizing:border-box;
  8589. border-width:1px;
  8590. border-style:solid;
  8591. border-color:rgba(201, 201, 201, 1);
  8592. border-radius:4px;
  8593. -moz-box-shadow:none;
  8594. -webkit-box-shadow:none;
  8595. box-shadow:none;
  8596. font-family:'Microsoft YaHei', sans-serif;
  8597. font-weight:400;
  8598. font-style:normal;
  8599. font-size:14px;
  8600. color:#CCCCCC;
  8601. text-align:left;
  8602. }
  8603. #u63335 {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:800px;
  8607. top:306px;
  8608. width:140px;
  8609. height:30px;
  8610. display:flex;
  8611. font-family:'Microsoft YaHei', sans-serif;
  8612. font-weight:400;
  8613. font-style:normal;
  8614. font-size:14px;
  8615. color:#CCCCCC;
  8616. text-align:left;
  8617. }
  8618. #u63335 .text {
  8619. position:absolute;
  8620. align-self:center;
  8621. padding:2px 8px 2px 8px;
  8622. box-sizing:border-box;
  8623. width:100%;
  8624. }
  8625. #u63335_text {
  8626. border-width:0px;
  8627. word-wrap:break-word;
  8628. text-transform:none;
  8629. visibility:hidden;
  8630. }
  8631. #u63336_input {
  8632. position:absolute;
  8633. left:0px;
  8634. top:0px;
  8635. width:127px;
  8636. height:25px;
  8637. padding:2px 2px 2px 2px;
  8638. font-family:'Microsoft YaHei', sans-serif;
  8639. font-weight:400;
  8640. font-style:normal;
  8641. font-size:10px;
  8642. letter-spacing:normal;
  8643. color:#000000;
  8644. vertical-align:none;
  8645. text-align:left;
  8646. text-transform:none;
  8647. background-color:transparent;
  8648. border-color:transparent;
  8649. }
  8650. #u63336_input.disabled {
  8651. position:absolute;
  8652. left:0px;
  8653. top:0px;
  8654. width:127px;
  8655. height:25px;
  8656. padding:2px 2px 2px 2px;
  8657. font-family:'Microsoft YaHei', sans-serif;
  8658. font-weight:400;
  8659. font-style:normal;
  8660. font-size:10px;
  8661. letter-spacing:normal;
  8662. color:#000000;
  8663. vertical-align:none;
  8664. text-align:left;
  8665. text-transform:none;
  8666. background-color:transparent;
  8667. border-color:transparent;
  8668. }
  8669. #u63336_div {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:0px;
  8673. top:0px;
  8674. width:127px;
  8675. height:25px;
  8676. background:inherit;
  8677. background-color:rgba(255, 255, 255, 1);
  8678. border:none;
  8679. border-radius:0px;
  8680. -moz-box-shadow:none;
  8681. -webkit-box-shadow:none;
  8682. box-shadow:none;
  8683. font-family:'Microsoft YaHei', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:10px;
  8687. }
  8688. #u63336 {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:808px;
  8692. top:307px;
  8693. width:127px;
  8694. height:25px;
  8695. display:flex;
  8696. font-family:'Microsoft YaHei', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:10px;
  8700. }
  8701. #u63336 .text {
  8702. position:absolute;
  8703. align-self:center;
  8704. padding:2px 2px 2px 2px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u63336_div.disabled {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:0px;
  8712. top:0px;
  8713. width:127px;
  8714. height:25px;
  8715. background:inherit;
  8716. background-color:rgba(240, 240, 240, 1);
  8717. border:none;
  8718. border-radius:0px;
  8719. -moz-box-shadow:none;
  8720. -webkit-box-shadow:none;
  8721. box-shadow:none;
  8722. font-family:'Microsoft YaHei', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:10px;
  8726. }
  8727. #u63336.disabled {
  8728. }
  8729. #u63337 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:0px;
  8733. top:0px;
  8734. width:0px;
  8735. height:0px;
  8736. }
  8737. #u63338_div {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:0px;
  8741. top:0px;
  8742. width:140px;
  8743. height:30px;
  8744. background:inherit;
  8745. background-color:rgba(255, 255, 255, 1);
  8746. box-sizing:border-box;
  8747. border-width:1px;
  8748. border-style:solid;
  8749. border-color:rgba(215, 215, 215, 1);
  8750. border-radius:4px;
  8751. -moz-box-shadow:none;
  8752. -webkit-box-shadow:none;
  8753. box-shadow:none;
  8754. font-size:11px;
  8755. }
  8756. #u63338 {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:650px;
  8760. top:307px;
  8761. width:140px;
  8762. height:30px;
  8763. display:flex;
  8764. font-size:11px;
  8765. }
  8766. #u63338 .text {
  8767. position:absolute;
  8768. align-self:center;
  8769. padding:2px 2px 2px 2px;
  8770. box-sizing:border-box;
  8771. width:100%;
  8772. }
  8773. #u63338_text {
  8774. border-width:0px;
  8775. word-wrap:break-word;
  8776. text-transform:none;
  8777. visibility:hidden;
  8778. }
  8779. #u63339_input {
  8780. position:absolute;
  8781. left:0px;
  8782. top:0px;
  8783. width:126px;
  8784. height:23px;
  8785. padding:2px 2px 2px 2px;
  8786. font-family:'ArialMT', 'Arial', sans-serif;
  8787. font-weight:400;
  8788. font-style:normal;
  8789. font-size:11px;
  8790. letter-spacing:normal;
  8791. color:#AAAAAA;
  8792. vertical-align:none;
  8793. text-align:left;
  8794. text-transform:none;
  8795. background-color:transparent;
  8796. border-color:transparent;
  8797. }
  8798. #u63339_input.disabled {
  8799. position:absolute;
  8800. left:0px;
  8801. top:0px;
  8802. width:126px;
  8803. height:23px;
  8804. padding:2px 2px 2px 2px;
  8805. font-family:'ArialMT', 'Arial', sans-serif;
  8806. font-weight:400;
  8807. font-style:normal;
  8808. font-size:11px;
  8809. letter-spacing:normal;
  8810. color:#AAAAAA;
  8811. vertical-align:none;
  8812. text-align:left;
  8813. text-transform:none;
  8814. background-color:transparent;
  8815. border-color:transparent;
  8816. }
  8817. #u63339_div {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:0px;
  8821. top:0px;
  8822. width:126px;
  8823. height:23px;
  8824. background:inherit;
  8825. background-color:rgba(255, 255, 255, 1);
  8826. border:none;
  8827. border-radius:0px;
  8828. -moz-box-shadow:none;
  8829. -webkit-box-shadow:none;
  8830. box-shadow:none;
  8831. font-size:11px;
  8832. color:#AAAAAA;
  8833. }
  8834. #u63339 {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:657px;
  8838. top:309px;
  8839. width:126px;
  8840. height:23px;
  8841. display:flex;
  8842. font-size:11px;
  8843. color:#AAAAAA;
  8844. }
  8845. #u63339 .text {
  8846. position:absolute;
  8847. align-self:flex-start;
  8848. padding:2px 2px 2px 2px;
  8849. box-sizing:border-box;
  8850. width:100%;
  8851. }
  8852. #u63339_div.disabled {
  8853. border-width:0px;
  8854. position:absolute;
  8855. left:0px;
  8856. top:0px;
  8857. width:126px;
  8858. height:23px;
  8859. background:inherit;
  8860. background-color:rgba(240, 240, 240, 1);
  8861. border:none;
  8862. border-radius:0px;
  8863. -moz-box-shadow:none;
  8864. -webkit-box-shadow:none;
  8865. box-shadow:none;
  8866. font-size:11px;
  8867. color:#AAAAAA;
  8868. }
  8869. #u63339.disabled {
  8870. }
  8871. .u63339_input_option {
  8872. font-size:11px;
  8873. }
  8874. #u63340 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:0px;
  8878. top:0px;
  8879. width:0px;
  8880. height:0px;
  8881. }
  8882. #u63341 {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:0px;
  8886. top:0px;
  8887. width:0px;
  8888. height:0px;
  8889. }
  8890. #u63342_div {
  8891. border-width:0px;
  8892. position:absolute;
  8893. left:0px;
  8894. top:0px;
  8895. width:480px;
  8896. height:280px;
  8897. background:inherit;
  8898. background-color:rgba(255, 255, 255, 1);
  8899. border:none;
  8900. border-radius:4px;
  8901. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8902. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8903. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8904. font-family:'Microsoft YaHei', sans-serif;
  8905. font-weight:400;
  8906. font-style:normal;
  8907. }
  8908. #u63342 {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:474px;
  8912. top:651px;
  8913. width:480px;
  8914. height:280px;
  8915. display:flex;
  8916. font-family:'Microsoft YaHei', sans-serif;
  8917. font-weight:400;
  8918. font-style:normal;
  8919. }
  8920. #u63342 .text {
  8921. position:absolute;
  8922. align-self:center;
  8923. padding:2px 2px 2px 2px;
  8924. box-sizing:border-box;
  8925. width:100%;
  8926. }
  8927. #u63342_text {
  8928. border-width:0px;
  8929. word-wrap:break-word;
  8930. text-transform:none;
  8931. visibility:hidden;
  8932. }
  8933. #u63343_div {
  8934. border-width:0px;
  8935. position:absolute;
  8936. left:0px;
  8937. top:0px;
  8938. width:64px;
  8939. height:22px;
  8940. background:inherit;
  8941. background-color:rgba(255, 255, 255, 0);
  8942. border:none;
  8943. border-radius:0px;
  8944. -moz-box-shadow:none;
  8945. -webkit-box-shadow:none;
  8946. box-shadow:none;
  8947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8948. font-weight:400;
  8949. font-style:normal;
  8950. font-size:14px;
  8951. color:#666666;
  8952. line-height:22px;
  8953. }
  8954. #u63343 {
  8955. border-width:0px;
  8956. position:absolute;
  8957. left:501px;
  8958. top:714px;
  8959. width:64px;
  8960. height:22px;
  8961. display:flex;
  8962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8963. font-weight:400;
  8964. font-style:normal;
  8965. font-size:14px;
  8966. color:#666666;
  8967. line-height:22px;
  8968. }
  8969. #u63343 .text {
  8970. position:absolute;
  8971. align-self:flex-start;
  8972. padding:0px 0px 0px 0px;
  8973. box-sizing:border-box;
  8974. width:100%;
  8975. }
  8976. #u63343_text {
  8977. border-width:0px;
  8978. white-space:nowrap;
  8979. text-transform:none;
  8980. }
  8981. #u63344_div {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:0px;
  8985. top:0px;
  8986. width:73px;
  8987. height:21px;
  8988. background:inherit;
  8989. background-color:rgba(255, 255, 255, 0);
  8990. border:none;
  8991. border-radius:0px;
  8992. -moz-box-shadow:none;
  8993. -webkit-box-shadow:none;
  8994. box-shadow:none;
  8995. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8996. font-weight:650;
  8997. font-style:normal;
  8998. font-size:18px;
  8999. color:#000000;
  9000. line-height:22px;
  9001. }
  9002. #u63344 {
  9003. border-width:0px;
  9004. position:absolute;
  9005. left:501px;
  9006. top:672px;
  9007. width:73px;
  9008. height:21px;
  9009. display:flex;
  9010. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9011. font-weight:650;
  9012. font-style:normal;
  9013. font-size:18px;
  9014. color:#000000;
  9015. line-height:22px;
  9016. }
  9017. #u63344 .text {
  9018. position:absolute;
  9019. align-self:flex-start;
  9020. padding:0px 0px 0px 0px;
  9021. box-sizing:border-box;
  9022. width:100%;
  9023. }
  9024. #u63344_text {
  9025. border-width:0px;
  9026. white-space:nowrap;
  9027. text-transform:none;
  9028. }
  9029. #u63345 label {
  9030. left:0px;
  9031. width:100%;
  9032. }
  9033. #u63345_img {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:0px;
  9037. top:3px;
  9038. width:12px;
  9039. height:12px;
  9040. }
  9041. #u63345 {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:578px;
  9045. top:717px;
  9046. width:100px;
  9047. height:18px;
  9048. display:flex;
  9049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. }
  9053. #u63345 .text {
  9054. position:absolute;
  9055. align-self:center;
  9056. padding:0px 2px 0px 2px;
  9057. box-sizing:border-box;
  9058. }
  9059. #u63345_img.selected {
  9060. }
  9061. #u63345.selected {
  9062. }
  9063. #u63345_img.disabled {
  9064. }
  9065. #u63345.disabled {
  9066. }
  9067. #u63345_img.selectedDisabled {
  9068. }
  9069. #u63345.selectedDisabled {
  9070. }
  9071. #u63345_text {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:14px;
  9075. top:0px;
  9076. width:84px;
  9077. word-wrap:break-word;
  9078. text-transform:none;
  9079. }
  9080. #u63345_input {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:0px;
  9084. top:0px;
  9085. width:0px;
  9086. height:0px;
  9087. opacity:0;
  9088. }
  9089. #u63346 label {
  9090. left:0px;
  9091. width:100%;
  9092. }
  9093. #u63346_img {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:3px;
  9098. width:12px;
  9099. height:12px;
  9100. }
  9101. #u63346 {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:578px;
  9105. top:750px;
  9106. width:100px;
  9107. height:18px;
  9108. display:flex;
  9109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9110. font-weight:400;
  9111. font-style:normal;
  9112. }
  9113. #u63346 .text {
  9114. position:absolute;
  9115. align-self:center;
  9116. padding:0px 2px 0px 2px;
  9117. box-sizing:border-box;
  9118. }
  9119. #u63346_img.selected {
  9120. }
  9121. #u63346.selected {
  9122. }
  9123. #u63346_img.disabled {
  9124. }
  9125. #u63346.disabled {
  9126. }
  9127. #u63346_img.selectedDisabled {
  9128. }
  9129. #u63346.selectedDisabled {
  9130. }
  9131. #u63346_text {
  9132. border-width:0px;
  9133. position:absolute;
  9134. left:14px;
  9135. top:0px;
  9136. width:84px;
  9137. word-wrap:break-word;
  9138. text-transform:none;
  9139. }
  9140. #u63346_input {
  9141. border-width:0px;
  9142. position:absolute;
  9143. left:0px;
  9144. top:0px;
  9145. width:0px;
  9146. height:0px;
  9147. opacity:0;
  9148. }
  9149. #u63347 label {
  9150. left:0px;
  9151. width:100%;
  9152. }
  9153. #u63347_img {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:0px;
  9157. top:3px;
  9158. width:12px;
  9159. height:12px;
  9160. }
  9161. #u63347 {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:578px;
  9165. top:782px;
  9166. width:100px;
  9167. height:18px;
  9168. display:flex;
  9169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9170. font-weight:400;
  9171. font-style:normal;
  9172. }
  9173. #u63347 .text {
  9174. position:absolute;
  9175. align-self:center;
  9176. padding:0px 2px 0px 2px;
  9177. box-sizing:border-box;
  9178. }
  9179. #u63347_img.selected {
  9180. }
  9181. #u63347.selected {
  9182. }
  9183. #u63347_img.disabled {
  9184. }
  9185. #u63347.disabled {
  9186. }
  9187. #u63347_img.selectedDisabled {
  9188. }
  9189. #u63347.selectedDisabled {
  9190. }
  9191. #u63347_text {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:14px;
  9195. top:0px;
  9196. width:84px;
  9197. word-wrap:break-word;
  9198. text-transform:none;
  9199. }
  9200. #u63347_input {
  9201. border-width:0px;
  9202. position:absolute;
  9203. left:0px;
  9204. top:0px;
  9205. width:0px;
  9206. height:0px;
  9207. opacity:0;
  9208. }
  9209. #u63348 {
  9210. border-width:0px;
  9211. position:absolute;
  9212. left:0px;
  9213. top:0px;
  9214. width:0px;
  9215. height:0px;
  9216. }
  9217. #u63349_div {
  9218. border-width:0px;
  9219. position:absolute;
  9220. left:0px;
  9221. top:0px;
  9222. width:347px;
  9223. height:60px;
  9224. background:inherit;
  9225. background-color:rgba(255, 255, 255, 1);
  9226. box-sizing:border-box;
  9227. border-width:1px;
  9228. border-style:solid;
  9229. border-color:rgba(41, 143, 255, 1);
  9230. border-radius:4px;
  9231. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9232. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9233. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  9234. font-family:'Microsoft YaHei', sans-serif;
  9235. font-weight:400;
  9236. font-style:normal;
  9237. font-size:14px;
  9238. color:#CCCCCC;
  9239. text-align:left;
  9240. }
  9241. #u63349 {
  9242. border-width:0px;
  9243. position:absolute;
  9244. left:578px;
  9245. top:810px;
  9246. width:347px;
  9247. height:60px;
  9248. display:flex;
  9249. font-family:'Microsoft YaHei', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:14px;
  9253. color:#CCCCCC;
  9254. text-align:left;
  9255. }
  9256. #u63349 .text {
  9257. position:absolute;
  9258. align-self:center;
  9259. padding:2px 8px 2px 8px;
  9260. box-sizing:border-box;
  9261. width:100%;
  9262. }
  9263. #u63349_text {
  9264. border-width:0px;
  9265. word-wrap:break-word;
  9266. text-transform:none;
  9267. visibility:hidden;
  9268. }
  9269. #u63350_input {
  9270. position:absolute;
  9271. left:0px;
  9272. top:0px;
  9273. width:330px;
  9274. height:38px;
  9275. padding:2px 2px 2px 2px;
  9276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:14px;
  9280. letter-spacing:normal;
  9281. color:#000000;
  9282. vertical-align:none;
  9283. text-align:left;
  9284. text-transform:none;
  9285. background-color:transparent;
  9286. border-color:transparent;
  9287. }
  9288. #u63350_input.disabled {
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:330px;
  9293. height:38px;
  9294. padding:2px 2px 2px 2px;
  9295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9296. font-weight:400;
  9297. font-style:normal;
  9298. font-size:14px;
  9299. letter-spacing:normal;
  9300. color:#000000;
  9301. vertical-align:none;
  9302. text-align:left;
  9303. text-transform:none;
  9304. background-color:transparent;
  9305. border-color:transparent;
  9306. }
  9307. #u63350_div {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:330px;
  9313. height:38px;
  9314. background:inherit;
  9315. background-color:rgba(255, 255, 255, 1);
  9316. border:none;
  9317. border-radius:0px;
  9318. -moz-box-shadow:none;
  9319. -webkit-box-shadow:none;
  9320. box-shadow:none;
  9321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9322. font-weight:400;
  9323. font-style:normal;
  9324. font-size:14px;
  9325. }
  9326. #u63350 {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:587px;
  9330. top:811px;
  9331. width:330px;
  9332. height:38px;
  9333. display:flex;
  9334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9335. font-weight:400;
  9336. font-style:normal;
  9337. font-size:14px;
  9338. }
  9339. #u63350 .text {
  9340. position:absolute;
  9341. align-self:center;
  9342. padding:2px 2px 2px 2px;
  9343. box-sizing:border-box;
  9344. width:100%;
  9345. }
  9346. #u63350_div.disabled {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:0px;
  9350. top:0px;
  9351. width:330px;
  9352. height:38px;
  9353. background:inherit;
  9354. background-color:rgba(240, 240, 240, 1);
  9355. border:none;
  9356. border-radius:0px;
  9357. -moz-box-shadow:none;
  9358. -webkit-box-shadow:none;
  9359. box-shadow:none;
  9360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9361. font-weight:400;
  9362. font-style:normal;
  9363. font-size:14px;
  9364. }
  9365. #u63350.disabled {
  9366. }
  9367. #u63351 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:0px;
  9371. top:0px;
  9372. width:0px;
  9373. height:0px;
  9374. }
  9375. #u63352_div {
  9376. border-width:0px;
  9377. position:absolute;
  9378. left:0px;
  9379. top:0px;
  9380. width:80px;
  9381. height:30px;
  9382. background:inherit;
  9383. background-color:rgba(24, 144, 255, 1);
  9384. border:none;
  9385. border-radius:4px;
  9386. -moz-box-shadow:none;
  9387. -webkit-box-shadow:none;
  9388. box-shadow:none;
  9389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9390. font-weight:400;
  9391. font-style:normal;
  9392. font-size:14px;
  9393. color:#FFFFFF;
  9394. }
  9395. #u63352 {
  9396. border-width:0px;
  9397. position:absolute;
  9398. left:845px;
  9399. top:889px;
  9400. width:80px;
  9401. height:30px;
  9402. display:flex;
  9403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9404. font-weight:400;
  9405. font-style:normal;
  9406. font-size:14px;
  9407. color:#FFFFFF;
  9408. }
  9409. #u63352 .text {
  9410. position:absolute;
  9411. align-self:center;
  9412. padding:2px 2px 2px 2px;
  9413. box-sizing:border-box;
  9414. width:100%;
  9415. }
  9416. #u63352_text {
  9417. border-width:0px;
  9418. word-wrap:break-word;
  9419. text-transform:none;
  9420. }
  9421. #u63353_div {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:80px;
  9427. height:30px;
  9428. background:inherit;
  9429. background-color:rgba(255, 255, 255, 1);
  9430. box-sizing:border-box;
  9431. border-width:1px;
  9432. border-style:solid;
  9433. border-color:rgba(170, 170, 170, 1);
  9434. border-radius:4px;
  9435. -moz-box-shadow:none;
  9436. -webkit-box-shadow:none;
  9437. box-shadow:none;
  9438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9439. font-weight:400;
  9440. font-style:normal;
  9441. font-size:14px;
  9442. }
  9443. #u63353 {
  9444. border-width:0px;
  9445. position:absolute;
  9446. left:746px;
  9447. top:889px;
  9448. width:80px;
  9449. height:30px;
  9450. display:flex;
  9451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9452. font-weight:400;
  9453. font-style:normal;
  9454. font-size:14px;
  9455. }
  9456. #u63353 .text {
  9457. position:absolute;
  9458. align-self:center;
  9459. padding:2px 2px 2px 2px;
  9460. box-sizing:border-box;
  9461. width:100%;
  9462. }
  9463. #u63353_text {
  9464. border-width:0px;
  9465. word-wrap:break-word;
  9466. text-transform:none;
  9467. }