styles.css 138 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u26873_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u26873 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u26873 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u26873_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u26874_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u26874 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u26874 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u26874_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u26875 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u26876_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u26876 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u26876 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u26876_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u26877_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u26877 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u26877 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u26877_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u26878_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u26878 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u26878 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u26878_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u26879_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u26879 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u26879 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u26879_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u26880 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u26881_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. #u26881 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  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. #u26881 .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. #u26881_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u26882_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u26882 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u26882 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u26882_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u26883 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u26884_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. #u26884 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  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. #u26884 .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. #u26884_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u26885_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u26885 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u26885 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u26885_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u26886 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u26887_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  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. color:#FFFFFF;
  451. }
  452. #u26887 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u26887 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u26887_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u26888_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u26888 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u26888 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u26888_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u26889 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u26890_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u26890 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u26890 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u26890_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u26891_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u26891 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u26891 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u26891_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u26892 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u26893_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u26893 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u26893 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u26893_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u26894_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u26894 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u26894 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u26894_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u26895 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u26896_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u26896 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u26896 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u26896_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u26897_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u26897 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u26897 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u26897_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u26898 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u26899_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u26899 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:445px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u26899 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u26899_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u26900_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u26900 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:449px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u26900 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u26900_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u26901 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u26902_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u26902 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:487px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u26902 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u26902_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u26903_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u26903 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:491px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u26903 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u26903_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u26904 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u26905_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u26905 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u26905 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u26905_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u26906_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u26906 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u26906 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u26906_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u26907 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u26908_input {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:214px;
  1022. height:27px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:'ArialMT', 'Arial', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#FFFFFF;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u26908_input.disabled {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:214px;
  1041. height:27px;
  1042. padding:2px 2px 2px 2px;
  1043. font-family:'ArialMT', 'Arial', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. letter-spacing:normal;
  1048. color:#FFFFFF;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u26908_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:214px;
  1061. height:27px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-size:14px;
  1070. color:#FFFFFF;
  1071. }
  1072. #u26908 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1221px;
  1076. top:11px;
  1077. width:214px;
  1078. height:27px;
  1079. display:flex;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u26908 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u26908_div.disabled {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:214px;
  1096. height:27px;
  1097. background:inherit;
  1098. background-color:rgba(240, 240, 240, 1);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u26908.disabled {
  1108. }
  1109. .u26908_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u26909_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u26909 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:14px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u26909 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u26909_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u26910_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:100px;
  1148. height:24px;
  1149. background:inherit;
  1150. background-color:rgba(242, 242, 242, 0.2);
  1151. border:none;
  1152. border-radius:25px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. color:#FFFFFF;
  1160. text-align:center;
  1161. }
  1162. #u26910 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:1480px;
  1166. top:13px;
  1167. width:100px;
  1168. height:24px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. color:#FFFFFF;
  1174. text-align:center;
  1175. }
  1176. #u26910 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u26910_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u26911_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u26911 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u26911 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u26911_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u26912 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u26913_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:33px;
  1232. height:22px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u26913 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:39px;
  1250. top:361px;
  1251. width:33px;
  1252. height:22px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:16px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u26913 .text {
  1261. position:absolute;
  1262. align-self:flex-start;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u26913_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u26914_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u26914 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:365px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u26914 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u26914_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u26915 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u26916_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u26916 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u26916 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u26916_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u26917_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u26917 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u26917 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u26917_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u26918 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u26919_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u26919 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:151px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u26919 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u26919_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u26920_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u26920 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u26920 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u26920_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u26921 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u26922_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u26922 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:529px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u26922 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u26922_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u26923_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u26923 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:533px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u26923 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u26923_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u26924 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u26925_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u26925 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:193px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u26925 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u26925_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u26926_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u26926 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u26926 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u26926_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u26927 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u26928_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u26928 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:403px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u26928 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u26928_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u26929_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u26929 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:407px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u26929 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u26929_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u26930_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1259px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1736. }
  1737. #u26930 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:50px;
  1742. width:1259px;
  1743. height:1180px;
  1744. display:flex;
  1745. }
  1746. #u26930 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u26930_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u26931_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:109px;
  1765. height:50px;
  1766. background:inherit;
  1767. background-color:rgba(255, 255, 255, 0);
  1768. border:none;
  1769. border-left:0px;
  1770. border-top:0px;
  1771. border-right:0px;
  1772. border-radius:0px;
  1773. border-bottom-right-radius:0px;
  1774. border-bottom-left-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1779. font-weight:500;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u26931 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:350px;
  1787. top:50px;
  1788. width:109px;
  1789. height:50px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1792. font-weight:500;
  1793. font-style:normal;
  1794. font-size:18px;
  1795. }
  1796. #u26931 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u26931_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u26932 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:350px;
  1812. top:190px;
  1813. width:1219px;
  1814. height:457px;
  1815. }
  1816. #u26933_img {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:67px;
  1822. height:38px;
  1823. }
  1824. #u26933 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:67px;
  1830. height:38px;
  1831. display:flex;
  1832. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:12px;
  1836. color:#FFFFFF;
  1837. }
  1838. #u26933 .text {
  1839. position:absolute;
  1840. align-self:center;
  1841. padding:2px 2px 2px 0px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u26933_text {
  1846. border-width:0px;
  1847. word-wrap:break-word;
  1848. text-transform:none;
  1849. }
  1850. #u26934_img {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:144px;
  1856. height:38px;
  1857. }
  1858. #u26934 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:67px;
  1862. top:0px;
  1863. width:144px;
  1864. height:38px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:12px;
  1870. color:#FFFFFF;
  1871. }
  1872. #u26934 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u26934_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. }
  1884. #u26935_img {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:144px;
  1890. height:38px;
  1891. }
  1892. #u26935 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:211px;
  1896. top:0px;
  1897. width:144px;
  1898. height:38px;
  1899. display:flex;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:12px;
  1904. color:#FFFFFF;
  1905. }
  1906. #u26935 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u26935_text {
  1914. border-width:0px;
  1915. word-wrap:break-word;
  1916. text-transform:none;
  1917. }
  1918. #u26936_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:144px;
  1924. height:38px;
  1925. }
  1926. #u26936 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:355px;
  1930. top:0px;
  1931. width:144px;
  1932. height:38px;
  1933. display:flex;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:12px;
  1938. color:#FFFFFF;
  1939. }
  1940. #u26936 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u26936_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u26937_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:144px;
  1958. height:38px;
  1959. }
  1960. #u26937 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:499px;
  1964. top:0px;
  1965. width:144px;
  1966. height:38px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. color:#FFFFFF;
  1973. }
  1974. #u26937 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u26937_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u26938_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:144px;
  1992. height:38px;
  1993. }
  1994. #u26938 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:643px;
  1998. top:0px;
  1999. width:144px;
  2000. height:38px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:12px;
  2006. color:#FFFFFF;
  2007. }
  2008. #u26938 .text {
  2009. position:absolute;
  2010. align-self:center;
  2011. padding:2px 2px 2px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u26938_text {
  2016. border-width:0px;
  2017. word-wrap:break-word;
  2018. text-transform:none;
  2019. }
  2020. #u26939_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:144px;
  2026. height:38px;
  2027. }
  2028. #u26939 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:787px;
  2032. top:0px;
  2033. width:144px;
  2034. height:38px;
  2035. display:flex;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u26939 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u26939_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. }
  2054. #u26940_img {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:144px;
  2060. height:38px;
  2061. }
  2062. #u26940 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:931px;
  2066. top:0px;
  2067. width:144px;
  2068. height:38px;
  2069. display:flex;
  2070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:12px;
  2074. color:#FFFFFF;
  2075. }
  2076. #u26940 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 2px 2px 0px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u26940_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. }
  2088. #u26941_img {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:144px;
  2094. height:38px;
  2095. }
  2096. #u26941 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:1075px;
  2100. top:0px;
  2101. width:144px;
  2102. height:38px;
  2103. display:flex;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:12px;
  2108. color:#FFFFFF;
  2109. }
  2110. #u26941 .text {
  2111. position:absolute;
  2112. align-self:center;
  2113. padding:2px 2px 2px 0px;
  2114. box-sizing:border-box;
  2115. width:100%;
  2116. }
  2117. #u26941_text {
  2118. border-width:0px;
  2119. word-wrap:break-word;
  2120. text-transform:none;
  2121. }
  2122. #u26942_img {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:67px;
  2128. height:39px;
  2129. }
  2130. #u26942 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:38px;
  2135. width:67px;
  2136. height:39px;
  2137. display:flex;
  2138. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:12px;
  2142. }
  2143. #u26942 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u26942_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. }
  2155. #u26943_img {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:144px;
  2161. height:39px;
  2162. }
  2163. #u26943 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:67px;
  2167. top:38px;
  2168. width:144px;
  2169. height:39px;
  2170. display:flex;
  2171. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2172. font-weight:400;
  2173. font-style:normal;
  2174. font-size:12px;
  2175. }
  2176. #u26943 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 2px 2px 0px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u26943_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. visibility:hidden;
  2188. }
  2189. #u26944_img {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:144px;
  2195. height:39px;
  2196. }
  2197. #u26944 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:211px;
  2201. top:38px;
  2202. width:144px;
  2203. height:39px;
  2204. display:flex;
  2205. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:12px;
  2209. }
  2210. #u26944 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 2px 2px 0px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u26944_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. visibility:hidden;
  2222. }
  2223. #u26945_img {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:144px;
  2229. height:39px;
  2230. }
  2231. #u26945 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:355px;
  2235. top:38px;
  2236. width:144px;
  2237. height:39px;
  2238. display:flex;
  2239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:12px;
  2243. }
  2244. #u26945 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u26945_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. visibility:hidden;
  2256. }
  2257. #u26946_img {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:144px;
  2263. height:39px;
  2264. }
  2265. #u26946 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:499px;
  2269. top:38px;
  2270. width:144px;
  2271. height:39px;
  2272. display:flex;
  2273. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:12px;
  2277. }
  2278. #u26946 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 2px 2px 0px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u26946_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. visibility:hidden;
  2290. }
  2291. #u26947_img {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:144px;
  2297. height:39px;
  2298. }
  2299. #u26947 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:643px;
  2303. top:38px;
  2304. width:144px;
  2305. height:39px;
  2306. display:flex;
  2307. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2308. font-weight:400;
  2309. font-style:normal;
  2310. font-size:12px;
  2311. }
  2312. #u26947 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:2px 2px 2px 0px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u26947_text {
  2320. border-width:0px;
  2321. word-wrap:break-word;
  2322. text-transform:none;
  2323. visibility:hidden;
  2324. }
  2325. #u26948_img {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:144px;
  2331. height:39px;
  2332. }
  2333. #u26948 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:787px;
  2337. top:38px;
  2338. width:144px;
  2339. height:39px;
  2340. display:flex;
  2341. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2342. font-weight:400;
  2343. font-style:normal;
  2344. font-size:12px;
  2345. }
  2346. #u26948 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:2px 2px 2px 0px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u26948_text {
  2354. border-width:0px;
  2355. word-wrap:break-word;
  2356. text-transform:none;
  2357. visibility:hidden;
  2358. }
  2359. #u26949_img {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:144px;
  2365. height:39px;
  2366. }
  2367. #u26949 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:931px;
  2371. top:38px;
  2372. width:144px;
  2373. height:39px;
  2374. display:flex;
  2375. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:12px;
  2379. }
  2380. #u26949 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:2px 2px 2px 0px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u26949_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. visibility:hidden;
  2392. }
  2393. #u26950_img {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:144px;
  2399. height:39px;
  2400. }
  2401. #u26950 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:1075px;
  2405. top:38px;
  2406. width:144px;
  2407. height:39px;
  2408. display:flex;
  2409. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:12px;
  2413. }
  2414. #u26950 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u26950_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. visibility:hidden;
  2426. }
  2427. #u26951_img {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:0px;
  2432. width:67px;
  2433. height:38px;
  2434. }
  2435. #u26951 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:77px;
  2440. width:67px;
  2441. height:38px;
  2442. display:flex;
  2443. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. font-size:12px;
  2447. color:#606266;
  2448. }
  2449. #u26951 .text {
  2450. position:absolute;
  2451. align-self:center;
  2452. padding:2px 2px 2px 0px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u26951_text {
  2457. border-width:0px;
  2458. word-wrap:break-word;
  2459. text-transform:none;
  2460. }
  2461. #u26952_img {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:144px;
  2467. height:38px;
  2468. }
  2469. #u26952 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:67px;
  2473. top:77px;
  2474. width:144px;
  2475. height:38px;
  2476. display:flex;
  2477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:12px;
  2481. color:#606266;
  2482. }
  2483. #u26952 .text {
  2484. position:absolute;
  2485. align-self:center;
  2486. padding:2px 2px 2px 0px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u26952_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. visibility:hidden;
  2495. }
  2496. #u26953_img {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:144px;
  2502. height:38px;
  2503. }
  2504. #u26953 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:211px;
  2508. top:77px;
  2509. width:144px;
  2510. height:38px;
  2511. display:flex;
  2512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:12px;
  2516. color:#606266;
  2517. }
  2518. #u26953 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 0px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u26953_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u26954_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:144px;
  2537. height:38px;
  2538. }
  2539. #u26954 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:355px;
  2543. top:77px;
  2544. width:144px;
  2545. height:38px;
  2546. display:flex;
  2547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:12px;
  2551. color:#606266;
  2552. }
  2553. #u26954 .text {
  2554. position:absolute;
  2555. align-self:center;
  2556. padding:2px 2px 2px 0px;
  2557. box-sizing:border-box;
  2558. width:100%;
  2559. }
  2560. #u26954_text {
  2561. border-width:0px;
  2562. word-wrap:break-word;
  2563. text-transform:none;
  2564. visibility:hidden;
  2565. }
  2566. #u26955_img {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:144px;
  2572. height:38px;
  2573. }
  2574. #u26955 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:499px;
  2578. top:77px;
  2579. width:144px;
  2580. height:38px;
  2581. display:flex;
  2582. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2583. font-weight:400;
  2584. font-style:normal;
  2585. font-size:12px;
  2586. color:#606266;
  2587. }
  2588. #u26955 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 2px 2px 0px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u26955_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. visibility:hidden;
  2600. }
  2601. #u26956_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:144px;
  2607. height:38px;
  2608. }
  2609. #u26956 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:643px;
  2613. top:77px;
  2614. width:144px;
  2615. height:38px;
  2616. display:flex;
  2617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:12px;
  2621. color:#606266;
  2622. }
  2623. #u26956 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u26956_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. visibility:hidden;
  2635. }
  2636. #u26957_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:144px;
  2642. height:38px;
  2643. }
  2644. #u26957 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:787px;
  2648. top:77px;
  2649. width:144px;
  2650. height:38px;
  2651. display:flex;
  2652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:12px;
  2656. color:#606266;
  2657. }
  2658. #u26957 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 0px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u26957_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. visibility:hidden;
  2670. }
  2671. #u26958_img {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:144px;
  2677. height:38px;
  2678. }
  2679. #u26958 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:931px;
  2683. top:77px;
  2684. width:144px;
  2685. height:38px;
  2686. display:flex;
  2687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2688. font-weight:400;
  2689. font-style:normal;
  2690. font-size:12px;
  2691. color:#606266;
  2692. }
  2693. #u26958 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u26958_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u26959_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:144px;
  2712. height:38px;
  2713. }
  2714. #u26959 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:1075px;
  2718. top:77px;
  2719. width:144px;
  2720. height:38px;
  2721. display:flex;
  2722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:12px;
  2726. color:#606266;
  2727. }
  2728. #u26959 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 0px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u26959_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. visibility:hidden;
  2740. }
  2741. #u26960_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:67px;
  2747. height:38px;
  2748. }
  2749. #u26960 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:115px;
  2754. width:67px;
  2755. height:38px;
  2756. display:flex;
  2757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. color:#606266;
  2762. }
  2763. #u26960 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 0px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u26960_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. }
  2775. #u26961_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:144px;
  2781. height:38px;
  2782. }
  2783. #u26961 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:67px;
  2787. top:115px;
  2788. width:144px;
  2789. height:38px;
  2790. display:flex;
  2791. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:12px;
  2795. color:#606266;
  2796. }
  2797. #u26961 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:2px 2px 2px 0px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u26961_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u26962_img {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:144px;
  2816. height:38px;
  2817. }
  2818. #u26962 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:211px;
  2822. top:115px;
  2823. width:144px;
  2824. height:38px;
  2825. display:flex;
  2826. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:12px;
  2830. color:#606266;
  2831. }
  2832. #u26962 .text {
  2833. position:absolute;
  2834. align-self:center;
  2835. padding:2px 2px 2px 0px;
  2836. box-sizing:border-box;
  2837. width:100%;
  2838. }
  2839. #u26962_text {
  2840. border-width:0px;
  2841. word-wrap:break-word;
  2842. text-transform:none;
  2843. visibility:hidden;
  2844. }
  2845. #u26963_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:144px;
  2851. height:38px;
  2852. }
  2853. #u26963 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:355px;
  2857. top:115px;
  2858. width:144px;
  2859. height:38px;
  2860. display:flex;
  2861. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:12px;
  2865. color:#606266;
  2866. }
  2867. #u26963 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 0px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u26963_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u26964_img {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:144px;
  2886. height:38px;
  2887. }
  2888. #u26964 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:499px;
  2892. top:115px;
  2893. width:144px;
  2894. height:38px;
  2895. display:flex;
  2896. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:12px;
  2900. color:#606266;
  2901. }
  2902. #u26964 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:2px 2px 2px 0px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u26964_text {
  2910. border-width:0px;
  2911. word-wrap:break-word;
  2912. text-transform:none;
  2913. visibility:hidden;
  2914. }
  2915. #u26965_img {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:144px;
  2921. height:38px;
  2922. }
  2923. #u26965 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:643px;
  2927. top:115px;
  2928. width:144px;
  2929. height:38px;
  2930. display:flex;
  2931. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2932. font-weight:400;
  2933. font-style:normal;
  2934. font-size:12px;
  2935. color:#606266;
  2936. }
  2937. #u26965 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 2px 2px 0px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u26965_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. visibility:hidden;
  2949. }
  2950. #u26966_img {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:144px;
  2956. height:38px;
  2957. }
  2958. #u26966 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:787px;
  2962. top:115px;
  2963. width:144px;
  2964. height:38px;
  2965. display:flex;
  2966. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:12px;
  2970. color:#606266;
  2971. }
  2972. #u26966 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 2px 2px 0px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u26966_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. visibility:hidden;
  2984. }
  2985. #u26967_img {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:144px;
  2991. height:38px;
  2992. }
  2993. #u26967 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:931px;
  2997. top:115px;
  2998. width:144px;
  2999. height:38px;
  3000. display:flex;
  3001. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:12px;
  3005. color:#606266;
  3006. }
  3007. #u26967 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:2px 2px 2px 0px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u26967_text {
  3015. border-width:0px;
  3016. word-wrap:break-word;
  3017. text-transform:none;
  3018. visibility:hidden;
  3019. }
  3020. #u26968_img {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:144px;
  3026. height:38px;
  3027. }
  3028. #u26968 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:1075px;
  3032. top:115px;
  3033. width:144px;
  3034. height:38px;
  3035. display:flex;
  3036. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:12px;
  3040. color:#606266;
  3041. }
  3042. #u26968 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:2px 2px 2px 0px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u26968_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u26969_img {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:67px;
  3061. height:36px;
  3062. }
  3063. #u26969 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:153px;
  3068. width:67px;
  3069. height:36px;
  3070. display:flex;
  3071. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:12px;
  3075. color:#606266;
  3076. }
  3077. #u26969 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 0px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u26969_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. }
  3089. #u26970_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:144px;
  3095. height:36px;
  3096. }
  3097. #u26970 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:67px;
  3101. top:153px;
  3102. width:144px;
  3103. height:36px;
  3104. display:flex;
  3105. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. color:#606266;
  3110. }
  3111. #u26970 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 0px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u26970_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u26971_img {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:144px;
  3130. height:36px;
  3131. }
  3132. #u26971 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:211px;
  3136. top:153px;
  3137. width:144px;
  3138. height:36px;
  3139. display:flex;
  3140. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:12px;
  3144. color:#606266;
  3145. }
  3146. #u26971 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 2px 2px 0px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u26971_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. visibility:hidden;
  3158. }
  3159. #u26972_img {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:144px;
  3165. height:36px;
  3166. }
  3167. #u26972 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:355px;
  3171. top:153px;
  3172. width:144px;
  3173. height:36px;
  3174. display:flex;
  3175. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:12px;
  3179. color:#606266;
  3180. }
  3181. #u26972 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 0px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u26972_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u26973_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:144px;
  3200. height:36px;
  3201. }
  3202. #u26973 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:499px;
  3206. top:153px;
  3207. width:144px;
  3208. height:36px;
  3209. display:flex;
  3210. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:12px;
  3214. color:#606266;
  3215. }
  3216. #u26973 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 0px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u26973_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u26974_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:144px;
  3235. height:36px;
  3236. }
  3237. #u26974 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:643px;
  3241. top:153px;
  3242. width:144px;
  3243. height:36px;
  3244. display:flex;
  3245. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3246. font-weight:400;
  3247. font-style:normal;
  3248. font-size:12px;
  3249. color:#606266;
  3250. }
  3251. #u26974 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:2px 2px 2px 0px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u26974_text {
  3259. border-width:0px;
  3260. word-wrap:break-word;
  3261. text-transform:none;
  3262. visibility:hidden;
  3263. }
  3264. #u26975_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:144px;
  3270. height:36px;
  3271. }
  3272. #u26975 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:787px;
  3276. top:153px;
  3277. width:144px;
  3278. height:36px;
  3279. display:flex;
  3280. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:12px;
  3284. color:#606266;
  3285. }
  3286. #u26975 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 0px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u26975_text {
  3294. border-width:0px;
  3295. word-wrap:break-word;
  3296. text-transform:none;
  3297. visibility:hidden;
  3298. }
  3299. #u26976_img {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:144px;
  3305. height:36px;
  3306. }
  3307. #u26976 {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:931px;
  3311. top:153px;
  3312. width:144px;
  3313. height:36px;
  3314. display:flex;
  3315. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:12px;
  3319. color:#606266;
  3320. }
  3321. #u26976 .text {
  3322. position:absolute;
  3323. align-self:center;
  3324. padding:2px 2px 2px 0px;
  3325. box-sizing:border-box;
  3326. width:100%;
  3327. }
  3328. #u26976_text {
  3329. border-width:0px;
  3330. word-wrap:break-word;
  3331. text-transform:none;
  3332. visibility:hidden;
  3333. }
  3334. #u26977_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:144px;
  3340. height:36px;
  3341. }
  3342. #u26977 {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:1075px;
  3346. top:153px;
  3347. width:144px;
  3348. height:36px;
  3349. display:flex;
  3350. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3351. font-weight:400;
  3352. font-style:normal;
  3353. font-size:12px;
  3354. color:#606266;
  3355. }
  3356. #u26977 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 2px 2px 0px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u26977_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u26978_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:67px;
  3375. height:35px;
  3376. }
  3377. #u26978 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:189px;
  3382. width:67px;
  3383. height:35px;
  3384. display:flex;
  3385. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. color:#606266;
  3390. }
  3391. #u26978 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u26978_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u26979_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:144px;
  3410. height:35px;
  3411. }
  3412. #u26979 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:67px;
  3416. top:189px;
  3417. width:144px;
  3418. height:35px;
  3419. display:flex;
  3420. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:12px;
  3424. color:#606266;
  3425. }
  3426. #u26979 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 2px 2px 0px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u26979_text {
  3434. border-width:0px;
  3435. word-wrap:break-word;
  3436. text-transform:none;
  3437. visibility:hidden;
  3438. }
  3439. #u26980_img {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:144px;
  3445. height:35px;
  3446. }
  3447. #u26980 {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:211px;
  3451. top:189px;
  3452. width:144px;
  3453. height:35px;
  3454. display:flex;
  3455. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3456. font-weight:400;
  3457. font-style:normal;
  3458. font-size:12px;
  3459. color:#606266;
  3460. }
  3461. #u26980 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 2px 2px 0px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u26980_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. visibility:hidden;
  3473. }
  3474. #u26981_img {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:144px;
  3480. height:35px;
  3481. }
  3482. #u26981 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:355px;
  3486. top:189px;
  3487. width:144px;
  3488. height:35px;
  3489. display:flex;
  3490. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:12px;
  3494. color:#606266;
  3495. }
  3496. #u26981 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 0px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. #u26981_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u26982_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:144px;
  3515. height:35px;
  3516. }
  3517. #u26982 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:499px;
  3521. top:189px;
  3522. width:144px;
  3523. height:35px;
  3524. display:flex;
  3525. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:12px;
  3529. color:#606266;
  3530. }
  3531. #u26982 .text {
  3532. position:absolute;
  3533. align-self:center;
  3534. padding:2px 2px 2px 0px;
  3535. box-sizing:border-box;
  3536. width:100%;
  3537. }
  3538. #u26982_text {
  3539. border-width:0px;
  3540. word-wrap:break-word;
  3541. text-transform:none;
  3542. visibility:hidden;
  3543. }
  3544. #u26983_img {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:144px;
  3550. height:35px;
  3551. }
  3552. #u26983 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:643px;
  3556. top:189px;
  3557. width:144px;
  3558. height:35px;
  3559. display:flex;
  3560. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:12px;
  3564. color:#606266;
  3565. }
  3566. #u26983 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 0px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u26983_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u26984_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:144px;
  3585. height:35px;
  3586. }
  3587. #u26984 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:787px;
  3591. top:189px;
  3592. width:144px;
  3593. height:35px;
  3594. display:flex;
  3595. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. color:#606266;
  3600. }
  3601. #u26984 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u26984_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u26985_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:144px;
  3620. height:35px;
  3621. }
  3622. #u26985 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:931px;
  3626. top:189px;
  3627. width:144px;
  3628. height:35px;
  3629. display:flex;
  3630. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. font-size:12px;
  3634. color:#606266;
  3635. }
  3636. #u26985 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:2px 2px 2px 0px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u26985_text {
  3644. border-width:0px;
  3645. word-wrap:break-word;
  3646. text-transform:none;
  3647. visibility:hidden;
  3648. }
  3649. #u26986_img {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:144px;
  3655. height:35px;
  3656. }
  3657. #u26986 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:1075px;
  3661. top:189px;
  3662. width:144px;
  3663. height:35px;
  3664. display:flex;
  3665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:12px;
  3669. color:#606266;
  3670. }
  3671. #u26986 .text {
  3672. position:absolute;
  3673. align-self:center;
  3674. padding:2px 2px 2px 0px;
  3675. box-sizing:border-box;
  3676. width:100%;
  3677. }
  3678. #u26986_text {
  3679. border-width:0px;
  3680. word-wrap:break-word;
  3681. text-transform:none;
  3682. visibility:hidden;
  3683. }
  3684. #u26987_img {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:67px;
  3690. height:35px;
  3691. }
  3692. #u26987 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:224px;
  3697. width:67px;
  3698. height:35px;
  3699. display:flex;
  3700. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:12px;
  3704. color:#606266;
  3705. }
  3706. #u26987 .text {
  3707. position:absolute;
  3708. align-self:center;
  3709. padding:2px 2px 2px 0px;
  3710. box-sizing:border-box;
  3711. width:100%;
  3712. }
  3713. #u26987_text {
  3714. border-width:0px;
  3715. word-wrap:break-word;
  3716. text-transform:none;
  3717. visibility:hidden;
  3718. }
  3719. #u26988_img {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:144px;
  3725. height:35px;
  3726. }
  3727. #u26988 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:67px;
  3731. top:224px;
  3732. width:144px;
  3733. height:35px;
  3734. display:flex;
  3735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3736. font-weight:400;
  3737. font-style:normal;
  3738. font-size:12px;
  3739. color:#606266;
  3740. }
  3741. #u26988 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 0px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u26988_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u26989_img {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:144px;
  3760. height:35px;
  3761. }
  3762. #u26989 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:211px;
  3766. top:224px;
  3767. width:144px;
  3768. height:35px;
  3769. display:flex;
  3770. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:12px;
  3774. color:#606266;
  3775. }
  3776. #u26989 .text {
  3777. position:absolute;
  3778. align-self:center;
  3779. padding:2px 2px 2px 0px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u26989_text {
  3784. border-width:0px;
  3785. word-wrap:break-word;
  3786. text-transform:none;
  3787. visibility:hidden;
  3788. }
  3789. #u26990_img {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:144px;
  3795. height:35px;
  3796. }
  3797. #u26990 {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:355px;
  3801. top:224px;
  3802. width:144px;
  3803. height:35px;
  3804. display:flex;
  3805. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3806. font-weight:400;
  3807. font-style:normal;
  3808. font-size:12px;
  3809. color:#606266;
  3810. }
  3811. #u26990 .text {
  3812. position:absolute;
  3813. align-self:center;
  3814. padding:2px 2px 2px 0px;
  3815. box-sizing:border-box;
  3816. width:100%;
  3817. }
  3818. #u26990_text {
  3819. border-width:0px;
  3820. word-wrap:break-word;
  3821. text-transform:none;
  3822. visibility:hidden;
  3823. }
  3824. #u26991_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:144px;
  3830. height:35px;
  3831. }
  3832. #u26991 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:499px;
  3836. top:224px;
  3837. width:144px;
  3838. height:35px;
  3839. display:flex;
  3840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:12px;
  3844. color:#606266;
  3845. }
  3846. #u26991 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:2px 2px 2px 0px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u26991_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. visibility:hidden;
  3858. }
  3859. #u26992_img {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:144px;
  3865. height:35px;
  3866. }
  3867. #u26992 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:643px;
  3871. top:224px;
  3872. width:144px;
  3873. height:35px;
  3874. display:flex;
  3875. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3876. font-weight:400;
  3877. font-style:normal;
  3878. font-size:12px;
  3879. color:#606266;
  3880. }
  3881. #u26992 .text {
  3882. position:absolute;
  3883. align-self:center;
  3884. padding:2px 2px 2px 0px;
  3885. box-sizing:border-box;
  3886. width:100%;
  3887. }
  3888. #u26992_text {
  3889. border-width:0px;
  3890. word-wrap:break-word;
  3891. text-transform:none;
  3892. visibility:hidden;
  3893. }
  3894. #u26993_img {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:144px;
  3900. height:35px;
  3901. }
  3902. #u26993 {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:787px;
  3906. top:224px;
  3907. width:144px;
  3908. height:35px;
  3909. display:flex;
  3910. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3911. font-weight:400;
  3912. font-style:normal;
  3913. font-size:12px;
  3914. color:#606266;
  3915. }
  3916. #u26993 .text {
  3917. position:absolute;
  3918. align-self:center;
  3919. padding:2px 2px 2px 0px;
  3920. box-sizing:border-box;
  3921. width:100%;
  3922. }
  3923. #u26993_text {
  3924. border-width:0px;
  3925. word-wrap:break-word;
  3926. text-transform:none;
  3927. visibility:hidden;
  3928. }
  3929. #u26994_img {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:144px;
  3935. height:35px;
  3936. }
  3937. #u26994 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:931px;
  3941. top:224px;
  3942. width:144px;
  3943. height:35px;
  3944. display:flex;
  3945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:12px;
  3949. color:#606266;
  3950. }
  3951. #u26994 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 0px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u26994_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u26995_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:144px;
  3970. height:35px;
  3971. }
  3972. #u26995 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:1075px;
  3976. top:224px;
  3977. width:144px;
  3978. height:35px;
  3979. display:flex;
  3980. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:12px;
  3984. color:#606266;
  3985. }
  3986. #u26995 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 2px 2px 0px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u26995_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. visibility:hidden;
  3998. }
  3999. #u26996_img {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:67px;
  4005. height:35px;
  4006. }
  4007. #u26996 {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:259px;
  4012. width:67px;
  4013. height:35px;
  4014. display:flex;
  4015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. font-size:12px;
  4019. color:#606266;
  4020. }
  4021. #u26996 .text {
  4022. position:absolute;
  4023. align-self:center;
  4024. padding:2px 2px 2px 0px;
  4025. box-sizing:border-box;
  4026. width:100%;
  4027. }
  4028. #u26996_text {
  4029. border-width:0px;
  4030. word-wrap:break-word;
  4031. text-transform:none;
  4032. visibility:hidden;
  4033. }
  4034. #u26997_img {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:144px;
  4040. height:35px;
  4041. }
  4042. #u26997 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:67px;
  4046. top:259px;
  4047. width:144px;
  4048. height:35px;
  4049. display:flex;
  4050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4051. font-weight:400;
  4052. font-style:normal;
  4053. font-size:12px;
  4054. color:#606266;
  4055. }
  4056. #u26997 .text {
  4057. position:absolute;
  4058. align-self:center;
  4059. padding:2px 2px 2px 0px;
  4060. box-sizing:border-box;
  4061. width:100%;
  4062. }
  4063. #u26997_text {
  4064. border-width:0px;
  4065. word-wrap:break-word;
  4066. text-transform:none;
  4067. visibility:hidden;
  4068. }
  4069. #u26998_img {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:144px;
  4075. height:35px;
  4076. }
  4077. #u26998 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:211px;
  4081. top:259px;
  4082. width:144px;
  4083. height:35px;
  4084. display:flex;
  4085. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:12px;
  4089. color:#606266;
  4090. }
  4091. #u26998 .text {
  4092. position:absolute;
  4093. align-self:center;
  4094. padding:2px 2px 2px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u26998_text {
  4099. border-width:0px;
  4100. word-wrap:break-word;
  4101. text-transform:none;
  4102. visibility:hidden;
  4103. }
  4104. #u26999_img {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:0px;
  4108. top:0px;
  4109. width:144px;
  4110. height:35px;
  4111. }
  4112. #u26999 {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:355px;
  4116. top:259px;
  4117. width:144px;
  4118. height:35px;
  4119. display:flex;
  4120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4121. font-weight:400;
  4122. font-style:normal;
  4123. font-size:12px;
  4124. color:#606266;
  4125. }
  4126. #u26999 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:2px 2px 2px 0px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u26999_text {
  4134. border-width:0px;
  4135. word-wrap:break-word;
  4136. text-transform:none;
  4137. visibility:hidden;
  4138. }
  4139. #u27000_img {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:0px;
  4143. top:0px;
  4144. width:144px;
  4145. height:35px;
  4146. }
  4147. #u27000 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:499px;
  4151. top:259px;
  4152. width:144px;
  4153. height:35px;
  4154. display:flex;
  4155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:12px;
  4159. color:#606266;
  4160. }
  4161. #u27000 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:2px 2px 2px 0px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u27000_text {
  4169. border-width:0px;
  4170. word-wrap:break-word;
  4171. text-transform:none;
  4172. visibility:hidden;
  4173. }
  4174. #u27001_img {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:144px;
  4180. height:35px;
  4181. }
  4182. #u27001 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:643px;
  4186. top:259px;
  4187. width:144px;
  4188. height:35px;
  4189. display:flex;
  4190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:12px;
  4194. color:#606266;
  4195. }
  4196. #u27001 .text {
  4197. position:absolute;
  4198. align-self:center;
  4199. padding:2px 2px 2px 0px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u27001_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u27002_img {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:144px;
  4215. height:35px;
  4216. }
  4217. #u27002 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:787px;
  4221. top:259px;
  4222. width:144px;
  4223. height:35px;
  4224. display:flex;
  4225. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:12px;
  4229. color:#606266;
  4230. }
  4231. #u27002 .text {
  4232. position:absolute;
  4233. align-self:center;
  4234. padding:2px 2px 2px 0px;
  4235. box-sizing:border-box;
  4236. width:100%;
  4237. }
  4238. #u27002_text {
  4239. border-width:0px;
  4240. word-wrap:break-word;
  4241. text-transform:none;
  4242. visibility:hidden;
  4243. }
  4244. #u27003_img {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:144px;
  4250. height:35px;
  4251. }
  4252. #u27003 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:931px;
  4256. top:259px;
  4257. width:144px;
  4258. height:35px;
  4259. display:flex;
  4260. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:12px;
  4264. color:#606266;
  4265. }
  4266. #u27003 .text {
  4267. position:absolute;
  4268. align-self:center;
  4269. padding:2px 2px 2px 0px;
  4270. box-sizing:border-box;
  4271. width:100%;
  4272. }
  4273. #u27003_text {
  4274. border-width:0px;
  4275. word-wrap:break-word;
  4276. text-transform:none;
  4277. visibility:hidden;
  4278. }
  4279. #u27004_img {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:144px;
  4285. height:35px;
  4286. }
  4287. #u27004 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:1075px;
  4291. top:259px;
  4292. width:144px;
  4293. height:35px;
  4294. display:flex;
  4295. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:12px;
  4299. color:#606266;
  4300. }
  4301. #u27004 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:2px 2px 2px 0px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u27004_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. visibility:hidden;
  4313. }
  4314. #u27005_img {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:67px;
  4320. height:35px;
  4321. }
  4322. #u27005 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:294px;
  4327. width:67px;
  4328. height:35px;
  4329. display:flex;
  4330. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:12px;
  4334. color:#606266;
  4335. }
  4336. #u27005 .text {
  4337. position:absolute;
  4338. align-self:center;
  4339. padding:2px 2px 2px 0px;
  4340. box-sizing:border-box;
  4341. width:100%;
  4342. }
  4343. #u27005_text {
  4344. border-width:0px;
  4345. word-wrap:break-word;
  4346. text-transform:none;
  4347. visibility:hidden;
  4348. }
  4349. #u27006_img {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:0px;
  4353. top:0px;
  4354. width:144px;
  4355. height:35px;
  4356. }
  4357. #u27006 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:67px;
  4361. top:294px;
  4362. width:144px;
  4363. height:35px;
  4364. display:flex;
  4365. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4366. font-weight:400;
  4367. font-style:normal;
  4368. font-size:12px;
  4369. color:#606266;
  4370. }
  4371. #u27006 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 0px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u27006_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u27007_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:144px;
  4390. height:35px;
  4391. }
  4392. #u27007 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:211px;
  4396. top:294px;
  4397. width:144px;
  4398. height:35px;
  4399. display:flex;
  4400. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:12px;
  4404. color:#606266;
  4405. }
  4406. #u27007 .text {
  4407. position:absolute;
  4408. align-self:center;
  4409. padding:2px 2px 2px 0px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u27007_text {
  4414. border-width:0px;
  4415. word-wrap:break-word;
  4416. text-transform:none;
  4417. visibility:hidden;
  4418. }
  4419. #u27008_img {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:144px;
  4425. height:35px;
  4426. }
  4427. #u27008 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:355px;
  4431. top:294px;
  4432. width:144px;
  4433. height:35px;
  4434. display:flex;
  4435. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4436. font-weight:400;
  4437. font-style:normal;
  4438. font-size:12px;
  4439. color:#606266;
  4440. }
  4441. #u27008 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 0px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u27008_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. visibility:hidden;
  4453. }
  4454. #u27009_img {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:144px;
  4460. height:35px;
  4461. }
  4462. #u27009 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:499px;
  4466. top:294px;
  4467. width:144px;
  4468. height:35px;
  4469. display:flex;
  4470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4471. font-weight:400;
  4472. font-style:normal;
  4473. font-size:12px;
  4474. color:#606266;
  4475. }
  4476. #u27009 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 0px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u27009_text {
  4484. border-width:0px;
  4485. word-wrap:break-word;
  4486. text-transform:none;
  4487. visibility:hidden;
  4488. }
  4489. #u27010_img {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:144px;
  4495. height:35px;
  4496. }
  4497. #u27010 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:643px;
  4501. top:294px;
  4502. width:144px;
  4503. height:35px;
  4504. display:flex;
  4505. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4506. font-weight:400;
  4507. font-style:normal;
  4508. font-size:12px;
  4509. color:#606266;
  4510. }
  4511. #u27010 .text {
  4512. position:absolute;
  4513. align-self:center;
  4514. padding:2px 2px 2px 0px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u27010_text {
  4519. border-width:0px;
  4520. word-wrap:break-word;
  4521. text-transform:none;
  4522. visibility:hidden;
  4523. }
  4524. #u27011_img {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:144px;
  4530. height:35px;
  4531. }
  4532. #u27011 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:787px;
  4536. top:294px;
  4537. width:144px;
  4538. height:35px;
  4539. display:flex;
  4540. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:12px;
  4544. color:#606266;
  4545. }
  4546. #u27011 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 0px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u27011_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. visibility:hidden;
  4558. }
  4559. #u27012_img {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:144px;
  4565. height:35px;
  4566. }
  4567. #u27012 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:931px;
  4571. top:294px;
  4572. width:144px;
  4573. height:35px;
  4574. display:flex;
  4575. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4576. font-weight:400;
  4577. font-style:normal;
  4578. font-size:12px;
  4579. color:#606266;
  4580. }
  4581. #u27012 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 0px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u27012_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u27013_img {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:144px;
  4600. height:35px;
  4601. }
  4602. #u27013 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:1075px;
  4606. top:294px;
  4607. width:144px;
  4608. height:35px;
  4609. display:flex;
  4610. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4611. font-weight:400;
  4612. font-style:normal;
  4613. font-size:12px;
  4614. color:#606266;
  4615. }
  4616. #u27013 .text {
  4617. position:absolute;
  4618. align-self:center;
  4619. padding:2px 2px 2px 0px;
  4620. box-sizing:border-box;
  4621. width:100%;
  4622. }
  4623. #u27013_text {
  4624. border-width:0px;
  4625. word-wrap:break-word;
  4626. text-transform:none;
  4627. visibility:hidden;
  4628. }
  4629. #u27014_img {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:67px;
  4635. height:35px;
  4636. }
  4637. #u27014 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:329px;
  4642. width:67px;
  4643. height:35px;
  4644. display:flex;
  4645. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:12px;
  4649. color:#606266;
  4650. }
  4651. #u27014 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:2px 2px 2px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u27014_text {
  4659. border-width:0px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. visibility:hidden;
  4663. }
  4664. #u27015_img {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:144px;
  4670. height:35px;
  4671. }
  4672. #u27015 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:67px;
  4676. top:329px;
  4677. width:144px;
  4678. height:35px;
  4679. display:flex;
  4680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:12px;
  4684. color:#606266;
  4685. }
  4686. #u27015 .text {
  4687. position:absolute;
  4688. align-self:center;
  4689. padding:2px 2px 2px 0px;
  4690. box-sizing:border-box;
  4691. width:100%;
  4692. }
  4693. #u27015_text {
  4694. border-width:0px;
  4695. word-wrap:break-word;
  4696. text-transform:none;
  4697. visibility:hidden;
  4698. }
  4699. #u27016_img {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:144px;
  4705. height:35px;
  4706. }
  4707. #u27016 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:211px;
  4711. top:329px;
  4712. width:144px;
  4713. height:35px;
  4714. display:flex;
  4715. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4716. font-weight:400;
  4717. font-style:normal;
  4718. font-size:12px;
  4719. color:#606266;
  4720. }
  4721. #u27016 .text {
  4722. position:absolute;
  4723. align-self:center;
  4724. padding:2px 2px 2px 0px;
  4725. box-sizing:border-box;
  4726. width:100%;
  4727. }
  4728. #u27016_text {
  4729. border-width:0px;
  4730. word-wrap:break-word;
  4731. text-transform:none;
  4732. visibility:hidden;
  4733. }
  4734. #u27017_img {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:144px;
  4740. height:35px;
  4741. }
  4742. #u27017 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:355px;
  4746. top:329px;
  4747. width:144px;
  4748. height:35px;
  4749. display:flex;
  4750. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. font-size:12px;
  4754. color:#606266;
  4755. }
  4756. #u27017 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:2px 2px 2px 0px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u27017_text {
  4764. border-width:0px;
  4765. word-wrap:break-word;
  4766. text-transform:none;
  4767. visibility:hidden;
  4768. }
  4769. #u27018_img {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:144px;
  4775. height:35px;
  4776. }
  4777. #u27018 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:499px;
  4781. top:329px;
  4782. width:144px;
  4783. height:35px;
  4784. display:flex;
  4785. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4786. font-weight:400;
  4787. font-style:normal;
  4788. font-size:12px;
  4789. color:#606266;
  4790. }
  4791. #u27018 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 0px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u27018_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. visibility:hidden;
  4803. }
  4804. #u27019_img {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:144px;
  4810. height:35px;
  4811. }
  4812. #u27019 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:643px;
  4816. top:329px;
  4817. width:144px;
  4818. height:35px;
  4819. display:flex;
  4820. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:12px;
  4824. color:#606266;
  4825. }
  4826. #u27019 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:2px 2px 2px 0px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u27019_text {
  4834. border-width:0px;
  4835. word-wrap:break-word;
  4836. text-transform:none;
  4837. visibility:hidden;
  4838. }
  4839. #u27020_img {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:144px;
  4845. height:35px;
  4846. }
  4847. #u27020 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:787px;
  4851. top:329px;
  4852. width:144px;
  4853. height:35px;
  4854. display:flex;
  4855. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4856. font-weight:400;
  4857. font-style:normal;
  4858. font-size:12px;
  4859. color:#606266;
  4860. }
  4861. #u27020 .text {
  4862. position:absolute;
  4863. align-self:center;
  4864. padding:2px 2px 2px 0px;
  4865. box-sizing:border-box;
  4866. width:100%;
  4867. }
  4868. #u27020_text {
  4869. border-width:0px;
  4870. word-wrap:break-word;
  4871. text-transform:none;
  4872. visibility:hidden;
  4873. }
  4874. #u27021_img {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:0px;
  4878. top:0px;
  4879. width:144px;
  4880. height:35px;
  4881. }
  4882. #u27021 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:931px;
  4886. top:329px;
  4887. width:144px;
  4888. height:35px;
  4889. display:flex;
  4890. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:12px;
  4894. color:#606266;
  4895. }
  4896. #u27021 .text {
  4897. position:absolute;
  4898. align-self:center;
  4899. padding:2px 2px 2px 0px;
  4900. box-sizing:border-box;
  4901. width:100%;
  4902. }
  4903. #u27021_text {
  4904. border-width:0px;
  4905. word-wrap:break-word;
  4906. text-transform:none;
  4907. visibility:hidden;
  4908. }
  4909. #u27022_img {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:144px;
  4915. height:35px;
  4916. }
  4917. #u27022 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:1075px;
  4921. top:329px;
  4922. width:144px;
  4923. height:35px;
  4924. display:flex;
  4925. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:12px;
  4929. color:#606266;
  4930. }
  4931. #u27022 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:2px 2px 2px 0px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u27022_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. visibility:hidden;
  4943. }
  4944. #u27023_img {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:67px;
  4950. height:35px;
  4951. }
  4952. #u27023 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:364px;
  4957. width:67px;
  4958. height:35px;
  4959. display:flex;
  4960. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. font-size:12px;
  4964. color:#606266;
  4965. }
  4966. #u27023 .text {
  4967. position:absolute;
  4968. align-self:center;
  4969. padding:2px 2px 2px 0px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u27023_text {
  4974. border-width:0px;
  4975. word-wrap:break-word;
  4976. text-transform:none;
  4977. visibility:hidden;
  4978. }
  4979. #u27024_img {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:144px;
  4985. height:35px;
  4986. }
  4987. #u27024 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:67px;
  4991. top:364px;
  4992. width:144px;
  4993. height:35px;
  4994. display:flex;
  4995. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:12px;
  4999. color:#606266;
  5000. }
  5001. #u27024 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:2px 2px 2px 0px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u27024_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. visibility:hidden;
  5013. }
  5014. #u27025_img {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:144px;
  5020. height:35px;
  5021. }
  5022. #u27025 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:211px;
  5026. top:364px;
  5027. width:144px;
  5028. height:35px;
  5029. display:flex;
  5030. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:12px;
  5034. color:#606266;
  5035. }
  5036. #u27025 .text {
  5037. position:absolute;
  5038. align-self:center;
  5039. padding:2px 2px 2px 0px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u27025_text {
  5044. border-width:0px;
  5045. word-wrap:break-word;
  5046. text-transform:none;
  5047. visibility:hidden;
  5048. }
  5049. #u27026_img {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:144px;
  5055. height:35px;
  5056. }
  5057. #u27026 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:355px;
  5061. top:364px;
  5062. width:144px;
  5063. height:35px;
  5064. display:flex;
  5065. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:12px;
  5069. color:#606266;
  5070. }
  5071. #u27026 .text {
  5072. position:absolute;
  5073. align-self:center;
  5074. padding:2px 2px 2px 0px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u27026_text {
  5079. border-width:0px;
  5080. word-wrap:break-word;
  5081. text-transform:none;
  5082. visibility:hidden;
  5083. }
  5084. #u27027_img {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:144px;
  5090. height:35px;
  5091. }
  5092. #u27027 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:499px;
  5096. top:364px;
  5097. width:144px;
  5098. height:35px;
  5099. display:flex;
  5100. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:12px;
  5104. color:#606266;
  5105. }
  5106. #u27027 .text {
  5107. position:absolute;
  5108. align-self:center;
  5109. padding:2px 2px 2px 0px;
  5110. box-sizing:border-box;
  5111. width:100%;
  5112. }
  5113. #u27027_text {
  5114. border-width:0px;
  5115. word-wrap:break-word;
  5116. text-transform:none;
  5117. visibility:hidden;
  5118. }
  5119. #u27028_img {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:144px;
  5125. height:35px;
  5126. }
  5127. #u27028 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:643px;
  5131. top:364px;
  5132. width:144px;
  5133. height:35px;
  5134. display:flex;
  5135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:12px;
  5139. color:#606266;
  5140. }
  5141. #u27028 .text {
  5142. position:absolute;
  5143. align-self:center;
  5144. padding:2px 2px 2px 0px;
  5145. box-sizing:border-box;
  5146. width:100%;
  5147. }
  5148. #u27028_text {
  5149. border-width:0px;
  5150. word-wrap:break-word;
  5151. text-transform:none;
  5152. visibility:hidden;
  5153. }
  5154. #u27029_img {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:0px;
  5158. top:0px;
  5159. width:144px;
  5160. height:35px;
  5161. }
  5162. #u27029 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:787px;
  5166. top:364px;
  5167. width:144px;
  5168. height:35px;
  5169. display:flex;
  5170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:12px;
  5174. color:#606266;
  5175. }
  5176. #u27029 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:2px 2px 2px 0px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u27029_text {
  5184. border-width:0px;
  5185. word-wrap:break-word;
  5186. text-transform:none;
  5187. visibility:hidden;
  5188. }
  5189. #u27030_img {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:144px;
  5195. height:35px;
  5196. }
  5197. #u27030 {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:931px;
  5201. top:364px;
  5202. width:144px;
  5203. height:35px;
  5204. display:flex;
  5205. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:12px;
  5209. color:#606266;
  5210. }
  5211. #u27030 .text {
  5212. position:absolute;
  5213. align-self:center;
  5214. padding:2px 2px 2px 0px;
  5215. box-sizing:border-box;
  5216. width:100%;
  5217. }
  5218. #u27030_text {
  5219. border-width:0px;
  5220. word-wrap:break-word;
  5221. text-transform:none;
  5222. visibility:hidden;
  5223. }
  5224. #u27031_img {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:144px;
  5230. height:35px;
  5231. }
  5232. #u27031 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:1075px;
  5236. top:364px;
  5237. width:144px;
  5238. height:35px;
  5239. display:flex;
  5240. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5241. font-weight:400;
  5242. font-style:normal;
  5243. font-size:12px;
  5244. color:#606266;
  5245. }
  5246. #u27031 .text {
  5247. position:absolute;
  5248. align-self:center;
  5249. padding:2px 2px 2px 0px;
  5250. box-sizing:border-box;
  5251. width:100%;
  5252. }
  5253. #u27031_text {
  5254. border-width:0px;
  5255. word-wrap:break-word;
  5256. text-transform:none;
  5257. visibility:hidden;
  5258. }
  5259. #u27032_img {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:67px;
  5265. height:29px;
  5266. }
  5267. #u27032 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:399px;
  5272. width:67px;
  5273. height:29px;
  5274. display:flex;
  5275. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:12px;
  5279. color:#606266;
  5280. }
  5281. #u27032 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 2px 2px 0px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u27032_text {
  5289. border-width:0px;
  5290. word-wrap:break-word;
  5291. text-transform:none;
  5292. visibility:hidden;
  5293. }
  5294. #u27033_img {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:144px;
  5300. height:29px;
  5301. }
  5302. #u27033 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:67px;
  5306. top:399px;
  5307. width:144px;
  5308. height:29px;
  5309. display:flex;
  5310. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5311. font-weight:400;
  5312. font-style:normal;
  5313. font-size:12px;
  5314. color:#606266;
  5315. }
  5316. #u27033 .text {
  5317. position:absolute;
  5318. align-self:center;
  5319. padding:2px 2px 2px 0px;
  5320. box-sizing:border-box;
  5321. width:100%;
  5322. }
  5323. #u27033_text {
  5324. border-width:0px;
  5325. word-wrap:break-word;
  5326. text-transform:none;
  5327. visibility:hidden;
  5328. }
  5329. #u27034_img {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:144px;
  5335. height:29px;
  5336. }
  5337. #u27034 {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:211px;
  5341. top:399px;
  5342. width:144px;
  5343. height:29px;
  5344. display:flex;
  5345. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5346. font-weight:400;
  5347. font-style:normal;
  5348. font-size:12px;
  5349. color:#606266;
  5350. }
  5351. #u27034 .text {
  5352. position:absolute;
  5353. align-self:center;
  5354. padding:2px 2px 2px 0px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u27034_text {
  5359. border-width:0px;
  5360. word-wrap:break-word;
  5361. text-transform:none;
  5362. visibility:hidden;
  5363. }
  5364. #u27035_img {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:144px;
  5370. height:29px;
  5371. }
  5372. #u27035 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:355px;
  5376. top:399px;
  5377. width:144px;
  5378. height:29px;
  5379. display:flex;
  5380. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:12px;
  5384. color:#606266;
  5385. }
  5386. #u27035 .text {
  5387. position:absolute;
  5388. align-self:center;
  5389. padding:2px 2px 2px 0px;
  5390. box-sizing:border-box;
  5391. width:100%;
  5392. }
  5393. #u27035_text {
  5394. border-width:0px;
  5395. word-wrap:break-word;
  5396. text-transform:none;
  5397. visibility:hidden;
  5398. }
  5399. #u27036_img {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:144px;
  5405. height:29px;
  5406. }
  5407. #u27036 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:499px;
  5411. top:399px;
  5412. width:144px;
  5413. height:29px;
  5414. display:flex;
  5415. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. font-size:12px;
  5419. color:#606266;
  5420. }
  5421. #u27036 .text {
  5422. position:absolute;
  5423. align-self:center;
  5424. padding:2px 2px 2px 0px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u27036_text {
  5429. border-width:0px;
  5430. word-wrap:break-word;
  5431. text-transform:none;
  5432. visibility:hidden;
  5433. }
  5434. #u27037_img {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:144px;
  5440. height:29px;
  5441. }
  5442. #u27037 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:643px;
  5446. top:399px;
  5447. width:144px;
  5448. height:29px;
  5449. display:flex;
  5450. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5451. font-weight:400;
  5452. font-style:normal;
  5453. font-size:12px;
  5454. color:#606266;
  5455. }
  5456. #u27037 .text {
  5457. position:absolute;
  5458. align-self:center;
  5459. padding:2px 2px 2px 0px;
  5460. box-sizing:border-box;
  5461. width:100%;
  5462. }
  5463. #u27037_text {
  5464. border-width:0px;
  5465. word-wrap:break-word;
  5466. text-transform:none;
  5467. visibility:hidden;
  5468. }
  5469. #u27038_img {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:0px;
  5473. top:0px;
  5474. width:144px;
  5475. height:29px;
  5476. }
  5477. #u27038 {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:787px;
  5481. top:399px;
  5482. width:144px;
  5483. height:29px;
  5484. display:flex;
  5485. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5486. font-weight:400;
  5487. font-style:normal;
  5488. font-size:12px;
  5489. color:#606266;
  5490. }
  5491. #u27038 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:2px 2px 2px 0px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u27038_text {
  5499. border-width:0px;
  5500. word-wrap:break-word;
  5501. text-transform:none;
  5502. visibility:hidden;
  5503. }
  5504. #u27039_img {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:0px;
  5508. top:0px;
  5509. width:144px;
  5510. height:29px;
  5511. }
  5512. #u27039 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:931px;
  5516. top:399px;
  5517. width:144px;
  5518. height:29px;
  5519. display:flex;
  5520. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:12px;
  5524. color:#606266;
  5525. }
  5526. #u27039 .text {
  5527. position:absolute;
  5528. align-self:center;
  5529. padding:2px 2px 2px 0px;
  5530. box-sizing:border-box;
  5531. width:100%;
  5532. }
  5533. #u27039_text {
  5534. border-width:0px;
  5535. word-wrap:break-word;
  5536. text-transform:none;
  5537. visibility:hidden;
  5538. }
  5539. #u27040_img {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:144px;
  5545. height:29px;
  5546. }
  5547. #u27040 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:1075px;
  5551. top:399px;
  5552. width:144px;
  5553. height:29px;
  5554. display:flex;
  5555. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:12px;
  5559. color:#606266;
  5560. }
  5561. #u27040 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 0px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u27040_text {
  5569. border-width:0px;
  5570. word-wrap:break-word;
  5571. text-transform:none;
  5572. visibility:hidden;
  5573. }
  5574. #u27041_img {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:67px;
  5580. height:29px;
  5581. }
  5582. #u27041 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:428px;
  5587. width:67px;
  5588. height:29px;
  5589. display:flex;
  5590. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:12px;
  5594. color:#606266;
  5595. }
  5596. #u27041 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 0px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u27041_text {
  5604. border-width:0px;
  5605. word-wrap:break-word;
  5606. text-transform:none;
  5607. visibility:hidden;
  5608. }
  5609. #u27042_img {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:144px;
  5615. height:29px;
  5616. }
  5617. #u27042 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:67px;
  5621. top:428px;
  5622. width:144px;
  5623. height:29px;
  5624. display:flex;
  5625. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5626. font-weight:400;
  5627. font-style:normal;
  5628. font-size:12px;
  5629. color:#606266;
  5630. }
  5631. #u27042 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 0px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u27042_text {
  5639. border-width:0px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. visibility:hidden;
  5643. }
  5644. #u27043_img {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:144px;
  5650. height:29px;
  5651. }
  5652. #u27043 {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:211px;
  5656. top:428px;
  5657. width:144px;
  5658. height:29px;
  5659. display:flex;
  5660. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5661. font-weight:400;
  5662. font-style:normal;
  5663. font-size:12px;
  5664. color:#606266;
  5665. }
  5666. #u27043 .text {
  5667. position:absolute;
  5668. align-self:center;
  5669. padding:2px 2px 2px 0px;
  5670. box-sizing:border-box;
  5671. width:100%;
  5672. }
  5673. #u27043_text {
  5674. border-width:0px;
  5675. word-wrap:break-word;
  5676. text-transform:none;
  5677. visibility:hidden;
  5678. }
  5679. #u27044_img {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:144px;
  5685. height:29px;
  5686. }
  5687. #u27044 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:355px;
  5691. top:428px;
  5692. width:144px;
  5693. height:29px;
  5694. display:flex;
  5695. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:12px;
  5699. color:#606266;
  5700. }
  5701. #u27044 .text {
  5702. position:absolute;
  5703. align-self:center;
  5704. padding:2px 2px 2px 0px;
  5705. box-sizing:border-box;
  5706. width:100%;
  5707. }
  5708. #u27044_text {
  5709. border-width:0px;
  5710. word-wrap:break-word;
  5711. text-transform:none;
  5712. visibility:hidden;
  5713. }
  5714. #u27045_img {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:144px;
  5720. height:29px;
  5721. }
  5722. #u27045 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:499px;
  5726. top:428px;
  5727. width:144px;
  5728. height:29px;
  5729. display:flex;
  5730. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:12px;
  5734. color:#606266;
  5735. }
  5736. #u27045 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 0px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u27045_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. visibility:hidden;
  5748. }
  5749. #u27046_img {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:144px;
  5755. height:29px;
  5756. }
  5757. #u27046 {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:643px;
  5761. top:428px;
  5762. width:144px;
  5763. height:29px;
  5764. display:flex;
  5765. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:12px;
  5769. color:#606266;
  5770. }
  5771. #u27046 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:2px 2px 2px 0px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u27046_text {
  5779. border-width:0px;
  5780. word-wrap:break-word;
  5781. text-transform:none;
  5782. visibility:hidden;
  5783. }
  5784. #u27047_img {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:144px;
  5790. height:29px;
  5791. }
  5792. #u27047 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:787px;
  5796. top:428px;
  5797. width:144px;
  5798. height:29px;
  5799. display:flex;
  5800. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5801. font-weight:400;
  5802. font-style:normal;
  5803. font-size:12px;
  5804. color:#606266;
  5805. }
  5806. #u27047 .text {
  5807. position:absolute;
  5808. align-self:center;
  5809. padding:2px 2px 2px 0px;
  5810. box-sizing:border-box;
  5811. width:100%;
  5812. }
  5813. #u27047_text {
  5814. border-width:0px;
  5815. word-wrap:break-word;
  5816. text-transform:none;
  5817. visibility:hidden;
  5818. }
  5819. #u27048_img {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:144px;
  5825. height:29px;
  5826. }
  5827. #u27048 {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:931px;
  5831. top:428px;
  5832. width:144px;
  5833. height:29px;
  5834. display:flex;
  5835. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5836. font-weight:400;
  5837. font-style:normal;
  5838. font-size:12px;
  5839. color:#606266;
  5840. }
  5841. #u27048 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:2px 2px 2px 0px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u27048_text {
  5849. border-width:0px;
  5850. word-wrap:break-word;
  5851. text-transform:none;
  5852. visibility:hidden;
  5853. }
  5854. #u27049_img {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:144px;
  5860. height:29px;
  5861. }
  5862. #u27049 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:1075px;
  5866. top:428px;
  5867. width:144px;
  5868. height:29px;
  5869. display:flex;
  5870. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:12px;
  5874. color:#606266;
  5875. }
  5876. #u27049 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:2px 2px 2px 0px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u27049_text {
  5884. border-width:0px;
  5885. word-wrap:break-word;
  5886. text-transform:none;
  5887. visibility:hidden;
  5888. }
  5889. #u27050 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:0px;
  5895. height:0px;
  5896. }
  5897. #u27051_div {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:59px;
  5903. height:30px;
  5904. background:inherit;
  5905. background-color:rgba(41, 143, 255, 1);
  5906. border:none;
  5907. border-radius:4px;
  5908. -moz-box-shadow:none;
  5909. -webkit-box-shadow:none;
  5910. box-shadow:none;
  5911. font-family:'Microsoft YaHei', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:14px;
  5915. color:#FFFFFF;
  5916. }
  5917. #u27051 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:1250px;
  5921. top:100px;
  5922. width:59px;
  5923. height:30px;
  5924. display:flex;
  5925. font-family:'Microsoft YaHei', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:14px;
  5929. color:#FFFFFF;
  5930. }
  5931. #u27051 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:5px 15px 5px 15px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u27051_text {
  5939. border-width:0px;
  5940. white-space:nowrap;
  5941. text-transform:none;
  5942. }
  5943. #u27052_div {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:55px;
  5949. height:30px;
  5950. background:inherit;
  5951. background-color:rgba(255, 255, 255, 1);
  5952. box-sizing:border-box;
  5953. border-width:1px;
  5954. border-style:solid;
  5955. border-color:rgba(170, 170, 170, 1);
  5956. border-radius:4px;
  5957. -moz-box-shadow:none;
  5958. -webkit-box-shadow:none;
  5959. box-shadow:none;
  5960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5961. font-weight:400;
  5962. font-style:normal;
  5963. font-size:12px;
  5964. color:#555555;
  5965. }
  5966. #u27052 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:1319px;
  5970. top:100px;
  5971. width:55px;
  5972. height:30px;
  5973. display:flex;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:12px;
  5978. color:#555555;
  5979. }
  5980. #u27052 .text {
  5981. position:absolute;
  5982. align-self:center;
  5983. padding:5px 15px 5px 15px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u27052_text {
  5988. border-width:0px;
  5989. white-space:nowrap;
  5990. text-transform:none;
  5991. }
  5992. #u27053 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:0px;
  5998. height:0px;
  5999. }
  6000. #u27054_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:140px;
  6006. height:30px;
  6007. background:inherit;
  6008. background-color:rgba(255, 255, 255, 1);
  6009. box-sizing:border-box;
  6010. border-width:1px;
  6011. border-style:solid;
  6012. border-color:rgba(201, 201, 201, 1);
  6013. border-radius:4px;
  6014. -moz-box-shadow:none;
  6015. -webkit-box-shadow:none;
  6016. box-shadow:none;
  6017. font-family:'Microsoft YaHei', sans-serif;
  6018. font-weight:400;
  6019. font-style:normal;
  6020. font-size:14px;
  6021. color:#CCCCCC;
  6022. text-align:left;
  6023. }
  6024. #u27054 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:500px;
  6028. top:100px;
  6029. width:140px;
  6030. height:30px;
  6031. display:flex;
  6032. font-family:'Microsoft YaHei', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:14px;
  6036. color:#CCCCCC;
  6037. text-align:left;
  6038. }
  6039. #u27054 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 8px 2px 8px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u27054_text {
  6047. border-width:0px;
  6048. word-wrap:break-word;
  6049. text-transform:none;
  6050. visibility:hidden;
  6051. }
  6052. #u27055_input {
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:127px;
  6057. height:25px;
  6058. padding:2px 2px 2px 2px;
  6059. font-family:'Microsoft YaHei', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:10px;
  6063. letter-spacing:normal;
  6064. color:#000000;
  6065. vertical-align:none;
  6066. text-align:left;
  6067. text-transform:none;
  6068. background-color:transparent;
  6069. border-color:transparent;
  6070. }
  6071. #u27055_input.disabled {
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:127px;
  6076. height:25px;
  6077. padding:2px 2px 2px 2px;
  6078. font-family:'Microsoft YaHei', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:10px;
  6082. letter-spacing:normal;
  6083. color:#000000;
  6084. vertical-align:none;
  6085. text-align:left;
  6086. text-transform:none;
  6087. background-color:transparent;
  6088. border-color:transparent;
  6089. }
  6090. #u27055_div {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:127px;
  6096. height:25px;
  6097. background:inherit;
  6098. background-color:rgba(255, 255, 255, 1);
  6099. border:none;
  6100. border-radius:0px;
  6101. -moz-box-shadow:none;
  6102. -webkit-box-shadow:none;
  6103. box-shadow:none;
  6104. font-family:'Microsoft YaHei', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:10px;
  6108. }
  6109. #u27055 {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:508px;
  6113. top:101px;
  6114. width:127px;
  6115. height:25px;
  6116. display:flex;
  6117. font-family:'Microsoft YaHei', sans-serif;
  6118. font-weight:400;
  6119. font-style:normal;
  6120. font-size:10px;
  6121. }
  6122. #u27055 .text {
  6123. position:absolute;
  6124. align-self:center;
  6125. padding:2px 2px 2px 2px;
  6126. box-sizing:border-box;
  6127. width:100%;
  6128. }
  6129. #u27055_div.disabled {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:0px;
  6133. top:0px;
  6134. width:127px;
  6135. height:25px;
  6136. background:inherit;
  6137. background-color:rgba(240, 240, 240, 1);
  6138. border:none;
  6139. border-radius:0px;
  6140. -moz-box-shadow:none;
  6141. -webkit-box-shadow:none;
  6142. box-shadow:none;
  6143. font-family:'Microsoft YaHei', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. font-size:10px;
  6147. }
  6148. #u27055.disabled {
  6149. }
  6150. #u27056_div {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:55px;
  6156. height:30px;
  6157. background:inherit;
  6158. background-color:rgba(255, 255, 255, 1);
  6159. box-sizing:border-box;
  6160. border-width:1px;
  6161. border-style:solid;
  6162. border-color:rgba(170, 170, 170, 1);
  6163. border-radius:4px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:12px;
  6171. color:#555555;
  6172. }
  6173. #u27056 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:350px;
  6177. top:150px;
  6178. width:55px;
  6179. height:30px;
  6180. display:flex;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:12px;
  6185. color:#555555;
  6186. }
  6187. #u27056 .text {
  6188. position:absolute;
  6189. align-self:center;
  6190. padding:5px 15px 5px 15px;
  6191. box-sizing:border-box;
  6192. width:100%;
  6193. }
  6194. #u27056_text {
  6195. border-width:0px;
  6196. white-space:nowrap;
  6197. text-transform:none;
  6198. }
  6199. #u27057 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:0px;
  6205. height:0px;
  6206. }
  6207. #u27058_div {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:140px;
  6213. height:30px;
  6214. background:inherit;
  6215. background-color:rgba(255, 255, 255, 1);
  6216. box-sizing:border-box;
  6217. border-width:1px;
  6218. border-style:solid;
  6219. border-color:rgba(201, 201, 201, 1);
  6220. border-radius:4px;
  6221. -moz-box-shadow:none;
  6222. -webkit-box-shadow:none;
  6223. box-shadow:none;
  6224. font-family:'Microsoft YaHei', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:14px;
  6228. color:#CCCCCC;
  6229. text-align:left;
  6230. }
  6231. #u27058 {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:350px;
  6235. top:100px;
  6236. width:140px;
  6237. height:30px;
  6238. display:flex;
  6239. font-family:'Microsoft YaHei', sans-serif;
  6240. font-weight:400;
  6241. font-style:normal;
  6242. font-size:14px;
  6243. color:#CCCCCC;
  6244. text-align:left;
  6245. }
  6246. #u27058 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:2px 8px 2px 8px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u27058_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. visibility:hidden;
  6258. }
  6259. #u27059_input {
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:127px;
  6264. height:25px;
  6265. padding:2px 2px 2px 2px;
  6266. font-family:'Microsoft YaHei', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:10px;
  6270. letter-spacing:normal;
  6271. color:#000000;
  6272. vertical-align:none;
  6273. text-align:left;
  6274. text-transform:none;
  6275. background-color:transparent;
  6276. border-color:transparent;
  6277. }
  6278. #u27059_input.disabled {
  6279. position:absolute;
  6280. left:0px;
  6281. top:0px;
  6282. width:127px;
  6283. height:25px;
  6284. padding:2px 2px 2px 2px;
  6285. font-family:'Microsoft YaHei', sans-serif;
  6286. font-weight:400;
  6287. font-style:normal;
  6288. font-size:10px;
  6289. letter-spacing:normal;
  6290. color:#000000;
  6291. vertical-align:none;
  6292. text-align:left;
  6293. text-transform:none;
  6294. background-color:transparent;
  6295. border-color:transparent;
  6296. }
  6297. #u27059_div {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:127px;
  6303. height:25px;
  6304. background:inherit;
  6305. background-color:rgba(255, 255, 255, 1);
  6306. border:none;
  6307. border-radius:0px;
  6308. -moz-box-shadow:none;
  6309. -webkit-box-shadow:none;
  6310. box-shadow:none;
  6311. font-family:'Microsoft YaHei', sans-serif;
  6312. font-weight:400;
  6313. font-style:normal;
  6314. font-size:10px;
  6315. }
  6316. #u27059 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:358px;
  6320. top:101px;
  6321. width:127px;
  6322. height:25px;
  6323. display:flex;
  6324. font-family:'Microsoft YaHei', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:10px;
  6328. }
  6329. #u27059 .text {
  6330. position:absolute;
  6331. align-self:center;
  6332. padding:2px 2px 2px 2px;
  6333. box-sizing:border-box;
  6334. width:100%;
  6335. }
  6336. #u27059_div.disabled {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:127px;
  6342. height:25px;
  6343. background:inherit;
  6344. background-color:rgba(240, 240, 240, 1);
  6345. border:none;
  6346. border-radius:0px;
  6347. -moz-box-shadow:none;
  6348. -webkit-box-shadow:none;
  6349. box-shadow:none;
  6350. font-family:'Microsoft YaHei', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:10px;
  6354. }
  6355. #u27059.disabled {
  6356. }
  6357. #u27060 {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:0px;
  6361. top:0px;
  6362. width:0px;
  6363. height:0px;
  6364. }
  6365. #u27061_div {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:0px;
  6369. top:0px;
  6370. width:140px;
  6371. height:30px;
  6372. background:inherit;
  6373. background-color:rgba(255, 255, 255, 1);
  6374. box-sizing:border-box;
  6375. border-width:1px;
  6376. border-style:solid;
  6377. border-color:rgba(215, 215, 215, 1);
  6378. border-radius:4px;
  6379. -moz-box-shadow:none;
  6380. -webkit-box-shadow:none;
  6381. box-shadow:none;
  6382. font-size:11px;
  6383. }
  6384. #u27061 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:950px;
  6388. top:100px;
  6389. width:140px;
  6390. height:30px;
  6391. display:flex;
  6392. font-size:11px;
  6393. }
  6394. #u27061 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:2px 2px 2px 2px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u27061_text {
  6402. border-width:0px;
  6403. word-wrap:break-word;
  6404. text-transform:none;
  6405. visibility:hidden;
  6406. }
  6407. #u27062_input {
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:120px;
  6412. height:23px;
  6413. padding:2px 2px 2px 2px;
  6414. font-family:'ArialMT', 'Arial', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:11px;
  6418. letter-spacing:normal;
  6419. color:#AAAAAA;
  6420. vertical-align:none;
  6421. text-align:left;
  6422. text-transform:none;
  6423. background-color:transparent;
  6424. border-color:transparent;
  6425. }
  6426. #u27062_input.disabled {
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:120px;
  6431. height:23px;
  6432. padding:2px 2px 2px 2px;
  6433. font-family:'ArialMT', 'Arial', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:11px;
  6437. letter-spacing:normal;
  6438. color:#AAAAAA;
  6439. vertical-align:none;
  6440. text-align:left;
  6441. text-transform:none;
  6442. background-color:transparent;
  6443. border-color:transparent;
  6444. }
  6445. #u27062_div {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:120px;
  6451. height:23px;
  6452. background:inherit;
  6453. background-color:rgba(255, 255, 255, 1);
  6454. border:none;
  6455. border-radius:0px;
  6456. -moz-box-shadow:none;
  6457. -webkit-box-shadow:none;
  6458. box-shadow:none;
  6459. font-size:11px;
  6460. color:#AAAAAA;
  6461. }
  6462. #u27062 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:957px;
  6466. top:102px;
  6467. width:120px;
  6468. height:23px;
  6469. display:flex;
  6470. font-size:11px;
  6471. color:#AAAAAA;
  6472. }
  6473. #u27062 .text {
  6474. position:absolute;
  6475. align-self:flex-start;
  6476. padding:2px 2px 2px 2px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u27062_div.disabled {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:120px;
  6486. height:23px;
  6487. background:inherit;
  6488. background-color:rgba(240, 240, 240, 1);
  6489. border:none;
  6490. border-radius:0px;
  6491. -moz-box-shadow:none;
  6492. -webkit-box-shadow:none;
  6493. box-shadow:none;
  6494. font-size:11px;
  6495. color:#AAAAAA;
  6496. }
  6497. #u27062.disabled {
  6498. }
  6499. .u27062_input_option {
  6500. font-size:11px;
  6501. }
  6502. #u27063 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:0px;
  6508. height:0px;
  6509. }
  6510. #u27064_div {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:140px;
  6516. height:30px;
  6517. background:inherit;
  6518. background-color:rgba(255, 255, 255, 1);
  6519. box-sizing:border-box;
  6520. border-width:1px;
  6521. border-style:solid;
  6522. border-color:rgba(201, 201, 201, 1);
  6523. border-radius:4px;
  6524. -moz-box-shadow:none;
  6525. -webkit-box-shadow:none;
  6526. box-shadow:none;
  6527. font-family:'Microsoft YaHei', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:14px;
  6531. color:#CCCCCC;
  6532. text-align:left;
  6533. }
  6534. #u27064 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:650px;
  6538. top:100px;
  6539. width:140px;
  6540. height:30px;
  6541. display:flex;
  6542. font-family:'Microsoft YaHei', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:14px;
  6546. color:#CCCCCC;
  6547. text-align:left;
  6548. }
  6549. #u27064 .text {
  6550. position:absolute;
  6551. align-self:center;
  6552. padding:2px 8px 2px 8px;
  6553. box-sizing:border-box;
  6554. width:100%;
  6555. }
  6556. #u27064_text {
  6557. border-width:0px;
  6558. word-wrap:break-word;
  6559. text-transform:none;
  6560. visibility:hidden;
  6561. }
  6562. #u27065_input {
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:127px;
  6567. height:25px;
  6568. padding:2px 2px 2px 2px;
  6569. font-family:'Microsoft YaHei', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:10px;
  6573. letter-spacing:normal;
  6574. color:#000000;
  6575. vertical-align:none;
  6576. text-align:left;
  6577. text-transform:none;
  6578. background-color:transparent;
  6579. border-color:transparent;
  6580. }
  6581. #u27065_input.disabled {
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:127px;
  6586. height:25px;
  6587. padding:2px 2px 2px 2px;
  6588. font-family:'Microsoft YaHei', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:10px;
  6592. letter-spacing:normal;
  6593. color:#000000;
  6594. vertical-align:none;
  6595. text-align:left;
  6596. text-transform:none;
  6597. background-color:transparent;
  6598. border-color:transparent;
  6599. }
  6600. #u27065_div {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:127px;
  6606. height:25px;
  6607. background:inherit;
  6608. background-color:rgba(255, 255, 255, 1);
  6609. border:none;
  6610. border-radius:0px;
  6611. -moz-box-shadow:none;
  6612. -webkit-box-shadow:none;
  6613. box-shadow:none;
  6614. font-family:'Microsoft YaHei', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:10px;
  6618. }
  6619. #u27065 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:658px;
  6623. top:101px;
  6624. width:127px;
  6625. height:25px;
  6626. display:flex;
  6627. font-family:'Microsoft YaHei', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:10px;
  6631. }
  6632. #u27065 .text {
  6633. position:absolute;
  6634. align-self:center;
  6635. padding:2px 2px 2px 2px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u27065_div.disabled {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:127px;
  6645. height:25px;
  6646. background:inherit;
  6647. background-color:rgba(240, 240, 240, 1);
  6648. border:none;
  6649. border-radius:0px;
  6650. -moz-box-shadow:none;
  6651. -webkit-box-shadow:none;
  6652. box-shadow:none;
  6653. font-family:'Microsoft YaHei', sans-serif;
  6654. font-weight:400;
  6655. font-style:normal;
  6656. font-size:10px;
  6657. }
  6658. #u27065.disabled {
  6659. }
  6660. #u27066 {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:0px;
  6666. height:0px;
  6667. }
  6668. #u27067_div {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:140px;
  6674. height:30px;
  6675. background:inherit;
  6676. background-color:rgba(255, 255, 255, 1);
  6677. box-sizing:border-box;
  6678. border-width:1px;
  6679. border-style:solid;
  6680. border-color:rgba(215, 215, 215, 1);
  6681. border-radius:4px;
  6682. -moz-box-shadow:none;
  6683. -webkit-box-shadow:none;
  6684. box-shadow:none;
  6685. font-size:11px;
  6686. }
  6687. #u27067 {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:800px;
  6691. top:100px;
  6692. width:140px;
  6693. height:30px;
  6694. display:flex;
  6695. font-size:11px;
  6696. }
  6697. #u27067 .text {
  6698. position:absolute;
  6699. align-self:center;
  6700. padding:2px 2px 2px 2px;
  6701. box-sizing:border-box;
  6702. width:100%;
  6703. }
  6704. #u27067_text {
  6705. border-width:0px;
  6706. word-wrap:break-word;
  6707. text-transform:none;
  6708. visibility:hidden;
  6709. }
  6710. #u27068_input {
  6711. position:absolute;
  6712. left:0px;
  6713. top:0px;
  6714. width:125px;
  6715. height:23px;
  6716. padding:2px 2px 2px 2px;
  6717. font-family:'ArialMT', 'Arial', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:11px;
  6721. letter-spacing:normal;
  6722. color:#AAAAAA;
  6723. vertical-align:none;
  6724. text-align:left;
  6725. text-transform:none;
  6726. background-color:transparent;
  6727. border-color:transparent;
  6728. }
  6729. #u27068_input.disabled {
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:125px;
  6734. height:23px;
  6735. padding:2px 2px 2px 2px;
  6736. font-family:'ArialMT', 'Arial', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:11px;
  6740. letter-spacing:normal;
  6741. color:#AAAAAA;
  6742. vertical-align:none;
  6743. text-align:left;
  6744. text-transform:none;
  6745. background-color:transparent;
  6746. border-color:transparent;
  6747. }
  6748. #u27068_div {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:125px;
  6754. height:23px;
  6755. background:inherit;
  6756. background-color:rgba(255, 255, 255, 1);
  6757. border:none;
  6758. border-radius:0px;
  6759. -moz-box-shadow:none;
  6760. -webkit-box-shadow:none;
  6761. box-shadow:none;
  6762. font-size:11px;
  6763. color:#AAAAAA;
  6764. }
  6765. #u27068 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:806px;
  6769. top:102px;
  6770. width:125px;
  6771. height:23px;
  6772. display:flex;
  6773. font-size:11px;
  6774. color:#AAAAAA;
  6775. }
  6776. #u27068 .text {
  6777. position:absolute;
  6778. align-self:flex-start;
  6779. padding:2px 2px 2px 2px;
  6780. box-sizing:border-box;
  6781. width:100%;
  6782. }
  6783. #u27068_div.disabled {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:125px;
  6789. height:23px;
  6790. background:inherit;
  6791. background-color:rgba(240, 240, 240, 1);
  6792. border:none;
  6793. border-radius:0px;
  6794. -moz-box-shadow:none;
  6795. -webkit-box-shadow:none;
  6796. box-shadow:none;
  6797. font-size:11px;
  6798. color:#AAAAAA;
  6799. }
  6800. #u27068.disabled {
  6801. }
  6802. .u27068_input_option {
  6803. font-size:11px;
  6804. }
  6805. #u27069 {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:0px;
  6811. height:0px;
  6812. }
  6813. #u27070_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:140px;
  6819. height:30px;
  6820. background:inherit;
  6821. background-color:rgba(255, 255, 255, 1);
  6822. box-sizing:border-box;
  6823. border-width:1px;
  6824. border-style:solid;
  6825. border-color:rgba(215, 215, 215, 1);
  6826. border-radius:4px;
  6827. -moz-box-shadow:none;
  6828. -webkit-box-shadow:none;
  6829. box-shadow:none;
  6830. font-size:11px;
  6831. }
  6832. #u27070 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:1100px;
  6836. top:100px;
  6837. width:140px;
  6838. height:30px;
  6839. display:flex;
  6840. font-size:11px;
  6841. }
  6842. #u27070 .text {
  6843. position:absolute;
  6844. align-self:center;
  6845. padding:2px 2px 2px 2px;
  6846. box-sizing:border-box;
  6847. width:100%;
  6848. }
  6849. #u27070_text {
  6850. border-width:0px;
  6851. word-wrap:break-word;
  6852. text-transform:none;
  6853. visibility:hidden;
  6854. }
  6855. #u27071_input {
  6856. position:absolute;
  6857. left:0px;
  6858. top:0px;
  6859. width:120px;
  6860. height:23px;
  6861. padding:2px 2px 2px 2px;
  6862. font-family:'ArialMT', 'Arial', sans-serif;
  6863. font-weight:400;
  6864. font-style:normal;
  6865. font-size:11px;
  6866. letter-spacing:normal;
  6867. color:#AAAAAA;
  6868. vertical-align:none;
  6869. text-align:left;
  6870. text-transform:none;
  6871. background-color:transparent;
  6872. border-color:transparent;
  6873. }
  6874. #u27071_input.disabled {
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:120px;
  6879. height:23px;
  6880. padding:2px 2px 2px 2px;
  6881. font-family:'ArialMT', 'Arial', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:11px;
  6885. letter-spacing:normal;
  6886. color:#AAAAAA;
  6887. vertical-align:none;
  6888. text-align:left;
  6889. text-transform:none;
  6890. background-color:transparent;
  6891. border-color:transparent;
  6892. }
  6893. #u27071_div {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:0px;
  6897. top:0px;
  6898. width:120px;
  6899. height:23px;
  6900. background:inherit;
  6901. background-color:rgba(255, 255, 255, 1);
  6902. border:none;
  6903. border-radius:0px;
  6904. -moz-box-shadow:none;
  6905. -webkit-box-shadow:none;
  6906. box-shadow:none;
  6907. font-size:11px;
  6908. color:#AAAAAA;
  6909. }
  6910. #u27071 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:1107px;
  6914. top:102px;
  6915. width:120px;
  6916. height:23px;
  6917. display:flex;
  6918. font-size:11px;
  6919. color:#AAAAAA;
  6920. }
  6921. #u27071 .text {
  6922. position:absolute;
  6923. align-self:flex-start;
  6924. padding:2px 2px 2px 2px;
  6925. box-sizing:border-box;
  6926. width:100%;
  6927. }
  6928. #u27071_div.disabled {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:120px;
  6934. height:23px;
  6935. background:inherit;
  6936. background-color:rgba(240, 240, 240, 1);
  6937. border:none;
  6938. border-radius:0px;
  6939. -moz-box-shadow:none;
  6940. -webkit-box-shadow:none;
  6941. box-shadow:none;
  6942. font-size:11px;
  6943. color:#AAAAAA;
  6944. }
  6945. #u27071.disabled {
  6946. }
  6947. .u27071_input_option {
  6948. font-size:11px;
  6949. }
  6950. #u27072 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:0px;
  6954. top:0px;
  6955. width:0px;
  6956. height:0px;
  6957. }
  6958. #u27073_div {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:200px;
  6964. height:1180px;
  6965. background:inherit;
  6966. background-color:rgba(255, 255, 255, 1);
  6967. border:none;
  6968. border-radius:0px;
  6969. -moz-box-shadow:none;
  6970. -webkit-box-shadow:none;
  6971. box-shadow:none;
  6972. }
  6973. #u27073 {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:120px;
  6977. top:50px;
  6978. width:200px;
  6979. height:1180px;
  6980. display:flex;
  6981. }
  6982. #u27073 .text {
  6983. position:absolute;
  6984. align-self:center;
  6985. padding:2px 2px 2px 2px;
  6986. box-sizing:border-box;
  6987. width:100%;
  6988. }
  6989. #u27073_text {
  6990. border-width:0px;
  6991. word-wrap:break-word;
  6992. text-transform:none;
  6993. visibility:hidden;
  6994. }
  6995. #u27074_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:200px;
  7001. height:60px;
  7002. background:inherit;
  7003. background-color:rgba(224, 231, 247, 1);
  7004. border:none;
  7005. border-radius:0px;
  7006. -moz-box-shadow:none;
  7007. -webkit-box-shadow:none;
  7008. box-shadow:none;
  7009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7010. font-weight:500;
  7011. font-style:normal;
  7012. font-size:18px;
  7013. }
  7014. #u27074 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:120px;
  7018. top:50px;
  7019. width:200px;
  7020. height:60px;
  7021. display:flex;
  7022. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7023. font-weight:500;
  7024. font-style:normal;
  7025. font-size:18px;
  7026. }
  7027. #u27074 .text {
  7028. position:absolute;
  7029. align-self:center;
  7030. padding:0px 0px 0px 20px;
  7031. box-sizing:border-box;
  7032. width:100%;
  7033. }
  7034. #u27074_text {
  7035. border-width:0px;
  7036. word-wrap:break-word;
  7037. text-transform:none;
  7038. }
  7039. #u27075_div {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:0px;
  7043. top:0px;
  7044. width:97px;
  7045. height:22px;
  7046. background:inherit;
  7047. background-color:rgba(255, 255, 255, 0);
  7048. border:none;
  7049. border-radius:0px;
  7050. -moz-box-shadow:none;
  7051. -webkit-box-shadow:none;
  7052. box-shadow:none;
  7053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7054. font-weight:400;
  7055. font-style:normal;
  7056. font-size:16px;
  7057. }
  7058. #u27075 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:146px;
  7062. top:167px;
  7063. width:97px;
  7064. height:22px;
  7065. display:flex;
  7066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:16px;
  7070. }
  7071. #u27075 .text {
  7072. position:absolute;
  7073. align-self:flex-start;
  7074. padding:0px 0px 0px 0px;
  7075. box-sizing:border-box;
  7076. width:100%;
  7077. }
  7078. #u27075_text {
  7079. border-width:0px;
  7080. white-space:nowrap;
  7081. text-transform:none;
  7082. }
  7083. #u27076_div {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:0px;
  7087. top:0px;
  7088. width:97px;
  7089. height:22px;
  7090. background:inherit;
  7091. background-color:rgba(255, 255, 255, 0);
  7092. border:none;
  7093. border-radius:0px;
  7094. -moz-box-shadow:none;
  7095. -webkit-box-shadow:none;
  7096. box-shadow:none;
  7097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7098. font-weight:400;
  7099. font-style:normal;
  7100. font-size:16px;
  7101. }
  7102. #u27076 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:146px;
  7106. top:209px;
  7107. width:97px;
  7108. height:22px;
  7109. display:flex;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:16px;
  7114. }
  7115. #u27076 .text {
  7116. position:absolute;
  7117. align-self:flex-start;
  7118. padding:0px 0px 0px 0px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u27076_text {
  7123. border-width:0px;
  7124. white-space:nowrap;
  7125. text-transform:none;
  7126. }
  7127. #u27077_div {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:0px;
  7131. top:0px;
  7132. width:73px;
  7133. height:17px;
  7134. background:inherit;
  7135. background-color:rgba(255, 255, 255, 0);
  7136. border:none;
  7137. border-radius:0px;
  7138. -moz-box-shadow:none;
  7139. -webkit-box-shadow:none;
  7140. box-shadow:none;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:12px;
  7145. color:#AAAAAA;
  7146. }
  7147. #u27077 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:146px;
  7151. top:130px;
  7152. width:73px;
  7153. height:17px;
  7154. display:flex;
  7155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7156. font-weight:400;
  7157. font-style:normal;
  7158. font-size:12px;
  7159. color:#AAAAAA;
  7160. }
  7161. #u27077 .text {
  7162. position:absolute;
  7163. align-self:flex-start;
  7164. padding:0px 0px 0px 0px;
  7165. box-sizing:border-box;
  7166. width:100%;
  7167. }
  7168. #u27077_text {
  7169. border-width:0px;
  7170. white-space:nowrap;
  7171. text-transform:none;
  7172. }
  7173. #u27078_div {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:73px;
  7179. height:17px;
  7180. background:inherit;
  7181. background-color:rgba(255, 255, 255, 0);
  7182. border:none;
  7183. border-radius:0px;
  7184. -moz-box-shadow:none;
  7185. -webkit-box-shadow:none;
  7186. box-shadow:none;
  7187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7188. font-weight:400;
  7189. font-style:normal;
  7190. font-size:12px;
  7191. color:#AAAAAA;
  7192. }
  7193. #u27078 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:146px;
  7197. top:397px;
  7198. width:73px;
  7199. height:17px;
  7200. display:flex;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:12px;
  7205. color:#AAAAAA;
  7206. }
  7207. #u27078 .text {
  7208. position:absolute;
  7209. align-self:flex-start;
  7210. padding:0px 0px 0px 0px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u27078_text {
  7215. border-width:0px;
  7216. white-space:nowrap;
  7217. text-transform:none;
  7218. }
  7219. #u27079_img {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:201px;
  7225. height:2px;
  7226. }
  7227. #u27079 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:120px;
  7231. top:375px;
  7232. width:200px;
  7233. height:1px;
  7234. display:flex;
  7235. }
  7236. #u27079 .text {
  7237. position:absolute;
  7238. align-self:center;
  7239. padding:2px 2px 2px 2px;
  7240. box-sizing:border-box;
  7241. width:100%;
  7242. }
  7243. #u27079_text {
  7244. border-width:0px;
  7245. word-wrap:break-word;
  7246. text-transform:none;
  7247. visibility:hidden;
  7248. }
  7249. #u27080_div {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:65px;
  7255. height:22px;
  7256. background:inherit;
  7257. background-color:rgba(255, 255, 255, 0);
  7258. border:none;
  7259. border-radius:0px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:16px;
  7267. }
  7268. #u27080 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:146px;
  7272. top:435px;
  7273. width:65px;
  7274. height:22px;
  7275. display:flex;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:16px;
  7280. }
  7281. #u27080 .text {
  7282. position:absolute;
  7283. align-self:flex-start;
  7284. padding:0px 0px 0px 0px;
  7285. box-sizing:border-box;
  7286. width:100%;
  7287. }
  7288. #u27080_text {
  7289. border-width:0px;
  7290. white-space:nowrap;
  7291. text-transform:none;
  7292. }
  7293. #u27081_div {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:97px;
  7299. height:22px;
  7300. background:inherit;
  7301. background-color:rgba(255, 255, 255, 0);
  7302. border:none;
  7303. border-radius:0px;
  7304. -moz-box-shadow:none;
  7305. -webkit-box-shadow:none;
  7306. box-shadow:none;
  7307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:16px;
  7311. }
  7312. #u27081 {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:146px;
  7316. top:477px;
  7317. width:97px;
  7318. height:22px;
  7319. display:flex;
  7320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7321. font-weight:400;
  7322. font-style:normal;
  7323. font-size:16px;
  7324. }
  7325. #u27081 .text {
  7326. position:absolute;
  7327. align-self:flex-start;
  7328. padding:0px 0px 0px 0px;
  7329. box-sizing:border-box;
  7330. width:100%;
  7331. }
  7332. #u27081_text {
  7333. border-width:0px;
  7334. white-space:nowrap;
  7335. text-transform:none;
  7336. }
  7337. #u27082_div {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:97px;
  7343. height:22px;
  7344. background:inherit;
  7345. background-color:rgba(255, 255, 255, 0);
  7346. border:none;
  7347. border-radius:0px;
  7348. -moz-box-shadow:none;
  7349. -webkit-box-shadow:none;
  7350. box-shadow:none;
  7351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7352. font-weight:400;
  7353. font-style:normal;
  7354. font-size:16px;
  7355. }
  7356. #u27082 {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:146px;
  7360. top:251px;
  7361. width:97px;
  7362. height:22px;
  7363. display:flex;
  7364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7365. font-weight:400;
  7366. font-style:normal;
  7367. font-size:16px;
  7368. }
  7369. #u27082 .text {
  7370. position:absolute;
  7371. align-self:flex-start;
  7372. padding:0px 0px 0px 0px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u27082_text {
  7377. border-width:0px;
  7378. white-space:nowrap;
  7379. text-transform:none;
  7380. }
  7381. #u27083_div {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:97px;
  7387. height:22px;
  7388. background:inherit;
  7389. background-color:rgba(255, 255, 255, 0);
  7390. border:none;
  7391. border-radius:0px;
  7392. -moz-box-shadow:none;
  7393. -webkit-box-shadow:none;
  7394. box-shadow:none;
  7395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7396. font-weight:400;
  7397. font-style:normal;
  7398. font-size:16px;
  7399. }
  7400. #u27083 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:146px;
  7404. top:293px;
  7405. width:97px;
  7406. height:22px;
  7407. display:flex;
  7408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. font-size:16px;
  7412. }
  7413. #u27083 .text {
  7414. position:absolute;
  7415. align-self:flex-start;
  7416. padding:0px 0px 0px 0px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u27083_text {
  7421. border-width:0px;
  7422. white-space:nowrap;
  7423. text-transform:none;
  7424. }
  7425. #u27084_div {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:97px;
  7431. height:22px;
  7432. background:inherit;
  7433. background-color:rgba(255, 255, 255, 0);
  7434. border:none;
  7435. border-radius:0px;
  7436. -moz-box-shadow:none;
  7437. -webkit-box-shadow:none;
  7438. box-shadow:none;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:16px;
  7443. }
  7444. #u27084 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:146px;
  7448. top:519px;
  7449. width:97px;
  7450. height:22px;
  7451. display:flex;
  7452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:16px;
  7456. }
  7457. #u27084 .text {
  7458. position:absolute;
  7459. align-self:flex-start;
  7460. padding:0px 0px 0px 0px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u27084_text {
  7465. border-width:0px;
  7466. white-space:nowrap;
  7467. text-transform:none;
  7468. }
  7469. #u27085_div {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:97px;
  7475. height:22px;
  7476. background:inherit;
  7477. background-color:rgba(255, 255, 255, 0);
  7478. border:none;
  7479. border-radius:0px;
  7480. -moz-box-shadow:none;
  7481. -webkit-box-shadow:none;
  7482. box-shadow:none;
  7483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:16px;
  7487. }
  7488. #u27085 {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:146px;
  7492. top:561px;
  7493. width:97px;
  7494. height:22px;
  7495. display:flex;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:16px;
  7500. }
  7501. #u27085 .text {
  7502. position:absolute;
  7503. align-self:flex-start;
  7504. padding:0px 0px 0px 0px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u27085_text {
  7509. border-width:0px;
  7510. white-space:nowrap;
  7511. text-transform:none;
  7512. }
  7513. #u27086_div {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:0px;
  7517. top:0px;
  7518. width:97px;
  7519. height:22px;
  7520. background:inherit;
  7521. background-color:rgba(255, 255, 255, 0);
  7522. border:none;
  7523. border-radius:0px;
  7524. -moz-box-shadow:none;
  7525. -webkit-box-shadow:none;
  7526. box-shadow:none;
  7527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7528. font-weight:400;
  7529. font-style:normal;
  7530. font-size:16px;
  7531. }
  7532. #u27086 {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:146px;
  7536. top:603px;
  7537. width:97px;
  7538. height:22px;
  7539. display:flex;
  7540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:16px;
  7544. }
  7545. #u27086 .text {
  7546. position:absolute;
  7547. align-self:flex-start;
  7548. padding:0px 0px 0px 0px;
  7549. box-sizing:border-box;
  7550. width:100%;
  7551. }
  7552. #u27086_text {
  7553. border-width:0px;
  7554. white-space:nowrap;
  7555. text-transform:none;
  7556. }
  7557. #u27087_div {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:0px;
  7561. top:0px;
  7562. width:49px;
  7563. height:17px;
  7564. background:inherit;
  7565. background-color:rgba(255, 255, 255, 0);
  7566. border:none;
  7567. border-radius:0px;
  7568. -moz-box-shadow:none;
  7569. -webkit-box-shadow:none;
  7570. box-shadow:none;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:12px;
  7575. color:#AAAAAA;
  7576. }
  7577. #u27087 {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:146px;
  7581. top:670px;
  7582. width:49px;
  7583. height:17px;
  7584. display:flex;
  7585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. font-size:12px;
  7589. color:#AAAAAA;
  7590. }
  7591. #u27087 .text {
  7592. position:absolute;
  7593. align-self:flex-start;
  7594. padding:0px 0px 0px 0px;
  7595. box-sizing:border-box;
  7596. width:100%;
  7597. }
  7598. #u27087_text {
  7599. border-width:0px;
  7600. white-space:nowrap;
  7601. text-transform:none;
  7602. }
  7603. #u27088_img {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:201px;
  7609. height:2px;
  7610. }
  7611. #u27088 {
  7612. border-width:0px;
  7613. position:absolute;
  7614. left:120px;
  7615. top:648px;
  7616. width:200px;
  7617. height:1px;
  7618. display:flex;
  7619. }
  7620. #u27088 .text {
  7621. position:absolute;
  7622. align-self:center;
  7623. padding:2px 2px 2px 2px;
  7624. box-sizing:border-box;
  7625. width:100%;
  7626. }
  7627. #u27088_text {
  7628. border-width:0px;
  7629. word-wrap:break-word;
  7630. text-transform:none;
  7631. visibility:hidden;
  7632. }
  7633. #u27089_div {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:0px;
  7637. top:0px;
  7638. width:97px;
  7639. height:22px;
  7640. background:inherit;
  7641. background-color:rgba(255, 255, 255, 0);
  7642. border:none;
  7643. border-radius:0px;
  7644. -moz-box-shadow:none;
  7645. -webkit-box-shadow:none;
  7646. box-shadow:none;
  7647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7648. font-weight:400;
  7649. font-style:normal;
  7650. font-size:16px;
  7651. }
  7652. #u27089 {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:146px;
  7656. top:708px;
  7657. width:97px;
  7658. height:22px;
  7659. display:flex;
  7660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:16px;
  7664. }
  7665. #u27089 .text {
  7666. position:absolute;
  7667. align-self:flex-start;
  7668. padding:0px 0px 0px 0px;
  7669. box-sizing:border-box;
  7670. width:100%;
  7671. }
  7672. #u27089_text {
  7673. border-width:0px;
  7674. white-space:nowrap;
  7675. text-transform:none;
  7676. }
  7677. #u27090_div {
  7678. border-width:0px;
  7679. position:absolute;
  7680. left:0px;
  7681. top:0px;
  7682. width:97px;
  7683. height:22px;
  7684. background:inherit;
  7685. background-color:rgba(255, 255, 255, 0);
  7686. border:none;
  7687. border-radius:0px;
  7688. -moz-box-shadow:none;
  7689. -webkit-box-shadow:none;
  7690. box-shadow:none;
  7691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7692. font-weight:400;
  7693. font-style:normal;
  7694. font-size:16px;
  7695. }
  7696. #u27090 {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:146px;
  7700. top:750px;
  7701. width:97px;
  7702. height:22px;
  7703. display:flex;
  7704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7705. font-weight:400;
  7706. font-style:normal;
  7707. font-size:16px;
  7708. }
  7709. #u27090 .text {
  7710. position:absolute;
  7711. align-self:flex-start;
  7712. padding:0px 0px 0px 0px;
  7713. box-sizing:border-box;
  7714. width:100%;
  7715. }
  7716. #u27090_text {
  7717. border-width:0px;
  7718. white-space:nowrap;
  7719. text-transform:none;
  7720. }
  7721. #u27091_div {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:97px;
  7727. height:22px;
  7728. background:inherit;
  7729. background-color:rgba(255, 255, 255, 0);
  7730. border:none;
  7731. border-radius:0px;
  7732. -moz-box-shadow:none;
  7733. -webkit-box-shadow:none;
  7734. box-shadow:none;
  7735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7736. font-weight:400;
  7737. font-style:normal;
  7738. font-size:16px;
  7739. }
  7740. #u27091 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:146px;
  7744. top:335px;
  7745. width:97px;
  7746. height:22px;
  7747. display:flex;
  7748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:16px;
  7752. }
  7753. #u27091 .text {
  7754. position:absolute;
  7755. align-self:flex-start;
  7756. padding:0px 0px 0px 0px;
  7757. box-sizing:border-box;
  7758. width:100%;
  7759. }
  7760. #u27091_text {
  7761. border-width:0px;
  7762. white-space:nowrap;
  7763. text-transform:none;
  7764. }
  7765. #u27092_div {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:97px;
  7771. height:22px;
  7772. background:inherit;
  7773. background-color:rgba(255, 255, 255, 0);
  7774. border:none;
  7775. border-radius:0px;
  7776. -moz-box-shadow:none;
  7777. -webkit-box-shadow:none;
  7778. box-shadow:none;
  7779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7780. font-weight:400;
  7781. font-style:normal;
  7782. font-size:16px;
  7783. }
  7784. #u27092 {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:146px;
  7788. top:792px;
  7789. width:97px;
  7790. height:22px;
  7791. display:flex;
  7792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:16px;
  7796. }
  7797. #u27092 .text {
  7798. position:absolute;
  7799. align-self:flex-start;
  7800. padding:0px 0px 0px 0px;
  7801. box-sizing:border-box;
  7802. width:100%;
  7803. }
  7804. #u27092_text {
  7805. border-width:0px;
  7806. white-space:nowrap;
  7807. text-transform:none;
  7808. }
  7809. #u27093_div {
  7810. border-width:0px;
  7811. position:absolute;
  7812. left:0px;
  7813. top:0px;
  7814. width:49px;
  7815. height:17px;
  7816. background:inherit;
  7817. background-color:rgba(255, 255, 255, 0);
  7818. border:none;
  7819. border-radius:0px;
  7820. -moz-box-shadow:none;
  7821. -webkit-box-shadow:none;
  7822. box-shadow:none;
  7823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7824. font-weight:400;
  7825. font-style:normal;
  7826. font-size:12px;
  7827. color:#AAAAAA;
  7828. }
  7829. #u27093 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:146px;
  7833. top:856px;
  7834. width:49px;
  7835. height:17px;
  7836. display:flex;
  7837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:12px;
  7841. color:#AAAAAA;
  7842. }
  7843. #u27093 .text {
  7844. position:absolute;
  7845. align-self:flex-start;
  7846. padding:0px 0px 0px 0px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u27093_text {
  7851. border-width:0px;
  7852. white-space:nowrap;
  7853. text-transform:none;
  7854. }
  7855. #u27094_img {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:201px;
  7861. height:2px;
  7862. }
  7863. #u27094 {
  7864. border-width:0px;
  7865. position:absolute;
  7866. left:120px;
  7867. top:834px;
  7868. width:200px;
  7869. height:1px;
  7870. display:flex;
  7871. }
  7872. #u27094 .text {
  7873. position:absolute;
  7874. align-self:center;
  7875. padding:2px 2px 2px 2px;
  7876. box-sizing:border-box;
  7877. width:100%;
  7878. }
  7879. #u27094_text {
  7880. border-width:0px;
  7881. word-wrap:break-word;
  7882. text-transform:none;
  7883. visibility:hidden;
  7884. }
  7885. #u27095_div {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:97px;
  7891. height:22px;
  7892. background:inherit;
  7893. background-color:rgba(255, 255, 255, 0);
  7894. border:none;
  7895. border-radius:0px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. font-size:16px;
  7903. }
  7904. #u27095 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:146px;
  7908. top:894px;
  7909. width:97px;
  7910. height:22px;
  7911. display:flex;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:16px;
  7916. }
  7917. #u27095 .text {
  7918. position:absolute;
  7919. align-self:flex-start;
  7920. padding:0px 0px 0px 0px;
  7921. box-sizing:border-box;
  7922. width:100%;
  7923. }
  7924. #u27095_text {
  7925. border-width:0px;
  7926. white-space:nowrap;
  7927. text-transform:none;
  7928. }