styles.css 161 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1944px;
  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. #u66968_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. #u66968 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u66968 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u66968_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u66969_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. #u66969 {
  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. #u66969 .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. #u66969_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u66970_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. #u66970 {
  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. #u66970 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u66970_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u66971 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u66972_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u66972 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u66972 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u66972_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u66973_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. #u66973 {
  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. #u66973 .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. #u66973_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u66974_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. #u66974 {
  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. #u66974 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u66974_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u66975 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u66976_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u66976 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u66976 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u66976_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u66977_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u66977 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u66977 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u66977_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u66978 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u66979_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u66979 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u66979 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u66979_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u66980_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u66980 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u66980 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u66980_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u66981 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u66982_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u66982 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u66982 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u66982_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u66983_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u66983 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u66983 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u66983_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u66984 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u66985_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u66985 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u66985 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u66985_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u66986_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u66986 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u66986 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u66986_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u66987 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u66988_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u66988 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u66988 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u66988_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u66989_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u66989 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u66989 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u66989_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u66990 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u66991_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u66991 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u66991 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u66991_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u66992_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u66992 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u66992 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u66992_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u66993 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u66994_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u66994 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u66994 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u66994_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u66995_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u66995 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u66995 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u66995_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u66996 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u66997_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u66997 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u66997 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u66997_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u66998_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u66998 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u66998 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u66998_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u66999 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u67000_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u67000 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u67000 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u67000_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u67001_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u67001 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u67001 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u67001_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u67002_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u67002 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u67002 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u67002_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u67003_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u67003 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u67003 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u67003_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u67004_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u67004 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u67004 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u67004_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u67005_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u67005 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u67005 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u67005_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u67006 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u67007_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u67007 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u67007 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u67007_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u67008_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u67008 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u67008 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u67008_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u67009 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u67010_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u67010 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u67010 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u67010_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u67011_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u67011 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u67011 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u67011_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u67012 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u67013_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u67013_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u67013_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u67013 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u67013 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u67013_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u67013.disabled {
  1428. }
  1429. .u67013_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u67014_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u67014 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u67014 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u67014_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u67015_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u67015 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u67015 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u67015_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u67016_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u67016 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u67016 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u67016_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u67017_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1262px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. }
  1553. #u67017 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:329px;
  1557. top:50px;
  1558. width:1262px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u67017 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u67017_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u67018 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:349px;
  1579. top:231px;
  1580. width:891px;
  1581. height:257px;
  1582. }
  1583. #u67019_img {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:73px;
  1589. height:38px;
  1590. }
  1591. #u67019 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:73px;
  1597. height:38px;
  1598. display:flex;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:12px;
  1603. color:#FFFFFF;
  1604. }
  1605. #u67019 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 0px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u67019_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. }
  1617. #u67020_img {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:73px;
  1623. height:38px;
  1624. }
  1625. #u67020 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:73px;
  1629. top:0px;
  1630. width:73px;
  1631. height:38px;
  1632. display:flex;
  1633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1634. font-weight:400;
  1635. font-style:normal;
  1636. font-size:12px;
  1637. color:#FFFFFF;
  1638. }
  1639. #u67020 .text {
  1640. position:absolute;
  1641. align-self:center;
  1642. padding:2px 2px 2px 0px;
  1643. box-sizing:border-box;
  1644. width:100%;
  1645. }
  1646. #u67020_text {
  1647. border-width:0px;
  1648. word-wrap:break-word;
  1649. text-transform:none;
  1650. }
  1651. #u67021_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:73px;
  1657. height:38px;
  1658. }
  1659. #u67021 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:146px;
  1663. top:0px;
  1664. width:73px;
  1665. height:38px;
  1666. display:flex;
  1667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1668. font-weight:400;
  1669. font-style:normal;
  1670. font-size:12px;
  1671. color:#FFFFFF;
  1672. }
  1673. #u67021 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 0px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u67021_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. }
  1685. #u67022_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:74px;
  1691. height:38px;
  1692. }
  1693. #u67022 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:219px;
  1697. top:0px;
  1698. width:74px;
  1699. height:38px;
  1700. display:flex;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:12px;
  1705. color:#FFFFFF;
  1706. }
  1707. #u67022 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u67022_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. }
  1719. #u67023_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:73px;
  1725. height:38px;
  1726. }
  1727. #u67023 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:293px;
  1731. top:0px;
  1732. width:73px;
  1733. height:38px;
  1734. display:flex;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:12px;
  1739. color:#FFFFFF;
  1740. }
  1741. #u67023 .text {
  1742. position:absolute;
  1743. align-self:center;
  1744. padding:2px 2px 2px 0px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u67023_text {
  1749. border-width:0px;
  1750. word-wrap:break-word;
  1751. text-transform:none;
  1752. }
  1753. #u67024_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:73px;
  1759. height:38px;
  1760. }
  1761. #u67024 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:366px;
  1765. top:0px;
  1766. width:73px;
  1767. height:38px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:12px;
  1773. color:#FFFFFF;
  1774. }
  1775. #u67024 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:2px 2px 2px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u67024_text {
  1783. border-width:0px;
  1784. word-wrap:break-word;
  1785. text-transform:none;
  1786. }
  1787. #u67025_img {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:73px;
  1793. height:38px;
  1794. }
  1795. #u67025 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:439px;
  1799. top:0px;
  1800. width:73px;
  1801. height:38px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:12px;
  1807. color:#FFFFFF;
  1808. }
  1809. #u67025 .text {
  1810. position:absolute;
  1811. align-self:center;
  1812. padding:2px 2px 2px 0px;
  1813. box-sizing:border-box;
  1814. width:100%;
  1815. }
  1816. #u67025_text {
  1817. border-width:0px;
  1818. word-wrap:break-word;
  1819. text-transform:none;
  1820. }
  1821. #u67026_img {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:73px;
  1827. height:38px;
  1828. }
  1829. #u67026 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:512px;
  1833. top:0px;
  1834. width:73px;
  1835. height:38px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:12px;
  1841. color:#FFFFFF;
  1842. }
  1843. #u67026 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u67026_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u67027_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:79px;
  1861. height:38px;
  1862. }
  1863. #u67027 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:585px;
  1867. top:0px;
  1868. width:79px;
  1869. height:38px;
  1870. display:flex;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:12px;
  1875. color:#FFFFFF;
  1876. }
  1877. #u67027 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:2px 2px 2px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u67027_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. }
  1889. #u67028_img {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:73px;
  1895. height:38px;
  1896. }
  1897. #u67028 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:664px;
  1901. top:0px;
  1902. width:73px;
  1903. height:38px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:12px;
  1909. color:#FFFFFF;
  1910. }
  1911. #u67028 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 0px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u67028_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. }
  1923. #u67029_img {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:73px;
  1929. height:38px;
  1930. }
  1931. #u67029 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:737px;
  1935. top:0px;
  1936. width:73px;
  1937. height:38px;
  1938. display:flex;
  1939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. font-size:12px;
  1943. color:#FFFFFF;
  1944. }
  1945. #u67029 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 2px 2px 0px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u67029_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u67030_img {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:81px;
  1963. height:38px;
  1964. }
  1965. #u67030 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:810px;
  1969. top:0px;
  1970. width:81px;
  1971. height:38px;
  1972. display:flex;
  1973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:12px;
  1977. color:#FFFFFF;
  1978. }
  1979. #u67030 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:2px 2px 2px 0px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u67030_text {
  1987. border-width:0px;
  1988. word-wrap:break-word;
  1989. text-transform:none;
  1990. }
  1991. #u67031_img {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:73px;
  1997. height:38px;
  1998. }
  1999. #u67031 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:38px;
  2004. width:73px;
  2005. height:38px;
  2006. display:flex;
  2007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:12px;
  2011. color:#333333;
  2012. }
  2013. #u67031 .text {
  2014. position:absolute;
  2015. align-self:center;
  2016. padding:2px 2px 2px 0px;
  2017. box-sizing:border-box;
  2018. width:100%;
  2019. }
  2020. #u67031_text {
  2021. border-width:0px;
  2022. word-wrap:break-word;
  2023. text-transform:none;
  2024. visibility:hidden;
  2025. }
  2026. #u67032_img {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:73px;
  2032. height:38px;
  2033. }
  2034. #u67032 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:73px;
  2038. top:38px;
  2039. width:73px;
  2040. height:38px;
  2041. display:flex;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:12px;
  2046. color:#333333;
  2047. }
  2048. #u67032 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 0px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u67032_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. visibility:hidden;
  2060. }
  2061. #u67033_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:73px;
  2067. height:38px;
  2068. }
  2069. #u67033 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:146px;
  2073. top:38px;
  2074. width:73px;
  2075. height:38px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. text-decoration:underline ;
  2082. color:#333333;
  2083. }
  2084. #u67033 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u67033_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. visibility:hidden;
  2096. }
  2097. #u67034_img {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:74px;
  2103. height:38px;
  2104. }
  2105. #u67034 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:219px;
  2109. top:38px;
  2110. width:74px;
  2111. height:38px;
  2112. display:flex;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:12px;
  2117. text-decoration:underline ;
  2118. color:#333333;
  2119. }
  2120. #u67034 .text {
  2121. position:absolute;
  2122. align-self:center;
  2123. padding:2px 2px 2px 0px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u67034_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. visibility:hidden;
  2132. }
  2133. #u67035_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:73px;
  2139. height:38px;
  2140. }
  2141. #u67035 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:293px;
  2145. top:38px;
  2146. width:73px;
  2147. height:38px;
  2148. display:flex;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:12px;
  2153. text-decoration:underline ;
  2154. color:#333333;
  2155. }
  2156. #u67035 .text {
  2157. position:absolute;
  2158. align-self:center;
  2159. padding:2px 2px 2px 0px;
  2160. box-sizing:border-box;
  2161. width:100%;
  2162. }
  2163. #u67035_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. visibility:hidden;
  2168. }
  2169. #u67036_img {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:73px;
  2175. height:38px;
  2176. }
  2177. #u67036 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:366px;
  2181. top:38px;
  2182. width:73px;
  2183. height:38px;
  2184. display:flex;
  2185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:12px;
  2189. text-decoration:underline ;
  2190. color:#333333;
  2191. }
  2192. #u67036 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:2px 2px 2px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u67036_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. visibility:hidden;
  2204. }
  2205. #u67037_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:73px;
  2211. height:38px;
  2212. }
  2213. #u67037 {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:439px;
  2217. top:38px;
  2218. width:73px;
  2219. height:38px;
  2220. display:flex;
  2221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2222. font-weight:400;
  2223. font-style:normal;
  2224. font-size:12px;
  2225. text-decoration:underline ;
  2226. color:#333333;
  2227. }
  2228. #u67037 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 0px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u67037_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. visibility:hidden;
  2240. }
  2241. #u67038_img {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:73px;
  2247. height:38px;
  2248. }
  2249. #u67038 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:512px;
  2253. top:38px;
  2254. width:73px;
  2255. height:38px;
  2256. display:flex;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:12px;
  2261. color:#333333;
  2262. }
  2263. #u67038 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 0px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u67038_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. }
  2275. #u67039_img {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:79px;
  2281. height:38px;
  2282. }
  2283. #u67039 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:585px;
  2287. top:38px;
  2288. width:79px;
  2289. height:38px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:12px;
  2295. color:#333333;
  2296. }
  2297. #u67039 .text {
  2298. position:absolute;
  2299. align-self:center;
  2300. padding:2px 2px 2px 0px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u67039_text {
  2305. border-width:0px;
  2306. word-wrap:break-word;
  2307. text-transform:none;
  2308. }
  2309. #u67040_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:73px;
  2315. height:38px;
  2316. }
  2317. #u67040 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:664px;
  2321. top:38px;
  2322. width:73px;
  2323. height:38px;
  2324. display:flex;
  2325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2326. font-weight:400;
  2327. font-style:normal;
  2328. font-size:12px;
  2329. color:#333333;
  2330. }
  2331. #u67040 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 0px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u67040_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. }
  2343. #u67041_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:73px;
  2349. height:38px;
  2350. }
  2351. #u67041 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:737px;
  2355. top:38px;
  2356. width:73px;
  2357. height:38px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:12px;
  2363. text-decoration:underline ;
  2364. color:#333333;
  2365. }
  2366. #u67041 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u67041_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u67042_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:81px;
  2385. height:38px;
  2386. }
  2387. #u67042 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:810px;
  2391. top:38px;
  2392. width:81px;
  2393. height:38px;
  2394. display:flex;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:12px;
  2399. }
  2400. #u67042 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u67042_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. }
  2412. #u67043_img {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:0px;
  2416. top:0px;
  2417. width:73px;
  2418. height:38px;
  2419. }
  2420. #u67043 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:76px;
  2425. width:73px;
  2426. height:38px;
  2427. display:flex;
  2428. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2429. font-weight:400;
  2430. font-style:normal;
  2431. font-size:12px;
  2432. color:#333333;
  2433. }
  2434. #u67043 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 0px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u67043_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u67044_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:73px;
  2453. height:38px;
  2454. }
  2455. #u67044 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:73px;
  2459. top:76px;
  2460. width:73px;
  2461. height:38px;
  2462. display:flex;
  2463. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. color:#333333;
  2468. }
  2469. #u67044 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u67044_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. visibility:hidden;
  2481. }
  2482. #u67045_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:73px;
  2488. height:38px;
  2489. }
  2490. #u67045 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:146px;
  2494. top:76px;
  2495. width:73px;
  2496. height:38px;
  2497. display:flex;
  2498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. color:#333333;
  2503. }
  2504. #u67045 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 0px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u67045_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u67046_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:74px;
  2523. height:38px;
  2524. }
  2525. #u67046 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:219px;
  2529. top:76px;
  2530. width:74px;
  2531. height:38px;
  2532. display:flex;
  2533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. color:#333333;
  2538. }
  2539. #u67046 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u67046_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u67047_img {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:73px;
  2558. height:38px;
  2559. }
  2560. #u67047 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:293px;
  2564. top:76px;
  2565. width:73px;
  2566. height:38px;
  2567. display:flex;
  2568. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:12px;
  2572. color:#333333;
  2573. }
  2574. #u67047 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u67047_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u67048_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:73px;
  2593. height:38px;
  2594. }
  2595. #u67048 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:366px;
  2599. top:76px;
  2600. width:73px;
  2601. height:38px;
  2602. display:flex;
  2603. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:12px;
  2607. color:#333333;
  2608. }
  2609. #u67048 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u67048_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u67049_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:73px;
  2628. height:38px;
  2629. }
  2630. #u67049 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:439px;
  2634. top:76px;
  2635. width:73px;
  2636. height:38px;
  2637. display:flex;
  2638. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. color:#333333;
  2643. }
  2644. #u67049 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u67049_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. visibility:hidden;
  2656. }
  2657. #u67050_img {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:73px;
  2663. height:38px;
  2664. }
  2665. #u67050 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:512px;
  2669. top:76px;
  2670. width:73px;
  2671. height:38px;
  2672. display:flex;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:12px;
  2677. color:#333333;
  2678. }
  2679. #u67050 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u67050_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. }
  2691. #u67051_img {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:79px;
  2697. height:38px;
  2698. }
  2699. #u67051 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:585px;
  2703. top:76px;
  2704. width:79px;
  2705. height:38px;
  2706. display:flex;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. color:#333333;
  2712. }
  2713. #u67051 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 0px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u67051_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. }
  2725. #u67052_img {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:73px;
  2731. height:38px;
  2732. }
  2733. #u67052 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:664px;
  2737. top:76px;
  2738. width:73px;
  2739. height:38px;
  2740. display:flex;
  2741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2742. font-weight:400;
  2743. font-style:normal;
  2744. font-size:12px;
  2745. color:#333333;
  2746. }
  2747. #u67052 .text {
  2748. position:absolute;
  2749. align-self:center;
  2750. padding:2px 2px 2px 0px;
  2751. box-sizing:border-box;
  2752. width:100%;
  2753. }
  2754. #u67052_text {
  2755. border-width:0px;
  2756. word-wrap:break-word;
  2757. text-transform:none;
  2758. }
  2759. #u67053_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:73px;
  2765. height:38px;
  2766. }
  2767. #u67053 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:737px;
  2771. top:76px;
  2772. width:73px;
  2773. height:38px;
  2774. display:flex;
  2775. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:12px;
  2779. color:#333333;
  2780. }
  2781. #u67053 .text {
  2782. position:absolute;
  2783. align-self:center;
  2784. padding:2px 2px 2px 0px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u67053_text {
  2789. border-width:0px;
  2790. word-wrap:break-word;
  2791. text-transform:none;
  2792. visibility:hidden;
  2793. }
  2794. #u67054_img {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:81px;
  2800. height:38px;
  2801. }
  2802. #u67054 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:810px;
  2806. top:76px;
  2807. width:81px;
  2808. height:38px;
  2809. display:flex;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. color:#1890FF;
  2815. }
  2816. #u67054 .text {
  2817. position:absolute;
  2818. align-self:center;
  2819. padding:2px 2px 2px 0px;
  2820. box-sizing:border-box;
  2821. width:100%;
  2822. }
  2823. #u67054_text {
  2824. border-width:0px;
  2825. word-wrap:break-word;
  2826. text-transform:none;
  2827. }
  2828. #u67055_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:73px;
  2834. height:38px;
  2835. }
  2836. #u67055 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:114px;
  2841. width:73px;
  2842. height:38px;
  2843. display:flex;
  2844. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:12px;
  2848. color:#333333;
  2849. }
  2850. #u67055 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u67055_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. visibility:hidden;
  2862. }
  2863. #u67056_img {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:73px;
  2869. height:38px;
  2870. }
  2871. #u67056 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:73px;
  2875. top:114px;
  2876. width:73px;
  2877. height:38px;
  2878. display:flex;
  2879. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2880. font-weight:400;
  2881. font-style:normal;
  2882. font-size:12px;
  2883. color:#333333;
  2884. }
  2885. #u67056 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 0px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u67056_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. visibility:hidden;
  2897. }
  2898. #u67057_img {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:73px;
  2904. height:38px;
  2905. }
  2906. #u67057 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:146px;
  2910. top:114px;
  2911. width:73px;
  2912. height:38px;
  2913. display:flex;
  2914. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2915. font-weight:400;
  2916. font-style:normal;
  2917. font-size:12px;
  2918. color:#333333;
  2919. }
  2920. #u67057 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u67057_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u67058_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:74px;
  2939. height:38px;
  2940. }
  2941. #u67058 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:219px;
  2945. top:114px;
  2946. width:74px;
  2947. height:38px;
  2948. display:flex;
  2949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:12px;
  2953. color:#333333;
  2954. }
  2955. #u67058 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u67058_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u67059_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:73px;
  2974. height:38px;
  2975. }
  2976. #u67059 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:293px;
  2980. top:114px;
  2981. width:73px;
  2982. height:38px;
  2983. display:flex;
  2984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. color:#333333;
  2989. }
  2990. #u67059 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u67059_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u67060_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:73px;
  3009. height:38px;
  3010. }
  3011. #u67060 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:366px;
  3015. top:114px;
  3016. width:73px;
  3017. height:38px;
  3018. display:flex;
  3019. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:12px;
  3023. color:#333333;
  3024. }
  3025. #u67060 .text {
  3026. position:absolute;
  3027. align-self:center;
  3028. padding:2px 2px 2px 0px;
  3029. box-sizing:border-box;
  3030. width:100%;
  3031. }
  3032. #u67060_text {
  3033. border-width:0px;
  3034. word-wrap:break-word;
  3035. text-transform:none;
  3036. visibility:hidden;
  3037. }
  3038. #u67061_img {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:73px;
  3044. height:38px;
  3045. }
  3046. #u67061 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:439px;
  3050. top:114px;
  3051. width:73px;
  3052. height:38px;
  3053. display:flex;
  3054. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:12px;
  3058. color:#333333;
  3059. }
  3060. #u67061 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 0px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u67061_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u67062_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:73px;
  3079. height:38px;
  3080. }
  3081. #u67062 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:512px;
  3085. top:114px;
  3086. width:73px;
  3087. height:38px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:12px;
  3093. color:#333333;
  3094. }
  3095. #u67062 .text {
  3096. position:absolute;
  3097. align-self:center;
  3098. padding:2px 2px 2px 0px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u67062_text {
  3103. border-width:0px;
  3104. word-wrap:break-word;
  3105. text-transform:none;
  3106. }
  3107. #u67063_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:79px;
  3113. height:38px;
  3114. }
  3115. #u67063 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:585px;
  3119. top:114px;
  3120. width:79px;
  3121. height:38px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:12px;
  3127. color:#333333;
  3128. }
  3129. #u67063 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:2px 2px 2px 0px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u67063_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. visibility:hidden;
  3141. }
  3142. #u67064_img {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:73px;
  3148. height:38px;
  3149. }
  3150. #u67064 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:664px;
  3154. top:114px;
  3155. width:73px;
  3156. height:38px;
  3157. display:flex;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:12px;
  3162. color:#333333;
  3163. }
  3164. #u67064 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 0px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u67064_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. }
  3176. #u67065_img {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:73px;
  3182. height:38px;
  3183. }
  3184. #u67065 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:737px;
  3188. top:114px;
  3189. width:73px;
  3190. height:38px;
  3191. display:flex;
  3192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#333333;
  3197. }
  3198. #u67065 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u67065_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. visibility:hidden;
  3210. }
  3211. #u67066_img {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:81px;
  3217. height:38px;
  3218. }
  3219. #u67066 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:810px;
  3223. top:114px;
  3224. width:81px;
  3225. height:38px;
  3226. display:flex;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:12px;
  3231. color:#1890FF;
  3232. }
  3233. #u67066 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u67066_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. }
  3245. #u67067_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:73px;
  3251. height:35px;
  3252. }
  3253. #u67067 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:152px;
  3258. width:73px;
  3259. height:35px;
  3260. display:flex;
  3261. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:12px;
  3265. color:#333333;
  3266. }
  3267. #u67067 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u67067_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u67068_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:73px;
  3286. height:35px;
  3287. }
  3288. #u67068 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:73px;
  3292. top:152px;
  3293. width:73px;
  3294. height:35px;
  3295. display:flex;
  3296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. color:#333333;
  3301. }
  3302. #u67068 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u67068_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u67069_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:73px;
  3321. height:35px;
  3322. }
  3323. #u67069 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:146px;
  3327. top:152px;
  3328. width:73px;
  3329. height:35px;
  3330. display:flex;
  3331. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:12px;
  3335. color:#333333;
  3336. }
  3337. #u67069 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u67069_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. visibility:hidden;
  3349. }
  3350. #u67070_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:74px;
  3356. height:35px;
  3357. }
  3358. #u67070 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:219px;
  3362. top:152px;
  3363. width:74px;
  3364. height:35px;
  3365. display:flex;
  3366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#333333;
  3371. }
  3372. #u67070 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 0px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u67070_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u67071_img {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:73px;
  3391. height:35px;
  3392. }
  3393. #u67071 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:293px;
  3397. top:152px;
  3398. width:73px;
  3399. height:35px;
  3400. display:flex;
  3401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:12px;
  3405. color:#333333;
  3406. }
  3407. #u67071 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u67071_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u67072_img {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:73px;
  3426. height:35px;
  3427. }
  3428. #u67072 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:366px;
  3432. top:152px;
  3433. width:73px;
  3434. height:35px;
  3435. display:flex;
  3436. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:12px;
  3440. color:#333333;
  3441. }
  3442. #u67072 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 0px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u67072_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u67073_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:73px;
  3461. height:35px;
  3462. }
  3463. #u67073 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:439px;
  3467. top:152px;
  3468. width:73px;
  3469. height:35px;
  3470. display:flex;
  3471. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:12px;
  3475. color:#333333;
  3476. }
  3477. #u67073 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u67073_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u67074_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:73px;
  3496. height:35px;
  3497. }
  3498. #u67074 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:512px;
  3502. top:152px;
  3503. width:73px;
  3504. height:35px;
  3505. display:flex;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:12px;
  3510. color:#333333;
  3511. }
  3512. #u67074 .text {
  3513. position:absolute;
  3514. align-self:center;
  3515. padding:2px 2px 2px 0px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u67074_text {
  3520. border-width:0px;
  3521. word-wrap:break-word;
  3522. text-transform:none;
  3523. visibility:hidden;
  3524. }
  3525. #u67075_img {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:79px;
  3531. height:35px;
  3532. }
  3533. #u67075 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:585px;
  3537. top:152px;
  3538. width:79px;
  3539. height:35px;
  3540. display:flex;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:12px;
  3545. color:#333333;
  3546. }
  3547. #u67075 .text {
  3548. position:absolute;
  3549. align-self:center;
  3550. padding:2px 2px 2px 0px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u67075_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u67076_img {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:73px;
  3566. height:35px;
  3567. }
  3568. #u67076 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:664px;
  3572. top:152px;
  3573. width:73px;
  3574. height:35px;
  3575. display:flex;
  3576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:12px;
  3580. color:#333333;
  3581. }
  3582. #u67076 .text {
  3583. position:absolute;
  3584. align-self:center;
  3585. padding:2px 2px 2px 0px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u67076_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. visibility:hidden;
  3594. }
  3595. #u67077_img {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:73px;
  3601. height:35px;
  3602. }
  3603. #u67077 {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:737px;
  3607. top:152px;
  3608. width:73px;
  3609. height:35px;
  3610. display:flex;
  3611. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:12px;
  3615. color:#333333;
  3616. }
  3617. #u67077 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 0px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u67077_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. visibility:hidden;
  3629. }
  3630. #u67078_img {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:81px;
  3636. height:35px;
  3637. }
  3638. #u67078 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:810px;
  3642. top:152px;
  3643. width:81px;
  3644. height:35px;
  3645. display:flex;
  3646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:12px;
  3650. color:#1890FF;
  3651. }
  3652. #u67078 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u67078_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. }
  3664. #u67079_img {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:0px;
  3668. top:0px;
  3669. width:73px;
  3670. height:35px;
  3671. }
  3672. #u67079 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:187px;
  3677. width:73px;
  3678. height:35px;
  3679. display:flex;
  3680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3681. font-weight:400;
  3682. font-style:normal;
  3683. font-size:12px;
  3684. color:#333333;
  3685. }
  3686. #u67079 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 0px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u67079_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u67080_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:73px;
  3705. height:35px;
  3706. }
  3707. #u67080 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:73px;
  3711. top:187px;
  3712. width:73px;
  3713. height:35px;
  3714. display:flex;
  3715. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:12px;
  3719. color:#333333;
  3720. }
  3721. #u67080 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 0px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u67080_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u67081_img {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:73px;
  3740. height:35px;
  3741. }
  3742. #u67081 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:146px;
  3746. top:187px;
  3747. width:73px;
  3748. height:35px;
  3749. display:flex;
  3750. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. font-size:12px;
  3754. color:#333333;
  3755. }
  3756. #u67081 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 0px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u67081_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u67082_img {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:74px;
  3775. height:35px;
  3776. }
  3777. #u67082 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:219px;
  3781. top:187px;
  3782. width:74px;
  3783. height:35px;
  3784. display:flex;
  3785. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:12px;
  3789. color:#333333;
  3790. }
  3791. #u67082 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 0px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u67082_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u67083_img {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:73px;
  3810. height:35px;
  3811. }
  3812. #u67083 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:293px;
  3816. top:187px;
  3817. width:73px;
  3818. height:35px;
  3819. display:flex;
  3820. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3821. font-weight:400;
  3822. font-style:normal;
  3823. font-size:12px;
  3824. color:#333333;
  3825. }
  3826. #u67083 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 0px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u67083_text {
  3834. border-width:0px;
  3835. word-wrap:break-word;
  3836. text-transform:none;
  3837. visibility:hidden;
  3838. }
  3839. #u67084_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:73px;
  3845. height:35px;
  3846. }
  3847. #u67084 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:366px;
  3851. top:187px;
  3852. width:73px;
  3853. height:35px;
  3854. display:flex;
  3855. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:12px;
  3859. color:#333333;
  3860. }
  3861. #u67084 .text {
  3862. position:absolute;
  3863. align-self:center;
  3864. padding:2px 2px 2px 0px;
  3865. box-sizing:border-box;
  3866. width:100%;
  3867. }
  3868. #u67084_text {
  3869. border-width:0px;
  3870. word-wrap:break-word;
  3871. text-transform:none;
  3872. visibility:hidden;
  3873. }
  3874. #u67085_img {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:73px;
  3880. height:35px;
  3881. }
  3882. #u67085 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:439px;
  3886. top:187px;
  3887. width:73px;
  3888. height:35px;
  3889. display:flex;
  3890. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:12px;
  3894. color:#333333;
  3895. }
  3896. #u67085 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u67085_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. visibility:hidden;
  3908. }
  3909. #u67086_img {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:73px;
  3915. height:35px;
  3916. }
  3917. #u67086 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:512px;
  3921. top:187px;
  3922. width:73px;
  3923. height:35px;
  3924. display:flex;
  3925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:12px;
  3929. color:#333333;
  3930. }
  3931. #u67086 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:2px 2px 2px 0px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u67086_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. visibility:hidden;
  3943. }
  3944. #u67087_img {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:79px;
  3950. height:35px;
  3951. }
  3952. #u67087 {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:585px;
  3956. top:187px;
  3957. width:79px;
  3958. height:35px;
  3959. display:flex;
  3960. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. font-size:12px;
  3964. color:#333333;
  3965. }
  3966. #u67087 .text {
  3967. position:absolute;
  3968. align-self:center;
  3969. padding:2px 2px 2px 0px;
  3970. box-sizing:border-box;
  3971. width:100%;
  3972. }
  3973. #u67087_text {
  3974. border-width:0px;
  3975. word-wrap:break-word;
  3976. text-transform:none;
  3977. visibility:hidden;
  3978. }
  3979. #u67088_img {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:73px;
  3985. height:35px;
  3986. }
  3987. #u67088 {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:664px;
  3991. top:187px;
  3992. width:73px;
  3993. height:35px;
  3994. display:flex;
  3995. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3996. font-weight:400;
  3997. font-style:normal;
  3998. font-size:12px;
  3999. color:#333333;
  4000. }
  4001. #u67088 .text {
  4002. position:absolute;
  4003. align-self:center;
  4004. padding:2px 2px 2px 0px;
  4005. box-sizing:border-box;
  4006. width:100%;
  4007. }
  4008. #u67088_text {
  4009. border-width:0px;
  4010. word-wrap:break-word;
  4011. text-transform:none;
  4012. visibility:hidden;
  4013. }
  4014. #u67089_img {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:73px;
  4020. height:35px;
  4021. }
  4022. #u67089 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:737px;
  4026. top:187px;
  4027. width:73px;
  4028. height:35px;
  4029. display:flex;
  4030. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:12px;
  4034. color:#333333;
  4035. }
  4036. #u67089 .text {
  4037. position:absolute;
  4038. align-self:center;
  4039. padding:2px 2px 2px 0px;
  4040. box-sizing:border-box;
  4041. width:100%;
  4042. }
  4043. #u67089_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. visibility:hidden;
  4048. }
  4049. #u67090_img {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:81px;
  4055. height:35px;
  4056. }
  4057. #u67090 {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:810px;
  4061. top:187px;
  4062. width:81px;
  4063. height:35px;
  4064. display:flex;
  4065. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4066. font-weight:400;
  4067. font-style:normal;
  4068. font-size:12px;
  4069. color:#606266;
  4070. }
  4071. #u67090 .text {
  4072. position:absolute;
  4073. align-self:center;
  4074. padding:2px 2px 2px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u67090_text {
  4079. border-width:0px;
  4080. word-wrap:break-word;
  4081. text-transform:none;
  4082. visibility:hidden;
  4083. }
  4084. #u67091_img {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:73px;
  4090. height:35px;
  4091. }
  4092. #u67091 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:0px;
  4096. top:222px;
  4097. width:73px;
  4098. height:35px;
  4099. display:flex;
  4100. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:12px;
  4104. color:#333333;
  4105. }
  4106. #u67091 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 0px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u67091_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u67092_img {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:73px;
  4125. height:35px;
  4126. }
  4127. #u67092 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:73px;
  4131. top:222px;
  4132. width:73px;
  4133. height:35px;
  4134. display:flex;
  4135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:12px;
  4139. color:#333333;
  4140. }
  4141. #u67092 .text {
  4142. position:absolute;
  4143. align-self:center;
  4144. padding:2px 2px 2px 0px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u67092_text {
  4149. border-width:0px;
  4150. word-wrap:break-word;
  4151. text-transform:none;
  4152. visibility:hidden;
  4153. }
  4154. #u67093_img {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:73px;
  4160. height:35px;
  4161. }
  4162. #u67093 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:146px;
  4166. top:222px;
  4167. width:73px;
  4168. height:35px;
  4169. display:flex;
  4170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4171. font-weight:400;
  4172. font-style:normal;
  4173. font-size:12px;
  4174. color:#333333;
  4175. }
  4176. #u67093 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 0px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u67093_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. visibility:hidden;
  4188. }
  4189. #u67094_img {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:74px;
  4195. height:35px;
  4196. }
  4197. #u67094 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:219px;
  4201. top:222px;
  4202. width:74px;
  4203. height:35px;
  4204. display:flex;
  4205. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:12px;
  4209. color:#333333;
  4210. }
  4211. #u67094 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:2px 2px 2px 0px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u67094_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. visibility:hidden;
  4223. }
  4224. #u67095_img {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:73px;
  4230. height:35px;
  4231. }
  4232. #u67095 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:293px;
  4236. top:222px;
  4237. width:73px;
  4238. height:35px;
  4239. display:flex;
  4240. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:12px;
  4244. color:#333333;
  4245. }
  4246. #u67095 .text {
  4247. position:absolute;
  4248. align-self:center;
  4249. padding:2px 2px 2px 0px;
  4250. box-sizing:border-box;
  4251. width:100%;
  4252. }
  4253. #u67095_text {
  4254. border-width:0px;
  4255. word-wrap:break-word;
  4256. text-transform:none;
  4257. visibility:hidden;
  4258. }
  4259. #u67096_img {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:73px;
  4265. height:35px;
  4266. }
  4267. #u67096 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:366px;
  4271. top:222px;
  4272. width:73px;
  4273. height:35px;
  4274. display:flex;
  4275. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:12px;
  4279. color:#333333;
  4280. }
  4281. #u67096 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 0px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u67096_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u67097_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:73px;
  4300. height:35px;
  4301. }
  4302. #u67097 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:439px;
  4306. top:222px;
  4307. width:73px;
  4308. height:35px;
  4309. display:flex;
  4310. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. font-size:12px;
  4314. color:#333333;
  4315. }
  4316. #u67097 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 0px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u67097_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u67098_img {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:73px;
  4335. height:35px;
  4336. }
  4337. #u67098 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:512px;
  4341. top:222px;
  4342. width:73px;
  4343. height:35px;
  4344. display:flex;
  4345. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. font-size:12px;
  4349. color:#333333;
  4350. }
  4351. #u67098 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 0px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u67098_text {
  4359. border-width:0px;
  4360. word-wrap:break-word;
  4361. text-transform:none;
  4362. visibility:hidden;
  4363. }
  4364. #u67099_img {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:79px;
  4370. height:35px;
  4371. }
  4372. #u67099 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:585px;
  4376. top:222px;
  4377. width:79px;
  4378. height:35px;
  4379. display:flex;
  4380. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4381. font-weight:400;
  4382. font-style:normal;
  4383. font-size:12px;
  4384. color:#333333;
  4385. }
  4386. #u67099 .text {
  4387. position:absolute;
  4388. align-self:center;
  4389. padding:2px 2px 2px 0px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u67099_text {
  4394. border-width:0px;
  4395. word-wrap:break-word;
  4396. text-transform:none;
  4397. visibility:hidden;
  4398. }
  4399. #u67100_img {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:0px;
  4403. top:0px;
  4404. width:73px;
  4405. height:35px;
  4406. }
  4407. #u67100 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:664px;
  4411. top:222px;
  4412. width:73px;
  4413. height:35px;
  4414. display:flex;
  4415. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:12px;
  4419. color:#333333;
  4420. }
  4421. #u67100 .text {
  4422. position:absolute;
  4423. align-self:center;
  4424. padding:2px 2px 2px 0px;
  4425. box-sizing:border-box;
  4426. width:100%;
  4427. }
  4428. #u67100_text {
  4429. border-width:0px;
  4430. word-wrap:break-word;
  4431. text-transform:none;
  4432. visibility:hidden;
  4433. }
  4434. #u67101_img {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:73px;
  4440. height:35px;
  4441. }
  4442. #u67101 {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:737px;
  4446. top:222px;
  4447. width:73px;
  4448. height:35px;
  4449. display:flex;
  4450. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4451. font-weight:400;
  4452. font-style:normal;
  4453. font-size:12px;
  4454. color:#333333;
  4455. }
  4456. #u67101 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:2px 2px 2px 0px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u67101_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. visibility:hidden;
  4468. }
  4469. #u67102_img {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:81px;
  4475. height:35px;
  4476. }
  4477. #u67102 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:810px;
  4481. top:222px;
  4482. width:81px;
  4483. height:35px;
  4484. display:flex;
  4485. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:12px;
  4489. color:#606266;
  4490. }
  4491. #u67102 .text {
  4492. position:absolute;
  4493. align-self:center;
  4494. padding:2px 2px 2px 0px;
  4495. box-sizing:border-box;
  4496. width:100%;
  4497. }
  4498. #u67102_text {
  4499. border-width:0px;
  4500. word-wrap:break-word;
  4501. text-transform:none;
  4502. visibility:hidden;
  4503. }
  4504. #u67103 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:0px;
  4510. height:0px;
  4511. }
  4512. #u67104_div {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:140px;
  4518. height:30px;
  4519. background:inherit;
  4520. background-color:rgba(255, 255, 255, 1);
  4521. box-sizing:border-box;
  4522. border-width:1px;
  4523. border-style:solid;
  4524. border-color:rgba(201, 201, 201, 1);
  4525. border-radius:4px;
  4526. -moz-box-shadow:none;
  4527. -webkit-box-shadow:none;
  4528. box-shadow:none;
  4529. font-family:'Microsoft YaHei', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:14px;
  4533. color:#CCCCCC;
  4534. text-align:left;
  4535. }
  4536. #u67104 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:799px;
  4540. top:101px;
  4541. width:140px;
  4542. height:30px;
  4543. display:flex;
  4544. font-family:'Microsoft YaHei', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:14px;
  4548. color:#CCCCCC;
  4549. text-align:left;
  4550. }
  4551. #u67104 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:2px 8px 2px 8px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u67104_text {
  4559. border-width:0px;
  4560. word-wrap:break-word;
  4561. text-transform:none;
  4562. visibility:hidden;
  4563. }
  4564. #u67105_input {
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:127px;
  4569. height:25px;
  4570. padding:2px 2px 2px 2px;
  4571. font-family:'Microsoft YaHei', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:10px;
  4575. letter-spacing:normal;
  4576. color:#000000;
  4577. vertical-align:none;
  4578. text-align:left;
  4579. text-transform:none;
  4580. background-color:transparent;
  4581. border-color:transparent;
  4582. }
  4583. #u67105_input.disabled {
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:127px;
  4588. height:25px;
  4589. padding:2px 2px 2px 2px;
  4590. font-family:'Microsoft YaHei', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:10px;
  4594. letter-spacing:normal;
  4595. color:#000000;
  4596. vertical-align:none;
  4597. text-align:left;
  4598. text-transform:none;
  4599. background-color:transparent;
  4600. border-color:transparent;
  4601. }
  4602. #u67105_div {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:0px;
  4606. top:0px;
  4607. width:127px;
  4608. height:25px;
  4609. background:inherit;
  4610. background-color:rgba(255, 255, 255, 1);
  4611. border:none;
  4612. border-radius:0px;
  4613. -moz-box-shadow:none;
  4614. -webkit-box-shadow:none;
  4615. box-shadow:none;
  4616. font-family:'Microsoft YaHei', sans-serif;
  4617. font-weight:400;
  4618. font-style:normal;
  4619. font-size:10px;
  4620. }
  4621. #u67105 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:807px;
  4625. top:102px;
  4626. width:127px;
  4627. height:25px;
  4628. display:flex;
  4629. font-family:'Microsoft YaHei', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:10px;
  4633. }
  4634. #u67105 .text {
  4635. position:absolute;
  4636. align-self:center;
  4637. padding:2px 2px 2px 2px;
  4638. box-sizing:border-box;
  4639. width:100%;
  4640. }
  4641. #u67105_div.disabled {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:127px;
  4647. height:25px;
  4648. background:inherit;
  4649. background-color:rgba(240, 240, 240, 1);
  4650. border:none;
  4651. border-radius:0px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'Microsoft YaHei', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:10px;
  4659. }
  4660. #u67105.disabled {
  4661. }
  4662. #u67106 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:0px;
  4668. height:0px;
  4669. }
  4670. #u67107_div {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:0px;
  4674. top:0px;
  4675. width:140px;
  4676. height:30px;
  4677. background:inherit;
  4678. background-color:rgba(255, 255, 255, 1);
  4679. box-sizing:border-box;
  4680. border-width:1px;
  4681. border-style:solid;
  4682. border-color:rgba(215, 215, 215, 1);
  4683. border-radius:4px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. font-size:11px;
  4688. }
  4689. #u67107 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:499px;
  4693. top:101px;
  4694. width:140px;
  4695. height:30px;
  4696. display:flex;
  4697. font-size:11px;
  4698. }
  4699. #u67107 .text {
  4700. position:absolute;
  4701. align-self:center;
  4702. padding:2px 2px 2px 2px;
  4703. box-sizing:border-box;
  4704. width:100%;
  4705. }
  4706. #u67107_text {
  4707. border-width:0px;
  4708. word-wrap:break-word;
  4709. text-transform:none;
  4710. visibility:hidden;
  4711. }
  4712. #u67108_input {
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:120px;
  4717. height:23px;
  4718. padding:2px 2px 2px 2px;
  4719. font-family:'ArialMT', 'Arial', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:11px;
  4723. letter-spacing:normal;
  4724. color:#AAAAAA;
  4725. vertical-align:none;
  4726. text-align:left;
  4727. text-transform:none;
  4728. background-color:transparent;
  4729. border-color:transparent;
  4730. }
  4731. #u67108_input.disabled {
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:120px;
  4736. height:23px;
  4737. padding:2px 2px 2px 2px;
  4738. font-family:'ArialMT', 'Arial', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:11px;
  4742. letter-spacing:normal;
  4743. color:#AAAAAA;
  4744. vertical-align:none;
  4745. text-align:left;
  4746. text-transform:none;
  4747. background-color:transparent;
  4748. border-color:transparent;
  4749. }
  4750. #u67108_div {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:120px;
  4756. height:23px;
  4757. background:inherit;
  4758. background-color:rgba(255, 255, 255, 1);
  4759. border:none;
  4760. border-radius:0px;
  4761. -moz-box-shadow:none;
  4762. -webkit-box-shadow:none;
  4763. box-shadow:none;
  4764. font-size:11px;
  4765. color:#AAAAAA;
  4766. }
  4767. #u67108 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:506px;
  4771. top:103px;
  4772. width:120px;
  4773. height:23px;
  4774. display:flex;
  4775. font-size:11px;
  4776. color:#AAAAAA;
  4777. }
  4778. #u67108 .text {
  4779. position:absolute;
  4780. align-self:flex-start;
  4781. padding:2px 2px 2px 2px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u67108_div.disabled {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:120px;
  4791. height:23px;
  4792. background:inherit;
  4793. background-color:rgba(240, 240, 240, 1);
  4794. border:none;
  4795. border-radius:0px;
  4796. -moz-box-shadow:none;
  4797. -webkit-box-shadow:none;
  4798. box-shadow:none;
  4799. font-size:11px;
  4800. color:#AAAAAA;
  4801. }
  4802. #u67108.disabled {
  4803. }
  4804. .u67108_input_option {
  4805. font-size:11px;
  4806. }
  4807. #u67109 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:0px;
  4813. height:0px;
  4814. }
  4815. #u67110_div {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:140px;
  4821. height:30px;
  4822. background:inherit;
  4823. background-color:rgba(255, 255, 255, 1);
  4824. box-sizing:border-box;
  4825. border-width:1px;
  4826. border-style:solid;
  4827. border-color:rgba(215, 215, 215, 1);
  4828. border-radius:4px;
  4829. -moz-box-shadow:none;
  4830. -webkit-box-shadow:none;
  4831. box-shadow:none;
  4832. font-size:11px;
  4833. }
  4834. #u67110 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:649px;
  4838. top:101px;
  4839. width:140px;
  4840. height:30px;
  4841. display:flex;
  4842. font-size:11px;
  4843. }
  4844. #u67110 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u67110_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u67111_input {
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:120px;
  4862. height:23px;
  4863. padding:2px 2px 2px 2px;
  4864. font-family:'ArialMT', 'Arial', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:11px;
  4868. letter-spacing:normal;
  4869. color:#AAAAAA;
  4870. vertical-align:none;
  4871. text-align:left;
  4872. text-transform:none;
  4873. background-color:transparent;
  4874. border-color:transparent;
  4875. }
  4876. #u67111_input.disabled {
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:120px;
  4881. height:23px;
  4882. padding:2px 2px 2px 2px;
  4883. font-family:'ArialMT', 'Arial', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:11px;
  4887. letter-spacing:normal;
  4888. color:#AAAAAA;
  4889. vertical-align:none;
  4890. text-align:left;
  4891. text-transform:none;
  4892. background-color:transparent;
  4893. border-color:transparent;
  4894. }
  4895. #u67111_div {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:120px;
  4901. height:23px;
  4902. background:inherit;
  4903. background-color:rgba(255, 255, 255, 1);
  4904. border:none;
  4905. border-radius:0px;
  4906. -moz-box-shadow:none;
  4907. -webkit-box-shadow:none;
  4908. box-shadow:none;
  4909. font-size:11px;
  4910. color:#AAAAAA;
  4911. }
  4912. #u67111 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:656px;
  4916. top:103px;
  4917. width:120px;
  4918. height:23px;
  4919. display:flex;
  4920. font-size:11px;
  4921. color:#AAAAAA;
  4922. }
  4923. #u67111 .text {
  4924. position:absolute;
  4925. align-self:flex-start;
  4926. padding:2px 2px 2px 2px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u67111_div.disabled {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:120px;
  4936. height:23px;
  4937. background:inherit;
  4938. background-color:rgba(240, 240, 240, 1);
  4939. border:none;
  4940. border-radius:0px;
  4941. -moz-box-shadow:none;
  4942. -webkit-box-shadow:none;
  4943. box-shadow:none;
  4944. font-size:11px;
  4945. color:#AAAAAA;
  4946. }
  4947. #u67111.disabled {
  4948. }
  4949. .u67111_input_option {
  4950. font-size:11px;
  4951. }
  4952. #u67112 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:0px;
  4957. width:0px;
  4958. height:0px;
  4959. }
  4960. #u67113_div {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:140px;
  4966. height:30px;
  4967. background:inherit;
  4968. background-color:rgba(255, 255, 255, 1);
  4969. box-sizing:border-box;
  4970. border-width:1px;
  4971. border-style:solid;
  4972. border-color:rgba(201, 201, 201, 1);
  4973. border-radius:4px;
  4974. -moz-box-shadow:none;
  4975. -webkit-box-shadow:none;
  4976. box-shadow:none;
  4977. font-family:'Microsoft YaHei', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:14px;
  4981. color:#CCCCCC;
  4982. text-align:left;
  4983. }
  4984. #u67113 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:949px;
  4988. top:101px;
  4989. width:140px;
  4990. height:30px;
  4991. display:flex;
  4992. font-family:'Microsoft YaHei', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:14px;
  4996. color:#CCCCCC;
  4997. text-align:left;
  4998. }
  4999. #u67113 .text {
  5000. position:absolute;
  5001. align-self:center;
  5002. padding:2px 8px 2px 8px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u67113_text {
  5007. border-width:0px;
  5008. word-wrap:break-word;
  5009. text-transform:none;
  5010. visibility:hidden;
  5011. }
  5012. #u67114_input {
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:127px;
  5017. height:25px;
  5018. padding:2px 2px 2px 2px;
  5019. font-family:'Microsoft YaHei', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:10px;
  5023. letter-spacing:normal;
  5024. color:#000000;
  5025. vertical-align:none;
  5026. text-align:left;
  5027. text-transform:none;
  5028. background-color:transparent;
  5029. border-color:transparent;
  5030. }
  5031. #u67114_input.disabled {
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:127px;
  5036. height:25px;
  5037. padding:2px 2px 2px 2px;
  5038. font-family:'Microsoft YaHei', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:10px;
  5042. letter-spacing:normal;
  5043. color:#000000;
  5044. vertical-align:none;
  5045. text-align:left;
  5046. text-transform:none;
  5047. background-color:transparent;
  5048. border-color:transparent;
  5049. }
  5050. #u67114_div {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:127px;
  5056. height:25px;
  5057. background:inherit;
  5058. background-color:rgba(255, 255, 255, 1);
  5059. border:none;
  5060. border-radius:0px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. font-family:'Microsoft YaHei', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:10px;
  5068. }
  5069. #u67114 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:957px;
  5073. top:102px;
  5074. width:127px;
  5075. height:25px;
  5076. display:flex;
  5077. font-family:'Microsoft YaHei', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:10px;
  5081. }
  5082. #u67114 .text {
  5083. position:absolute;
  5084. align-self:center;
  5085. padding:2px 2px 2px 2px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u67114_div.disabled {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:127px;
  5095. height:25px;
  5096. background:inherit;
  5097. background-color:rgba(240, 240, 240, 1);
  5098. border:none;
  5099. border-radius:0px;
  5100. -moz-box-shadow:none;
  5101. -webkit-box-shadow:none;
  5102. box-shadow:none;
  5103. font-family:'Microsoft YaHei', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:10px;
  5107. }
  5108. #u67114.disabled {
  5109. }
  5110. #u67115_div {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:59px;
  5116. height:30px;
  5117. background:inherit;
  5118. background-color:rgba(41, 143, 255, 1);
  5119. border:none;
  5120. border-radius:4px;
  5121. -moz-box-shadow:none;
  5122. -webkit-box-shadow:none;
  5123. box-shadow:none;
  5124. font-family:'Microsoft YaHei', sans-serif;
  5125. font-weight:400;
  5126. font-style:normal;
  5127. font-size:14px;
  5128. color:#FFFFFF;
  5129. }
  5130. #u67115 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:799px;
  5134. top:141px;
  5135. width:59px;
  5136. height:30px;
  5137. display:flex;
  5138. font-family:'Microsoft YaHei', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:14px;
  5142. color:#FFFFFF;
  5143. }
  5144. #u67115 .text {
  5145. position:absolute;
  5146. align-self:center;
  5147. padding:5px 15px 5px 15px;
  5148. box-sizing:border-box;
  5149. width:100%;
  5150. }
  5151. #u67115_text {
  5152. border-width:0px;
  5153. white-space:nowrap;
  5154. text-transform:none;
  5155. }
  5156. #u67116_div {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:55px;
  5162. height:30px;
  5163. background:inherit;
  5164. background-color:rgba(255, 255, 255, 1);
  5165. box-sizing:border-box;
  5166. border-width:1px;
  5167. border-style:solid;
  5168. border-color:rgba(170, 170, 170, 1);
  5169. border-radius:4px;
  5170. -moz-box-shadow:none;
  5171. -webkit-box-shadow:none;
  5172. box-shadow:none;
  5173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5174. font-weight:400;
  5175. font-style:normal;
  5176. font-size:12px;
  5177. color:#555555;
  5178. }
  5179. #u67116 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:868px;
  5183. top:141px;
  5184. width:55px;
  5185. height:30px;
  5186. display:flex;
  5187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5188. font-weight:400;
  5189. font-style:normal;
  5190. font-size:12px;
  5191. color:#555555;
  5192. }
  5193. #u67116 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:5px 15px 5px 15px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u67116_text {
  5201. border-width:0px;
  5202. white-space:nowrap;
  5203. text-transform:none;
  5204. }
  5205. #u67117_div {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:73px;
  5211. height:50px;
  5212. background:inherit;
  5213. background-color:rgba(255, 255, 255, 0);
  5214. border:none;
  5215. border-left:0px;
  5216. border-top:0px;
  5217. border-right:0px;
  5218. border-radius:0px;
  5219. border-bottom-right-radius:0px;
  5220. border-bottom-left-radius:0px;
  5221. -moz-box-shadow:none;
  5222. -webkit-box-shadow:none;
  5223. box-shadow:none;
  5224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:18px;
  5228. }
  5229. #u67117 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:348px;
  5233. top:50px;
  5234. width:73px;
  5235. height:50px;
  5236. display:flex;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:18px;
  5241. }
  5242. #u67117 .text {
  5243. position:absolute;
  5244. align-self:center;
  5245. padding:0px 0px 0px 0px;
  5246. box-sizing:border-box;
  5247. width:100%;
  5248. }
  5249. #u67117_text {
  5250. border-width:0px;
  5251. white-space:nowrap;
  5252. text-transform:none;
  5253. }
  5254. #u67118 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:0px;
  5260. height:0px;
  5261. }
  5262. #u67119_div {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:140px;
  5268. height:30px;
  5269. background:inherit;
  5270. background-color:rgba(255, 255, 255, 1);
  5271. box-sizing:border-box;
  5272. border-width:1px;
  5273. border-style:solid;
  5274. border-color:rgba(215, 215, 215, 1);
  5275. border-radius:4px;
  5276. -moz-box-shadow:none;
  5277. -webkit-box-shadow:none;
  5278. box-shadow:none;
  5279. font-size:11px;
  5280. }
  5281. #u67119 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:349px;
  5285. top:101px;
  5286. width:140px;
  5287. height:30px;
  5288. display:flex;
  5289. font-size:11px;
  5290. }
  5291. #u67119 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 2px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u67119_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. visibility:hidden;
  5303. }
  5304. #u67120_input {
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:120px;
  5309. height:23px;
  5310. padding:2px 2px 2px 2px;
  5311. font-family:'ArialMT', 'Arial', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:11px;
  5315. letter-spacing:normal;
  5316. color:#AAAAAA;
  5317. vertical-align:none;
  5318. text-align:left;
  5319. text-transform:none;
  5320. background-color:transparent;
  5321. border-color:transparent;
  5322. }
  5323. #u67120_input.disabled {
  5324. position:absolute;
  5325. left:0px;
  5326. top:0px;
  5327. width:120px;
  5328. height:23px;
  5329. padding:2px 2px 2px 2px;
  5330. font-family:'ArialMT', 'Arial', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:11px;
  5334. letter-spacing:normal;
  5335. color:#AAAAAA;
  5336. vertical-align:none;
  5337. text-align:left;
  5338. text-transform:none;
  5339. background-color:transparent;
  5340. border-color:transparent;
  5341. }
  5342. #u67120_div {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:120px;
  5348. height:23px;
  5349. background:inherit;
  5350. background-color:rgba(255, 255, 255, 1);
  5351. border:none;
  5352. border-radius:0px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. font-size:11px;
  5357. color:#AAAAAA;
  5358. }
  5359. #u67120 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:356px;
  5363. top:103px;
  5364. width:120px;
  5365. height:23px;
  5366. display:flex;
  5367. font-size:11px;
  5368. color:#AAAAAA;
  5369. }
  5370. #u67120 .text {
  5371. position:absolute;
  5372. align-self:flex-start;
  5373. padding:2px 2px 2px 2px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u67120_div.disabled {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:0px;
  5381. top:0px;
  5382. width:120px;
  5383. height:23px;
  5384. background:inherit;
  5385. background-color:rgba(240, 240, 240, 1);
  5386. border:none;
  5387. border-radius:0px;
  5388. -moz-box-shadow:none;
  5389. -webkit-box-shadow:none;
  5390. box-shadow:none;
  5391. font-size:11px;
  5392. color:#AAAAAA;
  5393. }
  5394. #u67120.disabled {
  5395. }
  5396. .u67120_input_option {
  5397. font-size:11px;
  5398. }
  5399. #u67121 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:0px;
  5405. height:0px;
  5406. }
  5407. #u67122_div {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:140px;
  5413. height:30px;
  5414. background:inherit;
  5415. background-color:rgba(255, 255, 255, 1);
  5416. box-sizing:border-box;
  5417. border-width:1px;
  5418. border-style:solid;
  5419. border-color:rgba(201, 201, 201, 1);
  5420. border-radius:4px;
  5421. -moz-box-shadow:none;
  5422. -webkit-box-shadow:none;
  5423. box-shadow:none;
  5424. font-family:'Microsoft YaHei', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:14px;
  5428. color:#CCCCCC;
  5429. text-align:left;
  5430. }
  5431. #u67122 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:1099px;
  5435. top:101px;
  5436. width:140px;
  5437. height:30px;
  5438. display:flex;
  5439. font-family:'Microsoft YaHei', sans-serif;
  5440. font-weight:400;
  5441. font-style:normal;
  5442. font-size:14px;
  5443. color:#CCCCCC;
  5444. text-align:left;
  5445. }
  5446. #u67122 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:2px 8px 2px 8px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u67122_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. visibility:hidden;
  5458. }
  5459. #u67123_input {
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:127px;
  5464. height:25px;
  5465. padding:2px 2px 2px 2px;
  5466. font-family:'Microsoft YaHei', sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. font-size:10px;
  5470. letter-spacing:normal;
  5471. color:#000000;
  5472. vertical-align:none;
  5473. text-align:left;
  5474. text-transform:none;
  5475. background-color:transparent;
  5476. border-color:transparent;
  5477. }
  5478. #u67123_input.disabled {
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:127px;
  5483. height:25px;
  5484. padding:2px 2px 2px 2px;
  5485. font-family:'Microsoft YaHei', sans-serif;
  5486. font-weight:400;
  5487. font-style:normal;
  5488. font-size:10px;
  5489. letter-spacing:normal;
  5490. color:#000000;
  5491. vertical-align:none;
  5492. text-align:left;
  5493. text-transform:none;
  5494. background-color:transparent;
  5495. border-color:transparent;
  5496. }
  5497. #u67123_div {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:127px;
  5503. height:25px;
  5504. background:inherit;
  5505. background-color:rgba(255, 255, 255, 1);
  5506. border:none;
  5507. border-radius:0px;
  5508. -moz-box-shadow:none;
  5509. -webkit-box-shadow:none;
  5510. box-shadow:none;
  5511. font-family:'Microsoft YaHei', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:10px;
  5515. }
  5516. #u67123 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:1107px;
  5520. top:102px;
  5521. width:127px;
  5522. height:25px;
  5523. display:flex;
  5524. font-family:'Microsoft YaHei', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. font-size:10px;
  5528. }
  5529. #u67123 .text {
  5530. position:absolute;
  5531. align-self:center;
  5532. padding:2px 2px 2px 2px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u67123_div.disabled {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:127px;
  5542. height:25px;
  5543. background:inherit;
  5544. background-color:rgba(240, 240, 240, 1);
  5545. border:none;
  5546. border-radius:0px;
  5547. -moz-box-shadow:none;
  5548. -webkit-box-shadow:none;
  5549. box-shadow:none;
  5550. font-family:'Microsoft YaHei', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:10px;
  5554. }
  5555. #u67123.disabled {
  5556. }
  5557. #u67124 {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:0px;
  5563. height:0px;
  5564. }
  5565. #u67125_div {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:140px;
  5571. height:30px;
  5572. background:inherit;
  5573. background-color:rgba(255, 255, 255, 1);
  5574. box-sizing:border-box;
  5575. border-width:1px;
  5576. border-style:solid;
  5577. border-color:rgba(215, 215, 215, 1);
  5578. border-radius:4px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. font-size:11px;
  5583. }
  5584. #u67125 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:649px;
  5588. top:141px;
  5589. width:140px;
  5590. height:30px;
  5591. display:flex;
  5592. font-size:11px;
  5593. }
  5594. #u67125 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u67125_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u67126_input {
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:120px;
  5612. height:23px;
  5613. padding:2px 2px 2px 2px;
  5614. font-family:'ArialMT', 'Arial', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:11px;
  5618. letter-spacing:normal;
  5619. color:#AAAAAA;
  5620. vertical-align:none;
  5621. text-align:left;
  5622. text-transform:none;
  5623. background-color:transparent;
  5624. border-color:transparent;
  5625. }
  5626. #u67126_input.disabled {
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:120px;
  5631. height:23px;
  5632. padding:2px 2px 2px 2px;
  5633. font-family:'ArialMT', 'Arial', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:11px;
  5637. letter-spacing:normal;
  5638. color:#AAAAAA;
  5639. vertical-align:none;
  5640. text-align:left;
  5641. text-transform:none;
  5642. background-color:transparent;
  5643. border-color:transparent;
  5644. }
  5645. #u67126_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:120px;
  5651. height:23px;
  5652. background:inherit;
  5653. background-color:rgba(255, 255, 255, 1);
  5654. border:none;
  5655. border-radius:0px;
  5656. -moz-box-shadow:none;
  5657. -webkit-box-shadow:none;
  5658. box-shadow:none;
  5659. font-size:11px;
  5660. color:#AAAAAA;
  5661. }
  5662. #u67126 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:656px;
  5666. top:143px;
  5667. width:120px;
  5668. height:23px;
  5669. display:flex;
  5670. font-size:11px;
  5671. color:#AAAAAA;
  5672. }
  5673. #u67126 .text {
  5674. position:absolute;
  5675. align-self:flex-start;
  5676. padding:2px 2px 2px 2px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u67126_div.disabled {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:120px;
  5686. height:23px;
  5687. background:inherit;
  5688. background-color:rgba(240, 240, 240, 1);
  5689. border:none;
  5690. border-radius:0px;
  5691. -moz-box-shadow:none;
  5692. -webkit-box-shadow:none;
  5693. box-shadow:none;
  5694. font-size:11px;
  5695. color:#AAAAAA;
  5696. }
  5697. #u67126.disabled {
  5698. }
  5699. .u67126_input_option {
  5700. font-size:11px;
  5701. }
  5702. #u67127 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:0px;
  5708. height:0px;
  5709. }
  5710. #u67128_div {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:140px;
  5716. height:30px;
  5717. background:inherit;
  5718. background-color:rgba(255, 255, 255, 1);
  5719. box-sizing:border-box;
  5720. border-width:1px;
  5721. border-style:solid;
  5722. border-color:rgba(215, 215, 215, 1);
  5723. border-radius:4px;
  5724. -moz-box-shadow:none;
  5725. -webkit-box-shadow:none;
  5726. box-shadow:none;
  5727. font-size:11px;
  5728. }
  5729. #u67128 {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:349px;
  5733. top:141px;
  5734. width:140px;
  5735. height:30px;
  5736. display:flex;
  5737. font-size:11px;
  5738. }
  5739. #u67128 .text {
  5740. position:absolute;
  5741. align-self:center;
  5742. padding:2px 2px 2px 2px;
  5743. box-sizing:border-box;
  5744. width:100%;
  5745. }
  5746. #u67128_text {
  5747. border-width:0px;
  5748. word-wrap:break-word;
  5749. text-transform:none;
  5750. visibility:hidden;
  5751. }
  5752. #u67129_input {
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:120px;
  5757. height:23px;
  5758. padding:2px 2px 2px 2px;
  5759. font-family:'ArialMT', 'Arial', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:11px;
  5763. letter-spacing:normal;
  5764. color:#AAAAAA;
  5765. vertical-align:none;
  5766. text-align:left;
  5767. text-transform:none;
  5768. background-color:transparent;
  5769. border-color:transparent;
  5770. }
  5771. #u67129_input.disabled {
  5772. position:absolute;
  5773. left:0px;
  5774. top:0px;
  5775. width:120px;
  5776. height:23px;
  5777. padding:2px 2px 2px 2px;
  5778. font-family:'ArialMT', 'Arial', sans-serif;
  5779. font-weight:400;
  5780. font-style:normal;
  5781. font-size:11px;
  5782. letter-spacing:normal;
  5783. color:#AAAAAA;
  5784. vertical-align:none;
  5785. text-align:left;
  5786. text-transform:none;
  5787. background-color:transparent;
  5788. border-color:transparent;
  5789. }
  5790. #u67129_div {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:0px;
  5795. width:120px;
  5796. height:23px;
  5797. background:inherit;
  5798. background-color:rgba(255, 255, 255, 1);
  5799. border:none;
  5800. border-radius:0px;
  5801. -moz-box-shadow:none;
  5802. -webkit-box-shadow:none;
  5803. box-shadow:none;
  5804. font-size:11px;
  5805. color:#AAAAAA;
  5806. }
  5807. #u67129 {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:356px;
  5811. top:143px;
  5812. width:120px;
  5813. height:23px;
  5814. display:flex;
  5815. font-size:11px;
  5816. color:#AAAAAA;
  5817. }
  5818. #u67129 .text {
  5819. position:absolute;
  5820. align-self:flex-start;
  5821. padding:2px 2px 2px 2px;
  5822. box-sizing:border-box;
  5823. width:100%;
  5824. }
  5825. #u67129_div.disabled {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:120px;
  5831. height:23px;
  5832. background:inherit;
  5833. background-color:rgba(240, 240, 240, 1);
  5834. border:none;
  5835. border-radius:0px;
  5836. -moz-box-shadow:none;
  5837. -webkit-box-shadow:none;
  5838. box-shadow:none;
  5839. font-size:11px;
  5840. color:#AAAAAA;
  5841. }
  5842. #u67129.disabled {
  5843. }
  5844. .u67129_input_option {
  5845. font-size:11px;
  5846. }
  5847. #u67130 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:0px;
  5853. height:0px;
  5854. }
  5855. #u67131_div {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:140px;
  5861. height:30px;
  5862. background:inherit;
  5863. background-color:rgba(255, 255, 255, 1);
  5864. box-sizing:border-box;
  5865. border-width:1px;
  5866. border-style:solid;
  5867. border-color:rgba(215, 215, 215, 1);
  5868. border-radius:4px;
  5869. -moz-box-shadow:none;
  5870. -webkit-box-shadow:none;
  5871. box-shadow:none;
  5872. font-size:11px;
  5873. }
  5874. #u67131 {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:499px;
  5878. top:141px;
  5879. width:140px;
  5880. height:30px;
  5881. display:flex;
  5882. font-size:11px;
  5883. }
  5884. #u67131 .text {
  5885. position:absolute;
  5886. align-self:center;
  5887. padding:2px 2px 2px 2px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u67131_text {
  5892. border-width:0px;
  5893. word-wrap:break-word;
  5894. text-transform:none;
  5895. visibility:hidden;
  5896. }
  5897. #u67132_input {
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:120px;
  5902. height:23px;
  5903. padding:2px 2px 2px 2px;
  5904. font-family:'ArialMT', 'Arial', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:11px;
  5908. letter-spacing:normal;
  5909. color:#AAAAAA;
  5910. vertical-align:none;
  5911. text-align:left;
  5912. text-transform:none;
  5913. background-color:transparent;
  5914. border-color:transparent;
  5915. }
  5916. #u67132_input.disabled {
  5917. position:absolute;
  5918. left:0px;
  5919. top:0px;
  5920. width:120px;
  5921. height:23px;
  5922. padding:2px 2px 2px 2px;
  5923. font-family:'ArialMT', 'Arial', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:11px;
  5927. letter-spacing:normal;
  5928. color:#AAAAAA;
  5929. vertical-align:none;
  5930. text-align:left;
  5931. text-transform:none;
  5932. background-color:transparent;
  5933. border-color:transparent;
  5934. }
  5935. #u67132_div {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:120px;
  5941. height:23px;
  5942. background:inherit;
  5943. background-color:rgba(255, 255, 255, 1);
  5944. border:none;
  5945. border-radius:0px;
  5946. -moz-box-shadow:none;
  5947. -webkit-box-shadow:none;
  5948. box-shadow:none;
  5949. font-size:11px;
  5950. color:#AAAAAA;
  5951. }
  5952. #u67132 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:506px;
  5956. top:143px;
  5957. width:120px;
  5958. height:23px;
  5959. display:flex;
  5960. font-size:11px;
  5961. color:#AAAAAA;
  5962. }
  5963. #u67132 .text {
  5964. position:absolute;
  5965. align-self:flex-start;
  5966. padding:2px 2px 2px 2px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u67132_div.disabled {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:120px;
  5976. height:23px;
  5977. background:inherit;
  5978. background-color:rgba(240, 240, 240, 1);
  5979. border:none;
  5980. border-radius:0px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-size:11px;
  5985. color:#AAAAAA;
  5986. }
  5987. #u67132.disabled {
  5988. }
  5989. .u67132_input_option {
  5990. font-size:11px;
  5991. }
  5992. #u67133 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:0px;
  5998. height:0px;
  5999. }
  6000. #u67134_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:200px;
  6006. height:1180px;
  6007. background:inherit;
  6008. background-color:rgba(255, 255, 255, 1);
  6009. border:none;
  6010. border-radius:0px;
  6011. -moz-box-shadow:none;
  6012. -webkit-box-shadow:none;
  6013. box-shadow:none;
  6014. }
  6015. #u67134 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:120px;
  6019. top:50px;
  6020. width:200px;
  6021. height:1180px;
  6022. display:flex;
  6023. }
  6024. #u67134 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 2px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u67134_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. visibility:hidden;
  6036. }
  6037. #u67135_div {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:0px;
  6041. top:0px;
  6042. width:200px;
  6043. height:60px;
  6044. background:inherit;
  6045. background-color:rgba(224, 231, 247, 1);
  6046. border:none;
  6047. border-radius:0px;
  6048. -moz-box-shadow:none;
  6049. -webkit-box-shadow:none;
  6050. box-shadow:none;
  6051. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6052. font-weight:500;
  6053. font-style:normal;
  6054. font-size:18px;
  6055. }
  6056. #u67135 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:120px;
  6060. top:50px;
  6061. width:200px;
  6062. height:60px;
  6063. display:flex;
  6064. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6065. font-weight:500;
  6066. font-style:normal;
  6067. font-size:18px;
  6068. }
  6069. #u67135 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:0px 0px 0px 20px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u67135_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. }
  6081. #u67136_div {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:65px;
  6087. height:22px;
  6088. background:inherit;
  6089. background-color:rgba(255, 255, 255, 0);
  6090. border:none;
  6091. border-radius:0px;
  6092. -moz-box-shadow:none;
  6093. -webkit-box-shadow:none;
  6094. box-shadow:none;
  6095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:16px;
  6099. }
  6100. #u67136 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:147px;
  6104. top:257px;
  6105. width:65px;
  6106. height:22px;
  6107. display:flex;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:16px;
  6112. }
  6113. #u67136 .text {
  6114. position:absolute;
  6115. align-self:flex-start;
  6116. padding:0px 0px 0px 0px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u67136_text {
  6121. border-width:0px;
  6122. white-space:nowrap;
  6123. text-transform:none;
  6124. }
  6125. #u67137_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:65px;
  6131. height:22px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 0);
  6134. border:none;
  6135. border-radius:0px;
  6136. -moz-box-shadow:none;
  6137. -webkit-box-shadow:none;
  6138. box-shadow:none;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:16px;
  6143. }
  6144. #u67137 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:147px;
  6148. top:131px;
  6149. width:65px;
  6150. height:22px;
  6151. display:flex;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:16px;
  6156. }
  6157. #u67137 .text {
  6158. position:absolute;
  6159. align-self:flex-start;
  6160. padding:0px 0px 0px 0px;
  6161. box-sizing:border-box;
  6162. width:100%;
  6163. }
  6164. #u67137_text {
  6165. border-width:0px;
  6166. white-space:nowrap;
  6167. text-transform:none;
  6168. }
  6169. #u67138_div {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:65px;
  6175. height:22px;
  6176. background:inherit;
  6177. background-color:rgba(255, 255, 255, 0);
  6178. border:none;
  6179. border-radius:0px;
  6180. -moz-box-shadow:none;
  6181. -webkit-box-shadow:none;
  6182. box-shadow:none;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:16px;
  6187. }
  6188. #u67138 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:147px;
  6192. top:215px;
  6193. width:65px;
  6194. height:22px;
  6195. display:flex;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:16px;
  6200. }
  6201. #u67138 .text {
  6202. position:absolute;
  6203. align-self:flex-start;
  6204. padding:0px 0px 0px 0px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u67138_text {
  6209. border-width:0px;
  6210. white-space:nowrap;
  6211. text-transform:none;
  6212. }
  6213. #u67139_div {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:65px;
  6219. height:22px;
  6220. background:inherit;
  6221. background-color:rgba(255, 255, 255, 0);
  6222. border:none;
  6223. border-radius:0px;
  6224. -moz-box-shadow:none;
  6225. -webkit-box-shadow:none;
  6226. box-shadow:none;
  6227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:16px;
  6231. }
  6232. #u67139 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:147px;
  6236. top:299px;
  6237. width:65px;
  6238. height:22px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:16px;
  6244. }
  6245. #u67139 .text {
  6246. position:absolute;
  6247. align-self:flex-start;
  6248. padding:0px 0px 0px 0px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u67139_text {
  6253. border-width:0px;
  6254. white-space:nowrap;
  6255. text-transform:none;
  6256. }
  6257. #u67140_div {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:65px;
  6263. height:22px;
  6264. background:inherit;
  6265. background-color:rgba(255, 255, 255, 0);
  6266. border:none;
  6267. border-radius:0px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6272. font-weight:400;
  6273. font-style:normal;
  6274. font-size:16px;
  6275. }
  6276. #u67140 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:147px;
  6280. top:173px;
  6281. width:65px;
  6282. height:22px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:16px;
  6288. }
  6289. #u67140 .text {
  6290. position:absolute;
  6291. align-self:flex-start;
  6292. padding:0px 0px 0px 0px;
  6293. box-sizing:border-box;
  6294. width:100%;
  6295. }
  6296. #u67140_text {
  6297. border-width:0px;
  6298. white-space:nowrap;
  6299. text-transform:none;
  6300. }
  6301. #u67141_div {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:0px;
  6305. top:0px;
  6306. width:265px;
  6307. height:36px;
  6308. background:inherit;
  6309. background-color:rgba(242, 242, 242, 1);
  6310. border:none;
  6311. border-left:0px;
  6312. border-top:0px;
  6313. border-right:0px;
  6314. border-radius:0px;
  6315. border-bottom-right-radius:0px;
  6316. border-bottom-left-radius:0px;
  6317. -moz-box-shadow:none;
  6318. -webkit-box-shadow:none;
  6319. box-shadow:none;
  6320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6321. font-weight:400;
  6322. font-style:normal;
  6323. font-size:14px;
  6324. text-align:center;
  6325. }
  6326. #u67141 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:1295px;
  6330. top:94px;
  6331. width:265px;
  6332. height:36px;
  6333. display:flex;
  6334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:14px;
  6338. text-align:center;
  6339. }
  6340. #u67141 .text {
  6341. position:absolute;
  6342. align-self:center;
  6343. padding:0px 0px 0px 0px;
  6344. box-sizing:border-box;
  6345. width:100%;
  6346. }
  6347. #u67141_text {
  6348. border-width:0px;
  6349. word-wrap:break-word;
  6350. text-transform:none;
  6351. }
  6352. #u67142_div {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:265px;
  6358. height:36px;
  6359. background:inherit;
  6360. background-color:rgba(242, 242, 242, 1);
  6361. border:none;
  6362. border-left:0px;
  6363. border-top:0px;
  6364. border-right:0px;
  6365. border-radius:0px;
  6366. border-bottom-right-radius:0px;
  6367. border-bottom-left-radius:0px;
  6368. -moz-box-shadow:none;
  6369. -webkit-box-shadow:none;
  6370. box-shadow:none;
  6371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:14px;
  6375. text-align:center;
  6376. }
  6377. #u67142 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:1295px;
  6381. top:431px;
  6382. width:265px;
  6383. height:36px;
  6384. display:flex;
  6385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:14px;
  6389. text-align:center;
  6390. }
  6391. #u67142 .text {
  6392. position:absolute;
  6393. align-self:center;
  6394. padding:0px 0px 0px 0px;
  6395. box-sizing:border-box;
  6396. width:100%;
  6397. }
  6398. #u67142_text {
  6399. border-width:0px;
  6400. word-wrap:break-word;
  6401. text-transform:none;
  6402. }
  6403. #u67143_div {
  6404. border-width:0px;
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:55px;
  6409. height:30px;
  6410. background:inherit;
  6411. background-color:rgba(255, 255, 255, 1);
  6412. box-sizing:border-box;
  6413. border-width:1px;
  6414. border-style:solid;
  6415. border-color:rgba(170, 170, 170, 1);
  6416. border-radius:4px;
  6417. -moz-box-shadow:none;
  6418. -webkit-box-shadow:none;
  6419. box-shadow:none;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:12px;
  6424. color:#555555;
  6425. }
  6426. #u67143 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:349px;
  6430. top:191px;
  6431. width:55px;
  6432. height:30px;
  6433. display:flex;
  6434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:12px;
  6438. color:#555555;
  6439. }
  6440. #u67143 .text {
  6441. position:absolute;
  6442. align-self:center;
  6443. padding:5px 15px 5px 15px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u67143_text {
  6448. border-width:0px;
  6449. white-space:nowrap;
  6450. text-transform:none;
  6451. }
  6452. #u67144_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:822px;
  6458. height:125px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 0);
  6461. border:none;
  6462. border-left:0px;
  6463. border-top:0px;
  6464. border-right:0px;
  6465. border-radius:0px;
  6466. border-bottom-right-radius:0px;
  6467. border-bottom-left-radius:0px;
  6468. -moz-box-shadow:none;
  6469. -webkit-box-shadow:none;
  6470. box-shadow:none;
  6471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6472. font-weight:400;
  6473. font-style:normal;
  6474. font-size:18px;
  6475. color:#D9001B;
  6476. }
  6477. #u67144 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:364px;
  6481. top:554px;
  6482. width:822px;
  6483. height:125px;
  6484. display:flex;
  6485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. font-size:18px;
  6489. color:#D9001B;
  6490. }
  6491. #u67144 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:0px 0px 0px 0px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u67144_text {
  6499. border-width:0px;
  6500. white-space:nowrap;
  6501. text-transform:none;
  6502. }
  6503. #u67145_div {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:689px;
  6509. height:210px;
  6510. background:inherit;
  6511. background-color:rgba(255, 255, 255, 0);
  6512. border:none;
  6513. border-left:0px;
  6514. border-top:0px;
  6515. border-right:0px;
  6516. border-radius:0px;
  6517. border-bottom-right-radius:0px;
  6518. border-bottom-left-radius:0px;
  6519. -moz-box-shadow:none;
  6520. -webkit-box-shadow:none;
  6521. box-shadow:none;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:18px;
  6526. color:#D9001B;
  6527. line-height:30px;
  6528. }
  6529. #u67145 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:364px;
  6533. top:721px;
  6534. width:689px;
  6535. height:210px;
  6536. display:flex;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:18px;
  6541. color:#D9001B;
  6542. line-height:30px;
  6543. }
  6544. #u67145 .text {
  6545. position:absolute;
  6546. align-self:center;
  6547. padding:0px 0px 0px 0px;
  6548. box-sizing:border-box;
  6549. width:100%;
  6550. }
  6551. #u67145_text {
  6552. border-width:0px;
  6553. white-space:nowrap;
  6554. text-transform:none;
  6555. }
  6556. #u67146_div {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:114px;
  6562. height:117px;
  6563. background:inherit;
  6564. background-color:rgba(255, 255, 255, 1);
  6565. box-sizing:border-box;
  6566. border-width:1px;
  6567. border-style:solid;
  6568. border-color:rgba(170, 170, 170, 1);
  6569. border-radius:4px;
  6570. -moz-box-shadow:none;
  6571. -webkit-box-shadow:none;
  6572. box-shadow:none;
  6573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:12px;
  6577. color:#555555;
  6578. }
  6579. #u67146 {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:1300px;
  6583. top:141px;
  6584. width:114px;
  6585. height:117px;
  6586. display:flex;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:12px;
  6591. color:#555555;
  6592. }
  6593. #u67146 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:5px 15px 5px 15px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u67146_text {
  6601. border-width:0px;
  6602. word-wrap:break-word;
  6603. text-transform:none;
  6604. visibility:hidden;
  6605. }
  6606. #u67147_div {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:114px;
  6612. height:30px;
  6613. background:inherit;
  6614. background-color:rgba(51, 51, 51, 1);
  6615. box-sizing:border-box;
  6616. border-width:1px;
  6617. border-style:solid;
  6618. border-color:rgba(170, 170, 170, 1);
  6619. border-radius:4px;
  6620. border-bottom-right-radius:0px;
  6621. border-bottom-left-radius:0px;
  6622. -moz-box-shadow:none;
  6623. -webkit-box-shadow:none;
  6624. box-shadow:none;
  6625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6626. font-weight:400;
  6627. font-style:normal;
  6628. font-size:12px;
  6629. color:#FFFFFF;
  6630. }
  6631. #u67147 {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:1300px;
  6635. top:141px;
  6636. width:114px;
  6637. height:30px;
  6638. display:flex;
  6639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:12px;
  6643. color:#FFFFFF;
  6644. }
  6645. #u67147 .text {
  6646. position:absolute;
  6647. align-self:center;
  6648. padding:5px 15px 5px 15px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u67147_text {
  6653. border-width:0px;
  6654. word-wrap:break-word;
  6655. text-transform:none;
  6656. }
  6657. #u67148_div {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:20px;
  6663. height:33px;
  6664. background:inherit;
  6665. background-color:rgba(255, 255, 255, 0);
  6666. border:none;
  6667. border-radius:0px;
  6668. -moz-box-shadow:none;
  6669. -webkit-box-shadow:none;
  6670. box-shadow:none;
  6671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:24px;
  6675. color:#555555;
  6676. text-align:center;
  6677. }
  6678. #u67148 {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:1347px;
  6682. top:188px;
  6683. width:20px;
  6684. height:33px;
  6685. display:flex;
  6686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6687. font-weight:400;
  6688. font-style:normal;
  6689. font-size:24px;
  6690. color:#555555;
  6691. text-align:center;
  6692. }
  6693. #u67148 .text {
  6694. position:absolute;
  6695. align-self:flex-start;
  6696. padding:0px 0px 0px 0px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u67148_text {
  6701. border-width:0px;
  6702. white-space:nowrap;
  6703. text-transform:none;
  6704. }
  6705. #u67149_div {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:114px;
  6711. height:117px;
  6712. background:inherit;
  6713. background-color:rgba(255, 255, 255, 1);
  6714. box-sizing:border-box;
  6715. border-width:1px;
  6716. border-style:solid;
  6717. border-color:rgba(170, 170, 170, 1);
  6718. border-radius:4px;
  6719. -moz-box-shadow:none;
  6720. -webkit-box-shadow:none;
  6721. box-shadow:none;
  6722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6723. font-weight:400;
  6724. font-style:normal;
  6725. font-size:12px;
  6726. color:#555555;
  6727. }
  6728. #u67149 {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:1441px;
  6732. top:141px;
  6733. width:114px;
  6734. height:117px;
  6735. display:flex;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:12px;
  6740. color:#555555;
  6741. }
  6742. #u67149 .text {
  6743. position:absolute;
  6744. align-self:center;
  6745. padding:5px 15px 5px 15px;
  6746. box-sizing:border-box;
  6747. width:100%;
  6748. }
  6749. #u67149_text {
  6750. border-width:0px;
  6751. word-wrap:break-word;
  6752. text-transform:none;
  6753. visibility:hidden;
  6754. }
  6755. #u67150_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:114px;
  6761. height:30px;
  6762. background:inherit;
  6763. background-color:rgba(51, 51, 51, 1);
  6764. box-sizing:border-box;
  6765. border-width:1px;
  6766. border-style:solid;
  6767. border-color:rgba(170, 170, 170, 1);
  6768. border-radius:4px;
  6769. border-bottom-right-radius:0px;
  6770. border-bottom-left-radius:0px;
  6771. -moz-box-shadow:none;
  6772. -webkit-box-shadow:none;
  6773. box-shadow:none;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#FFFFFF;
  6779. }
  6780. #u67150 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:1441px;
  6784. top:141px;
  6785. width:114px;
  6786. height:30px;
  6787. display:flex;
  6788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6789. font-weight:400;
  6790. font-style:normal;
  6791. font-size:12px;
  6792. color:#FFFFFF;
  6793. }
  6794. #u67150 .text {
  6795. position:absolute;
  6796. align-self:center;
  6797. padding:5px 15px 5px 15px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u67150_text {
  6802. border-width:0px;
  6803. word-wrap:break-word;
  6804. text-transform:none;
  6805. }
  6806. #u67151_div {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:15px;
  6812. height:33px;
  6813. background:inherit;
  6814. background-color:rgba(255, 255, 255, 0);
  6815. border:none;
  6816. border-radius:0px;
  6817. -moz-box-shadow:none;
  6818. -webkit-box-shadow:none;
  6819. box-shadow:none;
  6820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:24px;
  6824. color:#555555;
  6825. text-align:center;
  6826. }
  6827. #u67151 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:1491px;
  6831. top:188px;
  6832. width:15px;
  6833. height:33px;
  6834. display:flex;
  6835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:24px;
  6839. color:#555555;
  6840. text-align:center;
  6841. }
  6842. #u67151 .text {
  6843. position:absolute;
  6844. align-self:flex-start;
  6845. padding:0px 0px 0px 0px;
  6846. box-sizing:border-box;
  6847. width:100%;
  6848. }
  6849. #u67151_text {
  6850. border-width:0px;
  6851. white-space:nowrap;
  6852. text-transform:none;
  6853. }
  6854. #u67152_div {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:0px;
  6858. top:0px;
  6859. width:114px;
  6860. height:117px;
  6861. background:inherit;
  6862. background-color:rgba(255, 255, 255, 1);
  6863. box-sizing:border-box;
  6864. border-width:1px;
  6865. border-style:solid;
  6866. border-color:rgba(170, 170, 170, 1);
  6867. border-radius:4px;
  6868. -moz-box-shadow:none;
  6869. -webkit-box-shadow:none;
  6870. box-shadow:none;
  6871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6872. font-weight:400;
  6873. font-style:normal;
  6874. font-size:12px;
  6875. color:#555555;
  6876. }
  6877. #u67152 {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:1300px;
  6881. top:271px;
  6882. width:114px;
  6883. height:117px;
  6884. display:flex;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:12px;
  6889. color:#555555;
  6890. }
  6891. #u67152 .text {
  6892. position:absolute;
  6893. align-self:center;
  6894. padding:5px 15px 5px 15px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u67152_text {
  6899. border-width:0px;
  6900. word-wrap:break-word;
  6901. text-transform:none;
  6902. visibility:hidden;
  6903. }
  6904. #u67153_div {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:0px;
  6908. top:0px;
  6909. width:114px;
  6910. height:30px;
  6911. background:inherit;
  6912. background-color:rgba(51, 51, 51, 1);
  6913. box-sizing:border-box;
  6914. border-width:1px;
  6915. border-style:solid;
  6916. border-color:rgba(170, 170, 170, 1);
  6917. border-radius:4px;
  6918. border-bottom-right-radius:0px;
  6919. border-bottom-left-radius:0px;
  6920. -moz-box-shadow:none;
  6921. -webkit-box-shadow:none;
  6922. box-shadow:none;
  6923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6924. font-weight:400;
  6925. font-style:normal;
  6926. font-size:12px;
  6927. color:#FFFFFF;
  6928. }
  6929. #u67153 {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:1300px;
  6933. top:271px;
  6934. width:114px;
  6935. height:30px;
  6936. display:flex;
  6937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:12px;
  6941. color:#FFFFFF;
  6942. }
  6943. #u67153 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:5px 15px 5px 15px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u67153_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. }
  6955. #u67154_div {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:15px;
  6961. height:33px;
  6962. background:inherit;
  6963. background-color:rgba(255, 255, 255, 0);
  6964. border:none;
  6965. border-radius:0px;
  6966. -moz-box-shadow:none;
  6967. -webkit-box-shadow:none;
  6968. box-shadow:none;
  6969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6970. font-weight:400;
  6971. font-style:normal;
  6972. font-size:24px;
  6973. color:#555555;
  6974. text-align:center;
  6975. }
  6976. #u67154 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:1350px;
  6980. top:318px;
  6981. width:15px;
  6982. height:33px;
  6983. display:flex;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:24px;
  6988. color:#555555;
  6989. text-align:center;
  6990. }
  6991. #u67154 .text {
  6992. position:absolute;
  6993. align-self:flex-start;
  6994. padding:0px 0px 0px 0px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u67154_text {
  6999. border-width:0px;
  7000. white-space:nowrap;
  7001. text-transform:none;
  7002. }
  7003. #u67155_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:114px;
  7009. height:117px;
  7010. background:inherit;
  7011. background-color:rgba(255, 255, 255, 1);
  7012. box-sizing:border-box;
  7013. border-width:1px;
  7014. border-style:solid;
  7015. border-color:rgba(170, 170, 170, 1);
  7016. border-radius:4px;
  7017. -moz-box-shadow:none;
  7018. -webkit-box-shadow:none;
  7019. box-shadow:none;
  7020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7021. font-weight:400;
  7022. font-style:normal;
  7023. font-size:12px;
  7024. color:#555555;
  7025. }
  7026. #u67155 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:1441px;
  7030. top:271px;
  7031. width:114px;
  7032. height:117px;
  7033. display:flex;
  7034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7035. font-weight:400;
  7036. font-style:normal;
  7037. font-size:12px;
  7038. color:#555555;
  7039. }
  7040. #u67155 .text {
  7041. position:absolute;
  7042. align-self:center;
  7043. padding:5px 15px 5px 15px;
  7044. box-sizing:border-box;
  7045. width:100%;
  7046. }
  7047. #u67155_text {
  7048. border-width:0px;
  7049. word-wrap:break-word;
  7050. text-transform:none;
  7051. visibility:hidden;
  7052. }
  7053. #u67156_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:114px;
  7059. height:30px;
  7060. background:inherit;
  7061. background-color:rgba(51, 51, 51, 1);
  7062. box-sizing:border-box;
  7063. border-width:1px;
  7064. border-style:solid;
  7065. border-color:rgba(170, 170, 170, 1);
  7066. border-radius:4px;
  7067. border-bottom-right-radius:0px;
  7068. border-bottom-left-radius:0px;
  7069. -moz-box-shadow:none;
  7070. -webkit-box-shadow:none;
  7071. box-shadow:none;
  7072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7073. font-weight:400;
  7074. font-style:normal;
  7075. font-size:12px;
  7076. color:#FFFFFF;
  7077. }
  7078. #u67156 {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:1441px;
  7082. top:271px;
  7083. width:114px;
  7084. height:30px;
  7085. display:flex;
  7086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:12px;
  7090. color:#FFFFFF;
  7091. }
  7092. #u67156 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:5px 15px 5px 15px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u67156_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. }
  7104. #u67157_div {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:15px;
  7110. height:33px;
  7111. background:inherit;
  7112. background-color:rgba(255, 255, 255, 0);
  7113. border:none;
  7114. border-radius:0px;
  7115. -moz-box-shadow:none;
  7116. -webkit-box-shadow:none;
  7117. box-shadow:none;
  7118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:24px;
  7122. color:#555555;
  7123. text-align:center;
  7124. }
  7125. #u67157 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:1491px;
  7129. top:318px;
  7130. width:15px;
  7131. height:33px;
  7132. display:flex;
  7133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:24px;
  7137. color:#555555;
  7138. text-align:center;
  7139. }
  7140. #u67157 .text {
  7141. position:absolute;
  7142. align-self:flex-start;
  7143. padding:0px 0px 0px 0px;
  7144. box-sizing:border-box;
  7145. width:100%;
  7146. }
  7147. #u67157_text {
  7148. border-width:0px;
  7149. white-space:nowrap;
  7150. text-transform:none;
  7151. }
  7152. #u67158_div {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:43px;
  7158. height:20px;
  7159. background:inherit;
  7160. background-color:rgba(242, 242, 242, 0);
  7161. border:none;
  7162. border-left:0px;
  7163. border-top:0px;
  7164. border-right:0px;
  7165. border-radius:0px;
  7166. border-bottom-right-radius:0px;
  7167. border-bottom-left-radius:0px;
  7168. -moz-box-shadow:none;
  7169. -webkit-box-shadow:none;
  7170. box-shadow:none;
  7171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7172. font-weight:400;
  7173. font-style:normal;
  7174. font-size:14px;
  7175. color:#7F7F7F;
  7176. text-align:center;
  7177. }
  7178. #u67158 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:1309px;
  7182. top:481px;
  7183. width:43px;
  7184. height:20px;
  7185. display:flex;
  7186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7187. font-weight:400;
  7188. font-style:normal;
  7189. font-size:14px;
  7190. color:#7F7F7F;
  7191. text-align:center;
  7192. }
  7193. #u67158 .text {
  7194. position:absolute;
  7195. align-self:center;
  7196. padding:0px 0px 0px 0px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u67158_text {
  7201. border-width:0px;
  7202. white-space:nowrap;
  7203. text-transform:none;
  7204. }
  7205. #u67159_div {
  7206. border-width:0px;
  7207. position:absolute;
  7208. left:0px;
  7209. top:0px;
  7210. width:29px;
  7211. height:20px;
  7212. background:inherit;
  7213. background-color:rgba(242, 242, 242, 0);
  7214. border:none;
  7215. border-left:0px;
  7216. border-top:0px;
  7217. border-right:0px;
  7218. border-radius:0px;
  7219. border-bottom-right-radius:0px;
  7220. border-bottom-left-radius:0px;
  7221. -moz-box-shadow:none;
  7222. -webkit-box-shadow:none;
  7223. box-shadow:none;
  7224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7225. font-weight:400;
  7226. font-style:normal;
  7227. font-size:14px;
  7228. color:#7F7F7F;
  7229. text-align:center;
  7230. }
  7231. #u67159 {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:1410px;
  7235. top:481px;
  7236. width:29px;
  7237. height:20px;
  7238. display:flex;
  7239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7240. font-weight:400;
  7241. font-style:normal;
  7242. font-size:14px;
  7243. color:#7F7F7F;
  7244. text-align:center;
  7245. }
  7246. #u67159 .text {
  7247. position:absolute;
  7248. align-self:center;
  7249. padding:0px 0px 0px 0px;
  7250. box-sizing:border-box;
  7251. width:100%;
  7252. }
  7253. #u67159_text {
  7254. border-width:0px;
  7255. white-space:nowrap;
  7256. text-transform:none;
  7257. }
  7258. #u67160_div {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:0px;
  7262. top:0px;
  7263. width:43px;
  7264. height:20px;
  7265. background:inherit;
  7266. background-color:rgba(242, 242, 242, 0);
  7267. border:none;
  7268. border-left:0px;
  7269. border-top:0px;
  7270. border-right:0px;
  7271. border-radius:0px;
  7272. border-bottom-right-radius:0px;
  7273. border-bottom-left-radius:0px;
  7274. -moz-box-shadow:none;
  7275. -webkit-box-shadow:none;
  7276. box-shadow:none;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:14px;
  7281. color:#7F7F7F;
  7282. text-align:center;
  7283. }
  7284. #u67160 {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:1495px;
  7288. top:481px;
  7289. width:43px;
  7290. height:20px;
  7291. display:flex;
  7292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:14px;
  7296. color:#7F7F7F;
  7297. text-align:center;
  7298. }
  7299. #u67160 .text {
  7300. position:absolute;
  7301. align-self:center;
  7302. padding:0px 0px 0px 0px;
  7303. box-sizing:border-box;
  7304. width:100%;
  7305. }
  7306. #u67160_text {
  7307. border-width:0px;
  7308. white-space:nowrap;
  7309. text-transform:none;
  7310. }
  7311. #u67161_div {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:78px;
  7317. height:20px;
  7318. background:inherit;
  7319. background-color:rgba(242, 242, 242, 0);
  7320. border:none;
  7321. border-left:0px;
  7322. border-top:0px;
  7323. border-right:0px;
  7324. border-radius:0px;
  7325. border-bottom-right-radius:0px;
  7326. border-bottom-left-radius:0px;
  7327. -moz-box-shadow:none;
  7328. -webkit-box-shadow:none;
  7329. box-shadow:none;
  7330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7331. font-weight:400;
  7332. font-style:normal;
  7333. font-size:14px;
  7334. }
  7335. #u67161 {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:1309px;
  7339. top:529px;
  7340. width:78px;
  7341. height:20px;
  7342. display:flex;
  7343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. font-size:14px;
  7347. }
  7348. #u67161 .text {
  7349. position:absolute;
  7350. align-self:center;
  7351. padding:0px 0px 0px 0px;
  7352. box-sizing:border-box;
  7353. width:100%;
  7354. }
  7355. #u67161_text {
  7356. border-width:0px;
  7357. white-space:nowrap;
  7358. text-transform:none;
  7359. }
  7360. #u67162_div {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:36px;
  7366. height:20px;
  7367. background:inherit;
  7368. background-color:rgba(242, 242, 242, 0);
  7369. border:none;
  7370. border-left:0px;
  7371. border-top:0px;
  7372. border-right:0px;
  7373. border-radius:0px;
  7374. border-bottom-right-radius:0px;
  7375. border-bottom-left-radius:0px;
  7376. -moz-box-shadow:none;
  7377. -webkit-box-shadow:none;
  7378. box-shadow:none;
  7379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:14px;
  7383. }
  7384. #u67162 {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:1410px;
  7388. top:529px;
  7389. width:36px;
  7390. height:20px;
  7391. display:flex;
  7392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7393. font-weight:400;
  7394. font-style:normal;
  7395. font-size:14px;
  7396. }
  7397. #u67162 .text {
  7398. position:absolute;
  7399. align-self:center;
  7400. padding:0px 0px 0px 0px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u67162_text {
  7405. border-width:0px;
  7406. white-space:nowrap;
  7407. text-transform:none;
  7408. }
  7409. #u67163_div {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:43px;
  7415. height:20px;
  7416. background:inherit;
  7417. background-color:rgba(242, 242, 242, 0);
  7418. border:none;
  7419. border-left:0px;
  7420. border-top:0px;
  7421. border-right:0px;
  7422. border-radius:0px;
  7423. border-bottom-right-radius:0px;
  7424. border-bottom-left-radius:0px;
  7425. -moz-box-shadow:none;
  7426. -webkit-box-shadow:none;
  7427. box-shadow:none;
  7428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7429. font-weight:400;
  7430. font-style:normal;
  7431. font-size:14px;
  7432. }
  7433. #u67163 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:1495px;
  7437. top:529px;
  7438. width:43px;
  7439. height:20px;
  7440. display:flex;
  7441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:14px;
  7445. }
  7446. #u67163 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:0px 0px 0px 0px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u67163_text {
  7454. border-width:0px;
  7455. white-space:nowrap;
  7456. text-transform:none;
  7457. }
  7458. #u67164_div {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:29px;
  7464. height:20px;
  7465. background:inherit;
  7466. background-color:rgba(242, 242, 242, 0);
  7467. border:none;
  7468. border-left:0px;
  7469. border-top:0px;
  7470. border-right:0px;
  7471. border-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:14px;
  7481. }
  7482. #u67164 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:1309px;
  7486. top:569px;
  7487. width:29px;
  7488. height:20px;
  7489. display:flex;
  7490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7491. font-weight:400;
  7492. font-style:normal;
  7493. font-size:14px;
  7494. }
  7495. #u67164 .text {
  7496. position:absolute;
  7497. align-self:center;
  7498. padding:0px 0px 0px 0px;
  7499. box-sizing:border-box;
  7500. width:100%;
  7501. }
  7502. #u67164_text {
  7503. border-width:0px;
  7504. white-space:nowrap;
  7505. text-transform:none;
  7506. }
  7507. #u67165_div {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:36px;
  7513. height:20px;
  7514. background:inherit;
  7515. background-color:rgba(242, 242, 242, 0);
  7516. border:none;
  7517. border-left:0px;
  7518. border-top:0px;
  7519. border-right:0px;
  7520. border-radius:0px;
  7521. border-bottom-right-radius:0px;
  7522. border-bottom-left-radius:0px;
  7523. -moz-box-shadow:none;
  7524. -webkit-box-shadow:none;
  7525. box-shadow:none;
  7526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7527. font-weight:400;
  7528. font-style:normal;
  7529. font-size:14px;
  7530. }
  7531. #u67165 {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:1410px;
  7535. top:569px;
  7536. width:36px;
  7537. height:20px;
  7538. display:flex;
  7539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. font-size:14px;
  7543. }
  7544. #u67165 .text {
  7545. position:absolute;
  7546. align-self:center;
  7547. padding:0px 0px 0px 0px;
  7548. box-sizing:border-box;
  7549. width:100%;
  7550. }
  7551. #u67165_text {
  7552. border-width:0px;
  7553. white-space:nowrap;
  7554. text-transform:none;
  7555. }
  7556. #u67166_div {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:0px;
  7561. width:29px;
  7562. height:20px;
  7563. background:inherit;
  7564. background-color:rgba(242, 242, 242, 0);
  7565. border:none;
  7566. border-left:0px;
  7567. border-top:0px;
  7568. border-right:0px;
  7569. border-radius:0px;
  7570. border-bottom-right-radius:0px;
  7571. border-bottom-left-radius:0px;
  7572. -moz-box-shadow:none;
  7573. -webkit-box-shadow:none;
  7574. box-shadow:none;
  7575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7576. font-weight:400;
  7577. font-style:normal;
  7578. font-size:14px;
  7579. }
  7580. #u67166 {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:1495px;
  7584. top:569px;
  7585. width:29px;
  7586. height:20px;
  7587. display:flex;
  7588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7589. font-weight:400;
  7590. font-style:normal;
  7591. font-size:14px;
  7592. }
  7593. #u67166 .text {
  7594. position:absolute;
  7595. align-self:center;
  7596. padding:0px 0px 0px 0px;
  7597. box-sizing:border-box;
  7598. width:100%;
  7599. }
  7600. #u67166_text {
  7601. border-width:0px;
  7602. white-space:nowrap;
  7603. text-transform:none;
  7604. }
  7605. #u67167_div {
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:0px;
  7609. top:0px;
  7610. width:29px;
  7611. height:20px;
  7612. background:inherit;
  7613. background-color:rgba(242, 242, 242, 0);
  7614. border:none;
  7615. border-left:0px;
  7616. border-top:0px;
  7617. border-right:0px;
  7618. border-radius:0px;
  7619. border-bottom-right-radius:0px;
  7620. border-bottom-left-radius:0px;
  7621. -moz-box-shadow:none;
  7622. -webkit-box-shadow:none;
  7623. box-shadow:none;
  7624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. font-size:14px;
  7628. }
  7629. #u67167 {
  7630. border-width:0px;
  7631. position:absolute;
  7632. left:1309px;
  7633. top:609px;
  7634. width:29px;
  7635. height:20px;
  7636. display:flex;
  7637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:14px;
  7641. }
  7642. #u67167 .text {
  7643. position:absolute;
  7644. align-self:center;
  7645. padding:0px 0px 0px 0px;
  7646. box-sizing:border-box;
  7647. width:100%;
  7648. }
  7649. #u67167_text {
  7650. border-width:0px;
  7651. white-space:nowrap;
  7652. text-transform:none;
  7653. }
  7654. #u67168_div {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:36px;
  7660. height:20px;
  7661. background:inherit;
  7662. background-color:rgba(242, 242, 242, 0);
  7663. border:none;
  7664. border-left:0px;
  7665. border-top:0px;
  7666. border-right:0px;
  7667. border-radius:0px;
  7668. border-bottom-right-radius:0px;
  7669. border-bottom-left-radius:0px;
  7670. -moz-box-shadow:none;
  7671. -webkit-box-shadow:none;
  7672. box-shadow:none;
  7673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7674. font-weight:400;
  7675. font-style:normal;
  7676. font-size:14px;
  7677. }
  7678. #u67168 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:1410px;
  7682. top:609px;
  7683. width:36px;
  7684. height:20px;
  7685. display:flex;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:14px;
  7690. }
  7691. #u67168 .text {
  7692. position:absolute;
  7693. align-self:center;
  7694. padding:0px 0px 0px 0px;
  7695. box-sizing:border-box;
  7696. width:100%;
  7697. }
  7698. #u67168_text {
  7699. border-width:0px;
  7700. white-space:nowrap;
  7701. text-transform:none;
  7702. }
  7703. #u67169_div {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:29px;
  7709. height:20px;
  7710. background:inherit;
  7711. background-color:rgba(242, 242, 242, 0);
  7712. border:none;
  7713. border-left:0px;
  7714. border-top:0px;
  7715. border-right:0px;
  7716. border-radius:0px;
  7717. border-bottom-right-radius:0px;
  7718. border-bottom-left-radius:0px;
  7719. -moz-box-shadow:none;
  7720. -webkit-box-shadow:none;
  7721. box-shadow:none;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:14px;
  7726. }
  7727. #u67169 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:1495px;
  7731. top:609px;
  7732. width:29px;
  7733. height:20px;
  7734. display:flex;
  7735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7736. font-weight:400;
  7737. font-style:normal;
  7738. font-size:14px;
  7739. }
  7740. #u67169 .text {
  7741. position:absolute;
  7742. align-self:center;
  7743. padding:0px 0px 0px 0px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u67169_text {
  7748. border-width:0px;
  7749. white-space:nowrap;
  7750. text-transform:none;
  7751. }
  7752. #u67170_div {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:29px;
  7758. height:20px;
  7759. background:inherit;
  7760. background-color:rgba(242, 242, 242, 0);
  7761. border:none;
  7762. border-left:0px;
  7763. border-top:0px;
  7764. border-right:0px;
  7765. border-radius:0px;
  7766. border-bottom-right-radius:0px;
  7767. border-bottom-left-radius:0px;
  7768. -moz-box-shadow:none;
  7769. -webkit-box-shadow:none;
  7770. box-shadow:none;
  7771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7772. font-weight:400;
  7773. font-style:normal;
  7774. font-size:14px;
  7775. }
  7776. #u67170 {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:1309px;
  7780. top:645px;
  7781. width:29px;
  7782. height:20px;
  7783. display:flex;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:14px;
  7788. }
  7789. #u67170 .text {
  7790. position:absolute;
  7791. align-self:center;
  7792. padding:0px 0px 0px 0px;
  7793. box-sizing:border-box;
  7794. width:100%;
  7795. }
  7796. #u67170_text {
  7797. border-width:0px;
  7798. white-space:nowrap;
  7799. text-transform:none;
  7800. }
  7801. #u67171_div {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:0px;
  7805. top:0px;
  7806. width:33px;
  7807. height:20px;
  7808. background:inherit;
  7809. background-color:rgba(242, 242, 242, 0);
  7810. border:none;
  7811. border-left:0px;
  7812. border-top:0px;
  7813. border-right:0px;
  7814. border-radius:0px;
  7815. border-bottom-right-radius:0px;
  7816. border-bottom-left-radius:0px;
  7817. -moz-box-shadow:none;
  7818. -webkit-box-shadow:none;
  7819. box-shadow:none;
  7820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:14px;
  7824. }
  7825. #u67171 {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:1410px;
  7829. top:645px;
  7830. width:33px;
  7831. height:20px;
  7832. display:flex;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:14px;
  7837. }
  7838. #u67171 .text {
  7839. position:absolute;
  7840. align-self:center;
  7841. padding:0px 0px 0px 0px;
  7842. box-sizing:border-box;
  7843. width:100%;
  7844. }
  7845. #u67171_text {
  7846. border-width:0px;
  7847. white-space:nowrap;
  7848. text-transform:none;
  7849. }
  7850. #u67172_div {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:0px;
  7854. top:0px;
  7855. width:29px;
  7856. height:20px;
  7857. background:inherit;
  7858. background-color:rgba(242, 242, 242, 0);
  7859. border:none;
  7860. border-left:0px;
  7861. border-top:0px;
  7862. border-right:0px;
  7863. border-radius:0px;
  7864. border-bottom-right-radius:0px;
  7865. border-bottom-left-radius:0px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:14px;
  7873. }
  7874. #u67172 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:1495px;
  7878. top:645px;
  7879. width:29px;
  7880. height:20px;
  7881. display:flex;
  7882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7883. font-weight:400;
  7884. font-style:normal;
  7885. font-size:14px;
  7886. }
  7887. #u67172 .text {
  7888. position:absolute;
  7889. align-self:center;
  7890. padding:0px 0px 0px 0px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u67172_text {
  7895. border-width:0px;
  7896. white-space:nowrap;
  7897. text-transform:none;
  7898. }
  7899. #u67173_div {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:0px;
  7903. top:0px;
  7904. width:78px;
  7905. height:20px;
  7906. background:inherit;
  7907. background-color:rgba(242, 242, 242, 0);
  7908. border:none;
  7909. border-left:0px;
  7910. border-top:0px;
  7911. border-right:0px;
  7912. border-radius:0px;
  7913. border-bottom-right-radius:0px;
  7914. border-bottom-left-radius:0px;
  7915. -moz-box-shadow:none;
  7916. -webkit-box-shadow:none;
  7917. box-shadow:none;
  7918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7919. font-weight:400;
  7920. font-style:normal;
  7921. font-size:14px;
  7922. color:#1890FF;
  7923. }
  7924. #u67173 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:1309px;
  7928. top:685px;
  7929. width:78px;
  7930. height:20px;
  7931. display:flex;
  7932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:14px;
  7936. color:#1890FF;
  7937. }
  7938. #u67173 .text {
  7939. position:absolute;
  7940. align-self:center;
  7941. padding:0px 0px 0px 0px;
  7942. box-sizing:border-box;
  7943. width:100%;
  7944. }
  7945. #u67173_text {
  7946. border-width:0px;
  7947. white-space:nowrap;
  7948. text-transform:none;
  7949. }
  7950. #u67174_div {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:0px;
  7954. top:0px;
  7955. width:36px;
  7956. height:20px;
  7957. background:inherit;
  7958. background-color:rgba(242, 242, 242, 0);
  7959. border:none;
  7960. border-left:0px;
  7961. border-top:0px;
  7962. border-right:0px;
  7963. border-radius:0px;
  7964. border-bottom-right-radius:0px;
  7965. border-bottom-left-radius:0px;
  7966. -moz-box-shadow:none;
  7967. -webkit-box-shadow:none;
  7968. box-shadow:none;
  7969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:14px;
  7973. color:#1890FF;
  7974. }
  7975. #u67174 {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:1410px;
  7979. top:685px;
  7980. width:36px;
  7981. height:20px;
  7982. display:flex;
  7983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7984. font-weight:400;
  7985. font-style:normal;
  7986. font-size:14px;
  7987. color:#1890FF;
  7988. }
  7989. #u67174 .text {
  7990. position:absolute;
  7991. align-self:center;
  7992. padding:0px 0px 0px 0px;
  7993. box-sizing:border-box;
  7994. width:100%;
  7995. }
  7996. #u67174_text {
  7997. border-width:0px;
  7998. white-space:nowrap;
  7999. text-transform:none;
  8000. }
  8001. #u67175_div {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:0px;
  8005. top:0px;
  8006. width:43px;
  8007. height:20px;
  8008. background:inherit;
  8009. background-color:rgba(242, 242, 242, 0);
  8010. border:none;
  8011. border-left:0px;
  8012. border-top:0px;
  8013. border-right:0px;
  8014. border-radius:0px;
  8015. border-bottom-right-radius:0px;
  8016. border-bottom-left-radius:0px;
  8017. -moz-box-shadow:none;
  8018. -webkit-box-shadow:none;
  8019. box-shadow:none;
  8020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8021. font-weight:400;
  8022. font-style:normal;
  8023. font-size:14px;
  8024. color:#1890FF;
  8025. }
  8026. #u67175 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:1495px;
  8030. top:685px;
  8031. width:43px;
  8032. height:20px;
  8033. display:flex;
  8034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:14px;
  8038. color:#1890FF;
  8039. }
  8040. #u67175 .text {
  8041. position:absolute;
  8042. align-self:center;
  8043. padding:0px 0px 0px 0px;
  8044. box-sizing:border-box;
  8045. width:100%;
  8046. }
  8047. #u67175_text {
  8048. border-width:0px;
  8049. white-space:nowrap;
  8050. text-transform:none;
  8051. }
  8052. #u67176_div {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:0px;
  8056. top:0px;
  8057. width:29px;
  8058. height:20px;
  8059. background:inherit;
  8060. background-color:rgba(242, 242, 242, 0);
  8061. border:none;
  8062. border-left:0px;
  8063. border-top:0px;
  8064. border-right:0px;
  8065. border-radius:0px;
  8066. border-bottom-right-radius:0px;
  8067. border-bottom-left-radius:0px;
  8068. -moz-box-shadow:none;
  8069. -webkit-box-shadow:none;
  8070. box-shadow:none;
  8071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8072. font-weight:400;
  8073. font-style:normal;
  8074. font-size:14px;
  8075. }
  8076. #u67176 {
  8077. border-width:0px;
  8078. position:absolute;
  8079. left:1309px;
  8080. top:725px;
  8081. width:29px;
  8082. height:20px;
  8083. display:flex;
  8084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. font-size:14px;
  8088. }
  8089. #u67176 .text {
  8090. position:absolute;
  8091. align-self:center;
  8092. padding:0px 0px 0px 0px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u67176_text {
  8097. border-width:0px;
  8098. white-space:nowrap;
  8099. text-transform:none;
  8100. }
  8101. #u67177_div {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:35px;
  8107. height:20px;
  8108. background:inherit;
  8109. background-color:rgba(242, 242, 242, 0);
  8110. border:none;
  8111. border-left:0px;
  8112. border-top:0px;
  8113. border-right:0px;
  8114. border-radius:0px;
  8115. border-bottom-right-radius:0px;
  8116. border-bottom-left-radius:0px;
  8117. -moz-box-shadow:none;
  8118. -webkit-box-shadow:none;
  8119. box-shadow:none;
  8120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:14px;
  8124. }
  8125. #u67177 {
  8126. border-width:0px;
  8127. position:absolute;
  8128. left:1410px;
  8129. top:725px;
  8130. width:35px;
  8131. height:20px;
  8132. display:flex;
  8133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8134. font-weight:400;
  8135. font-style:normal;
  8136. font-size:14px;
  8137. }
  8138. #u67177 .text {
  8139. position:absolute;
  8140. align-self:center;
  8141. padding:0px 0px 0px 0px;
  8142. box-sizing:border-box;
  8143. width:100%;
  8144. }
  8145. #u67177_text {
  8146. border-width:0px;
  8147. white-space:nowrap;
  8148. text-transform:none;
  8149. }
  8150. #u67178_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:29px;
  8156. height:20px;
  8157. background:inherit;
  8158. background-color:rgba(242, 242, 242, 0);
  8159. border:none;
  8160. border-left:0px;
  8161. border-top:0px;
  8162. border-right:0px;
  8163. border-radius:0px;
  8164. border-bottom-right-radius:0px;
  8165. border-bottom-left-radius:0px;
  8166. -moz-box-shadow:none;
  8167. -webkit-box-shadow:none;
  8168. box-shadow:none;
  8169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8170. font-weight:400;
  8171. font-style:normal;
  8172. font-size:14px;
  8173. }
  8174. #u67178 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:1495px;
  8178. top:725px;
  8179. width:29px;
  8180. height:20px;
  8181. display:flex;
  8182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:14px;
  8186. }
  8187. #u67178 .text {
  8188. position:absolute;
  8189. align-self:center;
  8190. padding:0px 0px 0px 0px;
  8191. box-sizing:border-box;
  8192. width:100%;
  8193. }
  8194. #u67178_text {
  8195. border-width:0px;
  8196. white-space:nowrap;
  8197. text-transform:none;
  8198. }
  8199. #u67179_div {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:0px;
  8203. top:0px;
  8204. width:29px;
  8205. height:20px;
  8206. background:inherit;
  8207. background-color:rgba(242, 242, 242, 0);
  8208. border:none;
  8209. border-left:0px;
  8210. border-top:0px;
  8211. border-right:0px;
  8212. border-radius:0px;
  8213. border-bottom-right-radius:0px;
  8214. border-bottom-left-radius:0px;
  8215. -moz-box-shadow:none;
  8216. -webkit-box-shadow:none;
  8217. box-shadow:none;
  8218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. font-size:14px;
  8222. }
  8223. #u67179 {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:1309px;
  8227. top:765px;
  8228. width:29px;
  8229. height:20px;
  8230. display:flex;
  8231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8232. font-weight:400;
  8233. font-style:normal;
  8234. font-size:14px;
  8235. }
  8236. #u67179 .text {
  8237. position:absolute;
  8238. align-self:center;
  8239. padding:0px 0px 0px 0px;
  8240. box-sizing:border-box;
  8241. width:100%;
  8242. }
  8243. #u67179_text {
  8244. border-width:0px;
  8245. white-space:nowrap;
  8246. text-transform:none;
  8247. }
  8248. #u67180_div {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:36px;
  8254. height:20px;
  8255. background:inherit;
  8256. background-color:rgba(242, 242, 242, 0);
  8257. border:none;
  8258. border-left:0px;
  8259. border-top:0px;
  8260. border-right:0px;
  8261. border-radius:0px;
  8262. border-bottom-right-radius:0px;
  8263. border-bottom-left-radius:0px;
  8264. -moz-box-shadow:none;
  8265. -webkit-box-shadow:none;
  8266. box-shadow:none;
  8267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:14px;
  8271. }
  8272. #u67180 {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:1410px;
  8276. top:765px;
  8277. width:36px;
  8278. height:20px;
  8279. display:flex;
  8280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8281. font-weight:400;
  8282. font-style:normal;
  8283. font-size:14px;
  8284. }
  8285. #u67180 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:0px 0px 0px 0px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u67180_text {
  8293. border-width:0px;
  8294. white-space:nowrap;
  8295. text-transform:none;
  8296. }
  8297. #u67181_div {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:29px;
  8303. height:20px;
  8304. background:inherit;
  8305. background-color:rgba(242, 242, 242, 0);
  8306. border:none;
  8307. border-left:0px;
  8308. border-top:0px;
  8309. border-right:0px;
  8310. border-radius:0px;
  8311. border-bottom-right-radius:0px;
  8312. border-bottom-left-radius:0px;
  8313. -moz-box-shadow:none;
  8314. -webkit-box-shadow:none;
  8315. box-shadow:none;
  8316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8317. font-weight:400;
  8318. font-style:normal;
  8319. font-size:14px;
  8320. }
  8321. #u67181 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:1495px;
  8325. top:765px;
  8326. width:29px;
  8327. height:20px;
  8328. display:flex;
  8329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:14px;
  8333. }
  8334. #u67181 .text {
  8335. position:absolute;
  8336. align-self:center;
  8337. padding:0px 0px 0px 0px;
  8338. box-sizing:border-box;
  8339. width:100%;
  8340. }
  8341. #u67181_text {
  8342. border-width:0px;
  8343. white-space:nowrap;
  8344. text-transform:none;
  8345. }
  8346. #u67182_div {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:0px;
  8350. top:0px;
  8351. width:29px;
  8352. height:20px;
  8353. background:inherit;
  8354. background-color:rgba(242, 242, 242, 0);
  8355. border:none;
  8356. border-left:0px;
  8357. border-top:0px;
  8358. border-right:0px;
  8359. border-radius:0px;
  8360. border-bottom-right-radius:0px;
  8361. border-bottom-left-radius:0px;
  8362. -moz-box-shadow:none;
  8363. -webkit-box-shadow:none;
  8364. box-shadow:none;
  8365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8366. font-weight:400;
  8367. font-style:normal;
  8368. font-size:14px;
  8369. }
  8370. #u67182 {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:1309px;
  8374. top:801px;
  8375. width:29px;
  8376. height:20px;
  8377. display:flex;
  8378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8379. font-weight:400;
  8380. font-style:normal;
  8381. font-size:14px;
  8382. }
  8383. #u67182 .text {
  8384. position:absolute;
  8385. align-self:center;
  8386. padding:0px 0px 0px 0px;
  8387. box-sizing:border-box;
  8388. width:100%;
  8389. }
  8390. #u67182_text {
  8391. border-width:0px;
  8392. white-space:nowrap;
  8393. text-transform:none;
  8394. }
  8395. #u67183_div {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:0px;
  8399. top:0px;
  8400. width:35px;
  8401. height:20px;
  8402. background:inherit;
  8403. background-color:rgba(242, 242, 242, 0);
  8404. border:none;
  8405. border-left:0px;
  8406. border-top:0px;
  8407. border-right:0px;
  8408. border-radius:0px;
  8409. border-bottom-right-radius:0px;
  8410. border-bottom-left-radius:0px;
  8411. -moz-box-shadow:none;
  8412. -webkit-box-shadow:none;
  8413. box-shadow:none;
  8414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8415. font-weight:400;
  8416. font-style:normal;
  8417. font-size:14px;
  8418. }
  8419. #u67183 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:1410px;
  8423. top:801px;
  8424. width:35px;
  8425. height:20px;
  8426. display:flex;
  8427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8428. font-weight:400;
  8429. font-style:normal;
  8430. font-size:14px;
  8431. }
  8432. #u67183 .text {
  8433. position:absolute;
  8434. align-self:center;
  8435. padding:0px 0px 0px 0px;
  8436. box-sizing:border-box;
  8437. width:100%;
  8438. }
  8439. #u67183_text {
  8440. border-width:0px;
  8441. white-space:nowrap;
  8442. text-transform:none;
  8443. }
  8444. #u67184_div {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:0px;
  8448. top:0px;
  8449. width:29px;
  8450. height:20px;
  8451. background:inherit;
  8452. background-color:rgba(242, 242, 242, 0);
  8453. border:none;
  8454. border-left:0px;
  8455. border-top:0px;
  8456. border-right:0px;
  8457. border-radius:0px;
  8458. border-bottom-right-radius:0px;
  8459. border-bottom-left-radius:0px;
  8460. -moz-box-shadow:none;
  8461. -webkit-box-shadow:none;
  8462. box-shadow:none;
  8463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8464. font-weight:400;
  8465. font-style:normal;
  8466. font-size:14px;
  8467. }
  8468. #u67184 {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:1495px;
  8472. top:801px;
  8473. width:29px;
  8474. height:20px;
  8475. display:flex;
  8476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8477. font-weight:400;
  8478. font-style:normal;
  8479. font-size:14px;
  8480. }
  8481. #u67184 .text {
  8482. position:absolute;
  8483. align-self:center;
  8484. padding:0px 0px 0px 0px;
  8485. box-sizing:border-box;
  8486. width:100%;
  8487. }
  8488. #u67184_text {
  8489. border-width:0px;
  8490. white-space:nowrap;
  8491. text-transform:none;
  8492. }
  8493. #u67185_div {
  8494. border-width:0px;
  8495. position:absolute;
  8496. left:0px;
  8497. top:0px;
  8498. width:107px;
  8499. height:20px;
  8500. background:inherit;
  8501. background-color:rgba(51, 51, 51, 1);
  8502. border:none;
  8503. border-radius:9px;
  8504. -moz-box-shadow:none;
  8505. -webkit-box-shadow:none;
  8506. box-shadow:none;
  8507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8508. font-weight:400;
  8509. font-style:normal;
  8510. font-size:14px;
  8511. color:#FFFFFF;
  8512. text-align:center;
  8513. }
  8514. #u67185 {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:1332px;
  8518. top:665px;
  8519. width:107px;
  8520. height:20px;
  8521. display:flex;
  8522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8523. font-weight:400;
  8524. font-style:normal;
  8525. font-size:14px;
  8526. color:#FFFFFF;
  8527. text-align:center;
  8528. }
  8529. #u67185 .text {
  8530. position:absolute;
  8531. align-self:center;
  8532. padding:0px 0px 0px 0px;
  8533. box-sizing:border-box;
  8534. width:100%;
  8535. }
  8536. #u67185_text {
  8537. border-width:0px;
  8538. word-wrap:break-word;
  8539. text-transform:none;
  8540. }
  8541. #u67186_div {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:325px;
  8547. height:25px;
  8548. background:inherit;
  8549. background-color:rgba(255, 255, 255, 0);
  8550. border:none;
  8551. border-radius:0px;
  8552. -moz-box-shadow:none;
  8553. -webkit-box-shadow:none;
  8554. box-shadow:none;
  8555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8556. font-weight:400;
  8557. font-style:normal;
  8558. font-size:18px;
  8559. color:#D9001B;
  8560. }
  8561. #u67186 {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:1619px;
  8565. top:436px;
  8566. width:325px;
  8567. height:25px;
  8568. display:flex;
  8569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8570. font-weight:400;
  8571. font-style:normal;
  8572. font-size:18px;
  8573. color:#D9001B;
  8574. }
  8575. #u67186 .text {
  8576. position:absolute;
  8577. align-self:flex-start;
  8578. padding:0px 0px 0px 0px;
  8579. box-sizing:border-box;
  8580. width:100%;
  8581. }
  8582. #u67186_text {
  8583. border-width:0px;
  8584. white-space:nowrap;
  8585. text-transform:none;
  8586. }
  8587. #u67187 {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:1560px;
  8591. top:449px;
  8592. width:0px;
  8593. height:0px;
  8594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. color:#D9001B;
  8598. }
  8599. #u67187_seg0 {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:0px;
  8603. top:-5px;
  8604. width:64px;
  8605. height:10px;
  8606. }
  8607. #u67187_seg1 {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:49px;
  8611. top:-9px;
  8612. width:18px;
  8613. height:18px;
  8614. }
  8615. #u67187_text {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:-20px;
  8619. top:-8px;
  8620. width:100px;
  8621. word-wrap:break-word;
  8622. text-transform:none;
  8623. visibility:hidden;
  8624. }
  8625. #u67188_div {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:0px;
  8629. top:0px;
  8630. width:253px;
  8631. height:25px;
  8632. background:inherit;
  8633. background-color:rgba(255, 255, 255, 0);
  8634. border:none;
  8635. border-radius:0px;
  8636. -moz-box-shadow:none;
  8637. -webkit-box-shadow:none;
  8638. box-shadow:none;
  8639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8640. font-weight:400;
  8641. font-style:normal;
  8642. font-size:18px;
  8643. color:#D9001B;
  8644. }
  8645. #u67188 {
  8646. border-width:0px;
  8647. position:absolute;
  8648. left:1619px;
  8649. top:99px;
  8650. width:253px;
  8651. height:25px;
  8652. display:flex;
  8653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8654. font-weight:400;
  8655. font-style:normal;
  8656. font-size:18px;
  8657. color:#D9001B;
  8658. }
  8659. #u67188 .text {
  8660. position:absolute;
  8661. align-self:flex-start;
  8662. padding:0px 0px 0px 0px;
  8663. box-sizing:border-box;
  8664. width:100%;
  8665. }
  8666. #u67188_text {
  8667. border-width:0px;
  8668. white-space:nowrap;
  8669. text-transform:none;
  8670. }
  8671. #u67189 {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:1560px;
  8675. top:112px;
  8676. width:0px;
  8677. height:0px;
  8678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8679. font-weight:400;
  8680. font-style:normal;
  8681. color:#D9001B;
  8682. }
  8683. #u67189_seg0 {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:-5px;
  8688. width:64px;
  8689. height:10px;
  8690. }
  8691. #u67189_seg1 {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:49px;
  8695. top:-9px;
  8696. width:18px;
  8697. height:18px;
  8698. }
  8699. #u67189_text {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:-20px;
  8703. top:-8px;
  8704. width:100px;
  8705. word-wrap:break-word;
  8706. text-transform:none;
  8707. visibility:hidden;
  8708. }
  8709. #u67190_div {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:494px;
  8715. height:90px;
  8716. background:inherit;
  8717. background-color:rgba(255, 255, 255, 0);
  8718. border:none;
  8719. border-left:0px;
  8720. border-top:0px;
  8721. border-right:0px;
  8722. border-radius:0px;
  8723. border-bottom-right-radius:0px;
  8724. border-bottom-left-radius:0px;
  8725. -moz-box-shadow:none;
  8726. -webkit-box-shadow:none;
  8727. box-shadow:none;
  8728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:18px;
  8732. color:#D9001B;
  8733. line-height:30px;
  8734. }
  8735. #u67190 {
  8736. border-width:0px;
  8737. position:absolute;
  8738. left:364px;
  8739. top:981px;
  8740. width:494px;
  8741. height:90px;
  8742. display:flex;
  8743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8744. font-weight:400;
  8745. font-style:normal;
  8746. font-size:18px;
  8747. color:#D9001B;
  8748. line-height:30px;
  8749. }
  8750. #u67190 .text {
  8751. position:absolute;
  8752. align-self:center;
  8753. padding:0px 0px 0px 0px;
  8754. box-sizing:border-box;
  8755. width:100%;
  8756. }
  8757. #u67190_text {
  8758. border-width:0px;
  8759. white-space:nowrap;
  8760. text-transform:none;
  8761. }
  8762. #u67191_div {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:320px;
  8768. height:76px;
  8769. background:inherit;
  8770. background-color:rgba(255, 255, 255, 1);
  8771. box-sizing:border-box;
  8772. border-width:1px;
  8773. border-style:solid;
  8774. border-color:rgba(121, 121, 121, 1);
  8775. border-radius:0px;
  8776. -moz-box-shadow:none;
  8777. -webkit-box-shadow:none;
  8778. box-shadow:none;
  8779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8780. font-weight:400;
  8781. font-style:normal;
  8782. text-align:left;
  8783. }
  8784. #u67191 {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:343px;
  8788. top:1281px;
  8789. width:320px;
  8790. height:76px;
  8791. display:flex;
  8792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8793. font-weight:400;
  8794. font-style:normal;
  8795. text-align:left;
  8796. }
  8797. #u67191 .text {
  8798. position:absolute;
  8799. align-self:center;
  8800. padding:2px 2px 2px 2px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u67191_text {
  8805. border-width:0px;
  8806. word-wrap:break-word;
  8807. text-transform:none;
  8808. }
  8809. #u67192_div {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:320px;
  8815. height:76px;
  8816. background:inherit;
  8817. background-color:rgba(255, 255, 255, 1);
  8818. box-sizing:border-box;
  8819. border-width:1px;
  8820. border-style:solid;
  8821. border-color:rgba(121, 121, 121, 1);
  8822. border-radius:0px;
  8823. -moz-box-shadow:none;
  8824. -webkit-box-shadow:none;
  8825. box-shadow:none;
  8826. text-align:left;
  8827. }
  8828. #u67192 {
  8829. border-width:0px;
  8830. position:absolute;
  8831. left:693px;
  8832. top:1281px;
  8833. width:320px;
  8834. height:76px;
  8835. display:flex;
  8836. text-align:left;
  8837. }
  8838. #u67192 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 2px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u67192_text {
  8846. border-width:0px;
  8847. word-wrap:break-word;
  8848. text-transform:none;
  8849. }
  8850. #u67193_div {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:320px;
  8856. height:76px;
  8857. background:inherit;
  8858. background-color:rgba(255, 255, 255, 1);
  8859. box-sizing:border-box;
  8860. border-width:1px;
  8861. border-style:solid;
  8862. border-color:rgba(121, 121, 121, 1);
  8863. border-radius:0px;
  8864. -moz-box-shadow:none;
  8865. -webkit-box-shadow:none;
  8866. box-shadow:none;
  8867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8868. font-weight:400;
  8869. font-style:normal;
  8870. text-align:left;
  8871. }
  8872. #u67193 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:1043px;
  8876. top:1281px;
  8877. width:320px;
  8878. height:76px;
  8879. display:flex;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. text-align:left;
  8884. }
  8885. #u67193 .text {
  8886. position:absolute;
  8887. align-self:center;
  8888. padding:2px 2px 2px 2px;
  8889. box-sizing:border-box;
  8890. width:100%;
  8891. }
  8892. #u67193_text {
  8893. border-width:0px;
  8894. word-wrap:break-word;
  8895. text-transform:none;
  8896. }
  8897. #u67194_div {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:79px;
  8903. height:30px;
  8904. background:inherit;
  8905. background-color:rgba(255, 255, 255, 1);
  8906. box-sizing:border-box;
  8907. border-width:1px;
  8908. border-style:solid;
  8909. border-color:rgba(170, 170, 170, 1);
  8910. border-radius:4px;
  8911. -moz-box-shadow:none;
  8912. -webkit-box-shadow:none;
  8913. box-shadow:none;
  8914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8915. font-weight:400;
  8916. font-style:normal;
  8917. font-size:12px;
  8918. color:#555555;
  8919. }
  8920. #u67194 {
  8921. border-width:0px;
  8922. position:absolute;
  8923. left:1160px;
  8924. top:191px;
  8925. width:79px;
  8926. height:30px;
  8927. display:flex;
  8928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8929. font-weight:400;
  8930. font-style:normal;
  8931. font-size:12px;
  8932. color:#555555;
  8933. }
  8934. #u67194 .text {
  8935. position:absolute;
  8936. align-self:center;
  8937. padding:5px 15px 5px 15px;
  8938. box-sizing:border-box;
  8939. width:100%;
  8940. }
  8941. #u67194_text {
  8942. border-width:0px;
  8943. white-space:nowrap;
  8944. text-transform:none;
  8945. }