styles.css 189 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-24px;
  6. width:1575px;
  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. #u3124 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u3125_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1184px;
  33. height:64px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. }
  42. #u3125 {
  43. border-width:0px;
  44. position:absolute;
  45. left:280px;
  46. top:37px;
  47. width:1184px;
  48. height:64px;
  49. display:flex;
  50. }
  51. #u3125 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u3125_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u3126_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:20px;
  70. height:15px;
  71. }
  72. #u3126 {
  73. border-width:0px;
  74. position:absolute;
  75. left:308px;
  76. top:62px;
  77. width:20px;
  78. height:15px;
  79. display:flex;
  80. }
  81. #u3126 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u3126_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u3127 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u3128_img {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:24px;
  108. height:24px;
  109. }
  110. #u3128 {
  111. border-width:0px;
  112. position:absolute;
  113. left:1341px;
  114. top:58px;
  115. width:24px;
  116. height:24px;
  117. display:flex;
  118. }
  119. #u3128 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u3128_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u3129_div {
  133. border-width:0px;
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:42px;
  138. height:22px;
  139. background:inherit;
  140. background-color:rgba(255, 255, 255, 0);
  141. border:none;
  142. border-radius:0px;
  143. -moz-box-shadow:none;
  144. -webkit-box-shadow:none;
  145. box-shadow:none;
  146. color:rgba(0, 0, 0, 0.6470588235294118);
  147. line-height:22px;
  148. }
  149. #u3129 {
  150. border-width:0px;
  151. position:absolute;
  152. left:1373px;
  153. top:59px;
  154. width:42px;
  155. height:22px;
  156. display:flex;
  157. color:rgba(0, 0, 0, 0.6470588235294118);
  158. line-height:22px;
  159. }
  160. #u3129 .text {
  161. position:absolute;
  162. align-self:flex-start;
  163. padding:0px 0px 0px 0px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u3129_text {
  168. border-width:0px;
  169. white-space:nowrap;
  170. text-transform:none;
  171. }
  172. #u3130_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:256px;
  178. height:1776px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 1);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  184. -webkit-box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  185. box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  186. }
  187. #u3130 {
  188. border-width:0px;
  189. position:absolute;
  190. left:24px;
  191. top:37px;
  192. width:256px;
  193. height:1776px;
  194. display:flex;
  195. }
  196. #u3130 .text {
  197. position:absolute;
  198. align-self:center;
  199. padding:2px 2px 2px 2px;
  200. box-sizing:border-box;
  201. width:100%;
  202. }
  203. #u3130_text {
  204. border-width:0px;
  205. word-wrap:break-word;
  206. text-transform:none;
  207. visibility:hidden;
  208. }
  209. #u3131_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:256px;
  215. height:65px;
  216. }
  217. #u3131 {
  218. border-width:0px;
  219. position:absolute;
  220. left:24px;
  221. top:37px;
  222. width:256px;
  223. height:65px;
  224. display:flex;
  225. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  226. font-weight:650;
  227. font-style:normal;
  228. font-size:18px;
  229. color:#2836FE;
  230. text-align:left;
  231. line-height:26px;
  232. }
  233. #u3131 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:0px 0px 0px 68px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u3131_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u3132 {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:0px;
  251. height:0px;
  252. }
  253. #u3133_div {
  254. border-width:0px;
  255. position:absolute;
  256. left:0px;
  257. top:0px;
  258. width:256px;
  259. height:54px;
  260. background:inherit;
  261. background-color:rgba(45, 183, 245, 0);
  262. border:none;
  263. border-radius:0px;
  264. -moz-box-shadow:none;
  265. -webkit-box-shadow:none;
  266. box-shadow:none;
  267. font-family:"Microsoft Tai Le", sans-serif;
  268. font-weight:400;
  269. font-style:normal;
  270. font-size:14px;
  271. color:rgba(0, 0, 0, 0.6470588235294118);
  272. text-align:left;
  273. line-height:22px;
  274. }
  275. #u3133 {
  276. border-width:0px;
  277. position:absolute;
  278. left:24px;
  279. top:102px;
  280. width:256px;
  281. height:54px;
  282. display:flex;
  283. font-family:"Microsoft Tai Le", sans-serif;
  284. font-weight:400;
  285. font-style:normal;
  286. font-size:14px;
  287. color:rgba(0, 0, 0, 0.6470588235294118);
  288. text-align:left;
  289. line-height:22px;
  290. }
  291. #u3133 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:16px 2px 16px 50px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u3133_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. }
  303. #u3134_img {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:14px;
  309. height:14px;
  310. }
  311. #u3134 {
  312. border-width:0px;
  313. position:absolute;
  314. left:48px;
  315. top:122px;
  316. width:14px;
  317. height:14px;
  318. display:flex;
  319. }
  320. #u3134 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u3134_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. visibility:hidden;
  332. }
  333. #u3135_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:7px;
  339. height:14px;
  340. }
  341. #u3135 {
  342. border-width:0px;
  343. position:absolute;
  344. left:255px;
  345. top:122px;
  346. width:7px;
  347. height:14px;
  348. display:flex;
  349. font-family:"Anticon", sans-serif;
  350. font-weight:400;
  351. font-style:normal;
  352. font-size:10px;
  353. color:rgba(0, 0, 0, 0.6470588235294118);
  354. }
  355. #u3135 .text {
  356. position:absolute;
  357. align-self:center;
  358. padding:0px 0px 0px 0px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u3135_text {
  363. border-width:0px;
  364. white-space:nowrap;
  365. text-transform:none;
  366. }
  367. #u3136 {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:0px;
  373. height:0px;
  374. }
  375. #u3137_div {
  376. border-width:0px;
  377. position:absolute;
  378. left:0px;
  379. top:0px;
  380. width:256px;
  381. height:54px;
  382. background:inherit;
  383. background-color:rgba(45, 183, 245, 0);
  384. border:none;
  385. border-radius:0px;
  386. -moz-box-shadow:none;
  387. -webkit-box-shadow:none;
  388. box-shadow:none;
  389. font-family:"Microsoft Tai Le", sans-serif;
  390. font-weight:400;
  391. font-style:normal;
  392. font-size:14px;
  393. color:rgba(0, 0, 0, 0.6470588235294118);
  394. text-align:left;
  395. line-height:22px;
  396. }
  397. #u3137 {
  398. border-width:0px;
  399. position:absolute;
  400. left:24px;
  401. top:805px;
  402. width:256px;
  403. height:54px;
  404. display:flex;
  405. font-family:"Microsoft Tai Le", sans-serif;
  406. font-weight:400;
  407. font-style:normal;
  408. font-size:14px;
  409. color:rgba(0, 0, 0, 0.6470588235294118);
  410. text-align:left;
  411. line-height:22px;
  412. }
  413. #u3137 .text {
  414. position:absolute;
  415. align-self:center;
  416. padding:16px 2px 16px 50px;
  417. box-sizing:border-box;
  418. width:100%;
  419. }
  420. #u3137_text {
  421. border-width:0px;
  422. word-wrap:break-word;
  423. text-transform:none;
  424. }
  425. #u3138_img {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:14px;
  431. height:14px;
  432. }
  433. #u3138 {
  434. border-width:0px;
  435. position:absolute;
  436. left:48px;
  437. top:825px;
  438. width:14px;
  439. height:14px;
  440. display:flex;
  441. }
  442. #u3138 .text {
  443. position:absolute;
  444. align-self:center;
  445. padding:2px 2px 2px 2px;
  446. box-sizing:border-box;
  447. width:100%;
  448. }
  449. #u3138_text {
  450. border-width:0px;
  451. word-wrap:break-word;
  452. text-transform:none;
  453. visibility:hidden;
  454. }
  455. #u3139_img {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:7px;
  461. height:14px;
  462. }
  463. #u3139 {
  464. border-width:0px;
  465. position:absolute;
  466. left:255px;
  467. top:825px;
  468. width:7px;
  469. height:14px;
  470. display:flex;
  471. font-family:"Anticon", sans-serif;
  472. font-weight:400;
  473. font-style:normal;
  474. font-size:10px;
  475. color:rgba(0, 0, 0, 0.6470588235294118);
  476. }
  477. #u3139 .text {
  478. position:absolute;
  479. align-self:center;
  480. padding:0px 0px 0px 0px;
  481. box-sizing:border-box;
  482. width:100%;
  483. }
  484. #u3139_text {
  485. border-width:0px;
  486. white-space:nowrap;
  487. text-transform:none;
  488. }
  489. #u3140 {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:0px;
  495. height:0px;
  496. }
  497. #u3141_div {
  498. border-width:0px;
  499. position:absolute;
  500. left:0px;
  501. top:0px;
  502. width:256px;
  503. height:54px;
  504. background:inherit;
  505. background-color:rgba(45, 183, 245, 0);
  506. border:none;
  507. border-radius:0px;
  508. -moz-box-shadow:none;
  509. -webkit-box-shadow:none;
  510. box-shadow:none;
  511. font-family:"Microsoft Tai Le", sans-serif;
  512. font-weight:400;
  513. font-style:normal;
  514. font-size:14px;
  515. color:rgba(0, 0, 0, 0.6470588235294118);
  516. text-align:left;
  517. line-height:22px;
  518. }
  519. #u3141 {
  520. border-width:0px;
  521. position:absolute;
  522. left:24px;
  523. top:859px;
  524. width:256px;
  525. height:54px;
  526. display:flex;
  527. font-family:"Microsoft Tai Le", sans-serif;
  528. font-weight:400;
  529. font-style:normal;
  530. font-size:14px;
  531. color:rgba(0, 0, 0, 0.6470588235294118);
  532. text-align:left;
  533. line-height:22px;
  534. }
  535. #u3141 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:16px 2px 16px 50px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u3141_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. }
  547. #u3142_img {
  548. border-width:0px;
  549. position:absolute;
  550. left:0px;
  551. top:0px;
  552. width:14px;
  553. height:14px;
  554. }
  555. #u3142 {
  556. border-width:0px;
  557. position:absolute;
  558. left:48px;
  559. top:879px;
  560. width:14px;
  561. height:14px;
  562. display:flex;
  563. }
  564. #u3142 .text {
  565. position:absolute;
  566. align-self:center;
  567. padding:2px 2px 2px 2px;
  568. box-sizing:border-box;
  569. width:100%;
  570. }
  571. #u3142_text {
  572. border-width:0px;
  573. word-wrap:break-word;
  574. text-transform:none;
  575. visibility:hidden;
  576. }
  577. #u3143_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:7px;
  583. height:14px;
  584. }
  585. #u3143 {
  586. border-width:0px;
  587. position:absolute;
  588. left:255px;
  589. top:879px;
  590. width:7px;
  591. height:14px;
  592. display:flex;
  593. font-family:"Anticon", sans-serif;
  594. font-weight:400;
  595. font-style:normal;
  596. font-size:10px;
  597. color:rgba(0, 0, 0, 0.6470588235294118);
  598. }
  599. #u3143 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:0px 0px 0px 0px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u3143_text {
  607. border-width:0px;
  608. white-space:nowrap;
  609. text-transform:none;
  610. }
  611. #u3144_img {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:7px;
  617. height:14px;
  618. }
  619. #u3144 {
  620. border-width:0px;
  621. position:absolute;
  622. left:255px;
  623. top:406px;
  624. width:7px;
  625. height:14px;
  626. display:flex;
  627. font-family:"Anticon", sans-serif;
  628. font-weight:400;
  629. font-style:normal;
  630. font-size:10px;
  631. color:rgba(0, 0, 0, 0.6470588235294118);
  632. }
  633. #u3144 .text {
  634. position:absolute;
  635. align-self:center;
  636. padding:0px 0px 0px 0px;
  637. box-sizing:border-box;
  638. width:100%;
  639. }
  640. #u3144_text {
  641. border-width:0px;
  642. white-space:nowrap;
  643. text-transform:none;
  644. }
  645. #u3145 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u3146_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:256px;
  659. height:54px;
  660. background:inherit;
  661. background-color:rgba(45, 183, 245, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:14px;
  671. color:rgba(0, 0, 0, 0.6470588235294118);
  672. text-align:left;
  673. line-height:22px;
  674. }
  675. #u3146 {
  676. border-width:0px;
  677. position:absolute;
  678. left:24px;
  679. top:153px;
  680. width:256px;
  681. height:54px;
  682. display:flex;
  683. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  684. font-weight:400;
  685. font-style:normal;
  686. font-size:14px;
  687. color:rgba(0, 0, 0, 0.6470588235294118);
  688. text-align:left;
  689. line-height:22px;
  690. }
  691. #u3146 .text {
  692. position:absolute;
  693. align-self:center;
  694. padding:16px 2px 16px 50px;
  695. box-sizing:border-box;
  696. width:100%;
  697. }
  698. #u3146_text {
  699. border-width:0px;
  700. word-wrap:break-word;
  701. text-transform:none;
  702. }
  703. #u3147_img {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:0px;
  708. width:15px;
  709. height:14px;
  710. }
  711. #u3147 {
  712. border-width:0px;
  713. position:absolute;
  714. left:48px;
  715. top:173px;
  716. width:15px;
  717. height:14px;
  718. display:flex;
  719. }
  720. #u3147 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u3147_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. visibility:hidden;
  732. }
  733. #u3148_img {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:7px;
  739. height:14px;
  740. }
  741. #u3148 {
  742. border-width:0px;
  743. position:absolute;
  744. left:255px;
  745. top:172px;
  746. width:7px;
  747. height:14px;
  748. display:flex;
  749. font-family:"Anticon", sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:10px;
  753. color:rgba(0, 0, 0, 0.6470588235294118);
  754. }
  755. #u3148 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:0px 0px 0px 0px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u3148_text {
  763. border-width:0px;
  764. white-space:nowrap;
  765. text-transform:none;
  766. }
  767. #u3149 {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:0px;
  773. height:0px;
  774. }
  775. #u3150 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u3151_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:256px;
  789. height:46px;
  790. background:inherit;
  791. background-color:rgba(255, 255, 255, 0);
  792. border:none;
  793. border-radius:0px;
  794. -moz-box-shadow:none;
  795. -webkit-box-shadow:none;
  796. box-shadow:none;
  797. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:14px;
  801. color:rgba(0, 0, 0, 0.6470588235294118);
  802. text-align:left;
  803. line-height:22px;
  804. }
  805. #u3151 {
  806. border-width:0px;
  807. position:absolute;
  808. left:24px;
  809. top:207px;
  810. width:256px;
  811. height:46px;
  812. display:flex;
  813. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  814. font-weight:400;
  815. font-style:normal;
  816. font-size:14px;
  817. color:rgba(0, 0, 0, 0.6470588235294118);
  818. text-align:left;
  819. line-height:22px;
  820. }
  821. #u3151 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:12px 0px 12px 50px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u3151_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. }
  833. #u3152 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:0px;
  839. height:0px;
  840. }
  841. #u3153_div {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:256px;
  847. height:54px;
  848. background:inherit;
  849. background-color:rgba(45, 183, 245, 0);
  850. border:none;
  851. border-radius:0px;
  852. -moz-box-shadow:none;
  853. -webkit-box-shadow:none;
  854. box-shadow:none;
  855. font-family:"Microsoft Tai Le", sans-serif;
  856. font-weight:400;
  857. font-style:normal;
  858. font-size:14px;
  859. color:rgba(0, 0, 0, 0.6470588235294118);
  860. text-align:left;
  861. line-height:22px;
  862. }
  863. #u3153 {
  864. border-width:0px;
  865. position:absolute;
  866. left:24px;
  867. top:913px;
  868. width:256px;
  869. height:54px;
  870. display:flex;
  871. font-family:"Microsoft Tai Le", sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:14px;
  875. color:rgba(0, 0, 0, 0.6470588235294118);
  876. text-align:left;
  877. line-height:22px;
  878. }
  879. #u3153 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:16px 2px 16px 50px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u3153_text {
  887. border-width:0px;
  888. word-wrap:break-word;
  889. text-transform:none;
  890. }
  891. #u3154_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:14px;
  897. height:14px;
  898. }
  899. #u3154 {
  900. border-width:0px;
  901. position:absolute;
  902. left:48px;
  903. top:933px;
  904. width:14px;
  905. height:14px;
  906. display:flex;
  907. }
  908. #u3154 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u3154_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u3155_img {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:7px;
  927. height:14px;
  928. }
  929. #u3155 {
  930. border-width:0px;
  931. position:absolute;
  932. left:255px;
  933. top:933px;
  934. width:7px;
  935. height:14px;
  936. display:flex;
  937. font-family:"Anticon", sans-serif;
  938. font-weight:400;
  939. font-style:normal;
  940. font-size:10px;
  941. color:rgba(0, 0, 0, 0.6470588235294118);
  942. }
  943. #u3155 .text {
  944. position:absolute;
  945. align-self:center;
  946. padding:0px 0px 0px 0px;
  947. box-sizing:border-box;
  948. width:100%;
  949. }
  950. #u3155_text {
  951. border-width:0px;
  952. white-space:nowrap;
  953. text-transform:none;
  954. }
  955. #u3156 {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:0px;
  961. height:0px;
  962. }
  963. #u3157_div {
  964. border-width:0px;
  965. position:absolute;
  966. left:0px;
  967. top:0px;
  968. width:256px;
  969. height:54px;
  970. background:inherit;
  971. background-color:rgba(45, 183, 245, 0);
  972. border:none;
  973. border-radius:0px;
  974. -moz-box-shadow:none;
  975. -webkit-box-shadow:none;
  976. box-shadow:none;
  977. font-family:"Microsoft Tai Le", sans-serif;
  978. font-weight:400;
  979. font-style:normal;
  980. font-size:14px;
  981. color:rgba(0, 0, 0, 0.6470588235294118);
  982. text-align:left;
  983. line-height:22px;
  984. }
  985. #u3157 {
  986. border-width:0px;
  987. position:absolute;
  988. left:24px;
  989. top:967px;
  990. width:256px;
  991. height:54px;
  992. display:flex;
  993. font-family:"Microsoft Tai Le", sans-serif;
  994. font-weight:400;
  995. font-style:normal;
  996. font-size:14px;
  997. color:rgba(0, 0, 0, 0.6470588235294118);
  998. text-align:left;
  999. line-height:22px;
  1000. }
  1001. #u3157 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:16px 2px 16px 50px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u3157_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. }
  1013. #u3158_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:14px;
  1019. height:14px;
  1020. }
  1021. #u3158 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:48px;
  1025. top:987px;
  1026. width:14px;
  1027. height:14px;
  1028. display:flex;
  1029. }
  1030. #u3158 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u3158_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u3159_img {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:7px;
  1049. height:14px;
  1050. }
  1051. #u3159 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:255px;
  1055. top:987px;
  1056. width:7px;
  1057. height:14px;
  1058. display:flex;
  1059. font-family:"Anticon", sans-serif;
  1060. font-weight:400;
  1061. font-style:normal;
  1062. font-size:10px;
  1063. color:rgba(0, 0, 0, 0.6470588235294118);
  1064. }
  1065. #u3159 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:0px 0px 0px 0px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u3159_text {
  1073. border-width:0px;
  1074. white-space:nowrap;
  1075. text-transform:none;
  1076. }
  1077. #u3160 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:0px;
  1083. height:0px;
  1084. }
  1085. #u3161_div {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:256px;
  1091. height:46px;
  1092. background:inherit;
  1093. background-color:rgba(255, 255, 255, 0);
  1094. border:none;
  1095. border-radius:0px;
  1096. -moz-box-shadow:none;
  1097. -webkit-box-shadow:none;
  1098. box-shadow:none;
  1099. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1100. font-weight:400;
  1101. font-style:normal;
  1102. font-size:14px;
  1103. color:rgba(0, 0, 0, 0.6470588235294118);
  1104. text-align:left;
  1105. line-height:22px;
  1106. }
  1107. #u3161 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:24px;
  1111. top:253px;
  1112. width:256px;
  1113. height:46px;
  1114. display:flex;
  1115. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:14px;
  1119. color:rgba(0, 0, 0, 0.6470588235294118);
  1120. text-align:left;
  1121. line-height:22px;
  1122. }
  1123. #u3161 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:12px 0px 12px 50px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u3161_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u3162 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u3163_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:256px;
  1149. height:46px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 0);
  1152. border:none;
  1153. border-radius:0px;
  1154. -moz-box-shadow:none;
  1155. -webkit-box-shadow:none;
  1156. box-shadow:none;
  1157. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1158. font-weight:400;
  1159. font-style:normal;
  1160. font-size:14px;
  1161. color:rgba(0, 0, 0, 0.6470588235294118);
  1162. text-align:left;
  1163. line-height:22px;
  1164. }
  1165. #u3163 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:24px;
  1169. top:299px;
  1170. width:256px;
  1171. height:46px;
  1172. display:flex;
  1173. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:14px;
  1177. color:rgba(0, 0, 0, 0.6470588235294118);
  1178. text-align:left;
  1179. line-height:22px;
  1180. }
  1181. #u3163 .text {
  1182. position:absolute;
  1183. align-self:center;
  1184. padding:12px 0px 12px 50px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u3163_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. }
  1193. #u3164_div {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:256px;
  1199. height:46px;
  1200. background:inherit;
  1201. background-color:rgba(255, 255, 255, 0);
  1202. border:none;
  1203. border-radius:0px;
  1204. -moz-box-shadow:none;
  1205. -webkit-box-shadow:none;
  1206. box-shadow:none;
  1207. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1208. font-weight:400;
  1209. font-style:normal;
  1210. font-size:14px;
  1211. color:rgba(0, 0, 0, 0.6470588235294118);
  1212. text-align:left;
  1213. line-height:22px;
  1214. }
  1215. #u3164 {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:24px;
  1219. top:345px;
  1220. width:256px;
  1221. height:46px;
  1222. display:flex;
  1223. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1224. font-weight:400;
  1225. font-style:normal;
  1226. font-size:14px;
  1227. color:rgba(0, 0, 0, 0.6470588235294118);
  1228. text-align:left;
  1229. line-height:22px;
  1230. }
  1231. #u3164 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:12px 0px 12px 50px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u3164_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. }
  1243. #u3165_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:256px;
  1249. height:46px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border:none;
  1253. border-radius:0px;
  1254. -moz-box-shadow:none;
  1255. -webkit-box-shadow:none;
  1256. box-shadow:none;
  1257. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1258. font-weight:400;
  1259. font-style:normal;
  1260. font-size:14px;
  1261. color:rgba(0, 0, 0, 0.6470588235294118);
  1262. text-align:left;
  1263. line-height:22px;
  1264. }
  1265. #u3165 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:24px;
  1269. top:437px;
  1270. width:256px;
  1271. height:46px;
  1272. display:flex;
  1273. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1274. font-weight:400;
  1275. font-style:normal;
  1276. font-size:14px;
  1277. color:rgba(0, 0, 0, 0.6470588235294118);
  1278. text-align:left;
  1279. line-height:22px;
  1280. }
  1281. #u3165 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:12px 0px 12px 50px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u3165_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u3166_div {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:256px;
  1299. height:46px;
  1300. background:inherit;
  1301. background-color:rgba(255, 255, 255, 0);
  1302. border:none;
  1303. border-radius:0px;
  1304. -moz-box-shadow:none;
  1305. -webkit-box-shadow:none;
  1306. box-shadow:none;
  1307. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1308. font-weight:400;
  1309. font-style:normal;
  1310. font-size:14px;
  1311. color:rgba(0, 0, 0, 0.6470588235294118);
  1312. text-align:left;
  1313. line-height:22px;
  1314. }
  1315. #u3166 {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:24px;
  1319. top:483px;
  1320. width:256px;
  1321. height:46px;
  1322. display:flex;
  1323. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:14px;
  1327. color:rgba(0, 0, 0, 0.6470588235294118);
  1328. text-align:left;
  1329. line-height:22px;
  1330. }
  1331. #u3166 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:12px 0px 12px 50px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u3166_text {
  1339. border-width:0px;
  1340. word-wrap:break-word;
  1341. text-transform:none;
  1342. }
  1343. #u3167_div {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:0px;
  1347. top:0px;
  1348. width:256px;
  1349. height:46px;
  1350. background:inherit;
  1351. background-color:rgba(255, 255, 255, 0);
  1352. border:none;
  1353. border-radius:0px;
  1354. -moz-box-shadow:none;
  1355. -webkit-box-shadow:none;
  1356. box-shadow:none;
  1357. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:14px;
  1361. color:rgba(0, 0, 0, 0.6470588235294118);
  1362. text-align:left;
  1363. line-height:22px;
  1364. }
  1365. #u3167 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:24px;
  1369. top:529px;
  1370. width:256px;
  1371. height:46px;
  1372. display:flex;
  1373. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1374. font-weight:400;
  1375. font-style:normal;
  1376. font-size:14px;
  1377. color:rgba(0, 0, 0, 0.6470588235294118);
  1378. text-align:left;
  1379. line-height:22px;
  1380. }
  1381. #u3167 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:12px 0px 12px 50px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u3167_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. }
  1393. #u3168_div {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:256px;
  1399. height:46px;
  1400. background:inherit;
  1401. background-color:rgba(255, 255, 255, 0);
  1402. border:none;
  1403. border-radius:0px;
  1404. -moz-box-shadow:none;
  1405. -webkit-box-shadow:none;
  1406. box-shadow:none;
  1407. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:14px;
  1411. color:rgba(0, 0, 0, 0.6470588235294118);
  1412. text-align:left;
  1413. line-height:22px;
  1414. }
  1415. #u3168 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:24px;
  1419. top:575px;
  1420. width:256px;
  1421. height:46px;
  1422. display:flex;
  1423. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. font-size:14px;
  1427. color:rgba(0, 0, 0, 0.6470588235294118);
  1428. text-align:left;
  1429. line-height:22px;
  1430. }
  1431. #u3168 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:12px 0px 12px 50px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u3168_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u3169_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:256px;
  1449. height:46px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-radius:0px;
  1454. -moz-box-shadow:none;
  1455. -webkit-box-shadow:none;
  1456. box-shadow:none;
  1457. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1458. font-weight:400;
  1459. font-style:normal;
  1460. font-size:14px;
  1461. color:rgba(0, 0, 0, 0.6470588235294118);
  1462. text-align:left;
  1463. line-height:22px;
  1464. }
  1465. #u3169 {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:24px;
  1469. top:667px;
  1470. width:256px;
  1471. height:46px;
  1472. display:flex;
  1473. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1474. font-weight:400;
  1475. font-style:normal;
  1476. font-size:14px;
  1477. color:rgba(0, 0, 0, 0.6470588235294118);
  1478. text-align:left;
  1479. line-height:22px;
  1480. }
  1481. #u3169 .text {
  1482. position:absolute;
  1483. align-self:center;
  1484. padding:12px 0px 12px 50px;
  1485. box-sizing:border-box;
  1486. width:100%;
  1487. }
  1488. #u3169_text {
  1489. border-width:0px;
  1490. word-wrap:break-word;
  1491. text-transform:none;
  1492. }
  1493. #u3170_div {
  1494. border-width:0px;
  1495. position:absolute;
  1496. left:0px;
  1497. top:0px;
  1498. width:256px;
  1499. height:46px;
  1500. background:inherit;
  1501. background-color:rgba(255, 255, 255, 0);
  1502. border:none;
  1503. border-radius:0px;
  1504. -moz-box-shadow:none;
  1505. -webkit-box-shadow:none;
  1506. box-shadow:none;
  1507. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1508. font-weight:400;
  1509. font-style:normal;
  1510. font-size:14px;
  1511. color:rgba(0, 0, 0, 0.6470588235294118);
  1512. text-align:left;
  1513. line-height:22px;
  1514. }
  1515. #u3170 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:24px;
  1519. top:391px;
  1520. width:256px;
  1521. height:46px;
  1522. display:flex;
  1523. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1524. font-weight:400;
  1525. font-style:normal;
  1526. font-size:14px;
  1527. color:rgba(0, 0, 0, 0.6470588235294118);
  1528. text-align:left;
  1529. line-height:22px;
  1530. }
  1531. #u3170 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:12px 0px 12px 50px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u3170_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. }
  1543. #u3171_div {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:256px;
  1549. height:46px;
  1550. background:inherit;
  1551. background-color:rgba(230, 247, 255, 1);
  1552. box-sizing:border-box;
  1553. border-width:4px;
  1554. border-style:solid;
  1555. border-color:rgba(40, 54, 254, 1);
  1556. border-left:0px;
  1557. border-top:0px;
  1558. border-bottom:0px;
  1559. border-radius:0px;
  1560. border-top-right-radius:0px;
  1561. border-bottom-right-radius:0px;
  1562. -moz-box-shadow:none;
  1563. -webkit-box-shadow:none;
  1564. box-shadow:none;
  1565. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1566. font-weight:400;
  1567. font-style:normal;
  1568. font-size:14px;
  1569. color:#2836FE;
  1570. text-align:left;
  1571. line-height:22px;
  1572. }
  1573. #u3171 {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:24px;
  1577. top:759px;
  1578. width:256px;
  1579. height:46px;
  1580. display:flex;
  1581. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1582. font-weight:400;
  1583. font-style:normal;
  1584. font-size:14px;
  1585. color:#2836FE;
  1586. text-align:left;
  1587. line-height:22px;
  1588. }
  1589. #u3171 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:12px 0px 12px 74px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u3171_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. }
  1601. #u3172 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:0px;
  1607. height:0px;
  1608. }
  1609. #u3173_div {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:256px;
  1615. height:46px;
  1616. background:inherit;
  1617. background-color:rgba(255, 255, 255, 0);
  1618. border:none;
  1619. border-radius:0px;
  1620. -moz-box-shadow:none;
  1621. -webkit-box-shadow:none;
  1622. box-shadow:none;
  1623. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1624. font-weight:400;
  1625. font-style:normal;
  1626. font-size:14px;
  1627. color:#2836FE;
  1628. text-align:left;
  1629. line-height:22px;
  1630. }
  1631. #u3173 {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:24px;
  1635. top:713px;
  1636. width:256px;
  1637. height:46px;
  1638. display:flex;
  1639. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1640. font-weight:400;
  1641. font-style:normal;
  1642. font-size:14px;
  1643. color:#2836FE;
  1644. text-align:left;
  1645. line-height:22px;
  1646. }
  1647. #u3173 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:12px 0px 12px 50px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u3173_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. }
  1659. #u3174_div {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:0px;
  1663. top:0px;
  1664. width:256px;
  1665. height:46px;
  1666. background:inherit;
  1667. background-color:rgba(255, 255, 255, 0);
  1668. border:none;
  1669. border-radius:0px;
  1670. -moz-box-shadow:none;
  1671. -webkit-box-shadow:none;
  1672. box-shadow:none;
  1673. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:14px;
  1677. color:rgba(0, 0, 0, 0.6470588235294118);
  1678. text-align:left;
  1679. line-height:22px;
  1680. }
  1681. #u3174 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:24px;
  1685. top:621px;
  1686. width:256px;
  1687. height:46px;
  1688. display:flex;
  1689. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. color:rgba(0, 0, 0, 0.6470588235294118);
  1694. text-align:left;
  1695. line-height:22px;
  1696. }
  1697. #u3174 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:12px 0px 12px 50px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u3174_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u3175_div {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:1239px;
  1715. height:1712px;
  1716. background:inherit;
  1717. background-color:rgba(246, 246, 251, 1);
  1718. border:none;
  1719. border-radius:0px;
  1720. -moz-box-shadow:none;
  1721. -webkit-box-shadow:none;
  1722. box-shadow:none;
  1723. }
  1724. #u3175 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:280px;
  1728. top:101px;
  1729. width:1239px;
  1730. height:1712px;
  1731. display:flex;
  1732. }
  1733. #u3175 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u3175_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u3176 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:0px;
  1752. height:0px;
  1753. }
  1754. #u3177_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:1307px;
  1760. height:1622px;
  1761. background:inherit;
  1762. background-color:rgba(255, 255, 255, 1);
  1763. border:none;
  1764. border-radius:4px;
  1765. -moz-box-shadow:none;
  1766. -webkit-box-shadow:none;
  1767. box-shadow:none;
  1768. font-family:"Microsoft Tai Le", sans-serif;
  1769. font-weight:400;
  1770. font-style:normal;
  1771. font-size:14px;
  1772. color:#666666;
  1773. text-align:left;
  1774. line-height:18px;
  1775. }
  1776. #u3177 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:292px;
  1780. top:170px;
  1781. width:1307px;
  1782. height:1622px;
  1783. display:flex;
  1784. font-family:"Microsoft Tai Le", sans-serif;
  1785. font-weight:400;
  1786. font-style:normal;
  1787. font-size:14px;
  1788. color:#666666;
  1789. text-align:left;
  1790. line-height:18px;
  1791. }
  1792. #u3177 .text {
  1793. position:absolute;
  1794. align-self:flex-start;
  1795. padding:16px 16px 2px 16px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u3177_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u3178 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:292px;
  1809. top:171px;
  1810. width:32px;
  1811. height:32px;
  1812. }
  1813. #u3178_state0 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:32px;
  1819. height:32px;
  1820. -ms-overflow-x:hidden;
  1821. overflow-x:hidden;
  1822. -ms-overflow-y:hidden;
  1823. overflow-y:hidden;
  1824. background-image:none;
  1825. border:none;
  1826. border-radius:0px;
  1827. -moz-box-shadow:none;
  1828. -webkit-box-shadow:none;
  1829. box-shadow:none;
  1830. }
  1831. #u3178_state0_content {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:1px;
  1837. height:1px;
  1838. }
  1839. #u3179 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:1409px;
  1843. top:171px;
  1844. width:32px;
  1845. height:32px;
  1846. }
  1847. #u3179_state0 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:32px;
  1853. height:32px;
  1854. -ms-overflow-x:hidden;
  1855. overflow-x:hidden;
  1856. -ms-overflow-y:hidden;
  1857. overflow-y:hidden;
  1858. background-image:none;
  1859. border:none;
  1860. border-radius:0px;
  1861. -moz-box-shadow:none;
  1862. -webkit-box-shadow:none;
  1863. box-shadow:none;
  1864. }
  1865. #u3179_state0_content {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:1px;
  1871. height:1px;
  1872. }
  1873. #u3180_div {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:0px;
  1877. top:0px;
  1878. width:1088px;
  1879. height:51px;
  1880. background:inherit;
  1881. background-color:rgba(255, 255, 255, 1);
  1882. box-sizing:border-box;
  1883. border-width:1px;
  1884. border-style:solid;
  1885. border-color:rgba(233, 233, 233, 1);
  1886. border-left:0px;
  1887. border-right:0px;
  1888. border-radius:0px;
  1889. border-top-left-radius:0px;
  1890. border-top-right-radius:0px;
  1891. border-bottom-right-radius:0px;
  1892. border-bottom-left-radius:0px;
  1893. -moz-box-shadow:none;
  1894. -webkit-box-shadow:none;
  1895. box-shadow:none;
  1896. font-family:"Malayalam MN", sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. text-align:left;
  1900. }
  1901. #u3180 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:420px;
  1905. top:110px;
  1906. width:1088px;
  1907. height:51px;
  1908. display:flex;
  1909. font-family:"Malayalam MN", sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. text-align:left;
  1913. }
  1914. #u3180 .text {
  1915. position:absolute;
  1916. align-self:flex-start;
  1917. padding:18px 2px 2px 36px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u3180_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. visibility:hidden;
  1926. }
  1927. #u3181_div {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:7px;
  1933. height:25px;
  1934. background:inherit;
  1935. background-color:rgba(40, 54, 254, 1);
  1936. border:none;
  1937. border-radius:0px;
  1938. -moz-box-shadow:none;
  1939. -webkit-box-shadow:none;
  1940. box-shadow:none;
  1941. }
  1942. #u3181 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:429px;
  1946. top:124px;
  1947. width:7px;
  1948. height:25px;
  1949. display:flex;
  1950. }
  1951. #u3181 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u3181_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. visibility:hidden;
  1963. }
  1964. #u3182_div {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:56px;
  1970. height:16px;
  1971. background:inherit;
  1972. background-color:rgba(255, 255, 255, 0);
  1973. border:none;
  1974. border-radius:0px;
  1975. -moz-box-shadow:none;
  1976. -webkit-box-shadow:none;
  1977. box-shadow:none;
  1978. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  1979. font-weight:700;
  1980. font-style:normal;
  1981. font-size:14px;
  1982. color:#2836FE;
  1983. }
  1984. #u3182 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:444px;
  1988. top:129px;
  1989. width:56px;
  1990. height:16px;
  1991. display:flex;
  1992. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  1993. font-weight:700;
  1994. font-style:normal;
  1995. font-size:14px;
  1996. color:#2836FE;
  1997. }
  1998. #u3182 .text {
  1999. position:absolute;
  2000. align-self:flex-start;
  2001. padding:0px 0px 0px 0px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u3182_text {
  2006. border-width:0px;
  2007. white-space:nowrap;
  2008. text-transform:none;
  2009. }
  2010. #u3183_div {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:120px;
  2016. height:52px;
  2017. background:inherit;
  2018. background-color:rgba(255, 255, 255, 1);
  2019. box-sizing:border-box;
  2020. border-width:1px;
  2021. border-style:solid;
  2022. border-color:rgba(215, 215, 215, 1);
  2023. border-radius:0px;
  2024. -moz-box-shadow:none;
  2025. -webkit-box-shadow:none;
  2026. box-shadow:none;
  2027. }
  2028. #u3183 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:292px;
  2032. top:109px;
  2033. width:120px;
  2034. height:52px;
  2035. display:flex;
  2036. }
  2037. #u3183 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u3183_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u3184 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:0px;
  2055. height:0px;
  2056. }
  2057. #u3185_div {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:64px;
  2063. height:20px;
  2064. background:inherit;
  2065. background-color:rgba(255, 255, 255, 0);
  2066. border:none;
  2067. border-radius:0px;
  2068. -moz-box-shadow:none;
  2069. -webkit-box-shadow:none;
  2070. box-shadow:none;
  2071. font-family:"Microsoft YaHei UI", sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:16px;
  2075. color:#606266;
  2076. }
  2077. #u3185 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:323px;
  2081. top:190px;
  2082. width:64px;
  2083. height:20px;
  2084. display:flex;
  2085. font-family:"Microsoft YaHei UI", sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:16px;
  2089. color:#606266;
  2090. }
  2091. #u3185 .text {
  2092. position:absolute;
  2093. align-self:flex-start;
  2094. padding:0px 0px 0px 0px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u3185_text {
  2099. border-width:0px;
  2100. white-space:nowrap;
  2101. text-transform:none;
  2102. }
  2103. #u3186_div {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:0px;
  2108. width:5px;
  2109. height:25px;
  2110. background:inherit;
  2111. background-color:rgba(40, 54, 254, 1);
  2112. border:none;
  2113. border-radius:0px;
  2114. -moz-box-shadow:none;
  2115. -webkit-box-shadow:none;
  2116. box-shadow:none;
  2117. color:#7240FF;
  2118. }
  2119. #u3186 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:308px;
  2123. top:187px;
  2124. width:5px;
  2125. height:25px;
  2126. display:flex;
  2127. color:#7240FF;
  2128. }
  2129. #u3186 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u3186_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u3187 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:0px;
  2148. height:0px;
  2149. }
  2150. #u3188_div {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:278px;
  2156. height:32px;
  2157. background:inherit;
  2158. background-color:rgba(255, 255, 255, 1);
  2159. box-sizing:border-box;
  2160. border-width:1px;
  2161. border-style:solid;
  2162. border-color:rgba(220, 223, 230, 1);
  2163. border-radius:4px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. }
  2168. #u3188 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:426px;
  2172. top:230px;
  2173. width:278px;
  2174. height:32px;
  2175. display:flex;
  2176. }
  2177. #u3188 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u3188_div.mouseOver {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:278px;
  2190. height:32px;
  2191. background:inherit;
  2192. background-color:rgba(255, 255, 255, 1);
  2193. box-sizing:border-box;
  2194. border-width:1px;
  2195. border-style:solid;
  2196. border-color:rgba(192, 196, 204, 1);
  2197. border-radius:4px;
  2198. -moz-box-shadow:none;
  2199. -webkit-box-shadow:none;
  2200. box-shadow:none;
  2201. }
  2202. #u3188.mouseOver {
  2203. }
  2204. #u3188_div.selected {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:278px;
  2210. height:32px;
  2211. background:inherit;
  2212. background-color:rgba(255, 255, 255, 1);
  2213. box-sizing:border-box;
  2214. border-width:1px;
  2215. border-style:solid;
  2216. border-color:rgba(64, 158, 255, 1);
  2217. border-radius:4px;
  2218. -moz-box-shadow:none;
  2219. -webkit-box-shadow:none;
  2220. box-shadow:none;
  2221. }
  2222. #u3188.selected {
  2223. }
  2224. #u3188_div.mouseOver.selected {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:278px;
  2230. height:32px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 1);
  2233. box-sizing:border-box;
  2234. border-width:1px;
  2235. border-style:solid;
  2236. border-color:rgba(64, 158, 255, 1);
  2237. border-radius:4px;
  2238. -moz-box-shadow:none;
  2239. -webkit-box-shadow:none;
  2240. box-shadow:none;
  2241. }
  2242. #u3188.mouseOver.selected {
  2243. }
  2244. #u3188_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u3189_input {
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:265px;
  2255. height:30px;
  2256. padding:2px 2px 2px 2px;
  2257. font-family:"Arial Normal", "Arial", sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:12px;
  2261. letter-spacing:normal;
  2262. color:#606266;
  2263. vertical-align:none;
  2264. text-align:left;
  2265. text-transform:none;
  2266. background-color:transparent;
  2267. border-color:transparent;
  2268. }
  2269. #u3189_input.hint {
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:265px;
  2274. height:30px;
  2275. padding:2px 2px 2px 2px;
  2276. font-family:"Arial Normal", "Arial", sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. letter-spacing:normal;
  2281. color:#C0C4CC;
  2282. vertical-align:none;
  2283. text-align:left;
  2284. text-transform:none;
  2285. background-color:transparent;
  2286. border-color:transparent;
  2287. }
  2288. #u3189_input.disabled {
  2289. position:absolute;
  2290. left:0px;
  2291. top:0px;
  2292. width:265px;
  2293. height:30px;
  2294. padding:2px 2px 2px 2px;
  2295. font-family:"Arial Normal", "Arial", sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:12px;
  2299. letter-spacing:normal;
  2300. color:#606266;
  2301. vertical-align:none;
  2302. text-align:left;
  2303. text-transform:none;
  2304. background-color:transparent;
  2305. border-color:transparent;
  2306. }
  2307. #u3189_input.hint.disabled {
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:265px;
  2312. height:30px;
  2313. padding:2px 2px 2px 2px;
  2314. font-family:"Arial Normal", "Arial", sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:12px;
  2318. letter-spacing:normal;
  2319. color:#C0C4CC;
  2320. vertical-align:none;
  2321. text-align:left;
  2322. text-transform:none;
  2323. background-color:transparent;
  2324. border-color:transparent;
  2325. }
  2326. #u3189_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:265px;
  2332. height:30px;
  2333. background:inherit;
  2334. background-color:rgba(255, 255, 255, 1);
  2335. border:none;
  2336. border-radius:0px;
  2337. -moz-box-shadow:none;
  2338. -webkit-box-shadow:none;
  2339. box-shadow:none;
  2340. font-size:12px;
  2341. color:#606266;
  2342. }
  2343. #u3189 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:433px;
  2347. top:231px;
  2348. width:265px;
  2349. height:30px;
  2350. display:flex;
  2351. font-size:12px;
  2352. color:#606266;
  2353. }
  2354. #u3189 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u3189_div.hint {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:265px;
  2367. height:30px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 1);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. font-size:12px;
  2376. color:#606266;
  2377. }
  2378. #u3189.hint {
  2379. }
  2380. #u3189_div.disabled {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:265px;
  2386. height:30px;
  2387. background:inherit;
  2388. background-color:rgba(240, 240, 240, 1);
  2389. border:none;
  2390. border-radius:0px;
  2391. -moz-box-shadow:none;
  2392. -webkit-box-shadow:none;
  2393. box-shadow:none;
  2394. font-size:12px;
  2395. color:#606266;
  2396. }
  2397. #u3189.disabled {
  2398. }
  2399. #u3189_div.hint.disabled {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:265px;
  2405. height:30px;
  2406. background:inherit;
  2407. background-color:rgba(240, 240, 240, 1);
  2408. border:none;
  2409. border-radius:0px;
  2410. -moz-box-shadow:none;
  2411. -webkit-box-shadow:none;
  2412. box-shadow:none;
  2413. font-size:12px;
  2414. color:#606266;
  2415. }
  2416. #u3189.hint.disabled {
  2417. }
  2418. #u3190_div {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:80px;
  2424. height:16px;
  2425. background:inherit;
  2426. background-color:rgba(255, 255, 255, 0);
  2427. border:none;
  2428. border-radius:0px;
  2429. -moz-box-shadow:none;
  2430. -webkit-box-shadow:none;
  2431. box-shadow:none;
  2432. }
  2433. #u3190 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:324px;
  2437. top:235px;
  2438. width:80px;
  2439. height:16px;
  2440. display:flex;
  2441. }
  2442. #u3190 .text {
  2443. position:absolute;
  2444. align-self:flex-start;
  2445. padding:0px 0px 0px 0px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u3190_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u3191_div {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:108px;
  2460. height:16px;
  2461. background:inherit;
  2462. background-color:rgba(255, 255, 255, 0);
  2463. border:none;
  2464. border-radius:0px;
  2465. -moz-box-shadow:none;
  2466. -webkit-box-shadow:none;
  2467. box-shadow:none;
  2468. }
  2469. #u3191 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:299px;
  2473. top:388px;
  2474. width:108px;
  2475. height:16px;
  2476. display:flex;
  2477. }
  2478. #u3191 .text {
  2479. position:absolute;
  2480. align-self:flex-start;
  2481. padding:0px 0px 0px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u3191_text {
  2486. border-width:0px;
  2487. white-space:nowrap;
  2488. text-transform:none;
  2489. }
  2490. #u3192 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:0px;
  2496. height:0px;
  2497. }
  2498. #u3193_div {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:278px;
  2504. height:32px;
  2505. background:inherit;
  2506. background-color:rgba(255, 255, 255, 1);
  2507. box-sizing:border-box;
  2508. border-width:1px;
  2509. border-style:solid;
  2510. border-color:rgba(220, 223, 230, 1);
  2511. border-radius:4px;
  2512. -moz-box-shadow:none;
  2513. -webkit-box-shadow:none;
  2514. box-shadow:none;
  2515. }
  2516. #u3193 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:800px;
  2520. top:69px;
  2521. width:278px;
  2522. height:32px;
  2523. display:flex;
  2524. }
  2525. #u3193 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 2px 2px 2px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u3193_div.mouseOver {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:278px;
  2538. height:32px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 255, 1);
  2541. box-sizing:border-box;
  2542. border-width:1px;
  2543. border-style:solid;
  2544. border-color:rgba(192, 196, 204, 1);
  2545. border-radius:4px;
  2546. -moz-box-shadow:none;
  2547. -webkit-box-shadow:none;
  2548. box-shadow:none;
  2549. }
  2550. #u3193.mouseOver {
  2551. }
  2552. #u3193_div.selected {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:278px;
  2558. height:32px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 1);
  2561. box-sizing:border-box;
  2562. border-width:1px;
  2563. border-style:solid;
  2564. border-color:rgba(64, 158, 255, 1);
  2565. border-radius:4px;
  2566. -moz-box-shadow:none;
  2567. -webkit-box-shadow:none;
  2568. box-shadow:none;
  2569. }
  2570. #u3193.selected {
  2571. }
  2572. #u3193_div.mouseOver.selected {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:278px;
  2578. height:32px;
  2579. background:inherit;
  2580. background-color:rgba(255, 255, 255, 1);
  2581. box-sizing:border-box;
  2582. border-width:1px;
  2583. border-style:solid;
  2584. border-color:rgba(64, 158, 255, 1);
  2585. border-radius:4px;
  2586. -moz-box-shadow:none;
  2587. -webkit-box-shadow:none;
  2588. box-shadow:none;
  2589. }
  2590. #u3193.mouseOver.selected {
  2591. }
  2592. #u3193_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u3194_input {
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:265px;
  2603. height:30px;
  2604. padding:2px 2px 2px 2px;
  2605. font-family:"Arial Normal", "Arial", sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. font-size:12px;
  2609. letter-spacing:normal;
  2610. color:#606266;
  2611. vertical-align:none;
  2612. text-align:left;
  2613. text-transform:none;
  2614. background-color:transparent;
  2615. border-color:transparent;
  2616. }
  2617. #u3194_input.hint {
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:265px;
  2622. height:30px;
  2623. padding:2px 2px 2px 2px;
  2624. font-family:"Arial Normal", "Arial", sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:12px;
  2628. letter-spacing:normal;
  2629. color:#C0C4CC;
  2630. vertical-align:none;
  2631. text-align:left;
  2632. text-transform:none;
  2633. background-color:transparent;
  2634. border-color:transparent;
  2635. }
  2636. #u3194_input.disabled {
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:265px;
  2641. height:30px;
  2642. padding:2px 2px 2px 2px;
  2643. font-family:"Arial Normal", "Arial", sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:12px;
  2647. letter-spacing:normal;
  2648. color:#606266;
  2649. vertical-align:none;
  2650. text-align:left;
  2651. text-transform:none;
  2652. background-color:transparent;
  2653. border-color:transparent;
  2654. }
  2655. #u3194_input.hint.disabled {
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:265px;
  2660. height:30px;
  2661. padding:2px 2px 2px 2px;
  2662. font-family:"Arial Normal", "Arial", sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:12px;
  2666. letter-spacing:normal;
  2667. color:#C0C4CC;
  2668. vertical-align:none;
  2669. text-align:left;
  2670. text-transform:none;
  2671. background-color:transparent;
  2672. border-color:transparent;
  2673. }
  2674. #u3194_div {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:265px;
  2680. height:30px;
  2681. background:inherit;
  2682. background-color:rgba(255, 255, 255, 1);
  2683. border:none;
  2684. border-radius:0px;
  2685. -moz-box-shadow:none;
  2686. -webkit-box-shadow:none;
  2687. box-shadow:none;
  2688. font-size:12px;
  2689. color:#606266;
  2690. }
  2691. #u3194 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:807px;
  2695. top:70px;
  2696. width:265px;
  2697. height:30px;
  2698. display:flex;
  2699. font-size:12px;
  2700. color:#606266;
  2701. }
  2702. #u3194 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 2px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u3194_div.hint {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:265px;
  2715. height:30px;
  2716. background:inherit;
  2717. background-color:rgba(255, 255, 255, 1);
  2718. border:none;
  2719. border-radius:0px;
  2720. -moz-box-shadow:none;
  2721. -webkit-box-shadow:none;
  2722. box-shadow:none;
  2723. font-size:12px;
  2724. color:#606266;
  2725. }
  2726. #u3194.hint {
  2727. }
  2728. #u3194_div.disabled {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:265px;
  2734. height:30px;
  2735. background:inherit;
  2736. background-color:rgba(240, 240, 240, 1);
  2737. border:none;
  2738. border-radius:0px;
  2739. -moz-box-shadow:none;
  2740. -webkit-box-shadow:none;
  2741. box-shadow:none;
  2742. font-size:12px;
  2743. color:#606266;
  2744. }
  2745. #u3194.disabled {
  2746. }
  2747. #u3194_div.hint.disabled {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:265px;
  2753. height:30px;
  2754. background:inherit;
  2755. background-color:rgba(240, 240, 240, 1);
  2756. border:none;
  2757. border-radius:0px;
  2758. -moz-box-shadow:none;
  2759. -webkit-box-shadow:none;
  2760. box-shadow:none;
  2761. font-size:12px;
  2762. color:#606266;
  2763. }
  2764. #u3194.hint.disabled {
  2765. }
  2766. #u3195 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:0px;
  2772. height:0px;
  2773. }
  2774. #u3196_div {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:64px;
  2780. height:20px;
  2781. background:inherit;
  2782. background-color:rgba(255, 255, 255, 0);
  2783. border:none;
  2784. border-radius:0px;
  2785. -moz-box-shadow:none;
  2786. -webkit-box-shadow:none;
  2787. box-shadow:none;
  2788. font-family:"Microsoft YaHei UI", sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:16px;
  2792. color:#606266;
  2793. }
  2794. #u3196 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:326px;
  2798. top:654px;
  2799. width:64px;
  2800. height:20px;
  2801. display:flex;
  2802. font-family:"Microsoft YaHei UI", sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. font-size:16px;
  2806. color:#606266;
  2807. }
  2808. #u3196 .text {
  2809. position:absolute;
  2810. align-self:flex-start;
  2811. padding:0px 0px 0px 0px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u3196_text {
  2816. border-width:0px;
  2817. white-space:nowrap;
  2818. text-transform:none;
  2819. }
  2820. #u3197_div {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:5px;
  2826. height:25px;
  2827. background:inherit;
  2828. background-color:rgba(40, 54, 254, 1);
  2829. border:none;
  2830. border-radius:0px;
  2831. -moz-box-shadow:none;
  2832. -webkit-box-shadow:none;
  2833. box-shadow:none;
  2834. color:#7240FF;
  2835. }
  2836. #u3197 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:311px;
  2840. top:651px;
  2841. width:5px;
  2842. height:25px;
  2843. display:flex;
  2844. color:#7240FF;
  2845. }
  2846. #u3197 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 2px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u3197_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u3198 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:0px;
  2865. height:0px;
  2866. }
  2867. #u3199_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:80px;
  2873. height:16px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 0);
  2876. border:none;
  2877. border-radius:0px;
  2878. -moz-box-shadow:none;
  2879. -webkit-box-shadow:none;
  2880. box-shadow:none;
  2881. }
  2882. #u3199 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:327px;
  2886. top:443px;
  2887. width:80px;
  2888. height:16px;
  2889. display:flex;
  2890. }
  2891. #u3199 .text {
  2892. position:absolute;
  2893. align-self:flex-start;
  2894. padding:0px 0px 0px 0px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u3199_text {
  2899. border-width:0px;
  2900. white-space:nowrap;
  2901. text-transform:none;
  2902. }
  2903. #u3200 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:0px;
  2909. height:0px;
  2910. }
  2911. #u3201_div {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:56px;
  2917. height:18px;
  2918. background:inherit;
  2919. background-color:rgba(255, 255, 255, 0);
  2920. border:none;
  2921. border-radius:0px;
  2922. -moz-box-shadow:none;
  2923. -webkit-box-shadow:none;
  2924. box-shadow:none;
  2925. font-family:"Microsoft YaHei UI", sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. color:#606266;
  2929. }
  2930. #u3201 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:448px;
  2934. top:441px;
  2935. width:56px;
  2936. height:18px;
  2937. display:flex;
  2938. font-family:"Microsoft YaHei UI", sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. color:#606266;
  2942. }
  2943. #u3201 .text {
  2944. position:absolute;
  2945. align-self:flex-start;
  2946. padding:0px 0px 0px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u3201_div.selected {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:56px;
  2956. height:18px;
  2957. background:inherit;
  2958. background-color:rgba(255, 255, 255, 0);
  2959. border:none;
  2960. border-radius:0px;
  2961. -moz-box-shadow:none;
  2962. -webkit-box-shadow:none;
  2963. box-shadow:none;
  2964. font-family:"Microsoft YaHei UI", sans-serif;
  2965. font-weight:400;
  2966. font-style:normal;
  2967. color:#606266;
  2968. }
  2969. #u3201.selected {
  2970. }
  2971. #u3201_div.disabled {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:56px;
  2977. height:18px;
  2978. background:inherit;
  2979. background-color:rgba(255, 255, 255, 0);
  2980. border:none;
  2981. border-radius:0px;
  2982. -moz-box-shadow:none;
  2983. -webkit-box-shadow:none;
  2984. box-shadow:none;
  2985. font-family:"Microsoft YaHei UI", sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. color:#606266;
  2989. }
  2990. #u3201.disabled {
  2991. }
  2992. #u3201_div.selected.disabled {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:56px;
  2998. height:18px;
  2999. background:inherit;
  3000. background-color:rgba(255, 255, 255, 0);
  3001. border:none;
  3002. border-radius:0px;
  3003. -moz-box-shadow:none;
  3004. -webkit-box-shadow:none;
  3005. box-shadow:none;
  3006. font-family:"Microsoft YaHei UI", sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. color:#606266;
  3010. }
  3011. #u3201.selected.disabled {
  3012. }
  3013. #u3201_text {
  3014. border-width:0px;
  3015. white-space:nowrap;
  3016. text-transform:none;
  3017. }
  3018. #u3202_img {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:13px;
  3024. height:13px;
  3025. }
  3026. #u3202 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:429px;
  3030. top:444px;
  3031. width:13px;
  3032. height:13px;
  3033. display:flex;
  3034. }
  3035. #u3202 .text {
  3036. position:absolute;
  3037. align-self:center;
  3038. padding:2px 2px 2px 2px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u3202_text {
  3043. border-width:0px;
  3044. word-wrap:break-word;
  3045. text-transform:none;
  3046. visibility:hidden;
  3047. }
  3048. #u3203 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:0px;
  3054. height:0px;
  3055. }
  3056. #u3204_div {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:80px;
  3062. height:16px;
  3063. background:inherit;
  3064. background-color:rgba(255, 255, 255, 0);
  3065. border:none;
  3066. border-radius:0px;
  3067. -moz-box-shadow:none;
  3068. -webkit-box-shadow:none;
  3069. box-shadow:none;
  3070. }
  3071. #u3204 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:327px;
  3075. top:764px;
  3076. width:80px;
  3077. height:16px;
  3078. display:flex;
  3079. }
  3080. #u3204 .text {
  3081. position:absolute;
  3082. align-self:flex-start;
  3083. padding:0px 0px 0px 0px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u3204_text {
  3088. border-width:0px;
  3089. white-space:nowrap;
  3090. text-transform:none;
  3091. }
  3092. #u3205 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:0px;
  3098. height:0px;
  3099. }
  3100. #u3206_div {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:88px;
  3106. height:32px;
  3107. background:inherit;
  3108. background-color:rgba(40, 54, 254, 1);
  3109. border:none;
  3110. border-radius:4px;
  3111. -moz-box-shadow:none;
  3112. -webkit-box-shadow:none;
  3113. box-shadow:none;
  3114. font-family:"Microsoft Tai Le", sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:14px;
  3118. color:#FFFFFF;
  3119. line-height:22px;
  3120. }
  3121. #u3206 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:408px;
  3125. top:1752px;
  3126. width:88px;
  3127. height:32px;
  3128. display:flex;
  3129. font-family:"Microsoft Tai Le", sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:14px;
  3133. color:#FFFFFF;
  3134. line-height:22px;
  3135. }
  3136. #u3206 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:0px 16px 0px 16px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u3206_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. }
  3148. #u3207_div {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:80px;
  3154. height:32px;
  3155. background:inherit;
  3156. background-color:rgba(255, 255, 255, 1);
  3157. box-sizing:border-box;
  3158. border-width:1px;
  3159. border-style:solid;
  3160. border-color:rgba(220, 223, 230, 1);
  3161. border-radius:4px;
  3162. -moz-box-shadow:none;
  3163. -webkit-box-shadow:none;
  3164. box-shadow:none;
  3165. font-size:12px;
  3166. color:#606266;
  3167. }
  3168. #u3207 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:316px;
  3172. top:1752px;
  3173. width:80px;
  3174. height:32px;
  3175. display:flex;
  3176. font-size:12px;
  3177. color:#606266;
  3178. }
  3179. #u3207 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:2px 2px 2px 2px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u3207_div.mouseOver {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:80px;
  3192. height:32px;
  3193. background:inherit;
  3194. background-color:rgba(236, 245, 255, 1);
  3195. box-sizing:border-box;
  3196. border-width:1px;
  3197. border-style:solid;
  3198. border-color:rgba(198, 226, 255, 1);
  3199. border-radius:4px;
  3200. -moz-box-shadow:none;
  3201. -webkit-box-shadow:none;
  3202. box-shadow:none;
  3203. font-size:12px;
  3204. color:#606266;
  3205. }
  3206. #u3207.mouseOver {
  3207. }
  3208. #u3207_div.mouseDown {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:80px;
  3214. height:32px;
  3215. background:inherit;
  3216. background-color:rgba(236, 245, 255, 1);
  3217. box-sizing:border-box;
  3218. border-width:1px;
  3219. border-style:solid;
  3220. border-color:rgba(58, 142, 230, 1);
  3221. border-radius:4px;
  3222. -moz-box-shadow:none;
  3223. -webkit-box-shadow:none;
  3224. box-shadow:none;
  3225. font-size:12px;
  3226. color:#606266;
  3227. }
  3228. #u3207.mouseDown {
  3229. }
  3230. #u3207_div.disabled {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:80px;
  3236. height:32px;
  3237. background:inherit;
  3238. background-color:rgba(255, 255, 255, 1);
  3239. box-sizing:border-box;
  3240. border-width:1px;
  3241. border-style:solid;
  3242. border-color:rgba(235, 238, 245, 1);
  3243. border-radius:4px;
  3244. -moz-box-shadow:none;
  3245. -webkit-box-shadow:none;
  3246. box-shadow:none;
  3247. font-size:12px;
  3248. color:#606266;
  3249. }
  3250. #u3207.disabled {
  3251. }
  3252. #u3207_div.mouseOver.mouseDown {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:80px;
  3258. height:32px;
  3259. background:inherit;
  3260. background-color:rgba(236, 245, 255, 1);
  3261. box-sizing:border-box;
  3262. border-width:1px;
  3263. border-style:solid;
  3264. border-color:rgba(58, 142, 230, 1);
  3265. border-radius:4px;
  3266. -moz-box-shadow:none;
  3267. -webkit-box-shadow:none;
  3268. box-shadow:none;
  3269. font-size:12px;
  3270. color:#606266;
  3271. }
  3272. #u3207.mouseOver.mouseDown {
  3273. }
  3274. #u3207_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. }
  3279. #u3208 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:0px;
  3285. height:0px;
  3286. }
  3287. #u3209_div {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:80px;
  3293. height:16px;
  3294. background:inherit;
  3295. background-color:rgba(255, 255, 255, 0);
  3296. border:none;
  3297. border-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. }
  3302. #u3209 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:327px;
  3306. top:712px;
  3307. width:80px;
  3308. height:16px;
  3309. display:flex;
  3310. }
  3311. #u3209 .text {
  3312. position:absolute;
  3313. align-self:flex-start;
  3314. padding:0px 0px 0px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u3209_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u3210 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:0px;
  3329. height:0px;
  3330. }
  3331. #u3211_div {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:23px;
  3337. height:18px;
  3338. background:inherit;
  3339. background-color:rgba(255, 255, 255, 0);
  3340. border:none;
  3341. border-radius:0px;
  3342. -moz-box-shadow:none;
  3343. -webkit-box-shadow:none;
  3344. box-shadow:none;
  3345. font-family:"Microsoft YaHei UI", sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. color:#606266;
  3349. }
  3350. #u3211 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:448px;
  3354. top:710px;
  3355. width:23px;
  3356. height:18px;
  3357. display:flex;
  3358. font-family:"Microsoft YaHei UI", sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. color:#606266;
  3362. }
  3363. #u3211 .text {
  3364. position:absolute;
  3365. align-self:flex-start;
  3366. padding:0px 0px 0px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u3211_div.selected {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:23px;
  3376. height:18px;
  3377. background:inherit;
  3378. background-color:rgba(255, 255, 255, 0);
  3379. border:none;
  3380. border-radius:0px;
  3381. -moz-box-shadow:none;
  3382. -webkit-box-shadow:none;
  3383. box-shadow:none;
  3384. font-family:"Microsoft YaHei UI", sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. color:#606266;
  3388. }
  3389. #u3211.selected {
  3390. }
  3391. #u3211_div.disabled {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:23px;
  3397. height:18px;
  3398. background:inherit;
  3399. background-color:rgba(255, 255, 255, 0);
  3400. border:none;
  3401. border-radius:0px;
  3402. -moz-box-shadow:none;
  3403. -webkit-box-shadow:none;
  3404. box-shadow:none;
  3405. font-family:"Microsoft YaHei UI", sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. color:#606266;
  3409. }
  3410. #u3211.disabled {
  3411. }
  3412. #u3211_div.selected.disabled {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:23px;
  3418. height:18px;
  3419. background:inherit;
  3420. background-color:rgba(255, 255, 255, 0);
  3421. border:none;
  3422. border-radius:0px;
  3423. -moz-box-shadow:none;
  3424. -webkit-box-shadow:none;
  3425. box-shadow:none;
  3426. font-family:"Microsoft YaHei UI", sans-serif;
  3427. font-weight:400;
  3428. font-style:normal;
  3429. color:#606266;
  3430. }
  3431. #u3211.selected.disabled {
  3432. }
  3433. #u3211_text {
  3434. border-width:0px;
  3435. white-space:nowrap;
  3436. text-transform:none;
  3437. }
  3438. #u3212_img {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:13px;
  3444. height:13px;
  3445. }
  3446. #u3212 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:429px;
  3450. top:713px;
  3451. width:13px;
  3452. height:13px;
  3453. display:flex;
  3454. }
  3455. #u3212 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 2px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u3212_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u3213 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:0px;
  3474. height:0px;
  3475. }
  3476. #u3214_div {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:23px;
  3482. height:18px;
  3483. background:inherit;
  3484. background-color:rgba(255, 255, 255, 0);
  3485. border:none;
  3486. border-radius:0px;
  3487. -moz-box-shadow:none;
  3488. -webkit-box-shadow:none;
  3489. box-shadow:none;
  3490. font-family:"Microsoft YaHei UI", sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. color:#606266;
  3494. }
  3495. #u3214 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:511px;
  3499. top:710px;
  3500. width:23px;
  3501. height:18px;
  3502. display:flex;
  3503. font-family:"Microsoft YaHei UI", sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. color:#606266;
  3507. }
  3508. #u3214 .text {
  3509. position:absolute;
  3510. align-self:flex-start;
  3511. padding:0px 0px 0px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u3214_div.selected {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:23px;
  3521. height:18px;
  3522. background:inherit;
  3523. background-color:rgba(255, 255, 255, 0);
  3524. border:none;
  3525. border-radius:0px;
  3526. -moz-box-shadow:none;
  3527. -webkit-box-shadow:none;
  3528. box-shadow:none;
  3529. font-family:"Microsoft YaHei UI", sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. color:#606266;
  3533. }
  3534. #u3214.selected {
  3535. }
  3536. #u3214_div.disabled {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:23px;
  3542. height:18px;
  3543. background:inherit;
  3544. background-color:rgba(255, 255, 255, 0);
  3545. border:none;
  3546. border-radius:0px;
  3547. -moz-box-shadow:none;
  3548. -webkit-box-shadow:none;
  3549. box-shadow:none;
  3550. font-family:"Microsoft YaHei UI", sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. color:#606266;
  3554. }
  3555. #u3214.disabled {
  3556. }
  3557. #u3214_div.selected.disabled {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:23px;
  3563. height:18px;
  3564. background:inherit;
  3565. background-color:rgba(255, 255, 255, 0);
  3566. border:none;
  3567. border-radius:0px;
  3568. -moz-box-shadow:none;
  3569. -webkit-box-shadow:none;
  3570. box-shadow:none;
  3571. font-family:"Microsoft YaHei UI", sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. color:#606266;
  3575. }
  3576. #u3214.selected.disabled {
  3577. }
  3578. #u3214_text {
  3579. border-width:0px;
  3580. white-space:nowrap;
  3581. text-transform:none;
  3582. }
  3583. #u3215_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:13px;
  3589. height:13px;
  3590. }
  3591. #u3215 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:492px;
  3595. top:713px;
  3596. width:13px;
  3597. height:13px;
  3598. display:flex;
  3599. }
  3600. #u3215 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 2px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u3215_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u3216 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:0px;
  3619. height:0px;
  3620. }
  3621. #u3217_div {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:23px;
  3627. height:18px;
  3628. background:inherit;
  3629. background-color:rgba(255, 255, 255, 0);
  3630. border:none;
  3631. border-radius:0px;
  3632. -moz-box-shadow:none;
  3633. -webkit-box-shadow:none;
  3634. box-shadow:none;
  3635. font-family:"Microsoft YaHei UI", sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. color:#606266;
  3639. }
  3640. #u3217 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:571px;
  3644. top:710px;
  3645. width:23px;
  3646. height:18px;
  3647. display:flex;
  3648. font-family:"Microsoft YaHei UI", sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. color:#606266;
  3652. }
  3653. #u3217 .text {
  3654. position:absolute;
  3655. align-self:flex-start;
  3656. padding:0px 0px 0px 0px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u3217_div.selected {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:23px;
  3666. height:18px;
  3667. background:inherit;
  3668. background-color:rgba(255, 255, 255, 0);
  3669. border:none;
  3670. border-radius:0px;
  3671. -moz-box-shadow:none;
  3672. -webkit-box-shadow:none;
  3673. box-shadow:none;
  3674. font-family:"Microsoft YaHei UI", sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. color:#606266;
  3678. }
  3679. #u3217.selected {
  3680. }
  3681. #u3217_div.disabled {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:23px;
  3687. height:18px;
  3688. background:inherit;
  3689. background-color:rgba(255, 255, 255, 0);
  3690. border:none;
  3691. border-radius:0px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. font-family:"Microsoft YaHei UI", sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. color:#606266;
  3699. }
  3700. #u3217.disabled {
  3701. }
  3702. #u3217_div.selected.disabled {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:0px;
  3706. top:0px;
  3707. width:23px;
  3708. height:18px;
  3709. background:inherit;
  3710. background-color:rgba(255, 255, 255, 0);
  3711. border:none;
  3712. border-radius:0px;
  3713. -moz-box-shadow:none;
  3714. -webkit-box-shadow:none;
  3715. box-shadow:none;
  3716. font-family:"Microsoft YaHei UI", sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. color:#606266;
  3720. }
  3721. #u3217.selected.disabled {
  3722. }
  3723. #u3217_text {
  3724. border-width:0px;
  3725. white-space:nowrap;
  3726. text-transform:none;
  3727. }
  3728. #u3218_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:13px;
  3734. height:13px;
  3735. }
  3736. #u3218 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:552px;
  3740. top:713px;
  3741. width:13px;
  3742. height:13px;
  3743. display:flex;
  3744. }
  3745. #u3218 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 2px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u3218_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. visibility:hidden;
  3757. }
  3758. #u3219 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:0px;
  3764. height:0px;
  3765. }
  3766. #u3220_div {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:23px;
  3772. height:18px;
  3773. background:inherit;
  3774. background-color:rgba(255, 255, 255, 0);
  3775. border:none;
  3776. border-radius:0px;
  3777. -moz-box-shadow:none;
  3778. -webkit-box-shadow:none;
  3779. box-shadow:none;
  3780. font-family:"Microsoft YaHei UI", sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. color:#606266;
  3784. }
  3785. #u3220 {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:632px;
  3789. top:710px;
  3790. width:23px;
  3791. height:18px;
  3792. display:flex;
  3793. font-family:"Microsoft YaHei UI", sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. color:#606266;
  3797. }
  3798. #u3220 .text {
  3799. position:absolute;
  3800. align-self:flex-start;
  3801. padding:0px 0px 0px 0px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u3220_div.selected {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:23px;
  3811. height:18px;
  3812. background:inherit;
  3813. background-color:rgba(255, 255, 255, 0);
  3814. border:none;
  3815. border-radius:0px;
  3816. -moz-box-shadow:none;
  3817. -webkit-box-shadow:none;
  3818. box-shadow:none;
  3819. font-family:"Microsoft YaHei UI", sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. color:#606266;
  3823. }
  3824. #u3220.selected {
  3825. }
  3826. #u3220_div.disabled {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:0px;
  3830. top:0px;
  3831. width:23px;
  3832. height:18px;
  3833. background:inherit;
  3834. background-color:rgba(255, 255, 255, 0);
  3835. border:none;
  3836. border-radius:0px;
  3837. -moz-box-shadow:none;
  3838. -webkit-box-shadow:none;
  3839. box-shadow:none;
  3840. font-family:"Microsoft YaHei UI", sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. color:#606266;
  3844. }
  3845. #u3220.disabled {
  3846. }
  3847. #u3220_div.selected.disabled {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:23px;
  3853. height:18px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 0);
  3856. border:none;
  3857. border-radius:0px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-family:"Microsoft YaHei UI", sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. color:#606266;
  3865. }
  3866. #u3220.selected.disabled {
  3867. }
  3868. #u3220_text {
  3869. border-width:0px;
  3870. white-space:nowrap;
  3871. text-transform:none;
  3872. }
  3873. #u3221_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:13px;
  3879. height:13px;
  3880. }
  3881. #u3221 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:613px;
  3885. top:713px;
  3886. width:13px;
  3887. height:13px;
  3888. display:flex;
  3889. }
  3890. #u3221 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 2px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u3221_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u3222 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:0px;
  3909. height:0px;
  3910. }
  3911. #u3223_div {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:23px;
  3917. height:18px;
  3918. background:inherit;
  3919. background-color:rgba(255, 255, 255, 0);
  3920. border:none;
  3921. border-radius:0px;
  3922. -moz-box-shadow:none;
  3923. -webkit-box-shadow:none;
  3924. box-shadow:none;
  3925. font-family:"Microsoft YaHei UI", sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. color:#606266;
  3929. }
  3930. #u3223 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:691px;
  3934. top:710px;
  3935. width:23px;
  3936. height:18px;
  3937. display:flex;
  3938. font-family:"Microsoft YaHei UI", sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. color:#606266;
  3942. }
  3943. #u3223 .text {
  3944. position:absolute;
  3945. align-self:flex-start;
  3946. padding:0px 0px 0px 0px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u3223_div.selected {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:23px;
  3956. height:18px;
  3957. background:inherit;
  3958. background-color:rgba(255, 255, 255, 0);
  3959. border:none;
  3960. border-radius:0px;
  3961. -moz-box-shadow:none;
  3962. -webkit-box-shadow:none;
  3963. box-shadow:none;
  3964. font-family:"Microsoft YaHei UI", sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. color:#606266;
  3968. }
  3969. #u3223.selected {
  3970. }
  3971. #u3223_div.disabled {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:23px;
  3977. height:18px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. border:none;
  3981. border-radius:0px;
  3982. -moz-box-shadow:none;
  3983. -webkit-box-shadow:none;
  3984. box-shadow:none;
  3985. font-family:"Microsoft YaHei UI", sans-serif;
  3986. font-weight:400;
  3987. font-style:normal;
  3988. color:#606266;
  3989. }
  3990. #u3223.disabled {
  3991. }
  3992. #u3223_div.selected.disabled {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:23px;
  3998. height:18px;
  3999. background:inherit;
  4000. background-color:rgba(255, 255, 255, 0);
  4001. border:none;
  4002. border-radius:0px;
  4003. -moz-box-shadow:none;
  4004. -webkit-box-shadow:none;
  4005. box-shadow:none;
  4006. font-family:"Microsoft YaHei UI", sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. color:#606266;
  4010. }
  4011. #u3223.selected.disabled {
  4012. }
  4013. #u3223_text {
  4014. border-width:0px;
  4015. white-space:nowrap;
  4016. text-transform:none;
  4017. }
  4018. #u3224_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:13px;
  4024. height:13px;
  4025. }
  4026. #u3224 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:672px;
  4030. top:713px;
  4031. width:13px;
  4032. height:13px;
  4033. display:flex;
  4034. }
  4035. #u3224 .text {
  4036. position:absolute;
  4037. align-self:center;
  4038. padding:2px 2px 2px 2px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u3224_text {
  4043. border-width:0px;
  4044. word-wrap:break-word;
  4045. text-transform:none;
  4046. visibility:hidden;
  4047. }
  4048. #u3225 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:0px;
  4054. height:0px;
  4055. }
  4056. #u3226_div {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:23px;
  4062. height:18px;
  4063. background:inherit;
  4064. background-color:rgba(255, 255, 255, 0);
  4065. border:none;
  4066. border-radius:0px;
  4067. -moz-box-shadow:none;
  4068. -webkit-box-shadow:none;
  4069. box-shadow:none;
  4070. font-family:"Microsoft YaHei UI", sans-serif;
  4071. font-weight:400;
  4072. font-style:normal;
  4073. color:#606266;
  4074. }
  4075. #u3226 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:749px;
  4079. top:710px;
  4080. width:23px;
  4081. height:18px;
  4082. display:flex;
  4083. font-family:"Microsoft YaHei UI", sans-serif;
  4084. font-weight:400;
  4085. font-style:normal;
  4086. color:#606266;
  4087. }
  4088. #u3226 .text {
  4089. position:absolute;
  4090. align-self:flex-start;
  4091. padding:0px 0px 0px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u3226_div.selected {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:23px;
  4101. height:18px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 0);
  4104. border:none;
  4105. border-radius:0px;
  4106. -moz-box-shadow:none;
  4107. -webkit-box-shadow:none;
  4108. box-shadow:none;
  4109. font-family:"Microsoft YaHei UI", sans-serif;
  4110. font-weight:400;
  4111. font-style:normal;
  4112. color:#606266;
  4113. }
  4114. #u3226.selected {
  4115. }
  4116. #u3226_div.disabled {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:23px;
  4122. height:18px;
  4123. background:inherit;
  4124. background-color:rgba(255, 255, 255, 0);
  4125. border:none;
  4126. border-radius:0px;
  4127. -moz-box-shadow:none;
  4128. -webkit-box-shadow:none;
  4129. box-shadow:none;
  4130. font-family:"Microsoft YaHei UI", sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. color:#606266;
  4134. }
  4135. #u3226.disabled {
  4136. }
  4137. #u3226_div.selected.disabled {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:23px;
  4143. height:18px;
  4144. background:inherit;
  4145. background-color:rgba(255, 255, 255, 0);
  4146. border:none;
  4147. border-radius:0px;
  4148. -moz-box-shadow:none;
  4149. -webkit-box-shadow:none;
  4150. box-shadow:none;
  4151. font-family:"Microsoft YaHei UI", sans-serif;
  4152. font-weight:400;
  4153. font-style:normal;
  4154. color:#606266;
  4155. }
  4156. #u3226.selected.disabled {
  4157. }
  4158. #u3226_text {
  4159. border-width:0px;
  4160. white-space:nowrap;
  4161. text-transform:none;
  4162. }
  4163. #u3227_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:13px;
  4169. height:13px;
  4170. }
  4171. #u3227 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:730px;
  4175. top:713px;
  4176. width:13px;
  4177. height:13px;
  4178. display:flex;
  4179. }
  4180. #u3227 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 2px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u3227_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u3228 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:0px;
  4199. height:0px;
  4200. }
  4201. #u3229_div {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:23px;
  4207. height:18px;
  4208. background:inherit;
  4209. background-color:rgba(255, 255, 255, 0);
  4210. border:none;
  4211. border-radius:0px;
  4212. -moz-box-shadow:none;
  4213. -webkit-box-shadow:none;
  4214. box-shadow:none;
  4215. font-family:"Microsoft YaHei UI", sans-serif;
  4216. font-weight:400;
  4217. font-style:normal;
  4218. color:#606266;
  4219. }
  4220. #u3229 {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:805px;
  4224. top:710px;
  4225. width:23px;
  4226. height:18px;
  4227. display:flex;
  4228. font-family:"Microsoft YaHei UI", sans-serif;
  4229. font-weight:400;
  4230. font-style:normal;
  4231. color:#606266;
  4232. }
  4233. #u3229 .text {
  4234. position:absolute;
  4235. align-self:flex-start;
  4236. padding:0px 0px 0px 0px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u3229_div.selected {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:23px;
  4246. height:18px;
  4247. background:inherit;
  4248. background-color:rgba(255, 255, 255, 0);
  4249. border:none;
  4250. border-radius:0px;
  4251. -moz-box-shadow:none;
  4252. -webkit-box-shadow:none;
  4253. box-shadow:none;
  4254. font-family:"Microsoft YaHei UI", sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. color:#606266;
  4258. }
  4259. #u3229.selected {
  4260. }
  4261. #u3229_div.disabled {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:23px;
  4267. height:18px;
  4268. background:inherit;
  4269. background-color:rgba(255, 255, 255, 0);
  4270. border:none;
  4271. border-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-family:"Microsoft YaHei UI", sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. color:#606266;
  4279. }
  4280. #u3229.disabled {
  4281. }
  4282. #u3229_div.selected.disabled {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:23px;
  4288. height:18px;
  4289. background:inherit;
  4290. background-color:rgba(255, 255, 255, 0);
  4291. border:none;
  4292. border-radius:0px;
  4293. -moz-box-shadow:none;
  4294. -webkit-box-shadow:none;
  4295. box-shadow:none;
  4296. font-family:"Microsoft YaHei UI", sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. color:#606266;
  4300. }
  4301. #u3229.selected.disabled {
  4302. }
  4303. #u3229_text {
  4304. border-width:0px;
  4305. white-space:nowrap;
  4306. text-transform:none;
  4307. }
  4308. #u3230_img {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:13px;
  4314. height:13px;
  4315. }
  4316. #u3230 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:786px;
  4320. top:713px;
  4321. width:13px;
  4322. height:13px;
  4323. display:flex;
  4324. }
  4325. #u3230 .text {
  4326. position:absolute;
  4327. align-self:center;
  4328. padding:2px 2px 2px 2px;
  4329. box-sizing:border-box;
  4330. width:100%;
  4331. }
  4332. #u3230_text {
  4333. border-width:0px;
  4334. word-wrap:break-word;
  4335. text-transform:none;
  4336. visibility:hidden;
  4337. }
  4338. #u3231_div {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:80px;
  4344. height:16px;
  4345. background:inherit;
  4346. background-color:rgba(255, 255, 255, 0);
  4347. border:none;
  4348. border-radius:0px;
  4349. -moz-box-shadow:none;
  4350. -webkit-box-shadow:none;
  4351. box-shadow:none;
  4352. }
  4353. #u3231 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:334px;
  4357. top:498px;
  4358. width:80px;
  4359. height:16px;
  4360. display:flex;
  4361. }
  4362. #u3231 .text {
  4363. position:absolute;
  4364. align-self:flex-start;
  4365. padding:0px 0px 0px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u3231_text {
  4370. border-width:0px;
  4371. white-space:nowrap;
  4372. text-transform:none;
  4373. }
  4374. #u3232_div {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:95px;
  4380. height:75px;
  4381. background:inherit;
  4382. background-color:rgba(230, 230, 230, 1);
  4383. border:none;
  4384. border-radius:0px;
  4385. -moz-box-shadow:none;
  4386. -webkit-box-shadow:none;
  4387. box-shadow:none;
  4388. font-size:22px;
  4389. }
  4390. #u3232 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:433px;
  4394. top:492px;
  4395. width:95px;
  4396. height:75px;
  4397. display:flex;
  4398. font-size:22px;
  4399. }
  4400. #u3232 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:2px 2px 2px 2px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u3232_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. }
  4412. #u3233_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:190px;
  4418. height:60px;
  4419. background:inherit;
  4420. background-color:rgba(255, 223, 37, 1);
  4421. border:none;
  4422. border-radius:0px;
  4423. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4424. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4425. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4426. }
  4427. #u3233 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:617px;
  4431. top:524px;
  4432. width:190px;
  4433. height:60px;
  4434. display:flex;
  4435. }
  4436. #u3233 .text {
  4437. position:absolute;
  4438. align-self:flex-start;
  4439. padding:10px 10px 10px 10px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u3233_text {
  4444. border-width:0px;
  4445. word-wrap:break-word;
  4446. text-transform:none;
  4447. }
  4448. #u3234_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:-3px;
  4452. top:-13px;
  4453. width:117px;
  4454. height:31px;
  4455. }
  4456. #u3234 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:515px;
  4460. top:537px;
  4461. width:101px;
  4462. height:5px;
  4463. display:flex;
  4464. -webkit-transform:rotate(10.283433254455293deg);
  4465. -moz-transform:rotate(10.283433254455293deg);
  4466. -ms-transform:rotate(10.283433254455293deg);
  4467. transform:rotate(10.283433254455293deg);
  4468. }
  4469. #u3234 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u3234_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u3235_div {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:80px;
  4488. height:16px;
  4489. background:inherit;
  4490. background-color:rgba(255, 255, 255, 0);
  4491. border:none;
  4492. border-radius:0px;
  4493. -moz-box-shadow:none;
  4494. -webkit-box-shadow:none;
  4495. box-shadow:none;
  4496. }
  4497. #u3235 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:334px;
  4501. top:583px;
  4502. width:80px;
  4503. height:16px;
  4504. display:flex;
  4505. }
  4506. #u3235 .text {
  4507. position:absolute;
  4508. align-self:flex-start;
  4509. padding:0px 0px 0px 0px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u3235_text {
  4514. border-width:0px;
  4515. white-space:nowrap;
  4516. text-transform:none;
  4517. }
  4518. #u3236_div {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:95px;
  4524. height:75px;
  4525. background:inherit;
  4526. background-color:rgba(230, 230, 230, 1);
  4527. border:none;
  4528. border-radius:0px;
  4529. -moz-box-shadow:none;
  4530. -webkit-box-shadow:none;
  4531. box-shadow:none;
  4532. font-size:22px;
  4533. }
  4534. #u3236 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:433px;
  4538. top:577px;
  4539. width:95px;
  4540. height:75px;
  4541. display:flex;
  4542. font-size:22px;
  4543. }
  4544. #u3236 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 2px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u3236_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. }
  4556. #u3237_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:190px;
  4562. height:60px;
  4563. background:inherit;
  4564. background-color:rgba(255, 223, 37, 1);
  4565. border:none;
  4566. border-radius:0px;
  4567. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4568. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4569. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4570. }
  4571. #u3237 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:617px;
  4575. top:609px;
  4576. width:190px;
  4577. height:60px;
  4578. display:flex;
  4579. }
  4580. #u3237 .text {
  4581. position:absolute;
  4582. align-self:flex-start;
  4583. padding:10px 10px 10px 10px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u3237_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. }
  4592. #u3238_img {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:-3px;
  4596. top:-13px;
  4597. width:117px;
  4598. height:31px;
  4599. }
  4600. #u3238 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:515px;
  4604. top:622px;
  4605. width:101px;
  4606. height:5px;
  4607. display:flex;
  4608. -webkit-transform:rotate(10.283433254455293deg);
  4609. -moz-transform:rotate(10.283433254455293deg);
  4610. -ms-transform:rotate(10.283433254455293deg);
  4611. transform:rotate(10.283433254455293deg);
  4612. }
  4613. #u3238 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u3238_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u3239 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:0px;
  4632. height:0px;
  4633. }
  4634. #u3240_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:278px;
  4640. height:32px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 1);
  4643. box-sizing:border-box;
  4644. border-width:1px;
  4645. border-style:solid;
  4646. border-color:rgba(220, 223, 230, 1);
  4647. border-radius:4px;
  4648. -moz-box-shadow:none;
  4649. -webkit-box-shadow:none;
  4650. box-shadow:none;
  4651. }
  4652. #u3240 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:426px;
  4656. top:282px;
  4657. width:278px;
  4658. height:32px;
  4659. display:flex;
  4660. }
  4661. #u3240 .text {
  4662. position:absolute;
  4663. align-self:center;
  4664. padding:2px 2px 2px 2px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u3240_div.mouseOver {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:278px;
  4674. height:32px;
  4675. background:inherit;
  4676. background-color:rgba(255, 255, 255, 1);
  4677. box-sizing:border-box;
  4678. border-width:1px;
  4679. border-style:solid;
  4680. border-color:rgba(192, 196, 204, 1);
  4681. border-radius:4px;
  4682. -moz-box-shadow:none;
  4683. -webkit-box-shadow:none;
  4684. box-shadow:none;
  4685. }
  4686. #u3240.mouseOver {
  4687. }
  4688. #u3240_div.selected {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:278px;
  4694. height:32px;
  4695. background:inherit;
  4696. background-color:rgba(255, 255, 255, 1);
  4697. box-sizing:border-box;
  4698. border-width:1px;
  4699. border-style:solid;
  4700. border-color:rgba(64, 158, 255, 1);
  4701. border-radius:4px;
  4702. -moz-box-shadow:none;
  4703. -webkit-box-shadow:none;
  4704. box-shadow:none;
  4705. }
  4706. #u3240.selected {
  4707. }
  4708. #u3240_div.mouseOver.selected {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:278px;
  4714. height:32px;
  4715. background:inherit;
  4716. background-color:rgba(255, 255, 255, 1);
  4717. box-sizing:border-box;
  4718. border-width:1px;
  4719. border-style:solid;
  4720. border-color:rgba(64, 158, 255, 1);
  4721. border-radius:4px;
  4722. -moz-box-shadow:none;
  4723. -webkit-box-shadow:none;
  4724. box-shadow:none;
  4725. }
  4726. #u3240.mouseOver.selected {
  4727. }
  4728. #u3240_text {
  4729. border-width:0px;
  4730. word-wrap:break-word;
  4731. text-transform:none;
  4732. visibility:hidden;
  4733. }
  4734. #u3241_input {
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:265px;
  4739. height:30px;
  4740. padding:2px 2px 2px 2px;
  4741. font-family:"Arial Normal", "Arial", sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:12px;
  4745. letter-spacing:normal;
  4746. color:#606266;
  4747. vertical-align:none;
  4748. text-align:left;
  4749. text-transform:none;
  4750. background-color:transparent;
  4751. border-color:transparent;
  4752. }
  4753. #u3241_input.hint {
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:265px;
  4758. height:30px;
  4759. padding:2px 2px 2px 2px;
  4760. font-family:"Arial Normal", "Arial", sans-serif;
  4761. font-weight:400;
  4762. font-style:normal;
  4763. font-size:12px;
  4764. letter-spacing:normal;
  4765. color:#C0C4CC;
  4766. vertical-align:none;
  4767. text-align:left;
  4768. text-transform:none;
  4769. background-color:transparent;
  4770. border-color:transparent;
  4771. }
  4772. #u3241_input.disabled {
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:265px;
  4777. height:30px;
  4778. padding:2px 2px 2px 2px;
  4779. font-family:"Arial Normal", "Arial", sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:12px;
  4783. letter-spacing:normal;
  4784. color:#606266;
  4785. vertical-align:none;
  4786. text-align:left;
  4787. text-transform:none;
  4788. background-color:transparent;
  4789. border-color:transparent;
  4790. }
  4791. #u3241_input.hint.disabled {
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:265px;
  4796. height:30px;
  4797. padding:2px 2px 2px 2px;
  4798. font-family:"Arial Normal", "Arial", sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:12px;
  4802. letter-spacing:normal;
  4803. color:#C0C4CC;
  4804. vertical-align:none;
  4805. text-align:left;
  4806. text-transform:none;
  4807. background-color:transparent;
  4808. border-color:transparent;
  4809. }
  4810. #u3241_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:265px;
  4816. height:30px;
  4817. background:inherit;
  4818. background-color:rgba(255, 255, 255, 1);
  4819. border:none;
  4820. border-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-size:12px;
  4825. color:#606266;
  4826. }
  4827. #u3241 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:433px;
  4831. top:283px;
  4832. width:265px;
  4833. height:30px;
  4834. display:flex;
  4835. font-size:12px;
  4836. color:#606266;
  4837. }
  4838. #u3241 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u3241_div.hint {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:265px;
  4851. height:30px;
  4852. background:inherit;
  4853. background-color:rgba(255, 255, 255, 1);
  4854. border:none;
  4855. border-radius:0px;
  4856. -moz-box-shadow:none;
  4857. -webkit-box-shadow:none;
  4858. box-shadow:none;
  4859. font-size:12px;
  4860. color:#606266;
  4861. }
  4862. #u3241.hint {
  4863. }
  4864. #u3241_div.disabled {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:0px;
  4868. top:0px;
  4869. width:265px;
  4870. height:30px;
  4871. background:inherit;
  4872. background-color:rgba(240, 240, 240, 1);
  4873. border:none;
  4874. border-radius:0px;
  4875. -moz-box-shadow:none;
  4876. -webkit-box-shadow:none;
  4877. box-shadow:none;
  4878. font-size:12px;
  4879. color:#606266;
  4880. }
  4881. #u3241.disabled {
  4882. }
  4883. #u3241_div.hint.disabled {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:265px;
  4889. height:30px;
  4890. background:inherit;
  4891. background-color:rgba(240, 240, 240, 1);
  4892. border:none;
  4893. border-radius:0px;
  4894. -moz-box-shadow:none;
  4895. -webkit-box-shadow:none;
  4896. box-shadow:none;
  4897. font-size:12px;
  4898. color:#606266;
  4899. }
  4900. #u3241.hint.disabled {
  4901. }
  4902. #u3242_div {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:52px;
  4908. height:16px;
  4909. background:inherit;
  4910. background-color:rgba(255, 255, 255, 0);
  4911. border:none;
  4912. border-radius:0px;
  4913. -moz-box-shadow:none;
  4914. -webkit-box-shadow:none;
  4915. box-shadow:none;
  4916. }
  4917. #u3242 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:324px;
  4921. top:287px;
  4922. width:52px;
  4923. height:16px;
  4924. display:flex;
  4925. }
  4926. #u3242 .text {
  4927. position:absolute;
  4928. align-self:flex-start;
  4929. padding:0px 0px 0px 0px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u3242_text {
  4934. border-width:0px;
  4935. white-space:nowrap;
  4936. text-transform:none;
  4937. }
  4938. #u3243 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:0px;
  4944. height:0px;
  4945. }
  4946. #u3244_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:108px;
  4952. height:16px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 0);
  4955. border:none;
  4956. border-radius:0px;
  4957. -moz-box-shadow:none;
  4958. -webkit-box-shadow:none;
  4959. box-shadow:none;
  4960. }
  4961. #u3244 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:299px;
  4965. top:338px;
  4966. width:108px;
  4967. height:16px;
  4968. display:flex;
  4969. }
  4970. #u3244 .text {
  4971. position:absolute;
  4972. align-self:flex-start;
  4973. padding:0px 0px 0px 0px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u3244_text {
  4978. border-width:0px;
  4979. white-space:nowrap;
  4980. text-transform:none;
  4981. }
  4982. #u3245 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:0px;
  4988. height:0px;
  4989. }
  4990. #u3246_div {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:84px;
  4996. height:18px;
  4997. background:inherit;
  4998. background-color:rgba(255, 255, 255, 0);
  4999. border:none;
  5000. border-radius:0px;
  5001. -moz-box-shadow:none;
  5002. -webkit-box-shadow:none;
  5003. box-shadow:none;
  5004. font-family:"Microsoft YaHei UI", sans-serif;
  5005. font-weight:400;
  5006. font-style:normal;
  5007. color:#606266;
  5008. }
  5009. #u3246 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:445px;
  5013. top:338px;
  5014. width:84px;
  5015. height:18px;
  5016. display:flex;
  5017. font-family:"Microsoft YaHei UI", sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. color:#606266;
  5021. }
  5022. #u3246 .text {
  5023. position:absolute;
  5024. align-self:flex-start;
  5025. padding:0px 0px 0px 0px;
  5026. box-sizing:border-box;
  5027. width:100%;
  5028. }
  5029. #u3246_div.selected {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:0px;
  5034. width:84px;
  5035. height:18px;
  5036. background:inherit;
  5037. background-color:rgba(255, 255, 255, 0);
  5038. border:none;
  5039. border-radius:0px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. font-family:"Microsoft YaHei UI", sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. color:#606266;
  5047. }
  5048. #u3246.selected {
  5049. }
  5050. #u3246_div.disabled {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:84px;
  5056. height:18px;
  5057. background:inherit;
  5058. background-color:rgba(255, 255, 255, 0);
  5059. border:none;
  5060. border-radius:0px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. font-family:"Microsoft YaHei UI", sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. color:#606266;
  5068. }
  5069. #u3246.disabled {
  5070. }
  5071. #u3246_div.selected.disabled {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:84px;
  5077. height:18px;
  5078. background:inherit;
  5079. background-color:rgba(255, 255, 255, 0);
  5080. border:none;
  5081. border-radius:0px;
  5082. -moz-box-shadow:none;
  5083. -webkit-box-shadow:none;
  5084. box-shadow:none;
  5085. font-family:"Microsoft YaHei UI", sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. color:#606266;
  5089. }
  5090. #u3246.selected.disabled {
  5091. }
  5092. #u3246_text {
  5093. border-width:0px;
  5094. white-space:nowrap;
  5095. text-transform:none;
  5096. }
  5097. #u3247_img {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:13px;
  5103. height:13px;
  5104. }
  5105. #u3247 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:426px;
  5109. top:341px;
  5110. width:13px;
  5111. height:13px;
  5112. display:flex;
  5113. }
  5114. #u3247 .text {
  5115. position:absolute;
  5116. align-self:center;
  5117. padding:2px 2px 2px 2px;
  5118. box-sizing:border-box;
  5119. width:100%;
  5120. }
  5121. #u3247_text {
  5122. border-width:0px;
  5123. word-wrap:break-word;
  5124. text-transform:none;
  5125. visibility:hidden;
  5126. }
  5127. #u3248 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:0px;
  5131. top:0px;
  5132. width:0px;
  5133. height:0px;
  5134. }
  5135. #u3249_div {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:42px;
  5141. height:18px;
  5142. background:inherit;
  5143. background-color:rgba(255, 255, 255, 0);
  5144. border:none;
  5145. border-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. font-family:"Microsoft YaHei UI", sans-serif;
  5150. font-weight:400;
  5151. font-style:normal;
  5152. color:#606266;
  5153. }
  5154. #u3249 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:564px;
  5158. top:338px;
  5159. width:42px;
  5160. height:18px;
  5161. display:flex;
  5162. font-family:"Microsoft YaHei UI", sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. color:#606266;
  5166. }
  5167. #u3249 .text {
  5168. position:absolute;
  5169. align-self:flex-start;
  5170. padding:0px 0px 0px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u3249_div.selected {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:42px;
  5180. height:18px;
  5181. background:inherit;
  5182. background-color:rgba(255, 255, 255, 0);
  5183. border:none;
  5184. border-radius:0px;
  5185. -moz-box-shadow:none;
  5186. -webkit-box-shadow:none;
  5187. box-shadow:none;
  5188. font-family:"Microsoft YaHei UI", sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. color:#606266;
  5192. }
  5193. #u3249.selected {
  5194. }
  5195. #u3249_div.disabled {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:42px;
  5201. height:18px;
  5202. background:inherit;
  5203. background-color:rgba(255, 255, 255, 0);
  5204. border:none;
  5205. border-radius:0px;
  5206. -moz-box-shadow:none;
  5207. -webkit-box-shadow:none;
  5208. box-shadow:none;
  5209. font-family:"Microsoft YaHei UI", sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. color:#606266;
  5213. }
  5214. #u3249.disabled {
  5215. }
  5216. #u3249_div.selected.disabled {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:42px;
  5222. height:18px;
  5223. background:inherit;
  5224. background-color:rgba(255, 255, 255, 0);
  5225. border:none;
  5226. border-radius:0px;
  5227. -moz-box-shadow:none;
  5228. -webkit-box-shadow:none;
  5229. box-shadow:none;
  5230. font-family:"Microsoft YaHei UI", sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. color:#606266;
  5234. }
  5235. #u3249.selected.disabled {
  5236. }
  5237. #u3249_text {
  5238. border-width:0px;
  5239. white-space:nowrap;
  5240. text-transform:none;
  5241. }
  5242. #u3250_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:13px;
  5248. height:13px;
  5249. }
  5250. #u3250 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:545px;
  5254. top:341px;
  5255. width:13px;
  5256. height:13px;
  5257. display:flex;
  5258. }
  5259. #u3250 .text {
  5260. position:absolute;
  5261. align-self:center;
  5262. padding:2px 2px 2px 2px;
  5263. box-sizing:border-box;
  5264. width:100%;
  5265. }
  5266. #u3250_text {
  5267. border-width:0px;
  5268. word-wrap:break-word;
  5269. text-transform:none;
  5270. visibility:hidden;
  5271. }
  5272. #u3251 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:0px;
  5278. height:0px;
  5279. }
  5280. #u3252_div {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:28px;
  5286. height:16px;
  5287. background:inherit;
  5288. background-color:rgba(255, 255, 255, 0);
  5289. border:none;
  5290. border-radius:0px;
  5291. -moz-box-shadow:none;
  5292. -webkit-box-shadow:none;
  5293. box-shadow:none;
  5294. color:#323233;
  5295. }
  5296. #u3252 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:451px;
  5300. top:388px;
  5301. width:28px;
  5302. height:16px;
  5303. display:flex;
  5304. color:#323233;
  5305. }
  5306. #u3252 .text {
  5307. position:absolute;
  5308. align-self:flex-start;
  5309. padding:0px 0px 0px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u3252_div.disabled {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:28px;
  5319. height:16px;
  5320. background:inherit;
  5321. background-color:rgba(255, 255, 255, 0);
  5322. border:none;
  5323. border-radius:0px;
  5324. -moz-box-shadow:none;
  5325. -webkit-box-shadow:none;
  5326. box-shadow:none;
  5327. color:#323233;
  5328. }
  5329. #u3252.disabled {
  5330. }
  5331. #u3252_text {
  5332. border-width:0px;
  5333. white-space:nowrap;
  5334. text-transform:none;
  5335. }
  5336. #u3253_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:16px;
  5342. height:16px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. box-sizing:border-box;
  5346. border-width:1px;
  5347. border-style:solid;
  5348. border-color:rgba(200, 201, 204, 1);
  5349. border-radius:0px;
  5350. -moz-box-shadow:none;
  5351. -webkit-box-shadow:none;
  5352. box-shadow:none;
  5353. }
  5354. #u3253 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:426px;
  5358. top:389px;
  5359. width:16px;
  5360. height:16px;
  5361. display:flex;
  5362. }
  5363. #u3253 .text {
  5364. position:absolute;
  5365. align-self:center;
  5366. padding:2px 2px 2px 2px;
  5367. box-sizing:border-box;
  5368. width:100%;
  5369. }
  5370. #u3253_div.selected {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:0px;
  5375. width:16px;
  5376. height:16px;
  5377. background:inherit;
  5378. background-color:rgba(25, 137, 250, 1);
  5379. border:none;
  5380. border-radius:0px;
  5381. -moz-box-shadow:none;
  5382. -webkit-box-shadow:none;
  5383. box-shadow:none;
  5384. }
  5385. #u3253.selected {
  5386. }
  5387. #u3253_div.disabled {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:16px;
  5393. height:16px;
  5394. background:inherit;
  5395. background-color:rgba(235, 237, 240, 1);
  5396. box-sizing:border-box;
  5397. border-width:1px;
  5398. border-style:solid;
  5399. border-color:rgba(200, 201, 204, 1);
  5400. border-radius:0px;
  5401. -moz-box-shadow:none;
  5402. -webkit-box-shadow:none;
  5403. box-shadow:none;
  5404. }
  5405. #u3253.disabled {
  5406. }
  5407. #u3253_div.selected.disabled {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:16px;
  5413. height:16px;
  5414. background:inherit;
  5415. background-color:rgba(235, 237, 240, 1);
  5416. border:none;
  5417. border-radius:0px;
  5418. -moz-box-shadow:none;
  5419. -webkit-box-shadow:none;
  5420. box-shadow:none;
  5421. }
  5422. #u3253.selected.disabled {
  5423. }
  5424. #u3253_text {
  5425. border-width:0px;
  5426. word-wrap:break-word;
  5427. text-transform:none;
  5428. visibility:hidden;
  5429. }
  5430. #u3254_img {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:10px;
  5436. height:8px;
  5437. }
  5438. #u3254 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:429px;
  5442. top:393px;
  5443. width:10px;
  5444. height:8px;
  5445. display:flex;
  5446. }
  5447. #u3254 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:2px 2px 2px 20px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u3254_img.selected {
  5455. }
  5456. #u3254.selected {
  5457. }
  5458. #u3254_img.disabled {
  5459. }
  5460. #u3254.disabled {
  5461. }
  5462. #u3254_img.selected.disabled {
  5463. }
  5464. #u3254.selected.disabled {
  5465. }
  5466. #u3254_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u3255 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:0px;
  5478. height:0px;
  5479. }
  5480. #u3256_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:28px;
  5486. height:16px;
  5487. background:inherit;
  5488. background-color:rgba(255, 255, 255, 0);
  5489. border:none;
  5490. border-radius:0px;
  5491. -moz-box-shadow:none;
  5492. -webkit-box-shadow:none;
  5493. box-shadow:none;
  5494. color:#323233;
  5495. }
  5496. #u3256 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:524px;
  5500. top:388px;
  5501. width:28px;
  5502. height:16px;
  5503. display:flex;
  5504. color:#323233;
  5505. }
  5506. #u3256 .text {
  5507. position:absolute;
  5508. align-self:flex-start;
  5509. padding:0px 0px 0px 0px;
  5510. box-sizing:border-box;
  5511. width:100%;
  5512. }
  5513. #u3256_div.disabled {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:28px;
  5519. height:16px;
  5520. background:inherit;
  5521. background-color:rgba(255, 255, 255, 0);
  5522. border:none;
  5523. border-radius:0px;
  5524. -moz-box-shadow:none;
  5525. -webkit-box-shadow:none;
  5526. box-shadow:none;
  5527. color:#323233;
  5528. }
  5529. #u3256.disabled {
  5530. }
  5531. #u3256_text {
  5532. border-width:0px;
  5533. white-space:nowrap;
  5534. text-transform:none;
  5535. }
  5536. #u3257_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:16px;
  5542. height:16px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 0);
  5545. box-sizing:border-box;
  5546. border-width:1px;
  5547. border-style:solid;
  5548. border-color:rgba(200, 201, 204, 1);
  5549. border-radius:0px;
  5550. -moz-box-shadow:none;
  5551. -webkit-box-shadow:none;
  5552. box-shadow:none;
  5553. }
  5554. #u3257 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:499px;
  5558. top:389px;
  5559. width:16px;
  5560. height:16px;
  5561. display:flex;
  5562. }
  5563. #u3257 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u3257_div.selected {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:16px;
  5576. height:16px;
  5577. background:inherit;
  5578. background-color:rgba(25, 137, 250, 1);
  5579. border:none;
  5580. border-radius:0px;
  5581. -moz-box-shadow:none;
  5582. -webkit-box-shadow:none;
  5583. box-shadow:none;
  5584. }
  5585. #u3257.selected {
  5586. }
  5587. #u3257_div.disabled {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:16px;
  5593. height:16px;
  5594. background:inherit;
  5595. background-color:rgba(235, 237, 240, 1);
  5596. box-sizing:border-box;
  5597. border-width:1px;
  5598. border-style:solid;
  5599. border-color:rgba(200, 201, 204, 1);
  5600. border-radius:0px;
  5601. -moz-box-shadow:none;
  5602. -webkit-box-shadow:none;
  5603. box-shadow:none;
  5604. }
  5605. #u3257.disabled {
  5606. }
  5607. #u3257_div.selected.disabled {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:16px;
  5613. height:16px;
  5614. background:inherit;
  5615. background-color:rgba(235, 237, 240, 1);
  5616. border:none;
  5617. border-radius:0px;
  5618. -moz-box-shadow:none;
  5619. -webkit-box-shadow:none;
  5620. box-shadow:none;
  5621. }
  5622. #u3257.selected.disabled {
  5623. }
  5624. #u3257_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. visibility:hidden;
  5629. }
  5630. #u3258_img {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:10px;
  5636. height:8px;
  5637. }
  5638. #u3258 {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:502px;
  5642. top:393px;
  5643. width:10px;
  5644. height:8px;
  5645. display:flex;
  5646. }
  5647. #u3258 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:2px 2px 2px 20px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u3258_img.selected {
  5655. }
  5656. #u3258.selected {
  5657. }
  5658. #u3258_img.disabled {
  5659. }
  5660. #u3258.disabled {
  5661. }
  5662. #u3258_img.selected.disabled {
  5663. }
  5664. #u3258.selected.disabled {
  5665. }
  5666. #u3258_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u3259 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:0px;
  5678. height:0px;
  5679. }
  5680. #u3260_div {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:28px;
  5686. height:16px;
  5687. background:inherit;
  5688. background-color:rgba(255, 255, 255, 0);
  5689. border:none;
  5690. border-radius:0px;
  5691. -moz-box-shadow:none;
  5692. -webkit-box-shadow:none;
  5693. box-shadow:none;
  5694. color:#323233;
  5695. }
  5696. #u3260 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:598px;
  5700. top:388px;
  5701. width:28px;
  5702. height:16px;
  5703. display:flex;
  5704. color:#323233;
  5705. }
  5706. #u3260 .text {
  5707. position:absolute;
  5708. align-self:flex-start;
  5709. padding:0px 0px 0px 0px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u3260_div.disabled {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:28px;
  5719. height:16px;
  5720. background:inherit;
  5721. background-color:rgba(255, 255, 255, 0);
  5722. border:none;
  5723. border-radius:0px;
  5724. -moz-box-shadow:none;
  5725. -webkit-box-shadow:none;
  5726. box-shadow:none;
  5727. color:#323233;
  5728. }
  5729. #u3260.disabled {
  5730. }
  5731. #u3260_text {
  5732. border-width:0px;
  5733. white-space:nowrap;
  5734. text-transform:none;
  5735. }
  5736. #u3261_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:16px;
  5742. height:16px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 0);
  5745. box-sizing:border-box;
  5746. border-width:1px;
  5747. border-style:solid;
  5748. border-color:rgba(200, 201, 204, 1);
  5749. border-radius:0px;
  5750. -moz-box-shadow:none;
  5751. -webkit-box-shadow:none;
  5752. box-shadow:none;
  5753. }
  5754. #u3261 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:573px;
  5758. top:389px;
  5759. width:16px;
  5760. height:16px;
  5761. display:flex;
  5762. }
  5763. #u3261 .text {
  5764. position:absolute;
  5765. align-self:center;
  5766. padding:2px 2px 2px 2px;
  5767. box-sizing:border-box;
  5768. width:100%;
  5769. }
  5770. #u3261_div.selected {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:0px;
  5774. top:0px;
  5775. width:16px;
  5776. height:16px;
  5777. background:inherit;
  5778. background-color:rgba(25, 137, 250, 1);
  5779. border:none;
  5780. border-radius:0px;
  5781. -moz-box-shadow:none;
  5782. -webkit-box-shadow:none;
  5783. box-shadow:none;
  5784. }
  5785. #u3261.selected {
  5786. }
  5787. #u3261_div.disabled {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:0px;
  5791. top:0px;
  5792. width:16px;
  5793. height:16px;
  5794. background:inherit;
  5795. background-color:rgba(235, 237, 240, 1);
  5796. box-sizing:border-box;
  5797. border-width:1px;
  5798. border-style:solid;
  5799. border-color:rgba(200, 201, 204, 1);
  5800. border-radius:0px;
  5801. -moz-box-shadow:none;
  5802. -webkit-box-shadow:none;
  5803. box-shadow:none;
  5804. }
  5805. #u3261.disabled {
  5806. }
  5807. #u3261_div.selected.disabled {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:0px;
  5811. top:0px;
  5812. width:16px;
  5813. height:16px;
  5814. background:inherit;
  5815. background-color:rgba(235, 237, 240, 1);
  5816. border:none;
  5817. border-radius:0px;
  5818. -moz-box-shadow:none;
  5819. -webkit-box-shadow:none;
  5820. box-shadow:none;
  5821. }
  5822. #u3261.selected.disabled {
  5823. }
  5824. #u3261_text {
  5825. border-width:0px;
  5826. word-wrap:break-word;
  5827. text-transform:none;
  5828. visibility:hidden;
  5829. }
  5830. #u3262_img {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:10px;
  5836. height:8px;
  5837. }
  5838. #u3262 {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:576px;
  5842. top:393px;
  5843. width:10px;
  5844. height:8px;
  5845. display:flex;
  5846. }
  5847. #u3262 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:2px 2px 2px 20px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u3262_img.selected {
  5855. }
  5856. #u3262.selected {
  5857. }
  5858. #u3262_img.disabled {
  5859. }
  5860. #u3262.disabled {
  5861. }
  5862. #u3262_img.selected.disabled {
  5863. }
  5864. #u3262.selected.disabled {
  5865. }
  5866. #u3262_text {
  5867. border-width:0px;
  5868. word-wrap:break-word;
  5869. text-transform:none;
  5870. visibility:hidden;
  5871. }
  5872. #u3263 {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:0px;
  5878. height:0px;
  5879. }
  5880. #u3264_div {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:28px;
  5886. height:16px;
  5887. background:inherit;
  5888. background-color:rgba(255, 255, 255, 0);
  5889. border:none;
  5890. border-radius:0px;
  5891. -moz-box-shadow:none;
  5892. -webkit-box-shadow:none;
  5893. box-shadow:none;
  5894. color:#323233;
  5895. }
  5896. #u3264 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:671px;
  5900. top:387px;
  5901. width:28px;
  5902. height:16px;
  5903. display:flex;
  5904. color:#323233;
  5905. }
  5906. #u3264 .text {
  5907. position:absolute;
  5908. align-self:flex-start;
  5909. padding:0px 0px 0px 0px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u3264_div.disabled {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:28px;
  5919. height:16px;
  5920. background:inherit;
  5921. background-color:rgba(255, 255, 255, 0);
  5922. border:none;
  5923. border-radius:0px;
  5924. -moz-box-shadow:none;
  5925. -webkit-box-shadow:none;
  5926. box-shadow:none;
  5927. color:#323233;
  5928. }
  5929. #u3264.disabled {
  5930. }
  5931. #u3264_text {
  5932. border-width:0px;
  5933. white-space:nowrap;
  5934. text-transform:none;
  5935. }
  5936. #u3265_div {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:16px;
  5942. height:16px;
  5943. background:inherit;
  5944. background-color:rgba(255, 255, 255, 0);
  5945. box-sizing:border-box;
  5946. border-width:1px;
  5947. border-style:solid;
  5948. border-color:rgba(200, 201, 204, 1);
  5949. border-radius:0px;
  5950. -moz-box-shadow:none;
  5951. -webkit-box-shadow:none;
  5952. box-shadow:none;
  5953. }
  5954. #u3265 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:646px;
  5958. top:388px;
  5959. width:16px;
  5960. height:16px;
  5961. display:flex;
  5962. }
  5963. #u3265 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:2px 2px 2px 2px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u3265_div.selected {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:16px;
  5976. height:16px;
  5977. background:inherit;
  5978. background-color:rgba(25, 137, 250, 1);
  5979. border:none;
  5980. border-radius:0px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. }
  5985. #u3265.selected {
  5986. }
  5987. #u3265_div.disabled {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:16px;
  5993. height:16px;
  5994. background:inherit;
  5995. background-color:rgba(235, 237, 240, 1);
  5996. box-sizing:border-box;
  5997. border-width:1px;
  5998. border-style:solid;
  5999. border-color:rgba(200, 201, 204, 1);
  6000. border-radius:0px;
  6001. -moz-box-shadow:none;
  6002. -webkit-box-shadow:none;
  6003. box-shadow:none;
  6004. }
  6005. #u3265.disabled {
  6006. }
  6007. #u3265_div.selected.disabled {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:0px;
  6011. top:0px;
  6012. width:16px;
  6013. height:16px;
  6014. background:inherit;
  6015. background-color:rgba(235, 237, 240, 1);
  6016. border:none;
  6017. border-radius:0px;
  6018. -moz-box-shadow:none;
  6019. -webkit-box-shadow:none;
  6020. box-shadow:none;
  6021. }
  6022. #u3265.selected.disabled {
  6023. }
  6024. #u3265_text {
  6025. border-width:0px;
  6026. word-wrap:break-word;
  6027. text-transform:none;
  6028. visibility:hidden;
  6029. }
  6030. #u3266_img {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:10px;
  6036. height:8px;
  6037. }
  6038. #u3266 {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:649px;
  6042. top:392px;
  6043. width:10px;
  6044. height:8px;
  6045. display:flex;
  6046. }
  6047. #u3266 .text {
  6048. position:absolute;
  6049. align-self:center;
  6050. padding:2px 2px 2px 20px;
  6051. box-sizing:border-box;
  6052. width:100%;
  6053. }
  6054. #u3266_img.selected {
  6055. }
  6056. #u3266.selected {
  6057. }
  6058. #u3266_img.disabled {
  6059. }
  6060. #u3266.disabled {
  6061. }
  6062. #u3266_img.selected.disabled {
  6063. }
  6064. #u3266.selected.disabled {
  6065. }
  6066. #u3266_text {
  6067. border-width:0px;
  6068. word-wrap:break-word;
  6069. text-transform:none;
  6070. visibility:hidden;
  6071. }
  6072. #u3267 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:0px;
  6078. height:0px;
  6079. }
  6080. #u3268_div {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:28px;
  6086. height:16px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 0);
  6089. border:none;
  6090. border-radius:0px;
  6091. -moz-box-shadow:none;
  6092. -webkit-box-shadow:none;
  6093. box-shadow:none;
  6094. color:#323233;
  6095. }
  6096. #u3268 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:744px;
  6100. top:387px;
  6101. width:28px;
  6102. height:16px;
  6103. display:flex;
  6104. color:#323233;
  6105. }
  6106. #u3268 .text {
  6107. position:absolute;
  6108. align-self:flex-start;
  6109. padding:0px 0px 0px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u3268_div.disabled {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:28px;
  6119. height:16px;
  6120. background:inherit;
  6121. background-color:rgba(255, 255, 255, 0);
  6122. border:none;
  6123. border-radius:0px;
  6124. -moz-box-shadow:none;
  6125. -webkit-box-shadow:none;
  6126. box-shadow:none;
  6127. color:#323233;
  6128. }
  6129. #u3268.disabled {
  6130. }
  6131. #u3268_text {
  6132. border-width:0px;
  6133. white-space:nowrap;
  6134. text-transform:none;
  6135. }
  6136. #u3269_div {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:16px;
  6142. height:16px;
  6143. background:inherit;
  6144. background-color:rgba(255, 255, 255, 0);
  6145. box-sizing:border-box;
  6146. border-width:1px;
  6147. border-style:solid;
  6148. border-color:rgba(200, 201, 204, 1);
  6149. border-radius:0px;
  6150. -moz-box-shadow:none;
  6151. -webkit-box-shadow:none;
  6152. box-shadow:none;
  6153. }
  6154. #u3269 {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:719px;
  6158. top:388px;
  6159. width:16px;
  6160. height:16px;
  6161. display:flex;
  6162. }
  6163. #u3269 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 2px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u3269_div.selected {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:16px;
  6176. height:16px;
  6177. background:inherit;
  6178. background-color:rgba(25, 137, 250, 1);
  6179. border:none;
  6180. border-radius:0px;
  6181. -moz-box-shadow:none;
  6182. -webkit-box-shadow:none;
  6183. box-shadow:none;
  6184. }
  6185. #u3269.selected {
  6186. }
  6187. #u3269_div.disabled {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:16px;
  6193. height:16px;
  6194. background:inherit;
  6195. background-color:rgba(235, 237, 240, 1);
  6196. box-sizing:border-box;
  6197. border-width:1px;
  6198. border-style:solid;
  6199. border-color:rgba(200, 201, 204, 1);
  6200. border-radius:0px;
  6201. -moz-box-shadow:none;
  6202. -webkit-box-shadow:none;
  6203. box-shadow:none;
  6204. }
  6205. #u3269.disabled {
  6206. }
  6207. #u3269_div.selected.disabled {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:16px;
  6213. height:16px;
  6214. background:inherit;
  6215. background-color:rgba(235, 237, 240, 1);
  6216. border:none;
  6217. border-radius:0px;
  6218. -moz-box-shadow:none;
  6219. -webkit-box-shadow:none;
  6220. box-shadow:none;
  6221. }
  6222. #u3269.selected.disabled {
  6223. }
  6224. #u3269_text {
  6225. border-width:0px;
  6226. word-wrap:break-word;
  6227. text-transform:none;
  6228. visibility:hidden;
  6229. }
  6230. #u3270_img {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:10px;
  6236. height:8px;
  6237. }
  6238. #u3270 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:722px;
  6242. top:392px;
  6243. width:10px;
  6244. height:8px;
  6245. display:flex;
  6246. }
  6247. #u3270 .text {
  6248. position:absolute;
  6249. align-self:center;
  6250. padding:2px 2px 2px 20px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u3270_img.selected {
  6255. }
  6256. #u3270.selected {
  6257. }
  6258. #u3270_img.disabled {
  6259. }
  6260. #u3270.disabled {
  6261. }
  6262. #u3270_img.selected.disabled {
  6263. }
  6264. #u3270.selected.disabled {
  6265. }
  6266. #u3270_text {
  6267. border-width:0px;
  6268. word-wrap:break-word;
  6269. text-transform:none;
  6270. visibility:hidden;
  6271. }
  6272. #u3271 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:0px;
  6278. height:0px;
  6279. }
  6280. #u3272_div {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:28px;
  6286. height:16px;
  6287. background:inherit;
  6288. background-color:rgba(255, 255, 255, 0);
  6289. border:none;
  6290. border-radius:0px;
  6291. -moz-box-shadow:none;
  6292. -webkit-box-shadow:none;
  6293. box-shadow:none;
  6294. color:#323233;
  6295. }
  6296. #u3272 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:815px;
  6300. top:387px;
  6301. width:28px;
  6302. height:16px;
  6303. display:flex;
  6304. color:#323233;
  6305. }
  6306. #u3272 .text {
  6307. position:absolute;
  6308. align-self:flex-start;
  6309. padding:0px 0px 0px 0px;
  6310. box-sizing:border-box;
  6311. width:100%;
  6312. }
  6313. #u3272_div.disabled {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:28px;
  6319. height:16px;
  6320. background:inherit;
  6321. background-color:rgba(255, 255, 255, 0);
  6322. border:none;
  6323. border-radius:0px;
  6324. -moz-box-shadow:none;
  6325. -webkit-box-shadow:none;
  6326. box-shadow:none;
  6327. color:#323233;
  6328. }
  6329. #u3272.disabled {
  6330. }
  6331. #u3272_text {
  6332. border-width:0px;
  6333. white-space:nowrap;
  6334. text-transform:none;
  6335. }
  6336. #u3273_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:16px;
  6342. height:16px;
  6343. background:inherit;
  6344. background-color:rgba(255, 255, 255, 0);
  6345. box-sizing:border-box;
  6346. border-width:1px;
  6347. border-style:solid;
  6348. border-color:rgba(200, 201, 204, 1);
  6349. border-radius:0px;
  6350. -moz-box-shadow:none;
  6351. -webkit-box-shadow:none;
  6352. box-shadow:none;
  6353. }
  6354. #u3273 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:790px;
  6358. top:388px;
  6359. width:16px;
  6360. height:16px;
  6361. display:flex;
  6362. }
  6363. #u3273 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:2px 2px 2px 2px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u3273_div.selected {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:16px;
  6376. height:16px;
  6377. background:inherit;
  6378. background-color:rgba(25, 137, 250, 1);
  6379. border:none;
  6380. border-radius:0px;
  6381. -moz-box-shadow:none;
  6382. -webkit-box-shadow:none;
  6383. box-shadow:none;
  6384. }
  6385. #u3273.selected {
  6386. }
  6387. #u3273_div.disabled {
  6388. border-width:0px;
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:16px;
  6393. height:16px;
  6394. background:inherit;
  6395. background-color:rgba(235, 237, 240, 1);
  6396. box-sizing:border-box;
  6397. border-width:1px;
  6398. border-style:solid;
  6399. border-color:rgba(200, 201, 204, 1);
  6400. border-radius:0px;
  6401. -moz-box-shadow:none;
  6402. -webkit-box-shadow:none;
  6403. box-shadow:none;
  6404. }
  6405. #u3273.disabled {
  6406. }
  6407. #u3273_div.selected.disabled {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:16px;
  6413. height:16px;
  6414. background:inherit;
  6415. background-color:rgba(235, 237, 240, 1);
  6416. border:none;
  6417. border-radius:0px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. }
  6422. #u3273.selected.disabled {
  6423. }
  6424. #u3273_text {
  6425. border-width:0px;
  6426. word-wrap:break-word;
  6427. text-transform:none;
  6428. visibility:hidden;
  6429. }
  6430. #u3274_img {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:10px;
  6436. height:8px;
  6437. }
  6438. #u3274 {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:793px;
  6442. top:392px;
  6443. width:10px;
  6444. height:8px;
  6445. display:flex;
  6446. }
  6447. #u3274 .text {
  6448. position:absolute;
  6449. align-self:center;
  6450. padding:2px 2px 2px 20px;
  6451. box-sizing:border-box;
  6452. width:100%;
  6453. }
  6454. #u3274_img.selected {
  6455. }
  6456. #u3274.selected {
  6457. }
  6458. #u3274_img.disabled {
  6459. }
  6460. #u3274.disabled {
  6461. }
  6462. #u3274_img.selected.disabled {
  6463. }
  6464. #u3274.selected.disabled {
  6465. }
  6466. #u3274_text {
  6467. border-width:0px;
  6468. word-wrap:break-word;
  6469. text-transform:none;
  6470. visibility:hidden;
  6471. }
  6472. #u3275 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:0px;
  6478. height:0px;
  6479. }
  6480. #u3276_div {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:28px;
  6486. height:16px;
  6487. background:inherit;
  6488. background-color:rgba(255, 255, 255, 0);
  6489. border:none;
  6490. border-radius:0px;
  6491. -moz-box-shadow:none;
  6492. -webkit-box-shadow:none;
  6493. box-shadow:none;
  6494. color:#323233;
  6495. }
  6496. #u3276 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:887px;
  6500. top:386px;
  6501. width:28px;
  6502. height:16px;
  6503. display:flex;
  6504. color:#323233;
  6505. }
  6506. #u3276 .text {
  6507. position:absolute;
  6508. align-self:flex-start;
  6509. padding:0px 0px 0px 0px;
  6510. box-sizing:border-box;
  6511. width:100%;
  6512. }
  6513. #u3276_div.disabled {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:28px;
  6519. height:16px;
  6520. background:inherit;
  6521. background-color:rgba(255, 255, 255, 0);
  6522. border:none;
  6523. border-radius:0px;
  6524. -moz-box-shadow:none;
  6525. -webkit-box-shadow:none;
  6526. box-shadow:none;
  6527. color:#323233;
  6528. }
  6529. #u3276.disabled {
  6530. }
  6531. #u3276_text {
  6532. border-width:0px;
  6533. white-space:nowrap;
  6534. text-transform:none;
  6535. }
  6536. #u3277_div {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:16px;
  6542. height:16px;
  6543. background:inherit;
  6544. background-color:rgba(255, 255, 255, 0);
  6545. box-sizing:border-box;
  6546. border-width:1px;
  6547. border-style:solid;
  6548. border-color:rgba(200, 201, 204, 1);
  6549. border-radius:0px;
  6550. -moz-box-shadow:none;
  6551. -webkit-box-shadow:none;
  6552. box-shadow:none;
  6553. }
  6554. #u3277 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:862px;
  6558. top:387px;
  6559. width:16px;
  6560. height:16px;
  6561. display:flex;
  6562. }
  6563. #u3277 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:2px 2px 2px 2px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u3277_div.selected {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:16px;
  6576. height:16px;
  6577. background:inherit;
  6578. background-color:rgba(25, 137, 250, 1);
  6579. border:none;
  6580. border-radius:0px;
  6581. -moz-box-shadow:none;
  6582. -webkit-box-shadow:none;
  6583. box-shadow:none;
  6584. }
  6585. #u3277.selected {
  6586. }
  6587. #u3277_div.disabled {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:16px;
  6593. height:16px;
  6594. background:inherit;
  6595. background-color:rgba(235, 237, 240, 1);
  6596. box-sizing:border-box;
  6597. border-width:1px;
  6598. border-style:solid;
  6599. border-color:rgba(200, 201, 204, 1);
  6600. border-radius:0px;
  6601. -moz-box-shadow:none;
  6602. -webkit-box-shadow:none;
  6603. box-shadow:none;
  6604. }
  6605. #u3277.disabled {
  6606. }
  6607. #u3277_div.selected.disabled {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:16px;
  6613. height:16px;
  6614. background:inherit;
  6615. background-color:rgba(235, 237, 240, 1);
  6616. border:none;
  6617. border-radius:0px;
  6618. -moz-box-shadow:none;
  6619. -webkit-box-shadow:none;
  6620. box-shadow:none;
  6621. }
  6622. #u3277.selected.disabled {
  6623. }
  6624. #u3277_text {
  6625. border-width:0px;
  6626. word-wrap:break-word;
  6627. text-transform:none;
  6628. visibility:hidden;
  6629. }
  6630. #u3278_img {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:10px;
  6636. height:8px;
  6637. }
  6638. #u3278 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:865px;
  6642. top:391px;
  6643. width:10px;
  6644. height:8px;
  6645. display:flex;
  6646. }
  6647. #u3278 .text {
  6648. position:absolute;
  6649. align-self:center;
  6650. padding:2px 2px 2px 20px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u3278_img.selected {
  6655. }
  6656. #u3278.selected {
  6657. }
  6658. #u3278_img.disabled {
  6659. }
  6660. #u3278.disabled {
  6661. }
  6662. #u3278_img.selected.disabled {
  6663. }
  6664. #u3278.selected.disabled {
  6665. }
  6666. #u3278_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. visibility:hidden;
  6671. }
  6672. #u3279 {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:0px;
  6678. height:0px;
  6679. }
  6680. #u3280 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:0px;
  6686. height:0px;
  6687. }
  6688. #u3281_div {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:0px;
  6692. top:0px;
  6693. width:1261px;
  6694. height:54px;
  6695. background:inherit;
  6696. background-color:rgba(250, 250, 250, 1);
  6697. box-sizing:border-box;
  6698. border-width:1px;
  6699. border-style:solid;
  6700. border-color:rgba(232, 232, 232, 1);
  6701. border-radius:4px;
  6702. border-bottom-right-radius:0px;
  6703. border-bottom-left-radius:0px;
  6704. -moz-box-shadow:none;
  6705. -webkit-box-shadow:none;
  6706. box-shadow:none;
  6707. font-family:"Microsoft YaHei", sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:12px;
  6711. color:#666666;
  6712. line-height:18px;
  6713. }
  6714. #u3281 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:327px;
  6718. top:841px;
  6719. width:1261px;
  6720. height:54px;
  6721. display:flex;
  6722. font-family:"Microsoft YaHei", sans-serif;
  6723. font-weight:400;
  6724. font-style:normal;
  6725. font-size:12px;
  6726. color:#666666;
  6727. line-height:18px;
  6728. }
  6729. #u3281 .text {
  6730. position:absolute;
  6731. align-self:center;
  6732. padding:2px 16px 2px 16px;
  6733. box-sizing:border-box;
  6734. width:100%;
  6735. }
  6736. #u3281_text {
  6737. border-width:0px;
  6738. word-wrap:break-word;
  6739. text-transform:none;
  6740. visibility:hidden;
  6741. }
  6742. #u3282_div {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:1261px;
  6748. height:106px;
  6749. background:inherit;
  6750. background-color:rgba(255, 255, 255, 1);
  6751. box-sizing:border-box;
  6752. border-width:1px;
  6753. border-style:solid;
  6754. border-color:rgba(232, 232, 232, 1);
  6755. border-left:0px;
  6756. border-right:0px;
  6757. border-radius:4px;
  6758. border-top-left-radius:0px;
  6759. border-top-right-radius:0px;
  6760. border-bottom-right-radius:0px;
  6761. border-bottom-left-radius:0px;
  6762. -moz-box-shadow:none;
  6763. -webkit-box-shadow:none;
  6764. box-shadow:none;
  6765. font-family:"Microsoft YaHei", sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:12px;
  6769. color:#666666;
  6770. line-height:18px;
  6771. }
  6772. #u3282 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:327px;
  6776. top:894px;
  6777. width:1261px;
  6778. height:106px;
  6779. display:flex;
  6780. font-family:"Microsoft YaHei", sans-serif;
  6781. font-weight:400;
  6782. font-style:normal;
  6783. font-size:12px;
  6784. color:#666666;
  6785. line-height:18px;
  6786. }
  6787. #u3282 .text {
  6788. position:absolute;
  6789. align-self:center;
  6790. padding:2px 16px 2px 16px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u3282_text {
  6795. border-width:0px;
  6796. word-wrap:break-word;
  6797. text-transform:none;
  6798. visibility:hidden;
  6799. }
  6800. #u3283_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:1261px;
  6806. height:106px;
  6807. background:inherit;
  6808. background-color:rgba(255, 255, 255, 1);
  6809. box-sizing:border-box;
  6810. border-width:1px;
  6811. border-style:solid;
  6812. border-color:rgba(232, 232, 232, 1);
  6813. border-left:0px;
  6814. border-right:0px;
  6815. border-radius:4px;
  6816. border-top-left-radius:0px;
  6817. border-top-right-radius:0px;
  6818. border-bottom-right-radius:0px;
  6819. border-bottom-left-radius:0px;
  6820. -moz-box-shadow:none;
  6821. -webkit-box-shadow:none;
  6822. box-shadow:none;
  6823. font-family:"Microsoft YaHei", sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:12px;
  6827. color:#666666;
  6828. line-height:18px;
  6829. }
  6830. #u3283 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:327px;
  6834. top:1001px;
  6835. width:1261px;
  6836. height:106px;
  6837. display:flex;
  6838. font-family:"Microsoft YaHei", sans-serif;
  6839. font-weight:400;
  6840. font-style:normal;
  6841. font-size:12px;
  6842. color:#666666;
  6843. line-height:18px;
  6844. }
  6845. #u3283 .text {
  6846. position:absolute;
  6847. align-self:center;
  6848. padding:2px 16px 2px 16px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u3283_text {
  6853. border-width:0px;
  6854. word-wrap:break-word;
  6855. text-transform:none;
  6856. visibility:hidden;
  6857. }
  6858. #u3284_div {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:0px;
  6862. top:0px;
  6863. width:1261px;
  6864. height:106px;
  6865. background:inherit;
  6866. background-color:rgba(255, 255, 255, 1);
  6867. box-sizing:border-box;
  6868. border-width:1px;
  6869. border-style:solid;
  6870. border-color:rgba(232, 232, 232, 1);
  6871. border-left:0px;
  6872. border-right:0px;
  6873. border-radius:4px;
  6874. border-top-left-radius:0px;
  6875. border-top-right-radius:0px;
  6876. border-bottom-right-radius:0px;
  6877. border-bottom-left-radius:0px;
  6878. -moz-box-shadow:none;
  6879. -webkit-box-shadow:none;
  6880. box-shadow:none;
  6881. font-family:"Microsoft YaHei", sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:12px;
  6885. color:#666666;
  6886. line-height:18px;
  6887. }
  6888. #u3284 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:327px;
  6892. top:1107px;
  6893. width:1261px;
  6894. height:106px;
  6895. display:flex;
  6896. font-family:"Microsoft YaHei", sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:12px;
  6900. color:#666666;
  6901. line-height:18px;
  6902. }
  6903. #u3284 .text {
  6904. position:absolute;
  6905. align-self:center;
  6906. padding:2px 16px 2px 16px;
  6907. box-sizing:border-box;
  6908. width:100%;
  6909. }
  6910. #u3284_text {
  6911. border-width:0px;
  6912. word-wrap:break-word;
  6913. text-transform:none;
  6914. visibility:hidden;
  6915. }
  6916. #u3285_div {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:0px;
  6920. top:0px;
  6921. width:1261px;
  6922. height:106px;
  6923. background:inherit;
  6924. background-color:rgba(255, 255, 255, 1);
  6925. box-sizing:border-box;
  6926. border-width:1px;
  6927. border-style:solid;
  6928. border-color:rgba(232, 232, 232, 1);
  6929. border-left:0px;
  6930. border-right:0px;
  6931. border-radius:4px;
  6932. border-top-left-radius:0px;
  6933. border-top-right-radius:0px;
  6934. border-bottom-right-radius:0px;
  6935. border-bottom-left-radius:0px;
  6936. -moz-box-shadow:none;
  6937. -webkit-box-shadow:none;
  6938. box-shadow:none;
  6939. font-family:"Microsoft YaHei", sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:12px;
  6943. color:#666666;
  6944. line-height:18px;
  6945. }
  6946. #u3285 {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:327px;
  6950. top:1214px;
  6951. width:1261px;
  6952. height:106px;
  6953. display:flex;
  6954. font-family:"Microsoft YaHei", sans-serif;
  6955. font-weight:400;
  6956. font-style:normal;
  6957. font-size:12px;
  6958. color:#666666;
  6959. line-height:18px;
  6960. }
  6961. #u3285 .text {
  6962. position:absolute;
  6963. align-self:center;
  6964. padding:2px 16px 2px 16px;
  6965. box-sizing:border-box;
  6966. width:100%;
  6967. }
  6968. #u3285_text {
  6969. border-width:0px;
  6970. word-wrap:break-word;
  6971. text-transform:none;
  6972. visibility:hidden;
  6973. }
  6974. #u3286_div {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:1261px;
  6980. height:106px;
  6981. background:inherit;
  6982. background-color:rgba(255, 255, 255, 1);
  6983. box-sizing:border-box;
  6984. border-width:1px;
  6985. border-style:solid;
  6986. border-color:rgba(232, 232, 232, 1);
  6987. border-left:0px;
  6988. border-right:0px;
  6989. border-radius:4px;
  6990. border-top-left-radius:0px;
  6991. border-top-right-radius:0px;
  6992. border-bottom-right-radius:0px;
  6993. border-bottom-left-radius:0px;
  6994. -moz-box-shadow:none;
  6995. -webkit-box-shadow:none;
  6996. box-shadow:none;
  6997. font-family:"Microsoft YaHei", sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:12px;
  7001. color:#666666;
  7002. line-height:18px;
  7003. }
  7004. #u3286 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:327px;
  7008. top:1320px;
  7009. width:1261px;
  7010. height:106px;
  7011. display:flex;
  7012. font-family:"Microsoft YaHei", sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. font-size:12px;
  7016. color:#666666;
  7017. line-height:18px;
  7018. }
  7019. #u3286 .text {
  7020. position:absolute;
  7021. align-self:center;
  7022. padding:2px 16px 2px 16px;
  7023. box-sizing:border-box;
  7024. width:100%;
  7025. }
  7026. #u3286_text {
  7027. border-width:0px;
  7028. word-wrap:break-word;
  7029. text-transform:none;
  7030. visibility:hidden;
  7031. }
  7032. #u3287_div {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:1261px;
  7038. height:106px;
  7039. background:inherit;
  7040. background-color:rgba(255, 255, 255, 1);
  7041. box-sizing:border-box;
  7042. border-width:1px;
  7043. border-style:solid;
  7044. border-color:rgba(232, 232, 232, 1);
  7045. border-left:0px;
  7046. border-right:0px;
  7047. border-radius:4px;
  7048. border-top-left-radius:0px;
  7049. border-top-right-radius:0px;
  7050. border-bottom-right-radius:0px;
  7051. border-bottom-left-radius:0px;
  7052. -moz-box-shadow:none;
  7053. -webkit-box-shadow:none;
  7054. box-shadow:none;
  7055. font-family:"Microsoft YaHei", sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:12px;
  7059. color:#666666;
  7060. line-height:18px;
  7061. }
  7062. #u3287 {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:327px;
  7066. top:1427px;
  7067. width:1261px;
  7068. height:106px;
  7069. display:flex;
  7070. font-family:"Microsoft YaHei", sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:12px;
  7074. color:#666666;
  7075. line-height:18px;
  7076. }
  7077. #u3287 .text {
  7078. position:absolute;
  7079. align-self:center;
  7080. padding:2px 16px 2px 16px;
  7081. box-sizing:border-box;
  7082. width:100%;
  7083. }
  7084. #u3287_text {
  7085. border-width:0px;
  7086. word-wrap:break-word;
  7087. text-transform:none;
  7088. visibility:hidden;
  7089. }
  7090. #u3288_div {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:1261px;
  7096. height:106px;
  7097. background:inherit;
  7098. background-color:rgba(255, 255, 255, 1);
  7099. box-sizing:border-box;
  7100. border-width:1px;
  7101. border-style:solid;
  7102. border-color:rgba(232, 232, 232, 1);
  7103. border-left:0px;
  7104. border-right:0px;
  7105. border-radius:4px;
  7106. border-top-left-radius:0px;
  7107. border-top-right-radius:0px;
  7108. border-bottom-right-radius:0px;
  7109. border-bottom-left-radius:0px;
  7110. -moz-box-shadow:none;
  7111. -webkit-box-shadow:none;
  7112. box-shadow:none;
  7113. font-family:"Microsoft YaHei", sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. font-size:12px;
  7117. color:#666666;
  7118. line-height:18px;
  7119. }
  7120. #u3288 {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:327px;
  7124. top:1533px;
  7125. width:1261px;
  7126. height:106px;
  7127. display:flex;
  7128. font-family:"Microsoft YaHei", sans-serif;
  7129. font-weight:400;
  7130. font-style:normal;
  7131. font-size:12px;
  7132. color:#666666;
  7133. line-height:18px;
  7134. }
  7135. #u3288 .text {
  7136. position:absolute;
  7137. align-self:center;
  7138. padding:2px 16px 2px 16px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u3288_text {
  7143. border-width:0px;
  7144. word-wrap:break-word;
  7145. text-transform:none;
  7146. visibility:hidden;
  7147. }
  7148. #u3289_div {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:1261px;
  7154. height:106px;
  7155. background:inherit;
  7156. background-color:rgba(255, 255, 255, 1);
  7157. box-sizing:border-box;
  7158. border-width:1px;
  7159. border-style:solid;
  7160. border-color:rgba(232, 232, 232, 1);
  7161. border-left:0px;
  7162. border-right:0px;
  7163. border-radius:4px;
  7164. border-top-left-radius:0px;
  7165. border-top-right-radius:0px;
  7166. border-bottom-right-radius:0px;
  7167. border-bottom-left-radius:0px;
  7168. -moz-box-shadow:none;
  7169. -webkit-box-shadow:none;
  7170. box-shadow:none;
  7171. font-family:"Microsoft YaHei", sans-serif;
  7172. font-weight:400;
  7173. font-style:normal;
  7174. font-size:12px;
  7175. color:#666666;
  7176. line-height:18px;
  7177. }
  7178. #u3289 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:327px;
  7182. top:1640px;
  7183. width:1261px;
  7184. height:106px;
  7185. display:flex;
  7186. font-family:"Microsoft YaHei", sans-serif;
  7187. font-weight:400;
  7188. font-style:normal;
  7189. font-size:12px;
  7190. color:#666666;
  7191. line-height:18px;
  7192. }
  7193. #u3289 .text {
  7194. position:absolute;
  7195. align-self:center;
  7196. padding:2px 16px 2px 16px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u3289_text {
  7201. border-width:0px;
  7202. word-wrap:break-word;
  7203. text-transform:none;
  7204. visibility:hidden;
  7205. }
  7206. #u3290 {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:0px;
  7212. height:0px;
  7213. }
  7214. #u3291_div {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:117px;
  7220. height:54px;
  7221. background:inherit;
  7222. background-color:rgba(255, 255, 255, 0);
  7223. border:none;
  7224. border-left:0px;
  7225. border-top:0px;
  7226. border-right:0px;
  7227. border-radius:4px;
  7228. border-bottom-right-radius:0px;
  7229. border-bottom-left-radius:0px;
  7230. -moz-box-shadow:none;
  7231. -webkit-box-shadow:none;
  7232. box-shadow:none;
  7233. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7234. font-weight:700;
  7235. font-style:normal;
  7236. font-size:14px;
  7237. color:rgba(0, 0, 0, 0.8470588235294118);
  7238. text-align:left;
  7239. line-height:53px;
  7240. }
  7241. #u3291 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:379px;
  7245. top:841px;
  7246. width:117px;
  7247. height:54px;
  7248. display:flex;
  7249. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7250. font-weight:700;
  7251. font-style:normal;
  7252. font-size:14px;
  7253. color:rgba(0, 0, 0, 0.8470588235294118);
  7254. text-align:left;
  7255. line-height:53px;
  7256. }
  7257. #u3291 .text {
  7258. position:absolute;
  7259. align-self:center;
  7260. padding:0px 16px 0px 16px;
  7261. box-sizing:border-box;
  7262. width:100%;
  7263. }
  7264. #u3291_text {
  7265. border-width:0px;
  7266. word-wrap:break-word;
  7267. text-transform:none;
  7268. }
  7269. #u3292_div {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:113px;
  7275. height:53px;
  7276. background:inherit;
  7277. background-color:rgba(255, 255, 255, 0);
  7278. border:none;
  7279. border-left:0px;
  7280. border-top:0px;
  7281. border-right:0px;
  7282. border-radius:4px;
  7283. border-bottom-right-radius:0px;
  7284. border-bottom-left-radius:0px;
  7285. -moz-box-shadow:none;
  7286. -webkit-box-shadow:none;
  7287. box-shadow:none;
  7288. font-family:"SF UI Text", sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:14px;
  7292. color:rgba(0, 0, 0, 0.6470588235294118);
  7293. text-align:left;
  7294. line-height:53px;
  7295. }
  7296. #u3292 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:379px;
  7300. top:895px;
  7301. width:113px;
  7302. height:53px;
  7303. display:flex;
  7304. font-family:"SF UI Text", sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:14px;
  7308. color:rgba(0, 0, 0, 0.6470588235294118);
  7309. text-align:left;
  7310. line-height:53px;
  7311. }
  7312. #u3292 .text {
  7313. position:absolute;
  7314. align-self:flex-start;
  7315. padding:0px 16px 0px 16px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u3292_text {
  7320. border-width:0px;
  7321. word-wrap:break-word;
  7322. text-transform:none;
  7323. visibility:hidden;
  7324. }
  7325. #u3293_img {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:0px;
  7329. top:0px;
  7330. width:80px;
  7331. height:80px;
  7332. }
  7333. #u3293 {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:394px;
  7337. top:907px;
  7338. width:80px;
  7339. height:80px;
  7340. display:flex;
  7341. }
  7342. #u3293 .text {
  7343. position:absolute;
  7344. align-self:center;
  7345. padding:2px 2px 2px 2px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u3293_text {
  7350. border-width:0px;
  7351. word-wrap:break-word;
  7352. text-transform:none;
  7353. visibility:hidden;
  7354. }
  7355. #u3294_img {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:72px;
  7361. height:68px;
  7362. }
  7363. #u3294 {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:398px;
  7367. top:913px;
  7368. width:72px;
  7369. height:68px;
  7370. display:flex;
  7371. }
  7372. #u3294 .text {
  7373. position:absolute;
  7374. align-self:center;
  7375. padding:2px 2px 2px 2px;
  7376. box-sizing:border-box;
  7377. width:100%;
  7378. }
  7379. #u3294_text {
  7380. border-width:0px;
  7381. word-wrap:break-word;
  7382. text-transform:none;
  7383. visibility:hidden;
  7384. }
  7385. #u3295_img {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:80px;
  7391. height:80px;
  7392. }
  7393. #u3295 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:394px;
  7397. top:1018px;
  7398. width:80px;
  7399. height:80px;
  7400. display:flex;
  7401. }
  7402. #u3295 .text {
  7403. position:absolute;
  7404. align-self:center;
  7405. padding:2px 2px 2px 2px;
  7406. box-sizing:border-box;
  7407. width:100%;
  7408. }
  7409. #u3295_text {
  7410. border-width:0px;
  7411. word-wrap:break-word;
  7412. text-transform:none;
  7413. visibility:hidden;
  7414. }
  7415. #u3296_img {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:80px;
  7421. height:80px;
  7422. }
  7423. #u3296 {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:394px;
  7427. top:1122px;
  7428. width:80px;
  7429. height:80px;
  7430. display:flex;
  7431. }
  7432. #u3296 .text {
  7433. position:absolute;
  7434. align-self:center;
  7435. padding:2px 2px 2px 2px;
  7436. box-sizing:border-box;
  7437. width:100%;
  7438. }
  7439. #u3296_text {
  7440. border-width:0px;
  7441. word-wrap:break-word;
  7442. text-transform:none;
  7443. visibility:hidden;
  7444. }
  7445. #u3297_img {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:80px;
  7451. height:80px;
  7452. }
  7453. #u3297 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:394px;
  7457. top:1228px;
  7458. width:80px;
  7459. height:80px;
  7460. display:flex;
  7461. }
  7462. #u3297 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:2px 2px 2px 2px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u3297_text {
  7470. border-width:0px;
  7471. word-wrap:break-word;
  7472. text-transform:none;
  7473. visibility:hidden;
  7474. }
  7475. #u3298_img {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:80px;
  7481. height:80px;
  7482. }
  7483. #u3298 {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:394px;
  7487. top:1332px;
  7488. width:80px;
  7489. height:80px;
  7490. display:flex;
  7491. }
  7492. #u3298 .text {
  7493. position:absolute;
  7494. align-self:center;
  7495. padding:2px 2px 2px 2px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u3298_text {
  7500. border-width:0px;
  7501. word-wrap:break-word;
  7502. text-transform:none;
  7503. visibility:hidden;
  7504. }
  7505. #u3299_img {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:80px;
  7511. height:80px;
  7512. }
  7513. #u3299 {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:394px;
  7517. top:1441px;
  7518. width:80px;
  7519. height:80px;
  7520. display:flex;
  7521. }
  7522. #u3299 .text {
  7523. position:absolute;
  7524. align-self:center;
  7525. padding:2px 2px 2px 2px;
  7526. box-sizing:border-box;
  7527. width:100%;
  7528. }
  7529. #u3299_text {
  7530. border-width:0px;
  7531. word-wrap:break-word;
  7532. text-transform:none;
  7533. visibility:hidden;
  7534. }
  7535. #u3300_img {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:0px;
  7539. top:0px;
  7540. width:80px;
  7541. height:80px;
  7542. }
  7543. #u3300 {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:394px;
  7547. top:1547px;
  7548. width:80px;
  7549. height:80px;
  7550. display:flex;
  7551. }
  7552. #u3300 .text {
  7553. position:absolute;
  7554. align-self:center;
  7555. padding:2px 2px 2px 2px;
  7556. box-sizing:border-box;
  7557. width:100%;
  7558. }
  7559. #u3300_text {
  7560. border-width:0px;
  7561. word-wrap:break-word;
  7562. text-transform:none;
  7563. visibility:hidden;
  7564. }
  7565. #u3301_img {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:80px;
  7571. height:80px;
  7572. }
  7573. #u3301 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:394px;
  7577. top:1651px;
  7578. width:80px;
  7579. height:80px;
  7580. display:flex;
  7581. }
  7582. #u3301 .text {
  7583. position:absolute;
  7584. align-self:center;
  7585. padding:2px 2px 2px 2px;
  7586. box-sizing:border-box;
  7587. width:100%;
  7588. }
  7589. #u3301_text {
  7590. border-width:0px;
  7591. word-wrap:break-word;
  7592. text-transform:none;
  7593. visibility:hidden;
  7594. }
  7595. #u3302 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:0px;
  7599. top:0px;
  7600. width:0px;
  7601. height:0px;
  7602. }
  7603. #u3303_div {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:67px;
  7609. height:54px;
  7610. background:inherit;
  7611. background-color:rgba(255, 255, 255, 0);
  7612. border:none;
  7613. border-left:0px;
  7614. border-top:0px;
  7615. border-right:0px;
  7616. border-radius:4px;
  7617. border-bottom-right-radius:0px;
  7618. border-bottom-left-radius:0px;
  7619. -moz-box-shadow:none;
  7620. -webkit-box-shadow:none;
  7621. box-shadow:none;
  7622. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7623. font-weight:700;
  7624. font-style:normal;
  7625. font-size:14px;
  7626. color:rgba(0, 0, 0, 0.8470588235294118);
  7627. text-align:left;
  7628. line-height:53px;
  7629. }
  7630. #u3303 {
  7631. border-width:0px;
  7632. position:absolute;
  7633. left:1521px;
  7634. top:841px;
  7635. width:67px;
  7636. height:54px;
  7637. display:flex;
  7638. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7639. font-weight:700;
  7640. font-style:normal;
  7641. font-size:14px;
  7642. color:rgba(0, 0, 0, 0.8470588235294118);
  7643. text-align:left;
  7644. line-height:53px;
  7645. }
  7646. #u3303 .text {
  7647. position:absolute;
  7648. align-self:center;
  7649. padding:0px 16px 0px 16px;
  7650. box-sizing:border-box;
  7651. width:100%;
  7652. }
  7653. #u3303_text {
  7654. border-width:0px;
  7655. word-wrap:break-word;
  7656. text-transform:none;
  7657. }
  7658. #u3304_div {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:0px;
  7662. top:0px;
  7663. width:67px;
  7664. height:848px;
  7665. background:inherit;
  7666. background-color:rgba(255, 255, 255, 0);
  7667. border:none;
  7668. border-left:0px;
  7669. border-top:0px;
  7670. border-right:0px;
  7671. border-radius:4px;
  7672. border-bottom-right-radius:0px;
  7673. border-bottom-left-radius:0px;
  7674. -moz-box-shadow:none;
  7675. -webkit-box-shadow:none;
  7676. box-shadow:none;
  7677. font-family:"Microsoft YaHei", sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:14px;
  7681. color:#1890FF;
  7682. text-align:left;
  7683. line-height:106px;
  7684. }
  7685. #u3304 {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:1521px;
  7689. top:895px;
  7690. width:67px;
  7691. height:848px;
  7692. display:flex;
  7693. font-family:"Microsoft YaHei", sans-serif;
  7694. font-weight:400;
  7695. font-style:normal;
  7696. font-size:14px;
  7697. color:#1890FF;
  7698. text-align:left;
  7699. line-height:106px;
  7700. }
  7701. #u3304 .text {
  7702. position:absolute;
  7703. align-self:flex-start;
  7704. padding:0px 16px 0px 16px;
  7705. box-sizing:border-box;
  7706. width:100%;
  7707. }
  7708. #u3304_text {
  7709. border-width:0px;
  7710. word-wrap:break-word;
  7711. text-transform:none;
  7712. }
  7713. #u3305 {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:0px;
  7717. top:0px;
  7718. width:0px;
  7719. height:0px;
  7720. }
  7721. #u3306_div {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:63px;
  7727. height:54px;
  7728. background:inherit;
  7729. background-color:rgba(255, 255, 255, 0);
  7730. border:none;
  7731. border-left:0px;
  7732. border-top:0px;
  7733. border-right:0px;
  7734. border-radius:4px;
  7735. border-bottom-right-radius:0px;
  7736. border-bottom-left-radius:0px;
  7737. -moz-box-shadow:none;
  7738. -webkit-box-shadow:none;
  7739. box-shadow:none;
  7740. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7741. font-weight:700;
  7742. font-style:normal;
  7743. font-size:14px;
  7744. color:rgba(0, 0, 0, 0.8470588235294118);
  7745. text-align:left;
  7746. line-height:53px;
  7747. }
  7748. #u3306 {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:327px;
  7752. top:839px;
  7753. width:63px;
  7754. height:54px;
  7755. display:flex;
  7756. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7757. font-weight:700;
  7758. font-style:normal;
  7759. font-size:14px;
  7760. color:rgba(0, 0, 0, 0.8470588235294118);
  7761. text-align:left;
  7762. line-height:53px;
  7763. }
  7764. #u3306 .text {
  7765. position:absolute;
  7766. align-self:center;
  7767. padding:0px 16px 0px 16px;
  7768. box-sizing:border-box;
  7769. width:100%;
  7770. }
  7771. #u3306_text {
  7772. border-width:0px;
  7773. word-wrap:break-word;
  7774. text-transform:none;
  7775. }
  7776. #u3307_div {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:56px;
  7782. height:848px;
  7783. background:inherit;
  7784. background-color:rgba(255, 255, 255, 0);
  7785. box-sizing:border-box;
  7786. border-width:3px;
  7787. border-style:solid;
  7788. border-color:rgba(235, 235, 235, 1);
  7789. border-left:0px;
  7790. border-top:0px;
  7791. border-right:0px;
  7792. border-radius:4px;
  7793. border-bottom-right-radius:0px;
  7794. border-bottom-left-radius:0px;
  7795. -moz-box-shadow:none;
  7796. -webkit-box-shadow:none;
  7797. box-shadow:none;
  7798. font-family:"Microsoft Tai Le", sans-serif;
  7799. font-weight:400;
  7800. font-style:normal;
  7801. font-size:14px;
  7802. color:rgba(0, 0, 0, 0.6470588235294118);
  7803. text-align:left;
  7804. line-height:106px;
  7805. }
  7806. #u3307 {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:327px;
  7810. top:893px;
  7811. width:56px;
  7812. height:848px;
  7813. display:flex;
  7814. font-family:"Microsoft Tai Le", sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:14px;
  7818. color:rgba(0, 0, 0, 0.6470588235294118);
  7819. text-align:left;
  7820. line-height:106px;
  7821. }
  7822. #u3307 .text {
  7823. position:absolute;
  7824. align-self:flex-start;
  7825. padding:0px 16px 0px 16px;
  7826. box-sizing:border-box;
  7827. width:100%;
  7828. }
  7829. #u3307_text {
  7830. border-width:0px;
  7831. word-wrap:break-word;
  7832. text-transform:none;
  7833. }
  7834. #u3308 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:0px;
  7840. height:0px;
  7841. }
  7842. #u3309_div {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:204px;
  7848. height:54px;
  7849. background:inherit;
  7850. background-color:rgba(255, 255, 255, 0);
  7851. border:none;
  7852. border-left:0px;
  7853. border-top:0px;
  7854. border-right:0px;
  7855. border-radius:4px;
  7856. border-bottom-right-radius:0px;
  7857. border-bottom-left-radius:0px;
  7858. -moz-box-shadow:none;
  7859. -webkit-box-shadow:none;
  7860. box-shadow:none;
  7861. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7862. font-weight:700;
  7863. font-style:normal;
  7864. font-size:14px;
  7865. color:rgba(0, 0, 0, 0.8470588235294118);
  7866. text-align:left;
  7867. line-height:53px;
  7868. }
  7869. #u3309 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:489px;
  7873. top:841px;
  7874. width:204px;
  7875. height:54px;
  7876. display:flex;
  7877. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7878. font-weight:700;
  7879. font-style:normal;
  7880. font-size:14px;
  7881. color:rgba(0, 0, 0, 0.8470588235294118);
  7882. text-align:left;
  7883. line-height:53px;
  7884. }
  7885. #u3309 .text {
  7886. position:absolute;
  7887. align-self:center;
  7888. padding:0px 16px 0px 16px;
  7889. box-sizing:border-box;
  7890. width:100%;
  7891. }
  7892. #u3309_text {
  7893. border-width:0px;
  7894. word-wrap:break-word;
  7895. text-transform:none;
  7896. }
  7897. #u3310_div {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:187px;
  7903. height:848px;
  7904. background:inherit;
  7905. background-color:rgba(255, 255, 255, 0);
  7906. border:none;
  7907. border-left:0px;
  7908. border-top:0px;
  7909. border-right:0px;
  7910. border-radius:4px;
  7911. border-bottom-right-radius:0px;
  7912. border-bottom-left-radius:0px;
  7913. -moz-box-shadow:none;
  7914. -webkit-box-shadow:none;
  7915. box-shadow:none;
  7916. font-family:"Microsoft Tai Le", sans-serif;
  7917. font-weight:400;
  7918. font-style:normal;
  7919. font-size:14px;
  7920. color:rgba(0, 0, 0, 0.6470588235294118);
  7921. text-align:left;
  7922. line-height:106px;
  7923. }
  7924. #u3310 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:489px;
  7928. top:895px;
  7929. width:187px;
  7930. height:848px;
  7931. display:flex;
  7932. font-family:"Microsoft Tai Le", sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:14px;
  7936. color:rgba(0, 0, 0, 0.6470588235294118);
  7937. text-align:left;
  7938. line-height:106px;
  7939. }
  7940. #u3310 .text {
  7941. position:absolute;
  7942. align-self:flex-start;
  7943. padding:0px 16px 0px 16px;
  7944. box-sizing:border-box;
  7945. width:100%;
  7946. }
  7947. #u3310_text {
  7948. border-width:0px;
  7949. word-wrap:break-word;
  7950. text-transform:none;
  7951. }
  7952. #u3311 {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:0px;
  7958. height:0px;
  7959. }
  7960. #u3312_div {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:95px;
  7966. height:54px;
  7967. background:inherit;
  7968. background-color:rgba(255, 255, 255, 0);
  7969. border:none;
  7970. border-left:0px;
  7971. border-top:0px;
  7972. border-right:0px;
  7973. border-radius:4px;
  7974. border-bottom-right-radius:0px;
  7975. border-bottom-left-radius:0px;
  7976. -moz-box-shadow:none;
  7977. -webkit-box-shadow:none;
  7978. box-shadow:none;
  7979. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7980. font-weight:700;
  7981. font-style:normal;
  7982. font-size:14px;
  7983. color:rgba(0, 0, 0, 0.8470588235294118);
  7984. text-align:left;
  7985. line-height:53px;
  7986. }
  7987. #u3312 {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:638px;
  7991. top:841px;
  7992. width:95px;
  7993. height:54px;
  7994. display:flex;
  7995. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  7996. font-weight:700;
  7997. font-style:normal;
  7998. font-size:14px;
  7999. color:rgba(0, 0, 0, 0.8470588235294118);
  8000. text-align:left;
  8001. line-height:53px;
  8002. }
  8003. #u3312 .text {
  8004. position:absolute;
  8005. align-self:center;
  8006. padding:0px 16px 0px 16px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u3312_text {
  8011. border-width:0px;
  8012. word-wrap:break-word;
  8013. text-transform:none;
  8014. }
  8015. #u3313_div {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:87px;
  8021. height:848px;
  8022. background:inherit;
  8023. background-color:rgba(255, 255, 255, 0);
  8024. border:none;
  8025. border-left:0px;
  8026. border-top:0px;
  8027. border-right:0px;
  8028. border-radius:4px;
  8029. border-bottom-right-radius:0px;
  8030. border-bottom-left-radius:0px;
  8031. -moz-box-shadow:none;
  8032. -webkit-box-shadow:none;
  8033. box-shadow:none;
  8034. font-family:"Microsoft Tai Le", sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:14px;
  8038. color:rgba(0, 0, 0, 0.6470588235294118);
  8039. text-align:left;
  8040. line-height:106px;
  8041. }
  8042. #u3313 {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:638px;
  8046. top:895px;
  8047. width:87px;
  8048. height:848px;
  8049. display:flex;
  8050. font-family:"Microsoft Tai Le", sans-serif;
  8051. font-weight:400;
  8052. font-style:normal;
  8053. font-size:14px;
  8054. color:rgba(0, 0, 0, 0.6470588235294118);
  8055. text-align:left;
  8056. line-height:106px;
  8057. }
  8058. #u3313 .text {
  8059. position:absolute;
  8060. align-self:flex-start;
  8061. padding:0px 16px 0px 16px;
  8062. box-sizing:border-box;
  8063. width:100%;
  8064. }
  8065. #u3313_text {
  8066. border-width:0px;
  8067. word-wrap:break-word;
  8068. text-transform:none;
  8069. }
  8070. #u3314 {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:0px;
  8074. top:0px;
  8075. width:0px;
  8076. height:0px;
  8077. }
  8078. #u3315_div {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:0px;
  8082. top:0px;
  8083. width:95px;
  8084. height:54px;
  8085. background:inherit;
  8086. background-color:rgba(255, 255, 255, 0);
  8087. border:none;
  8088. border-left:0px;
  8089. border-top:0px;
  8090. border-right:0px;
  8091. border-radius:4px;
  8092. border-bottom-right-radius:0px;
  8093. border-bottom-left-radius:0px;
  8094. -moz-box-shadow:none;
  8095. -webkit-box-shadow:none;
  8096. box-shadow:none;
  8097. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8098. font-weight:700;
  8099. font-style:normal;
  8100. font-size:14px;
  8101. color:rgba(0, 0, 0, 0.8470588235294118);
  8102. text-align:left;
  8103. line-height:53px;
  8104. }
  8105. #u3315 {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:734px;
  8109. top:841px;
  8110. width:95px;
  8111. height:54px;
  8112. display:flex;
  8113. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8114. font-weight:700;
  8115. font-style:normal;
  8116. font-size:14px;
  8117. color:rgba(0, 0, 0, 0.8470588235294118);
  8118. text-align:left;
  8119. line-height:53px;
  8120. }
  8121. #u3315 .text {
  8122. position:absolute;
  8123. align-self:center;
  8124. padding:0px 16px 0px 16px;
  8125. box-sizing:border-box;
  8126. width:100%;
  8127. }
  8128. #u3315_text {
  8129. border-width:0px;
  8130. word-wrap:break-word;
  8131. text-transform:none;
  8132. }
  8133. #u3316_div {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:0px;
  8137. top:0px;
  8138. width:87px;
  8139. height:106px;
  8140. background:inherit;
  8141. background-color:rgba(255, 255, 255, 0);
  8142. border:none;
  8143. border-left:0px;
  8144. border-top:0px;
  8145. border-right:0px;
  8146. border-radius:4px;
  8147. border-bottom-right-radius:0px;
  8148. border-bottom-left-radius:0px;
  8149. -moz-box-shadow:none;
  8150. -webkit-box-shadow:none;
  8151. box-shadow:none;
  8152. font-family:"Microsoft Tai Le", sans-serif;
  8153. font-weight:400;
  8154. font-style:normal;
  8155. font-size:14px;
  8156. color:rgba(0, 0, 0, 0.6470588235294118);
  8157. text-align:left;
  8158. line-height:106px;
  8159. }
  8160. #u3316 {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:734px;
  8164. top:895px;
  8165. width:87px;
  8166. height:106px;
  8167. display:flex;
  8168. font-family:"Microsoft Tai Le", sans-serif;
  8169. font-weight:400;
  8170. font-style:normal;
  8171. font-size:14px;
  8172. color:rgba(0, 0, 0, 0.6470588235294118);
  8173. text-align:left;
  8174. line-height:106px;
  8175. }
  8176. #u3316 .text {
  8177. position:absolute;
  8178. align-self:flex-start;
  8179. padding:0px 16px 0px 16px;
  8180. box-sizing:border-box;
  8181. width:100%;
  8182. }
  8183. #u3316_text {
  8184. border-width:0px;
  8185. word-wrap:break-word;
  8186. text-transform:none;
  8187. visibility:hidden;
  8188. }
  8189. #u3317_div {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:0px;
  8193. top:0px;
  8194. width:42px;
  8195. height:16px;
  8196. background:inherit;
  8197. background-color:rgba(255, 255, 255, 0);
  8198. border:none;
  8199. border-radius:0px;
  8200. -moz-box-shadow:none;
  8201. -webkit-box-shadow:none;
  8202. box-shadow:none;
  8203. }
  8204. #u3317 {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:743px;
  8208. top:940px;
  8209. width:42px;
  8210. height:16px;
  8211. display:flex;
  8212. }
  8213. #u3317 .text {
  8214. position:absolute;
  8215. align-self:flex-start;
  8216. padding:0px 0px 0px 0px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u3317_text {
  8221. border-width:0px;
  8222. white-space:nowrap;
  8223. text-transform:none;
  8224. }
  8225. #u3318_div {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:8px;
  8231. height:16px;
  8232. background:inherit;
  8233. background-color:rgba(255, 255, 255, 0);
  8234. border:none;
  8235. border-radius:0px;
  8236. -moz-box-shadow:none;
  8237. -webkit-box-shadow:none;
  8238. box-shadow:none;
  8239. }
  8240. #u3318 {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:743px;
  8244. top:1046px;
  8245. width:8px;
  8246. height:16px;
  8247. display:flex;
  8248. }
  8249. #u3318 .text {
  8250. position:absolute;
  8251. align-self:flex-start;
  8252. padding:0px 0px 0px 0px;
  8253. box-sizing:border-box;
  8254. width:100%;
  8255. }
  8256. #u3318_text {
  8257. border-width:0px;
  8258. white-space:nowrap;
  8259. text-transform:none;
  8260. }
  8261. #u3319_div {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:0px;
  8265. top:0px;
  8266. width:8px;
  8267. height:16px;
  8268. background:inherit;
  8269. background-color:rgba(255, 255, 255, 0);
  8270. border:none;
  8271. border-radius:0px;
  8272. -moz-box-shadow:none;
  8273. -webkit-box-shadow:none;
  8274. box-shadow:none;
  8275. }
  8276. #u3319 {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:743px;
  8280. top:1149px;
  8281. width:8px;
  8282. height:16px;
  8283. display:flex;
  8284. }
  8285. #u3319 .text {
  8286. position:absolute;
  8287. align-self:flex-start;
  8288. padding:0px 0px 0px 0px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u3319_text {
  8293. border-width:0px;
  8294. white-space:nowrap;
  8295. text-transform:none;
  8296. }
  8297. #u3320_div {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:16px;
  8303. height:16px;
  8304. background:inherit;
  8305. background-color:rgba(255, 255, 255, 0);
  8306. border:none;
  8307. border-radius:0px;
  8308. -moz-box-shadow:none;
  8309. -webkit-box-shadow:none;
  8310. box-shadow:none;
  8311. }
  8312. #u3320 {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:743px;
  8316. top:1252px;
  8317. width:16px;
  8318. height:16px;
  8319. display:flex;
  8320. }
  8321. #u3320 .text {
  8322. position:absolute;
  8323. align-self:flex-start;
  8324. padding:0px 0px 0px 0px;
  8325. box-sizing:border-box;
  8326. width:100%;
  8327. }
  8328. #u3320_text {
  8329. border-width:0px;
  8330. white-space:nowrap;
  8331. text-transform:none;
  8332. }
  8333. #u3321_div {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:0px;
  8337. top:0px;
  8338. width:16px;
  8339. height:16px;
  8340. background:inherit;
  8341. background-color:rgba(255, 255, 255, 0);
  8342. border:none;
  8343. border-radius:0px;
  8344. -moz-box-shadow:none;
  8345. -webkit-box-shadow:none;
  8346. box-shadow:none;
  8347. }
  8348. #u3321 {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:743px;
  8352. top:1471px;
  8353. width:16px;
  8354. height:16px;
  8355. display:flex;
  8356. }
  8357. #u3321 .text {
  8358. position:absolute;
  8359. align-self:flex-start;
  8360. padding:0px 0px 0px 0px;
  8361. box-sizing:border-box;
  8362. width:100%;
  8363. }
  8364. #u3321_text {
  8365. border-width:0px;
  8366. white-space:nowrap;
  8367. text-transform:none;
  8368. }
  8369. #u3322_div {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:8px;
  8375. height:16px;
  8376. background:inherit;
  8377. background-color:rgba(255, 255, 255, 0);
  8378. border:none;
  8379. border-radius:0px;
  8380. -moz-box-shadow:none;
  8381. -webkit-box-shadow:none;
  8382. box-shadow:none;
  8383. }
  8384. #u3322 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:743px;
  8388. top:1578px;
  8389. width:8px;
  8390. height:16px;
  8391. display:flex;
  8392. }
  8393. #u3322 .text {
  8394. position:absolute;
  8395. align-self:flex-start;
  8396. padding:0px 0px 0px 0px;
  8397. box-sizing:border-box;
  8398. width:100%;
  8399. }
  8400. #u3322_text {
  8401. border-width:0px;
  8402. white-space:nowrap;
  8403. text-transform:none;
  8404. }
  8405. #u3323_div {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:0px;
  8409. top:0px;
  8410. width:16px;
  8411. height:16px;
  8412. background:inherit;
  8413. background-color:rgba(255, 255, 255, 0);
  8414. border:none;
  8415. border-radius:0px;
  8416. -moz-box-shadow:none;
  8417. -webkit-box-shadow:none;
  8418. box-shadow:none;
  8419. }
  8420. #u3323 {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:743px;
  8424. top:1687px;
  8425. width:16px;
  8426. height:16px;
  8427. display:flex;
  8428. }
  8429. #u3323 .text {
  8430. position:absolute;
  8431. align-self:flex-start;
  8432. padding:0px 0px 0px 0px;
  8433. box-sizing:border-box;
  8434. width:100%;
  8435. }
  8436. #u3323_text {
  8437. border-width:0px;
  8438. white-space:nowrap;
  8439. text-transform:none;
  8440. }
  8441. #u3324_div {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:8px;
  8447. height:16px;
  8448. background:inherit;
  8449. background-color:rgba(255, 255, 255, 0);
  8450. border:none;
  8451. border-radius:0px;
  8452. -moz-box-shadow:none;
  8453. -webkit-box-shadow:none;
  8454. box-shadow:none;
  8455. }
  8456. #u3324 {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:743px;
  8460. top:1364px;
  8461. width:8px;
  8462. height:16px;
  8463. display:flex;
  8464. }
  8465. #u3324 .text {
  8466. position:absolute;
  8467. align-self:flex-start;
  8468. padding:0px 0px 0px 0px;
  8469. box-sizing:border-box;
  8470. width:100%;
  8471. }
  8472. #u3324_text {
  8473. border-width:0px;
  8474. white-space:nowrap;
  8475. text-transform:none;
  8476. }
  8477. #u3325 {
  8478. border-width:0px;
  8479. position:absolute;
  8480. left:0px;
  8481. top:0px;
  8482. width:0px;
  8483. height:0px;
  8484. }
  8485. #u3326_div {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:0px;
  8489. top:0px;
  8490. width:95px;
  8491. height:54px;
  8492. background:inherit;
  8493. background-color:rgba(255, 255, 255, 0);
  8494. border:none;
  8495. border-left:0px;
  8496. border-top:0px;
  8497. border-right:0px;
  8498. border-radius:4px;
  8499. border-bottom-right-radius:0px;
  8500. border-bottom-left-radius:0px;
  8501. -moz-box-shadow:none;
  8502. -webkit-box-shadow:none;
  8503. box-shadow:none;
  8504. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8505. font-weight:700;
  8506. font-style:normal;
  8507. font-size:14px;
  8508. color:rgba(0, 0, 0, 0.8470588235294118);
  8509. text-align:left;
  8510. line-height:53px;
  8511. }
  8512. #u3326 {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:924px;
  8516. top:841px;
  8517. width:95px;
  8518. height:54px;
  8519. display:flex;
  8520. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8521. font-weight:700;
  8522. font-style:normal;
  8523. font-size:14px;
  8524. color:rgba(0, 0, 0, 0.8470588235294118);
  8525. text-align:left;
  8526. line-height:53px;
  8527. }
  8528. #u3326 .text {
  8529. position:absolute;
  8530. align-self:center;
  8531. padding:0px 16px 0px 16px;
  8532. box-sizing:border-box;
  8533. width:100%;
  8534. }
  8535. #u3326_text {
  8536. border-width:0px;
  8537. word-wrap:break-word;
  8538. text-transform:none;
  8539. }
  8540. #u3327_div {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:87px;
  8546. height:848px;
  8547. background:inherit;
  8548. background-color:rgba(255, 255, 255, 0);
  8549. border:none;
  8550. border-left:0px;
  8551. border-top:0px;
  8552. border-right:0px;
  8553. border-radius:4px;
  8554. border-bottom-right-radius:0px;
  8555. border-bottom-left-radius:0px;
  8556. -moz-box-shadow:none;
  8557. -webkit-box-shadow:none;
  8558. box-shadow:none;
  8559. font-family:"Microsoft Tai Le", sans-serif;
  8560. font-weight:400;
  8561. font-style:normal;
  8562. font-size:14px;
  8563. color:rgba(0, 0, 0, 0.6470588235294118);
  8564. text-align:left;
  8565. line-height:106px;
  8566. }
  8567. #u3327 {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:932px;
  8571. top:895px;
  8572. width:87px;
  8573. height:848px;
  8574. display:flex;
  8575. font-family:"Microsoft Tai Le", sans-serif;
  8576. font-weight:400;
  8577. font-style:normal;
  8578. font-size:14px;
  8579. color:rgba(0, 0, 0, 0.6470588235294118);
  8580. text-align:left;
  8581. line-height:106px;
  8582. }
  8583. #u3327 .text {
  8584. position:absolute;
  8585. align-self:flex-start;
  8586. padding:0px 16px 0px 16px;
  8587. box-sizing:border-box;
  8588. width:100%;
  8589. }
  8590. #u3327_text {
  8591. border-width:0px;
  8592. word-wrap:break-word;
  8593. text-transform:none;
  8594. }
  8595. #u3328 {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:0px;
  8601. height:0px;
  8602. }
  8603. #u3329_div {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:95px;
  8609. height:54px;
  8610. background:inherit;
  8611. background-color:rgba(255, 255, 255, 0);
  8612. border:none;
  8613. border-left:0px;
  8614. border-top:0px;
  8615. border-right:0px;
  8616. border-radius:4px;
  8617. border-bottom-right-radius:0px;
  8618. border-bottom-left-radius:0px;
  8619. -moz-box-shadow:none;
  8620. -webkit-box-shadow:none;
  8621. box-shadow:none;
  8622. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8623. font-weight:700;
  8624. font-style:normal;
  8625. font-size:14px;
  8626. color:rgba(0, 0, 0, 0.8470588235294118);
  8627. text-align:left;
  8628. line-height:53px;
  8629. }
  8630. #u3329 {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:829px;
  8634. top:841px;
  8635. width:95px;
  8636. height:54px;
  8637. display:flex;
  8638. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8639. font-weight:700;
  8640. font-style:normal;
  8641. font-size:14px;
  8642. color:rgba(0, 0, 0, 0.8470588235294118);
  8643. text-align:left;
  8644. line-height:53px;
  8645. }
  8646. #u3329 .text {
  8647. position:absolute;
  8648. align-self:center;
  8649. padding:0px 16px 0px 16px;
  8650. box-sizing:border-box;
  8651. width:100%;
  8652. }
  8653. #u3329_text {
  8654. border-width:0px;
  8655. word-wrap:break-word;
  8656. text-transform:none;
  8657. }
  8658. #u3330_div {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:87px;
  8664. height:106px;
  8665. background:inherit;
  8666. background-color:rgba(255, 255, 255, 0);
  8667. border:none;
  8668. border-left:0px;
  8669. border-top:0px;
  8670. border-right:0px;
  8671. border-radius:4px;
  8672. border-bottom-right-radius:0px;
  8673. border-bottom-left-radius:0px;
  8674. -moz-box-shadow:none;
  8675. -webkit-box-shadow:none;
  8676. box-shadow:none;
  8677. font-family:"Microsoft Tai Le", sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:14px;
  8681. color:rgba(0, 0, 0, 0.6470588235294118);
  8682. text-align:left;
  8683. line-height:106px;
  8684. }
  8685. #u3330 {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:829px;
  8689. top:895px;
  8690. width:87px;
  8691. height:106px;
  8692. display:flex;
  8693. font-family:"Microsoft Tai Le", sans-serif;
  8694. font-weight:400;
  8695. font-style:normal;
  8696. font-size:14px;
  8697. color:rgba(0, 0, 0, 0.6470588235294118);
  8698. text-align:left;
  8699. line-height:106px;
  8700. }
  8701. #u3330 .text {
  8702. position:absolute;
  8703. align-self:flex-start;
  8704. padding:0px 16px 0px 16px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u3330_text {
  8709. border-width:0px;
  8710. word-wrap:break-word;
  8711. text-transform:none;
  8712. visibility:hidden;
  8713. }
  8714. #u3331_div {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:32px;
  8720. height:16px;
  8721. background:inherit;
  8722. background-color:rgba(255, 255, 255, 0);
  8723. border:none;
  8724. border-radius:0px;
  8725. -moz-box-shadow:none;
  8726. -webkit-box-shadow:none;
  8727. box-shadow:none;
  8728. }
  8729. #u3331 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:851px;
  8733. top:940px;
  8734. width:32px;
  8735. height:16px;
  8736. display:flex;
  8737. }
  8738. #u3331 .text {
  8739. position:absolute;
  8740. align-self:flex-start;
  8741. padding:0px 0px 0px 0px;
  8742. box-sizing:border-box;
  8743. width:100%;
  8744. }
  8745. #u3331_text {
  8746. border-width:0px;
  8747. white-space:nowrap;
  8748. text-transform:none;
  8749. }
  8750. #u3332_div {
  8751. border-width:0px;
  8752. position:absolute;
  8753. left:0px;
  8754. top:0px;
  8755. width:24px;
  8756. height:16px;
  8757. background:inherit;
  8758. background-color:rgba(255, 255, 255, 0);
  8759. border:none;
  8760. border-radius:0px;
  8761. -moz-box-shadow:none;
  8762. -webkit-box-shadow:none;
  8763. box-shadow:none;
  8764. }
  8765. #u3332 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:851px;
  8769. top:1046px;
  8770. width:24px;
  8771. height:16px;
  8772. display:flex;
  8773. }
  8774. #u3332 .text {
  8775. position:absolute;
  8776. align-self:flex-start;
  8777. padding:0px 0px 0px 0px;
  8778. box-sizing:border-box;
  8779. width:100%;
  8780. }
  8781. #u3332_text {
  8782. border-width:0px;
  8783. white-space:nowrap;
  8784. text-transform:none;
  8785. }
  8786. #u3333_div {
  8787. border-width:0px;
  8788. position:absolute;
  8789. left:0px;
  8790. top:0px;
  8791. width:24px;
  8792. height:16px;
  8793. background:inherit;
  8794. background-color:rgba(255, 255, 255, 0);
  8795. border:none;
  8796. border-radius:0px;
  8797. -moz-box-shadow:none;
  8798. -webkit-box-shadow:none;
  8799. box-shadow:none;
  8800. }
  8801. #u3333 {
  8802. border-width:0px;
  8803. position:absolute;
  8804. left:851px;
  8805. top:1149px;
  8806. width:24px;
  8807. height:16px;
  8808. display:flex;
  8809. }
  8810. #u3333 .text {
  8811. position:absolute;
  8812. align-self:flex-start;
  8813. padding:0px 0px 0px 0px;
  8814. box-sizing:border-box;
  8815. width:100%;
  8816. }
  8817. #u3333_text {
  8818. border-width:0px;
  8819. white-space:nowrap;
  8820. text-transform:none;
  8821. }
  8822. #u3334_div {
  8823. border-width:0px;
  8824. position:absolute;
  8825. left:0px;
  8826. top:0px;
  8827. width:24px;
  8828. height:16px;
  8829. background:inherit;
  8830. background-color:rgba(255, 255, 255, 0);
  8831. border:none;
  8832. border-radius:0px;
  8833. -moz-box-shadow:none;
  8834. -webkit-box-shadow:none;
  8835. box-shadow:none;
  8836. }
  8837. #u3334 {
  8838. border-width:0px;
  8839. position:absolute;
  8840. left:851px;
  8841. top:1252px;
  8842. width:24px;
  8843. height:16px;
  8844. display:flex;
  8845. }
  8846. #u3334 .text {
  8847. position:absolute;
  8848. align-self:flex-start;
  8849. padding:0px 0px 0px 0px;
  8850. box-sizing:border-box;
  8851. width:100%;
  8852. }
  8853. #u3334_text {
  8854. border-width:0px;
  8855. white-space:nowrap;
  8856. text-transform:none;
  8857. }
  8858. #u3335_div {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:24px;
  8864. height:16px;
  8865. background:inherit;
  8866. background-color:rgba(255, 255, 255, 0);
  8867. border:none;
  8868. border-radius:0px;
  8869. -moz-box-shadow:none;
  8870. -webkit-box-shadow:none;
  8871. box-shadow:none;
  8872. }
  8873. #u3335 {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:851px;
  8877. top:1471px;
  8878. width:24px;
  8879. height:16px;
  8880. display:flex;
  8881. }
  8882. #u3335 .text {
  8883. position:absolute;
  8884. align-self:flex-start;
  8885. padding:0px 0px 0px 0px;
  8886. box-sizing:border-box;
  8887. width:100%;
  8888. }
  8889. #u3335_text {
  8890. border-width:0px;
  8891. white-space:nowrap;
  8892. text-transform:none;
  8893. }
  8894. #u3336_div {
  8895. border-width:0px;
  8896. position:absolute;
  8897. left:0px;
  8898. top:0px;
  8899. width:8px;
  8900. height:16px;
  8901. background:inherit;
  8902. background-color:rgba(255, 255, 255, 0);
  8903. border:none;
  8904. border-radius:0px;
  8905. -moz-box-shadow:none;
  8906. -webkit-box-shadow:none;
  8907. box-shadow:none;
  8908. }
  8909. #u3336 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:851px;
  8913. top:1578px;
  8914. width:8px;
  8915. height:16px;
  8916. display:flex;
  8917. }
  8918. #u3336 .text {
  8919. position:absolute;
  8920. align-self:flex-start;
  8921. padding:0px 0px 0px 0px;
  8922. box-sizing:border-box;
  8923. width:100%;
  8924. }
  8925. #u3336_text {
  8926. border-width:0px;
  8927. white-space:nowrap;
  8928. text-transform:none;
  8929. }
  8930. #u3337_div {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:0px;
  8934. top:0px;
  8935. width:16px;
  8936. height:16px;
  8937. background:inherit;
  8938. background-color:rgba(255, 255, 255, 0);
  8939. border:none;
  8940. border-radius:0px;
  8941. -moz-box-shadow:none;
  8942. -webkit-box-shadow:none;
  8943. box-shadow:none;
  8944. }
  8945. #u3337 {
  8946. border-width:0px;
  8947. position:absolute;
  8948. left:851px;
  8949. top:1687px;
  8950. width:16px;
  8951. height:16px;
  8952. display:flex;
  8953. }
  8954. #u3337 .text {
  8955. position:absolute;
  8956. align-self:flex-start;
  8957. padding:0px 0px 0px 0px;
  8958. box-sizing:border-box;
  8959. width:100%;
  8960. }
  8961. #u3337_text {
  8962. border-width:0px;
  8963. white-space:nowrap;
  8964. text-transform:none;
  8965. }
  8966. #u3338_div {
  8967. border-width:0px;
  8968. position:absolute;
  8969. left:0px;
  8970. top:0px;
  8971. width:16px;
  8972. height:16px;
  8973. background:inherit;
  8974. background-color:rgba(255, 255, 255, 0);
  8975. border:none;
  8976. border-radius:0px;
  8977. -moz-box-shadow:none;
  8978. -webkit-box-shadow:none;
  8979. box-shadow:none;
  8980. }
  8981. #u3338 {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:851px;
  8985. top:1364px;
  8986. width:16px;
  8987. height:16px;
  8988. display:flex;
  8989. }
  8990. #u3338 .text {
  8991. position:absolute;
  8992. align-self:flex-start;
  8993. padding:0px 0px 0px 0px;
  8994. box-sizing:border-box;
  8995. width:100%;
  8996. }
  8997. #u3338_text {
  8998. border-width:0px;
  8999. white-space:nowrap;
  9000. text-transform:none;
  9001. }
  9002. #u3339 {
  9003. border-width:0px;
  9004. position:absolute;
  9005. left:0px;
  9006. top:0px;
  9007. width:0px;
  9008. height:0px;
  9009. }
  9010. #u3340_div {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:0px;
  9014. top:0px;
  9015. width:128px;
  9016. height:54px;
  9017. background:inherit;
  9018. background-color:rgba(255, 255, 255, 0);
  9019. border:none;
  9020. border-left:0px;
  9021. border-top:0px;
  9022. border-right:0px;
  9023. border-radius:4px;
  9024. border-bottom-right-radius:0px;
  9025. border-bottom-left-radius:0px;
  9026. -moz-box-shadow:none;
  9027. -webkit-box-shadow:none;
  9028. box-shadow:none;
  9029. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9030. font-weight:700;
  9031. font-style:normal;
  9032. font-size:14px;
  9033. color:rgba(0, 0, 0, 0.8470588235294118);
  9034. text-align:left;
  9035. line-height:53px;
  9036. }
  9037. #u3340 {
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:1216px;
  9041. top:841px;
  9042. width:128px;
  9043. height:54px;
  9044. display:flex;
  9045. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9046. font-weight:700;
  9047. font-style:normal;
  9048. font-size:14px;
  9049. color:rgba(0, 0, 0, 0.8470588235294118);
  9050. text-align:left;
  9051. line-height:53px;
  9052. }
  9053. #u3340 .text {
  9054. position:absolute;
  9055. align-self:center;
  9056. padding:0px 16px 0px 16px;
  9057. box-sizing:border-box;
  9058. width:100%;
  9059. }
  9060. #u3340_text {
  9061. border-width:0px;
  9062. word-wrap:break-word;
  9063. text-transform:none;
  9064. }
  9065. #u3341_div {
  9066. border-width:0px;
  9067. position:absolute;
  9068. left:0px;
  9069. top:0px;
  9070. width:137px;
  9071. height:106px;
  9072. background:inherit;
  9073. background-color:rgba(255, 255, 255, 0);
  9074. border:none;
  9075. border-left:0px;
  9076. border-top:0px;
  9077. border-right:0px;
  9078. border-radius:4px;
  9079. border-bottom-right-radius:0px;
  9080. border-bottom-left-radius:0px;
  9081. -moz-box-shadow:none;
  9082. -webkit-box-shadow:none;
  9083. box-shadow:none;
  9084. font-family:"Microsoft Tai Le", sans-serif;
  9085. font-weight:400;
  9086. font-style:normal;
  9087. font-size:14px;
  9088. color:rgba(0, 0, 0, 0.6470588235294118);
  9089. text-align:left;
  9090. line-height:106px;
  9091. }
  9092. #u3341 {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:1216px;
  9096. top:895px;
  9097. width:137px;
  9098. height:106px;
  9099. display:flex;
  9100. font-family:"Microsoft Tai Le", sans-serif;
  9101. font-weight:400;
  9102. font-style:normal;
  9103. font-size:14px;
  9104. color:rgba(0, 0, 0, 0.6470588235294118);
  9105. text-align:left;
  9106. line-height:106px;
  9107. }
  9108. #u3341 .text {
  9109. position:absolute;
  9110. align-self:flex-start;
  9111. padding:0px 16px 0px 16px;
  9112. box-sizing:border-box;
  9113. width:100%;
  9114. }
  9115. #u3341_text {
  9116. border-width:0px;
  9117. word-wrap:break-word;
  9118. text-transform:none;
  9119. visibility:hidden;
  9120. }
  9121. #u3342_div {
  9122. border-width:0px;
  9123. position:absolute;
  9124. left:0px;
  9125. top:0px;
  9126. width:16px;
  9127. height:16px;
  9128. background:inherit;
  9129. background-color:rgba(255, 255, 255, 0);
  9130. border:none;
  9131. border-radius:0px;
  9132. -moz-box-shadow:none;
  9133. -webkit-box-shadow:none;
  9134. box-shadow:none;
  9135. }
  9136. #u3342 {
  9137. border-width:0px;
  9138. position:absolute;
  9139. left:1264px;
  9140. top:938px;
  9141. width:16px;
  9142. height:16px;
  9143. display:flex;
  9144. }
  9145. #u3342 .text {
  9146. position:absolute;
  9147. align-self:flex-start;
  9148. padding:0px 0px 0px 0px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u3342_text {
  9153. border-width:0px;
  9154. white-space:nowrap;
  9155. text-transform:none;
  9156. }
  9157. #u3343_div {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:16px;
  9163. height:16px;
  9164. background:inherit;
  9165. background-color:rgba(255, 255, 255, 0);
  9166. border:none;
  9167. border-radius:0px;
  9168. -moz-box-shadow:none;
  9169. -webkit-box-shadow:none;
  9170. box-shadow:none;
  9171. }
  9172. #u3343 {
  9173. border-width:0px;
  9174. position:absolute;
  9175. left:1264px;
  9176. top:1044px;
  9177. width:16px;
  9178. height:16px;
  9179. display:flex;
  9180. }
  9181. #u3343 .text {
  9182. position:absolute;
  9183. align-self:flex-start;
  9184. padding:0px 0px 0px 0px;
  9185. box-sizing:border-box;
  9186. width:100%;
  9187. }
  9188. #u3343_text {
  9189. border-width:0px;
  9190. white-space:nowrap;
  9191. text-transform:none;
  9192. }
  9193. #u3344_div {
  9194. border-width:0px;
  9195. position:absolute;
  9196. left:0px;
  9197. top:0px;
  9198. width:16px;
  9199. height:16px;
  9200. background:inherit;
  9201. background-color:rgba(255, 255, 255, 0);
  9202. border:none;
  9203. border-radius:0px;
  9204. -moz-box-shadow:none;
  9205. -webkit-box-shadow:none;
  9206. box-shadow:none;
  9207. }
  9208. #u3344 {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:1264px;
  9212. top:1147px;
  9213. width:16px;
  9214. height:16px;
  9215. display:flex;
  9216. }
  9217. #u3344 .text {
  9218. position:absolute;
  9219. align-self:flex-start;
  9220. padding:0px 0px 0px 0px;
  9221. box-sizing:border-box;
  9222. width:100%;
  9223. }
  9224. #u3344_text {
  9225. border-width:0px;
  9226. white-space:nowrap;
  9227. text-transform:none;
  9228. }
  9229. #u3345_div {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:16px;
  9235. height:16px;
  9236. background:inherit;
  9237. background-color:rgba(255, 255, 255, 0);
  9238. border:none;
  9239. border-radius:0px;
  9240. -moz-box-shadow:none;
  9241. -webkit-box-shadow:none;
  9242. box-shadow:none;
  9243. }
  9244. #u3345 {
  9245. border-width:0px;
  9246. position:absolute;
  9247. left:1264px;
  9248. top:1250px;
  9249. width:16px;
  9250. height:16px;
  9251. display:flex;
  9252. }
  9253. #u3345 .text {
  9254. position:absolute;
  9255. align-self:flex-start;
  9256. padding:0px 0px 0px 0px;
  9257. box-sizing:border-box;
  9258. width:100%;
  9259. }
  9260. #u3345_text {
  9261. border-width:0px;
  9262. white-space:nowrap;
  9263. text-transform:none;
  9264. }
  9265. #u3346_div {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:0px;
  9269. top:0px;
  9270. width:16px;
  9271. height:16px;
  9272. background:inherit;
  9273. background-color:rgba(255, 255, 255, 0);
  9274. border:none;
  9275. border-radius:0px;
  9276. -moz-box-shadow:none;
  9277. -webkit-box-shadow:none;
  9278. box-shadow:none;
  9279. }
  9280. #u3346 {
  9281. border-width:0px;
  9282. position:absolute;
  9283. left:1264px;
  9284. top:1469px;
  9285. width:16px;
  9286. height:16px;
  9287. display:flex;
  9288. }
  9289. #u3346 .text {
  9290. position:absolute;
  9291. align-self:flex-start;
  9292. padding:0px 0px 0px 0px;
  9293. box-sizing:border-box;
  9294. width:100%;
  9295. }
  9296. #u3346_text {
  9297. border-width:0px;
  9298. white-space:nowrap;
  9299. text-transform:none;
  9300. }
  9301. #u3347_div {
  9302. border-width:0px;
  9303. position:absolute;
  9304. left:0px;
  9305. top:0px;
  9306. width:8px;
  9307. height:16px;
  9308. background:inherit;
  9309. background-color:rgba(255, 255, 255, 0);
  9310. border:none;
  9311. border-radius:0px;
  9312. -moz-box-shadow:none;
  9313. -webkit-box-shadow:none;
  9314. box-shadow:none;
  9315. }
  9316. #u3347 {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:1264px;
  9320. top:1576px;
  9321. width:8px;
  9322. height:16px;
  9323. display:flex;
  9324. }
  9325. #u3347 .text {
  9326. position:absolute;
  9327. align-self:flex-start;
  9328. padding:0px 0px 0px 0px;
  9329. box-sizing:border-box;
  9330. width:100%;
  9331. }
  9332. #u3347_text {
  9333. border-width:0px;
  9334. white-space:nowrap;
  9335. text-transform:none;
  9336. }
  9337. #u3348_div {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:0px;
  9341. top:0px;
  9342. width:8px;
  9343. height:16px;
  9344. background:inherit;
  9345. background-color:rgba(255, 255, 255, 0);
  9346. border:none;
  9347. border-radius:0px;
  9348. -moz-box-shadow:none;
  9349. -webkit-box-shadow:none;
  9350. box-shadow:none;
  9351. }
  9352. #u3348 {
  9353. border-width:0px;
  9354. position:absolute;
  9355. left:1264px;
  9356. top:1685px;
  9357. width:8px;
  9358. height:16px;
  9359. display:flex;
  9360. }
  9361. #u3348 .text {
  9362. position:absolute;
  9363. align-self:flex-start;
  9364. padding:0px 0px 0px 0px;
  9365. box-sizing:border-box;
  9366. width:100%;
  9367. }
  9368. #u3348_text {
  9369. border-width:0px;
  9370. white-space:nowrap;
  9371. text-transform:none;
  9372. }
  9373. #u3349_div {
  9374. border-width:0px;
  9375. position:absolute;
  9376. left:0px;
  9377. top:0px;
  9378. width:8px;
  9379. height:16px;
  9380. background:inherit;
  9381. background-color:rgba(255, 255, 255, 0);
  9382. border:none;
  9383. border-radius:0px;
  9384. -moz-box-shadow:none;
  9385. -webkit-box-shadow:none;
  9386. box-shadow:none;
  9387. }
  9388. #u3349 {
  9389. border-width:0px;
  9390. position:absolute;
  9391. left:1264px;
  9392. top:1362px;
  9393. width:8px;
  9394. height:16px;
  9395. display:flex;
  9396. }
  9397. #u3349 .text {
  9398. position:absolute;
  9399. align-self:flex-start;
  9400. padding:0px 0px 0px 0px;
  9401. box-sizing:border-box;
  9402. width:100%;
  9403. }
  9404. #u3349_text {
  9405. border-width:0px;
  9406. white-space:nowrap;
  9407. text-transform:none;
  9408. }
  9409. #u3350 {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:0px;
  9413. top:0px;
  9414. width:0px;
  9415. height:0px;
  9416. }
  9417. #u3351_div {
  9418. border-width:0px;
  9419. position:absolute;
  9420. left:0px;
  9421. top:0px;
  9422. width:132px;
  9423. height:54px;
  9424. background:inherit;
  9425. background-color:rgba(255, 255, 255, 0);
  9426. border:none;
  9427. border-left:0px;
  9428. border-top:0px;
  9429. border-right:0px;
  9430. border-radius:4px;
  9431. border-bottom-right-radius:0px;
  9432. border-bottom-left-radius:0px;
  9433. -moz-box-shadow:none;
  9434. -webkit-box-shadow:none;
  9435. box-shadow:none;
  9436. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9437. font-weight:700;
  9438. font-style:normal;
  9439. font-size:14px;
  9440. color:rgba(0, 0, 0, 0.8470588235294118);
  9441. text-align:left;
  9442. line-height:53px;
  9443. }
  9444. #u3351 {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:1373px;
  9448. top:841px;
  9449. width:132px;
  9450. height:54px;
  9451. display:flex;
  9452. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9453. font-weight:700;
  9454. font-style:normal;
  9455. font-size:14px;
  9456. color:rgba(0, 0, 0, 0.8470588235294118);
  9457. text-align:left;
  9458. line-height:53px;
  9459. }
  9460. #u3351 .text {
  9461. position:absolute;
  9462. align-self:center;
  9463. padding:0px 16px 0px 16px;
  9464. box-sizing:border-box;
  9465. width:100%;
  9466. }
  9467. #u3351_text {
  9468. border-width:0px;
  9469. word-wrap:break-word;
  9470. text-transform:none;
  9471. }
  9472. #u3352_div {
  9473. border-width:0px;
  9474. position:absolute;
  9475. left:0px;
  9476. top:0px;
  9477. width:87px;
  9478. height:848px;
  9479. background:inherit;
  9480. background-color:rgba(255, 255, 255, 0);
  9481. border:none;
  9482. border-left:0px;
  9483. border-top:0px;
  9484. border-right:0px;
  9485. border-radius:4px;
  9486. border-bottom-right-radius:0px;
  9487. border-bottom-left-radius:0px;
  9488. -moz-box-shadow:none;
  9489. -webkit-box-shadow:none;
  9490. box-shadow:none;
  9491. font-family:"Microsoft Tai Le", sans-serif;
  9492. font-weight:400;
  9493. font-style:normal;
  9494. font-size:14px;
  9495. color:rgba(0, 0, 0, 0.6470588235294118);
  9496. text-align:left;
  9497. line-height:106px;
  9498. }
  9499. #u3352 {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:1373px;
  9503. top:895px;
  9504. width:87px;
  9505. height:848px;
  9506. display:flex;
  9507. font-family:"Microsoft Tai Le", sans-serif;
  9508. font-weight:400;
  9509. font-style:normal;
  9510. font-size:14px;
  9511. color:rgba(0, 0, 0, 0.6470588235294118);
  9512. text-align:left;
  9513. line-height:106px;
  9514. }
  9515. #u3352 .text {
  9516. position:absolute;
  9517. align-self:flex-start;
  9518. padding:0px 16px 0px 16px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u3352_text {
  9523. border-width:0px;
  9524. word-wrap:break-word;
  9525. text-transform:none;
  9526. }
  9527. #u3353 {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:0px;
  9531. top:0px;
  9532. width:0px;
  9533. height:0px;
  9534. }
  9535. #u3354_div {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:0px;
  9539. top:0px;
  9540. width:128px;
  9541. height:54px;
  9542. background:inherit;
  9543. background-color:rgba(255, 255, 255, 0);
  9544. border:none;
  9545. border-left:0px;
  9546. border-top:0px;
  9547. border-right:0px;
  9548. border-radius:4px;
  9549. border-bottom-right-radius:0px;
  9550. border-bottom-left-radius:0px;
  9551. -moz-box-shadow:none;
  9552. -webkit-box-shadow:none;
  9553. box-shadow:none;
  9554. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9555. font-weight:700;
  9556. font-style:normal;
  9557. font-size:14px;
  9558. color:rgba(0, 0, 0, 0.8470588235294118);
  9559. text-align:left;
  9560. line-height:53px;
  9561. }
  9562. #u3354 {
  9563. border-width:0px;
  9564. position:absolute;
  9565. left:1049px;
  9566. top:841px;
  9567. width:128px;
  9568. height:54px;
  9569. display:flex;
  9570. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9571. font-weight:700;
  9572. font-style:normal;
  9573. font-size:14px;
  9574. color:rgba(0, 0, 0, 0.8470588235294118);
  9575. text-align:left;
  9576. line-height:53px;
  9577. }
  9578. #u3354 .text {
  9579. position:absolute;
  9580. align-self:center;
  9581. padding:0px 16px 0px 16px;
  9582. box-sizing:border-box;
  9583. width:100%;
  9584. }
  9585. #u3354_text {
  9586. border-width:0px;
  9587. word-wrap:break-word;
  9588. text-transform:none;
  9589. }
  9590. #u3355_div {
  9591. border-width:0px;
  9592. position:absolute;
  9593. left:0px;
  9594. top:0px;
  9595. width:137px;
  9596. height:106px;
  9597. background:inherit;
  9598. background-color:rgba(255, 255, 255, 0);
  9599. border:none;
  9600. border-left:0px;
  9601. border-top:0px;
  9602. border-right:0px;
  9603. border-radius:4px;
  9604. border-bottom-right-radius:0px;
  9605. border-bottom-left-radius:0px;
  9606. -moz-box-shadow:none;
  9607. -webkit-box-shadow:none;
  9608. box-shadow:none;
  9609. font-family:"Microsoft Tai Le", sans-serif;
  9610. font-weight:400;
  9611. font-style:normal;
  9612. font-size:14px;
  9613. color:rgba(0, 0, 0, 0.6470588235294118);
  9614. text-align:left;
  9615. line-height:106px;
  9616. }
  9617. #u3355 {
  9618. border-width:0px;
  9619. position:absolute;
  9620. left:1049px;
  9621. top:895px;
  9622. width:137px;
  9623. height:106px;
  9624. display:flex;
  9625. font-family:"Microsoft Tai Le", sans-serif;
  9626. font-weight:400;
  9627. font-style:normal;
  9628. font-size:14px;
  9629. color:rgba(0, 0, 0, 0.6470588235294118);
  9630. text-align:left;
  9631. line-height:106px;
  9632. }
  9633. #u3355 .text {
  9634. position:absolute;
  9635. align-self:flex-start;
  9636. padding:0px 16px 0px 16px;
  9637. box-sizing:border-box;
  9638. width:100%;
  9639. }
  9640. #u3355_text {
  9641. border-width:0px;
  9642. word-wrap:break-word;
  9643. text-transform:none;
  9644. visibility:hidden;
  9645. }
  9646. #u3356 {
  9647. border-width:0px;
  9648. position:absolute;
  9649. left:0px;
  9650. top:0px;
  9651. width:0px;
  9652. height:0px;
  9653. }
  9654. #u3357_div {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:0px;
  9658. top:0px;
  9659. width:52px;
  9660. height:15px;
  9661. background:inherit;
  9662. background-color:rgba(255, 255, 255, 0);
  9663. border:none;
  9664. border-radius:0px;
  9665. -moz-box-shadow:none;
  9666. -webkit-box-shadow:none;
  9667. box-shadow:none;
  9668. font-size:13px;
  9669. }
  9670. #u3357 {
  9671. border-width:0px;
  9672. position:absolute;
  9673. left:1074px;
  9674. top:914px;
  9675. width:52px;
  9676. height:15px;
  9677. display:flex;
  9678. font-size:13px;
  9679. }
  9680. #u3357 .text {
  9681. position:absolute;
  9682. align-self:flex-start;
  9683. padding:0px 0px 0px 0px;
  9684. box-sizing:border-box;
  9685. width:100%;
  9686. }
  9687. #u3357_text {
  9688. border-width:0px;
  9689. white-space:nowrap;
  9690. text-transform:none;
  9691. }
  9692. #u3358_div {
  9693. border-width:0px;
  9694. position:absolute;
  9695. left:0px;
  9696. top:0px;
  9697. width:52px;
  9698. height:15px;
  9699. background:inherit;
  9700. background-color:rgba(255, 255, 255, 0);
  9701. border:none;
  9702. border-radius:0px;
  9703. -moz-box-shadow:none;
  9704. -webkit-box-shadow:none;
  9705. box-shadow:none;
  9706. font-size:13px;
  9707. }
  9708. #u3358 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:1074px;
  9712. top:941px;
  9713. width:52px;
  9714. height:15px;
  9715. display:flex;
  9716. font-size:13px;
  9717. }
  9718. #u3358 .text {
  9719. position:absolute;
  9720. align-self:flex-start;
  9721. padding:0px 0px 0px 0px;
  9722. box-sizing:border-box;
  9723. width:100%;
  9724. }
  9725. #u3358_text {
  9726. border-width:0px;
  9727. white-space:nowrap;
  9728. text-transform:none;
  9729. }
  9730. #u3359_div {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:0px;
  9734. top:0px;
  9735. width:52px;
  9736. height:15px;
  9737. background:inherit;
  9738. background-color:rgba(255, 255, 255, 0);
  9739. border:none;
  9740. border-radius:0px;
  9741. -moz-box-shadow:none;
  9742. -webkit-box-shadow:none;
  9743. box-shadow:none;
  9744. font-size:13px;
  9745. }
  9746. #u3359 {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:1074px;
  9750. top:967px;
  9751. width:52px;
  9752. height:15px;
  9753. display:flex;
  9754. font-size:13px;
  9755. }
  9756. #u3359 .text {
  9757. position:absolute;
  9758. align-self:flex-start;
  9759. padding:0px 0px 0px 0px;
  9760. box-sizing:border-box;
  9761. width:100%;
  9762. }
  9763. #u3359_text {
  9764. border-width:0px;
  9765. white-space:nowrap;
  9766. text-transform:none;
  9767. }
  9768. #u3360 {
  9769. border-width:0px;
  9770. position:absolute;
  9771. left:0px;
  9772. top:0px;
  9773. width:0px;
  9774. height:0px;
  9775. }
  9776. #u3361_div {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:0px;
  9780. top:0px;
  9781. width:52px;
  9782. height:15px;
  9783. background:inherit;
  9784. background-color:rgba(255, 255, 255, 0);
  9785. border:none;
  9786. border-radius:0px;
  9787. -moz-box-shadow:none;
  9788. -webkit-box-shadow:none;
  9789. box-shadow:none;
  9790. font-size:13px;
  9791. }
  9792. #u3361 {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:1074px;
  9796. top:1020px;
  9797. width:52px;
  9798. height:15px;
  9799. display:flex;
  9800. font-size:13px;
  9801. }
  9802. #u3361 .text {
  9803. position:absolute;
  9804. align-self:flex-start;
  9805. padding:0px 0px 0px 0px;
  9806. box-sizing:border-box;
  9807. width:100%;
  9808. }
  9809. #u3361_text {
  9810. border-width:0px;
  9811. white-space:nowrap;
  9812. text-transform:none;
  9813. }
  9814. #u3362_div {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:0px;
  9818. top:0px;
  9819. width:52px;
  9820. height:15px;
  9821. background:inherit;
  9822. background-color:rgba(255, 255, 255, 0);
  9823. border:none;
  9824. border-radius:0px;
  9825. -moz-box-shadow:none;
  9826. -webkit-box-shadow:none;
  9827. box-shadow:none;
  9828. font-size:13px;
  9829. }
  9830. #u3362 {
  9831. border-width:0px;
  9832. position:absolute;
  9833. left:1074px;
  9834. top:1047px;
  9835. width:52px;
  9836. height:15px;
  9837. display:flex;
  9838. font-size:13px;
  9839. }
  9840. #u3362 .text {
  9841. position:absolute;
  9842. align-self:flex-start;
  9843. padding:0px 0px 0px 0px;
  9844. box-sizing:border-box;
  9845. width:100%;
  9846. }
  9847. #u3362_text {
  9848. border-width:0px;
  9849. white-space:nowrap;
  9850. text-transform:none;
  9851. }
  9852. #u3363_div {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:0px;
  9856. top:0px;
  9857. width:52px;
  9858. height:15px;
  9859. background:inherit;
  9860. background-color:rgba(255, 255, 255, 0);
  9861. border:none;
  9862. border-radius:0px;
  9863. -moz-box-shadow:none;
  9864. -webkit-box-shadow:none;
  9865. box-shadow:none;
  9866. font-size:13px;
  9867. }
  9868. #u3363 {
  9869. border-width:0px;
  9870. position:absolute;
  9871. left:1074px;
  9872. top:1073px;
  9873. width:52px;
  9874. height:15px;
  9875. display:flex;
  9876. font-size:13px;
  9877. }
  9878. #u3363 .text {
  9879. position:absolute;
  9880. align-self:flex-start;
  9881. padding:0px 0px 0px 0px;
  9882. box-sizing:border-box;
  9883. width:100%;
  9884. }
  9885. #u3363_text {
  9886. border-width:0px;
  9887. white-space:nowrap;
  9888. text-transform:none;
  9889. }
  9890. #u3364 {
  9891. border-width:0px;
  9892. position:absolute;
  9893. left:0px;
  9894. top:0px;
  9895. width:0px;
  9896. height:0px;
  9897. }
  9898. #u3365_div {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:0px;
  9902. top:0px;
  9903. width:52px;
  9904. height:15px;
  9905. background:inherit;
  9906. background-color:rgba(255, 255, 255, 0);
  9907. border:none;
  9908. border-radius:0px;
  9909. -moz-box-shadow:none;
  9910. -webkit-box-shadow:none;
  9911. box-shadow:none;
  9912. font-size:13px;
  9913. }
  9914. #u3365 {
  9915. border-width:0px;
  9916. position:absolute;
  9917. left:1074px;
  9918. top:1123px;
  9919. width:52px;
  9920. height:15px;
  9921. display:flex;
  9922. font-size:13px;
  9923. }
  9924. #u3365 .text {
  9925. position:absolute;
  9926. align-self:flex-start;
  9927. padding:0px 0px 0px 0px;
  9928. box-sizing:border-box;
  9929. width:100%;
  9930. }
  9931. #u3365_text {
  9932. border-width:0px;
  9933. white-space:nowrap;
  9934. text-transform:none;
  9935. }
  9936. #u3366_div {
  9937. border-width:0px;
  9938. position:absolute;
  9939. left:0px;
  9940. top:0px;
  9941. width:52px;
  9942. height:15px;
  9943. background:inherit;
  9944. background-color:rgba(255, 255, 255, 0);
  9945. border:none;
  9946. border-radius:0px;
  9947. -moz-box-shadow:none;
  9948. -webkit-box-shadow:none;
  9949. box-shadow:none;
  9950. font-size:13px;
  9951. }
  9952. #u3366 {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:1074px;
  9956. top:1150px;
  9957. width:52px;
  9958. height:15px;
  9959. display:flex;
  9960. font-size:13px;
  9961. }
  9962. #u3366 .text {
  9963. position:absolute;
  9964. align-self:flex-start;
  9965. padding:0px 0px 0px 0px;
  9966. box-sizing:border-box;
  9967. width:100%;
  9968. }
  9969. #u3366_text {
  9970. border-width:0px;
  9971. white-space:nowrap;
  9972. text-transform:none;
  9973. }
  9974. #u3367_div {
  9975. border-width:0px;
  9976. position:absolute;
  9977. left:0px;
  9978. top:0px;
  9979. width:52px;
  9980. height:15px;
  9981. background:inherit;
  9982. background-color:rgba(255, 255, 255, 0);
  9983. border:none;
  9984. border-radius:0px;
  9985. -moz-box-shadow:none;
  9986. -webkit-box-shadow:none;
  9987. box-shadow:none;
  9988. font-size:13px;
  9989. }
  9990. #u3367 {
  9991. border-width:0px;
  9992. position:absolute;
  9993. left:1074px;
  9994. top:1176px;
  9995. width:52px;
  9996. height:15px;
  9997. display:flex;
  9998. font-size:13px;
  9999. }
  10000. #u3367 .text {
  10001. position:absolute;
  10002. align-self:flex-start;
  10003. padding:0px 0px 0px 0px;
  10004. box-sizing:border-box;
  10005. width:100%;
  10006. }
  10007. #u3367_text {
  10008. border-width:0px;
  10009. white-space:nowrap;
  10010. text-transform:none;
  10011. }
  10012. #u3368 {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:0px;
  10016. top:0px;
  10017. width:0px;
  10018. height:0px;
  10019. }
  10020. #u3369_div {
  10021. border-width:0px;
  10022. position:absolute;
  10023. left:0px;
  10024. top:0px;
  10025. width:52px;
  10026. height:15px;
  10027. background:inherit;
  10028. background-color:rgba(255, 255, 255, 0);
  10029. border:none;
  10030. border-radius:0px;
  10031. -moz-box-shadow:none;
  10032. -webkit-box-shadow:none;
  10033. box-shadow:none;
  10034. font-size:13px;
  10035. }
  10036. #u3369 {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:1074px;
  10040. top:1233px;
  10041. width:52px;
  10042. height:15px;
  10043. display:flex;
  10044. font-size:13px;
  10045. }
  10046. #u3369 .text {
  10047. position:absolute;
  10048. align-self:flex-start;
  10049. padding:0px 0px 0px 0px;
  10050. box-sizing:border-box;
  10051. width:100%;
  10052. }
  10053. #u3369_text {
  10054. border-width:0px;
  10055. white-space:nowrap;
  10056. text-transform:none;
  10057. }
  10058. #u3370_div {
  10059. border-width:0px;
  10060. position:absolute;
  10061. left:0px;
  10062. top:0px;
  10063. width:52px;
  10064. height:15px;
  10065. background:inherit;
  10066. background-color:rgba(255, 255, 255, 0);
  10067. border:none;
  10068. border-radius:0px;
  10069. -moz-box-shadow:none;
  10070. -webkit-box-shadow:none;
  10071. box-shadow:none;
  10072. font-size:13px;
  10073. }
  10074. #u3370 {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:1074px;
  10078. top:1260px;
  10079. width:52px;
  10080. height:15px;
  10081. display:flex;
  10082. font-size:13px;
  10083. }
  10084. #u3370 .text {
  10085. position:absolute;
  10086. align-self:flex-start;
  10087. padding:0px 0px 0px 0px;
  10088. box-sizing:border-box;
  10089. width:100%;
  10090. }
  10091. #u3370_text {
  10092. border-width:0px;
  10093. white-space:nowrap;
  10094. text-transform:none;
  10095. }
  10096. #u3371_div {
  10097. border-width:0px;
  10098. position:absolute;
  10099. left:0px;
  10100. top:0px;
  10101. width:52px;
  10102. height:15px;
  10103. background:inherit;
  10104. background-color:rgba(255, 255, 255, 0);
  10105. border:none;
  10106. border-radius:0px;
  10107. -moz-box-shadow:none;
  10108. -webkit-box-shadow:none;
  10109. box-shadow:none;
  10110. font-size:13px;
  10111. }
  10112. #u3371 {
  10113. border-width:0px;
  10114. position:absolute;
  10115. left:1074px;
  10116. top:1286px;
  10117. width:52px;
  10118. height:15px;
  10119. display:flex;
  10120. font-size:13px;
  10121. }
  10122. #u3371 .text {
  10123. position:absolute;
  10124. align-self:flex-start;
  10125. padding:0px 0px 0px 0px;
  10126. box-sizing:border-box;
  10127. width:100%;
  10128. }
  10129. #u3371_text {
  10130. border-width:0px;
  10131. white-space:nowrap;
  10132. text-transform:none;
  10133. }
  10134. #u3372 {
  10135. border-width:0px;
  10136. position:absolute;
  10137. left:0px;
  10138. top:0px;
  10139. width:0px;
  10140. height:0px;
  10141. }
  10142. #u3373_div {
  10143. border-width:0px;
  10144. position:absolute;
  10145. left:0px;
  10146. top:0px;
  10147. width:52px;
  10148. height:15px;
  10149. background:inherit;
  10150. background-color:rgba(255, 255, 255, 0);
  10151. border:none;
  10152. border-radius:0px;
  10153. -moz-box-shadow:none;
  10154. -webkit-box-shadow:none;
  10155. box-shadow:none;
  10156. font-size:13px;
  10157. }
  10158. #u3373 {
  10159. border-width:0px;
  10160. position:absolute;
  10161. left:1074px;
  10162. top:1338px;
  10163. width:52px;
  10164. height:15px;
  10165. display:flex;
  10166. font-size:13px;
  10167. }
  10168. #u3373 .text {
  10169. position:absolute;
  10170. align-self:flex-start;
  10171. padding:0px 0px 0px 0px;
  10172. box-sizing:border-box;
  10173. width:100%;
  10174. }
  10175. #u3373_text {
  10176. border-width:0px;
  10177. white-space:nowrap;
  10178. text-transform:none;
  10179. }
  10180. #u3374_div {
  10181. border-width:0px;
  10182. position:absolute;
  10183. left:0px;
  10184. top:0px;
  10185. width:52px;
  10186. height:15px;
  10187. background:inherit;
  10188. background-color:rgba(255, 255, 255, 0);
  10189. border:none;
  10190. border-radius:0px;
  10191. -moz-box-shadow:none;
  10192. -webkit-box-shadow:none;
  10193. box-shadow:none;
  10194. font-size:13px;
  10195. }
  10196. #u3374 {
  10197. border-width:0px;
  10198. position:absolute;
  10199. left:1074px;
  10200. top:1365px;
  10201. width:52px;
  10202. height:15px;
  10203. display:flex;
  10204. font-size:13px;
  10205. }
  10206. #u3374 .text {
  10207. position:absolute;
  10208. align-self:flex-start;
  10209. padding:0px 0px 0px 0px;
  10210. box-sizing:border-box;
  10211. width:100%;
  10212. }
  10213. #u3374_text {
  10214. border-width:0px;
  10215. white-space:nowrap;
  10216. text-transform:none;
  10217. }
  10218. #u3375_div {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:52px;
  10224. height:15px;
  10225. background:inherit;
  10226. background-color:rgba(255, 255, 255, 0);
  10227. border:none;
  10228. border-radius:0px;
  10229. -moz-box-shadow:none;
  10230. -webkit-box-shadow:none;
  10231. box-shadow:none;
  10232. font-size:13px;
  10233. }
  10234. #u3375 {
  10235. border-width:0px;
  10236. position:absolute;
  10237. left:1074px;
  10238. top:1391px;
  10239. width:52px;
  10240. height:15px;
  10241. display:flex;
  10242. font-size:13px;
  10243. }
  10244. #u3375 .text {
  10245. position:absolute;
  10246. align-self:flex-start;
  10247. padding:0px 0px 0px 0px;
  10248. box-sizing:border-box;
  10249. width:100%;
  10250. }
  10251. #u3375_text {
  10252. border-width:0px;
  10253. white-space:nowrap;
  10254. text-transform:none;
  10255. }
  10256. #u3376 {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:0px;
  10260. top:0px;
  10261. width:0px;
  10262. height:0px;
  10263. }
  10264. #u3377_div {
  10265. border-width:0px;
  10266. position:absolute;
  10267. left:0px;
  10268. top:0px;
  10269. width:52px;
  10270. height:15px;
  10271. background:inherit;
  10272. background-color:rgba(255, 255, 255, 0);
  10273. border:none;
  10274. border-radius:0px;
  10275. -moz-box-shadow:none;
  10276. -webkit-box-shadow:none;
  10277. box-shadow:none;
  10278. font-size:13px;
  10279. }
  10280. #u3377 {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:1074px;
  10284. top:1448px;
  10285. width:52px;
  10286. height:15px;
  10287. display:flex;
  10288. font-size:13px;
  10289. }
  10290. #u3377 .text {
  10291. position:absolute;
  10292. align-self:flex-start;
  10293. padding:0px 0px 0px 0px;
  10294. box-sizing:border-box;
  10295. width:100%;
  10296. }
  10297. #u3377_text {
  10298. border-width:0px;
  10299. white-space:nowrap;
  10300. text-transform:none;
  10301. }
  10302. #u3378_div {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:52px;
  10308. height:15px;
  10309. background:inherit;
  10310. background-color:rgba(255, 255, 255, 0);
  10311. border:none;
  10312. border-radius:0px;
  10313. -moz-box-shadow:none;
  10314. -webkit-box-shadow:none;
  10315. box-shadow:none;
  10316. font-size:13px;
  10317. }
  10318. #u3378 {
  10319. border-width:0px;
  10320. position:absolute;
  10321. left:1074px;
  10322. top:1475px;
  10323. width:52px;
  10324. height:15px;
  10325. display:flex;
  10326. font-size:13px;
  10327. }
  10328. #u3378 .text {
  10329. position:absolute;
  10330. align-self:flex-start;
  10331. padding:0px 0px 0px 0px;
  10332. box-sizing:border-box;
  10333. width:100%;
  10334. }
  10335. #u3378_text {
  10336. border-width:0px;
  10337. white-space:nowrap;
  10338. text-transform:none;
  10339. }
  10340. #u3379_div {
  10341. border-width:0px;
  10342. position:absolute;
  10343. left:0px;
  10344. top:0px;
  10345. width:52px;
  10346. height:15px;
  10347. background:inherit;
  10348. background-color:rgba(255, 255, 255, 0);
  10349. border:none;
  10350. border-radius:0px;
  10351. -moz-box-shadow:none;
  10352. -webkit-box-shadow:none;
  10353. box-shadow:none;
  10354. font-size:13px;
  10355. }
  10356. #u3379 {
  10357. border-width:0px;
  10358. position:absolute;
  10359. left:1074px;
  10360. top:1501px;
  10361. width:52px;
  10362. height:15px;
  10363. display:flex;
  10364. font-size:13px;
  10365. }
  10366. #u3379 .text {
  10367. position:absolute;
  10368. align-self:flex-start;
  10369. padding:0px 0px 0px 0px;
  10370. box-sizing:border-box;
  10371. width:100%;
  10372. }
  10373. #u3379_text {
  10374. border-width:0px;
  10375. white-space:nowrap;
  10376. text-transform:none;
  10377. }
  10378. #u3380 {
  10379. border-width:0px;
  10380. position:absolute;
  10381. left:0px;
  10382. top:0px;
  10383. width:0px;
  10384. height:0px;
  10385. }
  10386. #u3381_div {
  10387. border-width:0px;
  10388. position:absolute;
  10389. left:0px;
  10390. top:0px;
  10391. width:52px;
  10392. height:15px;
  10393. background:inherit;
  10394. background-color:rgba(255, 255, 255, 0);
  10395. border:none;
  10396. border-radius:0px;
  10397. -moz-box-shadow:none;
  10398. -webkit-box-shadow:none;
  10399. box-shadow:none;
  10400. font-size:13px;
  10401. }
  10402. #u3381 {
  10403. border-width:0px;
  10404. position:absolute;
  10405. left:1074px;
  10406. top:1552px;
  10407. width:52px;
  10408. height:15px;
  10409. display:flex;
  10410. font-size:13px;
  10411. }
  10412. #u3381 .text {
  10413. position:absolute;
  10414. align-self:flex-start;
  10415. padding:0px 0px 0px 0px;
  10416. box-sizing:border-box;
  10417. width:100%;
  10418. }
  10419. #u3381_text {
  10420. border-width:0px;
  10421. white-space:nowrap;
  10422. text-transform:none;
  10423. }
  10424. #u3382_div {
  10425. border-width:0px;
  10426. position:absolute;
  10427. left:0px;
  10428. top:0px;
  10429. width:52px;
  10430. height:15px;
  10431. background:inherit;
  10432. background-color:rgba(255, 255, 255, 0);
  10433. border:none;
  10434. border-radius:0px;
  10435. -moz-box-shadow:none;
  10436. -webkit-box-shadow:none;
  10437. box-shadow:none;
  10438. font-size:13px;
  10439. }
  10440. #u3382 {
  10441. border-width:0px;
  10442. position:absolute;
  10443. left:1074px;
  10444. top:1579px;
  10445. width:52px;
  10446. height:15px;
  10447. display:flex;
  10448. font-size:13px;
  10449. }
  10450. #u3382 .text {
  10451. position:absolute;
  10452. align-self:flex-start;
  10453. padding:0px 0px 0px 0px;
  10454. box-sizing:border-box;
  10455. width:100%;
  10456. }
  10457. #u3382_text {
  10458. border-width:0px;
  10459. white-space:nowrap;
  10460. text-transform:none;
  10461. }
  10462. #u3383_div {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:0px;
  10466. top:0px;
  10467. width:52px;
  10468. height:15px;
  10469. background:inherit;
  10470. background-color:rgba(255, 255, 255, 0);
  10471. border:none;
  10472. border-radius:0px;
  10473. -moz-box-shadow:none;
  10474. -webkit-box-shadow:none;
  10475. box-shadow:none;
  10476. font-size:13px;
  10477. }
  10478. #u3383 {
  10479. border-width:0px;
  10480. position:absolute;
  10481. left:1074px;
  10482. top:1605px;
  10483. width:52px;
  10484. height:15px;
  10485. display:flex;
  10486. font-size:13px;
  10487. }
  10488. #u3383 .text {
  10489. position:absolute;
  10490. align-self:flex-start;
  10491. padding:0px 0px 0px 0px;
  10492. box-sizing:border-box;
  10493. width:100%;
  10494. }
  10495. #u3383_text {
  10496. border-width:0px;
  10497. white-space:nowrap;
  10498. text-transform:none;
  10499. }
  10500. #u3384 {
  10501. border-width:0px;
  10502. position:absolute;
  10503. left:0px;
  10504. top:0px;
  10505. width:0px;
  10506. height:0px;
  10507. }
  10508. #u3385_div {
  10509. border-width:0px;
  10510. position:absolute;
  10511. left:0px;
  10512. top:0px;
  10513. width:52px;
  10514. height:15px;
  10515. background:inherit;
  10516. background-color:rgba(255, 255, 255, 0);
  10517. border:none;
  10518. border-radius:0px;
  10519. -moz-box-shadow:none;
  10520. -webkit-box-shadow:none;
  10521. box-shadow:none;
  10522. font-size:13px;
  10523. }
  10524. #u3385 {
  10525. border-width:0px;
  10526. position:absolute;
  10527. left:1074px;
  10528. top:1661px;
  10529. width:52px;
  10530. height:15px;
  10531. display:flex;
  10532. font-size:13px;
  10533. }
  10534. #u3385 .text {
  10535. position:absolute;
  10536. align-self:flex-start;
  10537. padding:0px 0px 0px 0px;
  10538. box-sizing:border-box;
  10539. width:100%;
  10540. }
  10541. #u3385_text {
  10542. border-width:0px;
  10543. white-space:nowrap;
  10544. text-transform:none;
  10545. }
  10546. #u3386_div {
  10547. border-width:0px;
  10548. position:absolute;
  10549. left:0px;
  10550. top:0px;
  10551. width:52px;
  10552. height:15px;
  10553. background:inherit;
  10554. background-color:rgba(255, 255, 255, 0);
  10555. border:none;
  10556. border-radius:0px;
  10557. -moz-box-shadow:none;
  10558. -webkit-box-shadow:none;
  10559. box-shadow:none;
  10560. font-size:13px;
  10561. }
  10562. #u3386 {
  10563. border-width:0px;
  10564. position:absolute;
  10565. left:1074px;
  10566. top:1688px;
  10567. width:52px;
  10568. height:15px;
  10569. display:flex;
  10570. font-size:13px;
  10571. }
  10572. #u3386 .text {
  10573. position:absolute;
  10574. align-self:flex-start;
  10575. padding:0px 0px 0px 0px;
  10576. box-sizing:border-box;
  10577. width:100%;
  10578. }
  10579. #u3386_text {
  10580. border-width:0px;
  10581. white-space:nowrap;
  10582. text-transform:none;
  10583. }
  10584. #u3387_div {
  10585. border-width:0px;
  10586. position:absolute;
  10587. left:0px;
  10588. top:0px;
  10589. width:52px;
  10590. height:15px;
  10591. background:inherit;
  10592. background-color:rgba(255, 255, 255, 0);
  10593. border:none;
  10594. border-radius:0px;
  10595. -moz-box-shadow:none;
  10596. -webkit-box-shadow:none;
  10597. box-shadow:none;
  10598. font-size:13px;
  10599. }
  10600. #u3387 {
  10601. border-width:0px;
  10602. position:absolute;
  10603. left:1074px;
  10604. top:1714px;
  10605. width:52px;
  10606. height:15px;
  10607. display:flex;
  10608. font-size:13px;
  10609. }
  10610. #u3387 .text {
  10611. position:absolute;
  10612. align-self:flex-start;
  10613. padding:0px 0px 0px 0px;
  10614. box-sizing:border-box;
  10615. width:100%;
  10616. }
  10617. #u3387_text {
  10618. border-width:0px;
  10619. white-space:nowrap;
  10620. text-transform:none;
  10621. }
  10622. #u3388_div {
  10623. border-width:0px;
  10624. position:absolute;
  10625. left:0px;
  10626. top:0px;
  10627. width:98px;
  10628. height:26px;
  10629. background:inherit;
  10630. background-color:rgba(30, 152, 215, 1);
  10631. border:none;
  10632. border-radius:5px;
  10633. -moz-box-shadow:none;
  10634. -webkit-box-shadow:none;
  10635. box-shadow:none;
  10636. }
  10637. #u3388 {
  10638. border-width:0px;
  10639. position:absolute;
  10640. left:327px;
  10641. top:795px;
  10642. width:98px;
  10643. height:26px;
  10644. display:flex;
  10645. }
  10646. #u3388 .text {
  10647. position:absolute;
  10648. align-self:center;
  10649. padding:2px 2px 2px 2px;
  10650. box-sizing:border-box;
  10651. width:100%;
  10652. }
  10653. #u3388_text {
  10654. border-width:0px;
  10655. word-wrap:break-word;
  10656. text-transform:none;
  10657. }