styles.css 171 KB

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