styles.css 143 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1516px;
  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. #u4349 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u4350_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. #u4350 {
  43. border-width:0px;
  44. position:absolute;
  45. left:280px;
  46. top:37px;
  47. width:1184px;
  48. height:64px;
  49. display:flex;
  50. }
  51. #u4350 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u4350_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u4351_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:20px;
  70. height:15px;
  71. }
  72. #u4351 {
  73. border-width:0px;
  74. position:absolute;
  75. left:308px;
  76. top:62px;
  77. width:20px;
  78. height:15px;
  79. display:flex;
  80. }
  81. #u4351 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u4351_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u4352 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u4353_img {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:24px;
  108. height:24px;
  109. }
  110. #u4353 {
  111. border-width:0px;
  112. position:absolute;
  113. left:1341px;
  114. top:58px;
  115. width:24px;
  116. height:24px;
  117. display:flex;
  118. }
  119. #u4353 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u4353_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u4354_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. #u4354 {
  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. #u4354 .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. #u4354_text {
  168. border-width:0px;
  169. white-space:nowrap;
  170. text-transform:none;
  171. }
  172. #u4355_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:256px;
  178. height:984px;
  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. #u4355 {
  188. border-width:0px;
  189. position:absolute;
  190. left:24px;
  191. top:37px;
  192. width:256px;
  193. height:984px;
  194. display:flex;
  195. }
  196. #u4355 .text {
  197. position:absolute;
  198. align-self:center;
  199. padding:2px 2px 2px 2px;
  200. box-sizing:border-box;
  201. width:100%;
  202. }
  203. #u4355_text {
  204. border-width:0px;
  205. word-wrap:break-word;
  206. text-transform:none;
  207. visibility:hidden;
  208. }
  209. #u4356_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:256px;
  215. height:65px;
  216. }
  217. #u4356 {
  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. #u4356 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:0px 0px 0px 68px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u4356_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u4357 {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:0px;
  251. height:0px;
  252. }
  253. #u4358_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. #u4358 {
  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. #u4358 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:16px 2px 16px 50px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u4358_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. }
  303. #u4359_img {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:14px;
  309. height:14px;
  310. }
  311. #u4359 {
  312. border-width:0px;
  313. position:absolute;
  314. left:48px;
  315. top:122px;
  316. width:14px;
  317. height:14px;
  318. display:flex;
  319. }
  320. #u4359 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u4359_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. visibility:hidden;
  332. }
  333. #u4360_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:7px;
  339. height:14px;
  340. }
  341. #u4360 {
  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. #u4360 .text {
  356. position:absolute;
  357. align-self:center;
  358. padding:0px 0px 0px 0px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u4360_text {
  363. border-width:0px;
  364. white-space:nowrap;
  365. text-transform:none;
  366. }
  367. #u4361 {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:0px;
  373. height:0px;
  374. }
  375. #u4362_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. #u4362 {
  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. #u4362 .text {
  414. position:absolute;
  415. align-self:center;
  416. padding:16px 2px 16px 50px;
  417. box-sizing:border-box;
  418. width:100%;
  419. }
  420. #u4362_text {
  421. border-width:0px;
  422. word-wrap:break-word;
  423. text-transform:none;
  424. }
  425. #u4363_img {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:14px;
  431. height:14px;
  432. }
  433. #u4363 {
  434. border-width:0px;
  435. position:absolute;
  436. left:48px;
  437. top:825px;
  438. width:14px;
  439. height:14px;
  440. display:flex;
  441. }
  442. #u4363 .text {
  443. position:absolute;
  444. align-self:center;
  445. padding:2px 2px 2px 2px;
  446. box-sizing:border-box;
  447. width:100%;
  448. }
  449. #u4363_text {
  450. border-width:0px;
  451. word-wrap:break-word;
  452. text-transform:none;
  453. visibility:hidden;
  454. }
  455. #u4364_img {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:7px;
  461. height:14px;
  462. }
  463. #u4364 {
  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. #u4364 .text {
  478. position:absolute;
  479. align-self:center;
  480. padding:0px 0px 0px 0px;
  481. box-sizing:border-box;
  482. width:100%;
  483. }
  484. #u4364_text {
  485. border-width:0px;
  486. white-space:nowrap;
  487. text-transform:none;
  488. }
  489. #u4365 {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:0px;
  495. height:0px;
  496. }
  497. #u4366_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. #u4366 {
  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. #u4366 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:16px 2px 16px 50px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u4366_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. }
  547. #u4367_img {
  548. border-width:0px;
  549. position:absolute;
  550. left:0px;
  551. top:0px;
  552. width:14px;
  553. height:14px;
  554. }
  555. #u4367 {
  556. border-width:0px;
  557. position:absolute;
  558. left:48px;
  559. top:879px;
  560. width:14px;
  561. height:14px;
  562. display:flex;
  563. }
  564. #u4367 .text {
  565. position:absolute;
  566. align-self:center;
  567. padding:2px 2px 2px 2px;
  568. box-sizing:border-box;
  569. width:100%;
  570. }
  571. #u4367_text {
  572. border-width:0px;
  573. word-wrap:break-word;
  574. text-transform:none;
  575. visibility:hidden;
  576. }
  577. #u4368_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:7px;
  583. height:14px;
  584. }
  585. #u4368 {
  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. #u4368 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:0px 0px 0px 0px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u4368_text {
  607. border-width:0px;
  608. white-space:nowrap;
  609. text-transform:none;
  610. }
  611. #u4369_img {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:7px;
  617. height:14px;
  618. }
  619. #u4369 {
  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. #u4369 .text {
  634. position:absolute;
  635. align-self:center;
  636. padding:0px 0px 0px 0px;
  637. box-sizing:border-box;
  638. width:100%;
  639. }
  640. #u4369_text {
  641. border-width:0px;
  642. white-space:nowrap;
  643. text-transform:none;
  644. }
  645. #u4370 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u4371_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. #u4371 {
  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. #u4371 .text {
  692. position:absolute;
  693. align-self:center;
  694. padding:16px 2px 16px 50px;
  695. box-sizing:border-box;
  696. width:100%;
  697. }
  698. #u4371_text {
  699. border-width:0px;
  700. word-wrap:break-word;
  701. text-transform:none;
  702. }
  703. #u4372_img {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:0px;
  708. width:15px;
  709. height:14px;
  710. }
  711. #u4372 {
  712. border-width:0px;
  713. position:absolute;
  714. left:48px;
  715. top:173px;
  716. width:15px;
  717. height:14px;
  718. display:flex;
  719. }
  720. #u4372 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u4372_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. visibility:hidden;
  732. }
  733. #u4373_img {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:7px;
  739. height:14px;
  740. }
  741. #u4373 {
  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. #u4373 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:0px 0px 0px 0px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u4373_text {
  763. border-width:0px;
  764. white-space:nowrap;
  765. text-transform:none;
  766. }
  767. #u4374 {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:0px;
  773. height:0px;
  774. }
  775. #u4375 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u4376_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. #u4376 {
  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. #u4376 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:12px 0px 12px 50px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u4376_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. }
  833. #u4377 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:0px;
  839. height:0px;
  840. }
  841. #u4378_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. #u4378 {
  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. #u4378 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:16px 2px 16px 50px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u4378_text {
  887. border-width:0px;
  888. word-wrap:break-word;
  889. text-transform:none;
  890. }
  891. #u4379_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:14px;
  897. height:14px;
  898. }
  899. #u4379 {
  900. border-width:0px;
  901. position:absolute;
  902. left:48px;
  903. top:933px;
  904. width:14px;
  905. height:14px;
  906. display:flex;
  907. }
  908. #u4379 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u4379_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u4380_img {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:7px;
  927. height:14px;
  928. }
  929. #u4380 {
  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. #u4380 .text {
  944. position:absolute;
  945. align-self:center;
  946. padding:0px 0px 0px 0px;
  947. box-sizing:border-box;
  948. width:100%;
  949. }
  950. #u4380_text {
  951. border-width:0px;
  952. white-space:nowrap;
  953. text-transform:none;
  954. }
  955. #u4381 {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:0px;
  961. height:0px;
  962. }
  963. #u4382_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. #u4382 {
  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. #u4382 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:16px 2px 16px 50px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u4382_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. }
  1013. #u4383_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:14px;
  1019. height:14px;
  1020. }
  1021. #u4383 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:48px;
  1025. top:987px;
  1026. width:14px;
  1027. height:14px;
  1028. display:flex;
  1029. }
  1030. #u4383 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u4383_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u4384_img {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:7px;
  1049. height:14px;
  1050. }
  1051. #u4384 {
  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. #u4384 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:0px 0px 0px 0px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u4384_text {
  1073. border-width:0px;
  1074. white-space:nowrap;
  1075. text-transform:none;
  1076. }
  1077. #u4385 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:0px;
  1083. height:0px;
  1084. }
  1085. #u4386_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. #u4386 {
  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. #u4386 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:12px 0px 12px 50px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u4386_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u4387 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u4388_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. #u4388 {
  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. #u4388 .text {
  1182. position:absolute;
  1183. align-self:center;
  1184. padding:12px 0px 12px 50px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u4388_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. }
  1193. #u4389_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. #u4389 {
  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. #u4389 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:12px 0px 12px 50px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u4389_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. }
  1243. #u4390_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. #u4390 {
  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. #u4390 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:12px 0px 12px 50px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u4390_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u4391_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. #u4391 {
  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. #u4391 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:12px 0px 12px 50px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u4391_text {
  1339. border-width:0px;
  1340. word-wrap:break-word;
  1341. text-transform:none;
  1342. }
  1343. #u4392_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. #u4392 {
  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. #u4392 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:12px 0px 12px 50px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u4392_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. }
  1393. #u4393_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. #u4393 {
  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. #u4393 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:12px 0px 12px 50px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u4393_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u4394_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. #u4394 {
  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. #u4394 .text {
  1482. position:absolute;
  1483. align-self:center;
  1484. padding:12px 0px 12px 50px;
  1485. box-sizing:border-box;
  1486. width:100%;
  1487. }
  1488. #u4394_text {
  1489. border-width:0px;
  1490. word-wrap:break-word;
  1491. text-transform:none;
  1492. }
  1493. #u4395_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. #u4395 {
  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. #u4395 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:12px 0px 12px 50px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u4395_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. }
  1543. #u4396_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. #u4396 {
  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. #u4396 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:12px 0px 12px 74px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u4396_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. }
  1601. #u4397 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:0px;
  1607. height:0px;
  1608. }
  1609. #u4398_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. #u4398 {
  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. #u4398 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:12px 0px 12px 50px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u4398_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. }
  1659. #u4399_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. #u4399 {
  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. #u4399 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:12px 0px 12px 50px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u4399_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u4400_div {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:1239px;
  1715. height:920px;
  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. #u4400 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:280px;
  1728. top:101px;
  1729. width:1239px;
  1730. height:920px;
  1731. display:flex;
  1732. }
  1733. #u4400 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u4400_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u4401 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:0px;
  1752. height:0px;
  1753. }
  1754. #u4402_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:1172px;
  1760. height:831px;
  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. #u4402 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:292px;
  1780. top:170px;
  1781. width:1172px;
  1782. height:831px;
  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. #u4402 .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. #u4402_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u4403 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:292px;
  1809. top:171px;
  1810. width:32px;
  1811. height:32px;
  1812. }
  1813. #u4403_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. #u4403_state0_content {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:1px;
  1837. height:1px;
  1838. }
  1839. #u4404 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:1409px;
  1843. top:171px;
  1844. width:32px;
  1845. height:32px;
  1846. }
  1847. #u4404_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. #u4404_state0_content {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:1px;
  1871. height:1px;
  1872. }
  1873. #u4405_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. #u4405 {
  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. #u4405 .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. #u4405_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. visibility:hidden;
  1926. }
  1927. #u4406_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. #u4406 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:429px;
  1946. top:124px;
  1947. width:7px;
  1948. height:25px;
  1949. display:flex;
  1950. }
  1951. #u4406 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u4406_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. visibility:hidden;
  1963. }
  1964. #u4407_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. #u4407 {
  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. #u4407 .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. #u4407_text {
  2006. border-width:0px;
  2007. white-space:nowrap;
  2008. text-transform:none;
  2009. }
  2010. #u4408_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. #u4408 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:292px;
  2032. top:109px;
  2033. width:120px;
  2034. height:52px;
  2035. display:flex;
  2036. }
  2037. #u4408 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u4408_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u4409 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:0px;
  2055. height:0px;
  2056. }
  2057. #u4410_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. #u4410 {
  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. #u4410 .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. #u4410_text {
  2099. border-width:0px;
  2100. white-space:nowrap;
  2101. text-transform:none;
  2102. }
  2103. #u4411_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. #u4411 {
  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. #u4411 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u4411_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u4412 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:0px;
  2148. height:0px;
  2149. }
  2150. #u4413_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. #u4413 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:436px;
  2172. top:330px;
  2173. width:278px;
  2174. height:32px;
  2175. display:flex;
  2176. }
  2177. #u4413 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u4413_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. #u4413.mouseOver {
  2203. }
  2204. #u4413_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. #u4413.selected {
  2223. }
  2224. #u4413_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. #u4413.mouseOver.selected {
  2243. }
  2244. #u4413_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u4414_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. #u4414_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. #u4414_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. #u4414_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. #u4414_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. #u4414 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:443px;
  2347. top:331px;
  2348. width:265px;
  2349. height:30px;
  2350. display:flex;
  2351. font-size:12px;
  2352. color:#606266;
  2353. }
  2354. #u4414 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u4414_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. #u4414.hint {
  2379. }
  2380. #u4414_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. #u4414.disabled {
  2398. }
  2399. #u4414_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. #u4414.hint.disabled {
  2417. }
  2418. #u4415_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. #u4415 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:324px;
  2437. top:335px;
  2438. width:80px;
  2439. height:16px;
  2440. display:flex;
  2441. }
  2442. #u4415 .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. #u4415_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u4416 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:0px;
  2460. height:0px;
  2461. }
  2462. #u4417_div {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:278px;
  2468. height:32px;
  2469. background:inherit;
  2470. background-color:rgba(255, 255, 255, 1);
  2471. box-sizing:border-box;
  2472. border-width:1px;
  2473. border-style:solid;
  2474. border-color:rgba(220, 223, 230, 1);
  2475. border-radius:4px;
  2476. -moz-box-shadow:none;
  2477. -webkit-box-shadow:none;
  2478. box-shadow:none;
  2479. }
  2480. #u4417 {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:800px;
  2484. top:69px;
  2485. width:278px;
  2486. height:32px;
  2487. display:flex;
  2488. }
  2489. #u4417 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 2px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u4417_div.mouseOver {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:278px;
  2502. height:32px;
  2503. background:inherit;
  2504. background-color:rgba(255, 255, 255, 1);
  2505. box-sizing:border-box;
  2506. border-width:1px;
  2507. border-style:solid;
  2508. border-color:rgba(192, 196, 204, 1);
  2509. border-radius:4px;
  2510. -moz-box-shadow:none;
  2511. -webkit-box-shadow:none;
  2512. box-shadow:none;
  2513. }
  2514. #u4417.mouseOver {
  2515. }
  2516. #u4417_div.selected {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:278px;
  2522. height:32px;
  2523. background:inherit;
  2524. background-color:rgba(255, 255, 255, 1);
  2525. box-sizing:border-box;
  2526. border-width:1px;
  2527. border-style:solid;
  2528. border-color:rgba(64, 158, 255, 1);
  2529. border-radius:4px;
  2530. -moz-box-shadow:none;
  2531. -webkit-box-shadow:none;
  2532. box-shadow:none;
  2533. }
  2534. #u4417.selected {
  2535. }
  2536. #u4417_div.mouseOver.selected {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:278px;
  2542. height:32px;
  2543. background:inherit;
  2544. background-color:rgba(255, 255, 255, 1);
  2545. box-sizing:border-box;
  2546. border-width:1px;
  2547. border-style:solid;
  2548. border-color:rgba(64, 158, 255, 1);
  2549. border-radius:4px;
  2550. -moz-box-shadow:none;
  2551. -webkit-box-shadow:none;
  2552. box-shadow:none;
  2553. }
  2554. #u4417.mouseOver.selected {
  2555. }
  2556. #u4417_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u4418_input {
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:265px;
  2567. height:30px;
  2568. padding:2px 2px 2px 2px;
  2569. font-family:"Arial Normal", "Arial", sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. letter-spacing:normal;
  2574. color:#606266;
  2575. vertical-align:none;
  2576. text-align:left;
  2577. text-transform:none;
  2578. background-color:transparent;
  2579. border-color:transparent;
  2580. }
  2581. #u4418_input.hint {
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:265px;
  2586. height:30px;
  2587. padding:2px 2px 2px 2px;
  2588. font-family:"Arial Normal", "Arial", sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:12px;
  2592. letter-spacing:normal;
  2593. color:#C0C4CC;
  2594. vertical-align:none;
  2595. text-align:left;
  2596. text-transform:none;
  2597. background-color:transparent;
  2598. border-color:transparent;
  2599. }
  2600. #u4418_input.disabled {
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:265px;
  2605. height:30px;
  2606. padding:2px 2px 2px 2px;
  2607. font-family:"Arial Normal", "Arial", sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:12px;
  2611. letter-spacing:normal;
  2612. color:#606266;
  2613. vertical-align:none;
  2614. text-align:left;
  2615. text-transform:none;
  2616. background-color:transparent;
  2617. border-color:transparent;
  2618. }
  2619. #u4418_input.hint.disabled {
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:265px;
  2624. height:30px;
  2625. padding:2px 2px 2px 2px;
  2626. font-family:"Arial Normal", "Arial", sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:12px;
  2630. letter-spacing:normal;
  2631. color:#C0C4CC;
  2632. vertical-align:none;
  2633. text-align:left;
  2634. text-transform:none;
  2635. background-color:transparent;
  2636. border-color:transparent;
  2637. }
  2638. #u4418_div {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:265px;
  2644. height:30px;
  2645. background:inherit;
  2646. background-color:rgba(255, 255, 255, 1);
  2647. border:none;
  2648. border-radius:0px;
  2649. -moz-box-shadow:none;
  2650. -webkit-box-shadow:none;
  2651. box-shadow:none;
  2652. font-size:12px;
  2653. color:#606266;
  2654. }
  2655. #u4418 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:807px;
  2659. top:70px;
  2660. width:265px;
  2661. height:30px;
  2662. display:flex;
  2663. font-size:12px;
  2664. color:#606266;
  2665. }
  2666. #u4418 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 2px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u4418_div.hint {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:265px;
  2679. height:30px;
  2680. background:inherit;
  2681. background-color:rgba(255, 255, 255, 1);
  2682. border:none;
  2683. border-radius:0px;
  2684. -moz-box-shadow:none;
  2685. -webkit-box-shadow:none;
  2686. box-shadow:none;
  2687. font-size:12px;
  2688. color:#606266;
  2689. }
  2690. #u4418.hint {
  2691. }
  2692. #u4418_div.disabled {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:265px;
  2698. height:30px;
  2699. background:inherit;
  2700. background-color:rgba(240, 240, 240, 1);
  2701. border:none;
  2702. border-radius:0px;
  2703. -moz-box-shadow:none;
  2704. -webkit-box-shadow:none;
  2705. box-shadow:none;
  2706. font-size:12px;
  2707. color:#606266;
  2708. }
  2709. #u4418.disabled {
  2710. }
  2711. #u4418_div.hint.disabled {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:265px;
  2717. height:30px;
  2718. background:inherit;
  2719. background-color:rgba(240, 240, 240, 1);
  2720. border:none;
  2721. border-radius:0px;
  2722. -moz-box-shadow:none;
  2723. -webkit-box-shadow:none;
  2724. box-shadow:none;
  2725. font-size:12px;
  2726. color:#606266;
  2727. }
  2728. #u4418.hint.disabled {
  2729. }
  2730. #u4419 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:0px;
  2736. height:0px;
  2737. }
  2738. #u4420_div {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:80px;
  2744. height:16px;
  2745. background:inherit;
  2746. background-color:rgba(255, 255, 255, 0);
  2747. border:none;
  2748. border-radius:0px;
  2749. -moz-box-shadow:none;
  2750. -webkit-box-shadow:none;
  2751. box-shadow:none;
  2752. }
  2753. #u4420 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:324px;
  2757. top:241px;
  2758. width:80px;
  2759. height:16px;
  2760. display:flex;
  2761. }
  2762. #u4420 .text {
  2763. position:absolute;
  2764. align-self:flex-start;
  2765. padding:0px 0px 0px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u4420_text {
  2770. border-width:0px;
  2771. white-space:nowrap;
  2772. text-transform:none;
  2773. }
  2774. #u4421 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:0px;
  2780. height:0px;
  2781. }
  2782. #u4422_div {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:42px;
  2788. height:18px;
  2789. background:inherit;
  2790. background-color:rgba(255, 255, 255, 0);
  2791. border:none;
  2792. border-radius:0px;
  2793. -moz-box-shadow:none;
  2794. -webkit-box-shadow:none;
  2795. box-shadow:none;
  2796. font-family:'Microsoft YaHei UI', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. color:#606266;
  2800. }
  2801. #u4422 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:455px;
  2805. top:239px;
  2806. width:42px;
  2807. height:18px;
  2808. display:flex;
  2809. font-family:'Microsoft YaHei UI', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. color:#606266;
  2813. }
  2814. #u4422 .text {
  2815. position:absolute;
  2816. align-self:flex-start;
  2817. padding:0px 0px 0px 0px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u4422_div.selected {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:42px;
  2827. height:18px;
  2828. background:inherit;
  2829. background-color:rgba(255, 255, 255, 0);
  2830. border:none;
  2831. border-radius:0px;
  2832. -moz-box-shadow:none;
  2833. -webkit-box-shadow:none;
  2834. box-shadow:none;
  2835. font-family:'Microsoft YaHei UI', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. color:#606266;
  2839. }
  2840. #u4422.selected {
  2841. }
  2842. #u4422_div.disabled {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:42px;
  2848. height:18px;
  2849. background:inherit;
  2850. background-color:rgba(255, 255, 255, 0);
  2851. border:none;
  2852. border-radius:0px;
  2853. -moz-box-shadow:none;
  2854. -webkit-box-shadow:none;
  2855. box-shadow:none;
  2856. font-family:'Microsoft YaHei UI', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. color:#606266;
  2860. }
  2861. #u4422.disabled {
  2862. }
  2863. #u4422_div.selected.disabled {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:42px;
  2869. height:18px;
  2870. background:inherit;
  2871. background-color:rgba(255, 255, 255, 0);
  2872. border:none;
  2873. border-radius:0px;
  2874. -moz-box-shadow:none;
  2875. -webkit-box-shadow:none;
  2876. box-shadow:none;
  2877. font-family:'Microsoft YaHei UI', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. color:#606266;
  2881. }
  2882. #u4422.selected.disabled {
  2883. }
  2884. #u4422_text {
  2885. border-width:0px;
  2886. white-space:nowrap;
  2887. text-transform:none;
  2888. }
  2889. #u4423_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:13px;
  2895. height:13px;
  2896. }
  2897. #u4423 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:436px;
  2901. top:242px;
  2902. width:13px;
  2903. height:13px;
  2904. display:flex;
  2905. }
  2906. #u4423 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 2px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u4423_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u4424_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:80px;
  2925. height:16px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 0);
  2928. border:none;
  2929. border-radius:0px;
  2930. -moz-box-shadow:none;
  2931. -webkit-box-shadow:none;
  2932. box-shadow:none;
  2933. }
  2934. #u4424 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:324px;
  2938. top:392px;
  2939. width:80px;
  2940. height:16px;
  2941. display:flex;
  2942. }
  2943. #u4424 .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. #u4424_text {
  2951. border-width:0px;
  2952. white-space:nowrap;
  2953. text-transform:none;
  2954. }
  2955. #u4425_div {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:95px;
  2961. height:75px;
  2962. background:inherit;
  2963. background-color:rgba(230, 230, 230, 1);
  2964. border:none;
  2965. border-radius:0px;
  2966. -moz-box-shadow:none;
  2967. -webkit-box-shadow:none;
  2968. box-shadow:none;
  2969. font-size:22px;
  2970. }
  2971. #u4425 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:433px;
  2975. top:386px;
  2976. width:95px;
  2977. height:75px;
  2978. display:flex;
  2979. font-size:22px;
  2980. }
  2981. #u4425 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 2px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u4425_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u4426_div {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:190px;
  2999. height:60px;
  3000. background:inherit;
  3001. background-color:rgba(255, 223, 37, 1);
  3002. border:none;
  3003. border-radius:0px;
  3004. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3005. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3006. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3007. }
  3008. #u4426 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:610px;
  3012. top:409px;
  3013. width:190px;
  3014. height:60px;
  3015. display:flex;
  3016. }
  3017. #u4426 .text {
  3018. position:absolute;
  3019. align-self:flex-start;
  3020. padding:10px 10px 10px 10px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u4426_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u4427_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:-3px;
  3033. top:-13px;
  3034. width:117px;
  3035. height:31px;
  3036. }
  3037. #u4427 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:505px;
  3041. top:431px;
  3042. width:101px;
  3043. height:5px;
  3044. display:flex;
  3045. -webkit-transform:rotate(10.283433254455293deg);
  3046. -moz-transform:rotate(10.283433254455293deg);
  3047. -ms-transform:rotate(10.283433254455293deg);
  3048. transform:rotate(10.283433254455293deg);
  3049. }
  3050. #u4427 .text {
  3051. position:absolute;
  3052. align-self:center;
  3053. padding:2px 2px 2px 2px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u4427_text {
  3058. border-width:0px;
  3059. word-wrap:break-word;
  3060. text-transform:none;
  3061. visibility:hidden;
  3062. }
  3063. #u4428 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:0px;
  3069. height:0px;
  3070. }
  3071. #u4429_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:28px;
  3077. height:18px;
  3078. background:inherit;
  3079. background-color:rgba(255, 255, 255, 0);
  3080. border:none;
  3081. border-radius:0px;
  3082. -moz-box-shadow:none;
  3083. -webkit-box-shadow:none;
  3084. box-shadow:none;
  3085. font-family:'Microsoft YaHei UI', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. color:#606266;
  3089. }
  3090. #u4429 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:714px;
  3094. top:239px;
  3095. width:28px;
  3096. height:18px;
  3097. display:flex;
  3098. font-family:'Microsoft YaHei UI', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. color:#606266;
  3102. }
  3103. #u4429 .text {
  3104. position:absolute;
  3105. align-self:flex-start;
  3106. padding:0px 0px 0px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u4429_div.selected {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:28px;
  3116. height:18px;
  3117. background:inherit;
  3118. background-color:rgba(255, 255, 255, 0);
  3119. border:none;
  3120. border-radius:0px;
  3121. -moz-box-shadow:none;
  3122. -webkit-box-shadow:none;
  3123. box-shadow:none;
  3124. font-family:'Microsoft YaHei UI', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. color:#606266;
  3128. }
  3129. #u4429.selected {
  3130. }
  3131. #u4429_div.disabled {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:28px;
  3137. height:18px;
  3138. background:inherit;
  3139. background-color:rgba(255, 255, 255, 0);
  3140. border:none;
  3141. border-radius:0px;
  3142. -moz-box-shadow:none;
  3143. -webkit-box-shadow:none;
  3144. box-shadow:none;
  3145. font-family:'Microsoft YaHei UI', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. color:#606266;
  3149. }
  3150. #u4429.disabled {
  3151. }
  3152. #u4429_div.selected.disabled {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:28px;
  3158. height:18px;
  3159. background:inherit;
  3160. background-color:rgba(255, 255, 255, 0);
  3161. border:none;
  3162. border-radius:0px;
  3163. -moz-box-shadow:none;
  3164. -webkit-box-shadow:none;
  3165. box-shadow:none;
  3166. font-family:'Microsoft YaHei UI', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. color:#606266;
  3170. }
  3171. #u4429.selected.disabled {
  3172. }
  3173. #u4429_text {
  3174. border-width:0px;
  3175. white-space:nowrap;
  3176. text-transform:none;
  3177. }
  3178. #u4430_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:13px;
  3184. height:13px;
  3185. }
  3186. #u4430 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:695px;
  3190. top:242px;
  3191. width:13px;
  3192. height:13px;
  3193. display:flex;
  3194. }
  3195. #u4430 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u4430_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u4431 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:0px;
  3214. height:0px;
  3215. }
  3216. #u4432_div {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:28px;
  3222. height:18px;
  3223. background:inherit;
  3224. background-color:rgba(255, 255, 255, 0);
  3225. border:none;
  3226. border-radius:0px;
  3227. -moz-box-shadow:none;
  3228. -webkit-box-shadow:none;
  3229. box-shadow:none;
  3230. font-family:'Microsoft YaHei UI', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. color:#606266;
  3234. }
  3235. #u4432 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:642px;
  3239. top:239px;
  3240. width:28px;
  3241. height:18px;
  3242. display:flex;
  3243. font-family:'Microsoft YaHei UI', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. color:#606266;
  3247. }
  3248. #u4432 .text {
  3249. position:absolute;
  3250. align-self:flex-start;
  3251. padding:0px 0px 0px 0px;
  3252. box-sizing:border-box;
  3253. width:100%;
  3254. }
  3255. #u4432_div.selected {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:28px;
  3261. height:18px;
  3262. background:inherit;
  3263. background-color:rgba(255, 255, 255, 0);
  3264. border:none;
  3265. border-radius:0px;
  3266. -moz-box-shadow:none;
  3267. -webkit-box-shadow:none;
  3268. box-shadow:none;
  3269. font-family:'Microsoft YaHei UI', sans-serif;
  3270. font-weight:400;
  3271. font-style:normal;
  3272. color:#606266;
  3273. }
  3274. #u4432.selected {
  3275. }
  3276. #u4432_div.disabled {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:28px;
  3282. height:18px;
  3283. background:inherit;
  3284. background-color:rgba(255, 255, 255, 0);
  3285. border:none;
  3286. border-radius:0px;
  3287. -moz-box-shadow:none;
  3288. -webkit-box-shadow:none;
  3289. box-shadow:none;
  3290. font-family:'Microsoft YaHei UI', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. color:#606266;
  3294. }
  3295. #u4432.disabled {
  3296. }
  3297. #u4432_div.selected.disabled {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:28px;
  3303. height:18px;
  3304. background:inherit;
  3305. background-color:rgba(255, 255, 255, 0);
  3306. border:none;
  3307. border-radius:0px;
  3308. -moz-box-shadow:none;
  3309. -webkit-box-shadow:none;
  3310. box-shadow:none;
  3311. font-family:'Microsoft YaHei UI', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. color:#606266;
  3315. }
  3316. #u4432.selected.disabled {
  3317. }
  3318. #u4432_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u4433_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:13px;
  3329. height:13px;
  3330. }
  3331. #u4433 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:623px;
  3335. top:242px;
  3336. width:13px;
  3337. height:13px;
  3338. display:flex;
  3339. }
  3340. #u4433 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 2px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u4433_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u4434 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:0px;
  3359. height:0px;
  3360. }
  3361. #u4435_div {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:70px;
  3367. height:18px;
  3368. background:inherit;
  3369. background-color:rgba(255, 255, 255, 0);
  3370. border:none;
  3371. border-radius:0px;
  3372. -moz-box-shadow:none;
  3373. -webkit-box-shadow:none;
  3374. box-shadow:none;
  3375. font-family:'Microsoft YaHei UI', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. color:#606266;
  3379. }
  3380. #u4435 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:537px;
  3384. top:239px;
  3385. width:70px;
  3386. height:18px;
  3387. display:flex;
  3388. font-family:'Microsoft YaHei UI', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. color:#606266;
  3392. }
  3393. #u4435 .text {
  3394. position:absolute;
  3395. align-self:flex-start;
  3396. padding:0px 0px 0px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u4435_div.selected {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:70px;
  3406. height:18px;
  3407. background:inherit;
  3408. background-color:rgba(255, 255, 255, 0);
  3409. border:none;
  3410. border-radius:0px;
  3411. -moz-box-shadow:none;
  3412. -webkit-box-shadow:none;
  3413. box-shadow:none;
  3414. font-family:'Microsoft YaHei UI', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. color:#606266;
  3418. }
  3419. #u4435.selected {
  3420. }
  3421. #u4435_div.disabled {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:70px;
  3427. height:18px;
  3428. background:inherit;
  3429. background-color:rgba(255, 255, 255, 0);
  3430. border:none;
  3431. border-radius:0px;
  3432. -moz-box-shadow:none;
  3433. -webkit-box-shadow:none;
  3434. box-shadow:none;
  3435. font-family:'Microsoft YaHei UI', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. color:#606266;
  3439. }
  3440. #u4435.disabled {
  3441. }
  3442. #u4435_div.selected.disabled {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:70px;
  3448. height:18px;
  3449. background:inherit;
  3450. background-color:rgba(255, 255, 255, 0);
  3451. border:none;
  3452. border-radius:0px;
  3453. -moz-box-shadow:none;
  3454. -webkit-box-shadow:none;
  3455. box-shadow:none;
  3456. font-family:'Microsoft YaHei UI', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. color:#606266;
  3460. }
  3461. #u4435.selected.disabled {
  3462. }
  3463. #u4435_text {
  3464. border-width:0px;
  3465. white-space:nowrap;
  3466. text-transform:none;
  3467. }
  3468. #u4436_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:13px;
  3474. height:13px;
  3475. }
  3476. #u4436 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:518px;
  3480. top:242px;
  3481. width:13px;
  3482. height:13px;
  3483. display:flex;
  3484. }
  3485. #u4436 .text {
  3486. position:absolute;
  3487. align-self:center;
  3488. padding:2px 2px 2px 2px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u4436_text {
  3493. border-width:0px;
  3494. word-wrap:break-word;
  3495. text-transform:none;
  3496. visibility:hidden;
  3497. }
  3498. #u4437 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:0px;
  3504. height:0px;
  3505. }
  3506. #u4438_div {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:278px;
  3512. height:32px;
  3513. background:inherit;
  3514. background-color:rgba(255, 255, 255, 1);
  3515. box-sizing:border-box;
  3516. border-width:1px;
  3517. border-style:solid;
  3518. border-color:rgba(220, 223, 230, 1);
  3519. border-radius:4px;
  3520. -moz-box-shadow:none;
  3521. -webkit-box-shadow:none;
  3522. box-shadow:none;
  3523. }
  3524. #u4438 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:436px;
  3528. top:496px;
  3529. width:278px;
  3530. height:32px;
  3531. display:flex;
  3532. }
  3533. #u4438 .text {
  3534. position:absolute;
  3535. align-self:center;
  3536. padding:2px 2px 2px 2px;
  3537. box-sizing:border-box;
  3538. width:100%;
  3539. }
  3540. #u4438_div.mouseOver {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:278px;
  3546. height:32px;
  3547. background:inherit;
  3548. background-color:rgba(255, 255, 255, 1);
  3549. box-sizing:border-box;
  3550. border-width:1px;
  3551. border-style:solid;
  3552. border-color:rgba(192, 196, 204, 1);
  3553. border-radius:4px;
  3554. -moz-box-shadow:none;
  3555. -webkit-box-shadow:none;
  3556. box-shadow:none;
  3557. }
  3558. #u4438.mouseOver {
  3559. }
  3560. #u4438_div.selected {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:278px;
  3566. height:32px;
  3567. background:inherit;
  3568. background-color:rgba(255, 255, 255, 1);
  3569. box-sizing:border-box;
  3570. border-width:1px;
  3571. border-style:solid;
  3572. border-color:rgba(64, 158, 255, 1);
  3573. border-radius:4px;
  3574. -moz-box-shadow:none;
  3575. -webkit-box-shadow:none;
  3576. box-shadow:none;
  3577. }
  3578. #u4438.selected {
  3579. }
  3580. #u4438_div.mouseOver.selected {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:278px;
  3586. height:32px;
  3587. background:inherit;
  3588. background-color:rgba(255, 255, 255, 1);
  3589. box-sizing:border-box;
  3590. border-width:1px;
  3591. border-style:solid;
  3592. border-color:rgba(64, 158, 255, 1);
  3593. border-radius:4px;
  3594. -moz-box-shadow:none;
  3595. -webkit-box-shadow:none;
  3596. box-shadow:none;
  3597. }
  3598. #u4438.mouseOver.selected {
  3599. }
  3600. #u4438_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u4439_input {
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:265px;
  3611. height:30px;
  3612. padding:2px 2px 2px 2px;
  3613. font-family:"Arial Normal", "Arial", sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:12px;
  3617. letter-spacing:normal;
  3618. color:#606266;
  3619. vertical-align:none;
  3620. text-align:left;
  3621. text-transform:none;
  3622. background-color:transparent;
  3623. border-color:transparent;
  3624. }
  3625. #u4439_input.hint {
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:265px;
  3630. height:30px;
  3631. padding:2px 2px 2px 2px;
  3632. font-family:"Arial Normal", "Arial", sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:12px;
  3636. letter-spacing:normal;
  3637. color:#C0C4CC;
  3638. vertical-align:none;
  3639. text-align:left;
  3640. text-transform:none;
  3641. background-color:transparent;
  3642. border-color:transparent;
  3643. }
  3644. #u4439_input.disabled {
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:265px;
  3649. height:30px;
  3650. padding:2px 2px 2px 2px;
  3651. font-family:"Arial Normal", "Arial", sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:12px;
  3655. letter-spacing:normal;
  3656. color:#606266;
  3657. vertical-align:none;
  3658. text-align:left;
  3659. text-transform:none;
  3660. background-color:transparent;
  3661. border-color:transparent;
  3662. }
  3663. #u4439_input.hint.disabled {
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:265px;
  3668. height:30px;
  3669. padding:2px 2px 2px 2px;
  3670. font-family:"Arial Normal", "Arial", sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:12px;
  3674. letter-spacing:normal;
  3675. color:#C0C4CC;
  3676. vertical-align:none;
  3677. text-align:left;
  3678. text-transform:none;
  3679. background-color:transparent;
  3680. border-color:transparent;
  3681. }
  3682. #u4439_div {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:265px;
  3688. height:30px;
  3689. background:inherit;
  3690. background-color:rgba(255, 255, 255, 1);
  3691. border:none;
  3692. border-radius:0px;
  3693. -moz-box-shadow:none;
  3694. -webkit-box-shadow:none;
  3695. box-shadow:none;
  3696. font-size:12px;
  3697. color:#606266;
  3698. }
  3699. #u4439 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:443px;
  3703. top:497px;
  3704. width:265px;
  3705. height:30px;
  3706. display:flex;
  3707. font-size:12px;
  3708. color:#606266;
  3709. }
  3710. #u4439 .text {
  3711. position:absolute;
  3712. align-self:center;
  3713. padding:2px 2px 2px 2px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u4439_div.hint {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:265px;
  3723. height:30px;
  3724. background:inherit;
  3725. background-color:rgba(255, 255, 255, 1);
  3726. border:none;
  3727. border-radius:0px;
  3728. -moz-box-shadow:none;
  3729. -webkit-box-shadow:none;
  3730. box-shadow:none;
  3731. font-size:12px;
  3732. color:#606266;
  3733. }
  3734. #u4439.hint {
  3735. }
  3736. #u4439_div.disabled {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:265px;
  3742. height:30px;
  3743. background:inherit;
  3744. background-color:rgba(240, 240, 240, 1);
  3745. border:none;
  3746. border-radius:0px;
  3747. -moz-box-shadow:none;
  3748. -webkit-box-shadow:none;
  3749. box-shadow:none;
  3750. font-size:12px;
  3751. color:#606266;
  3752. }
  3753. #u4439.disabled {
  3754. }
  3755. #u4439_div.hint.disabled {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:265px;
  3761. height:30px;
  3762. background:inherit;
  3763. background-color:rgba(240, 240, 240, 1);
  3764. border:none;
  3765. border-radius:0px;
  3766. -moz-box-shadow:none;
  3767. -webkit-box-shadow:none;
  3768. box-shadow:none;
  3769. font-size:12px;
  3770. color:#606266;
  3771. }
  3772. #u4439.hint.disabled {
  3773. }
  3774. #u4440_div {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:80px;
  3780. height:16px;
  3781. background:inherit;
  3782. background-color:rgba(255, 255, 255, 0);
  3783. border:none;
  3784. border-radius:0px;
  3785. -moz-box-shadow:none;
  3786. -webkit-box-shadow:none;
  3787. box-shadow:none;
  3788. }
  3789. #u4440 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:324px;
  3793. top:501px;
  3794. width:80px;
  3795. height:16px;
  3796. display:flex;
  3797. }
  3798. #u4440 .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. #u4440_text {
  3806. border-width:0px;
  3807. white-space:nowrap;
  3808. text-transform:none;
  3809. }
  3810. #u4441 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:0px;
  3816. height:0px;
  3817. }
  3818. #u4442_div {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:278px;
  3824. height:32px;
  3825. background:inherit;
  3826. background-color:rgba(255, 255, 255, 1);
  3827. box-sizing:border-box;
  3828. border-width:1px;
  3829. border-style:solid;
  3830. border-color:rgba(220, 223, 230, 1);
  3831. border-radius:4px;
  3832. -moz-box-shadow:none;
  3833. -webkit-box-shadow:none;
  3834. box-shadow:none;
  3835. }
  3836. #u4442 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:436px;
  3840. top:551px;
  3841. width:278px;
  3842. height:32px;
  3843. display:flex;
  3844. }
  3845. #u4442 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 2px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u4442_div.mouseOver {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:278px;
  3858. height:32px;
  3859. background:inherit;
  3860. background-color:rgba(255, 255, 255, 1);
  3861. box-sizing:border-box;
  3862. border-width:1px;
  3863. border-style:solid;
  3864. border-color:rgba(192, 196, 204, 1);
  3865. border-radius:4px;
  3866. -moz-box-shadow:none;
  3867. -webkit-box-shadow:none;
  3868. box-shadow:none;
  3869. }
  3870. #u4442.mouseOver {
  3871. }
  3872. #u4442_div.selected {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:278px;
  3878. height:32px;
  3879. background:inherit;
  3880. background-color:rgba(255, 255, 255, 1);
  3881. box-sizing:border-box;
  3882. border-width:1px;
  3883. border-style:solid;
  3884. border-color:rgba(64, 158, 255, 1);
  3885. border-radius:4px;
  3886. -moz-box-shadow:none;
  3887. -webkit-box-shadow:none;
  3888. box-shadow:none;
  3889. }
  3890. #u4442.selected {
  3891. }
  3892. #u4442_div.mouseOver.selected {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:278px;
  3898. height:32px;
  3899. background:inherit;
  3900. background-color:rgba(255, 255, 255, 1);
  3901. box-sizing:border-box;
  3902. border-width:1px;
  3903. border-style:solid;
  3904. border-color:rgba(64, 158, 255, 1);
  3905. border-radius:4px;
  3906. -moz-box-shadow:none;
  3907. -webkit-box-shadow:none;
  3908. box-shadow:none;
  3909. }
  3910. #u4442.mouseOver.selected {
  3911. }
  3912. #u4442_text {
  3913. border-width:0px;
  3914. word-wrap:break-word;
  3915. text-transform:none;
  3916. visibility:hidden;
  3917. }
  3918. #u4443_input {
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:265px;
  3923. height:30px;
  3924. padding:2px 2px 2px 2px;
  3925. font-family:"Arial Normal", "Arial", sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:12px;
  3929. letter-spacing:normal;
  3930. color:#606266;
  3931. vertical-align:none;
  3932. text-align:left;
  3933. text-transform:none;
  3934. background-color:transparent;
  3935. border-color:transparent;
  3936. }
  3937. #u4443_input.hint {
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:265px;
  3942. height:30px;
  3943. padding:2px 2px 2px 2px;
  3944. font-family:"Arial Normal", "Arial", sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:12px;
  3948. letter-spacing:normal;
  3949. color:#C0C4CC;
  3950. vertical-align:none;
  3951. text-align:left;
  3952. text-transform:none;
  3953. background-color:transparent;
  3954. border-color:transparent;
  3955. }
  3956. #u4443_input.disabled {
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:265px;
  3961. height:30px;
  3962. padding:2px 2px 2px 2px;
  3963. font-family:"Arial Normal", "Arial", sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:12px;
  3967. letter-spacing:normal;
  3968. color:#606266;
  3969. vertical-align:none;
  3970. text-align:left;
  3971. text-transform:none;
  3972. background-color:transparent;
  3973. border-color:transparent;
  3974. }
  3975. #u4443_input.hint.disabled {
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:265px;
  3980. height:30px;
  3981. padding:2px 2px 2px 2px;
  3982. font-family:"Arial Normal", "Arial", sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:12px;
  3986. letter-spacing:normal;
  3987. color:#C0C4CC;
  3988. vertical-align:none;
  3989. text-align:left;
  3990. text-transform:none;
  3991. background-color:transparent;
  3992. border-color:transparent;
  3993. }
  3994. #u4443_div {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:265px;
  4000. height:30px;
  4001. background:inherit;
  4002. background-color:rgba(255, 255, 255, 1);
  4003. border:none;
  4004. border-radius:0px;
  4005. -moz-box-shadow:none;
  4006. -webkit-box-shadow:none;
  4007. box-shadow:none;
  4008. font-size:12px;
  4009. color:#606266;
  4010. }
  4011. #u4443 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:443px;
  4015. top:552px;
  4016. width:265px;
  4017. height:30px;
  4018. display:flex;
  4019. font-size:12px;
  4020. color:#606266;
  4021. }
  4022. #u4443 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:2px 2px 2px 2px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u4443_div.hint {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:265px;
  4035. height:30px;
  4036. background:inherit;
  4037. background-color:rgba(255, 255, 255, 1);
  4038. border:none;
  4039. border-radius:0px;
  4040. -moz-box-shadow:none;
  4041. -webkit-box-shadow:none;
  4042. box-shadow:none;
  4043. font-size:12px;
  4044. color:#606266;
  4045. }
  4046. #u4443.hint {
  4047. }
  4048. #u4443_div.disabled {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:265px;
  4054. height:30px;
  4055. background:inherit;
  4056. background-color:rgba(240, 240, 240, 1);
  4057. border:none;
  4058. border-radius:0px;
  4059. -moz-box-shadow:none;
  4060. -webkit-box-shadow:none;
  4061. box-shadow:none;
  4062. font-size:12px;
  4063. color:#606266;
  4064. }
  4065. #u4443.disabled {
  4066. }
  4067. #u4443_div.hint.disabled {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:265px;
  4073. height:30px;
  4074. background:inherit;
  4075. background-color:rgba(240, 240, 240, 1);
  4076. border:none;
  4077. border-radius:0px;
  4078. -moz-box-shadow:none;
  4079. -webkit-box-shadow:none;
  4080. box-shadow:none;
  4081. font-size:12px;
  4082. color:#606266;
  4083. }
  4084. #u4443.hint.disabled {
  4085. }
  4086. #u4444_div {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:80px;
  4092. height:16px;
  4093. background:inherit;
  4094. background-color:rgba(255, 255, 255, 0);
  4095. border:none;
  4096. border-radius:0px;
  4097. -moz-box-shadow:none;
  4098. -webkit-box-shadow:none;
  4099. box-shadow:none;
  4100. }
  4101. #u4444 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:324px;
  4105. top:556px;
  4106. width:80px;
  4107. height:16px;
  4108. display:flex;
  4109. }
  4110. #u4444 .text {
  4111. position:absolute;
  4112. align-self:flex-start;
  4113. padding:0px 0px 0px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u4444_text {
  4118. border-width:0px;
  4119. white-space:nowrap;
  4120. text-transform:none;
  4121. }
  4122. #u4445 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:0px;
  4128. height:0px;
  4129. }
  4130. #u4446_div {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:278px;
  4136. height:32px;
  4137. background:inherit;
  4138. background-color:rgba(255, 255, 255, 1);
  4139. box-sizing:border-box;
  4140. border-width:1px;
  4141. border-style:solid;
  4142. border-color:rgba(220, 223, 230, 1);
  4143. border-radius:4px;
  4144. -moz-box-shadow:none;
  4145. -webkit-box-shadow:none;
  4146. box-shadow:none;
  4147. }
  4148. #u4446 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:436px;
  4152. top:606px;
  4153. width:278px;
  4154. height:32px;
  4155. display:flex;
  4156. }
  4157. #u4446 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 2px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u4446_div.mouseOver {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:278px;
  4170. height:32px;
  4171. background:inherit;
  4172. background-color:rgba(255, 255, 255, 1);
  4173. box-sizing:border-box;
  4174. border-width:1px;
  4175. border-style:solid;
  4176. border-color:rgba(192, 196, 204, 1);
  4177. border-radius:4px;
  4178. -moz-box-shadow:none;
  4179. -webkit-box-shadow:none;
  4180. box-shadow:none;
  4181. }
  4182. #u4446.mouseOver {
  4183. }
  4184. #u4446_div.selected {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:278px;
  4190. height:32px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 1);
  4193. box-sizing:border-box;
  4194. border-width:1px;
  4195. border-style:solid;
  4196. border-color:rgba(64, 158, 255, 1);
  4197. border-radius:4px;
  4198. -moz-box-shadow:none;
  4199. -webkit-box-shadow:none;
  4200. box-shadow:none;
  4201. }
  4202. #u4446.selected {
  4203. }
  4204. #u4446_div.mouseOver.selected {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:278px;
  4210. height:32px;
  4211. background:inherit;
  4212. background-color:rgba(255, 255, 255, 1);
  4213. box-sizing:border-box;
  4214. border-width:1px;
  4215. border-style:solid;
  4216. border-color:rgba(64, 158, 255, 1);
  4217. border-radius:4px;
  4218. -moz-box-shadow:none;
  4219. -webkit-box-shadow:none;
  4220. box-shadow:none;
  4221. }
  4222. #u4446.mouseOver.selected {
  4223. }
  4224. #u4446_text {
  4225. border-width:0px;
  4226. word-wrap:break-word;
  4227. text-transform:none;
  4228. visibility:hidden;
  4229. }
  4230. #u4447_input {
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:265px;
  4235. height:30px;
  4236. padding:2px 2px 2px 2px;
  4237. font-family:"Arial Normal", "Arial", sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. letter-spacing:normal;
  4242. color:#606266;
  4243. vertical-align:none;
  4244. text-align:left;
  4245. text-transform:none;
  4246. background-color:transparent;
  4247. border-color:transparent;
  4248. }
  4249. #u4447_input.hint {
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:265px;
  4254. height:30px;
  4255. padding:2px 2px 2px 2px;
  4256. font-family:"Arial Normal", "Arial", sans-serif;
  4257. font-weight:400;
  4258. font-style:normal;
  4259. font-size:12px;
  4260. letter-spacing:normal;
  4261. color:#C0C4CC;
  4262. vertical-align:none;
  4263. text-align:left;
  4264. text-transform:none;
  4265. background-color:transparent;
  4266. border-color:transparent;
  4267. }
  4268. #u4447_input.disabled {
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:265px;
  4273. height:30px;
  4274. padding:2px 2px 2px 2px;
  4275. font-family:"Arial Normal", "Arial", sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:12px;
  4279. letter-spacing:normal;
  4280. color:#606266;
  4281. vertical-align:none;
  4282. text-align:left;
  4283. text-transform:none;
  4284. background-color:transparent;
  4285. border-color:transparent;
  4286. }
  4287. #u4447_input.hint.disabled {
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:265px;
  4292. height:30px;
  4293. padding:2px 2px 2px 2px;
  4294. font-family:"Arial Normal", "Arial", sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:12px;
  4298. letter-spacing:normal;
  4299. color:#C0C4CC;
  4300. vertical-align:none;
  4301. text-align:left;
  4302. text-transform:none;
  4303. background-color:transparent;
  4304. border-color:transparent;
  4305. }
  4306. #u4447_div {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:265px;
  4312. height:30px;
  4313. background:inherit;
  4314. background-color:rgba(255, 255, 255, 1);
  4315. border:none;
  4316. border-radius:0px;
  4317. -moz-box-shadow:none;
  4318. -webkit-box-shadow:none;
  4319. box-shadow:none;
  4320. font-size:12px;
  4321. color:#606266;
  4322. }
  4323. #u4447 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:443px;
  4327. top:607px;
  4328. width:265px;
  4329. height:30px;
  4330. display:flex;
  4331. font-size:12px;
  4332. color:#606266;
  4333. }
  4334. #u4447 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u4447_div.hint {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:265px;
  4347. height:30px;
  4348. background:inherit;
  4349. background-color:rgba(255, 255, 255, 1);
  4350. border:none;
  4351. border-radius:0px;
  4352. -moz-box-shadow:none;
  4353. -webkit-box-shadow:none;
  4354. box-shadow:none;
  4355. font-size:12px;
  4356. color:#606266;
  4357. }
  4358. #u4447.hint {
  4359. }
  4360. #u4447_div.disabled {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:265px;
  4366. height:30px;
  4367. background:inherit;
  4368. background-color:rgba(240, 240, 240, 1);
  4369. border:none;
  4370. border-radius:0px;
  4371. -moz-box-shadow:none;
  4372. -webkit-box-shadow:none;
  4373. box-shadow:none;
  4374. font-size:12px;
  4375. color:#606266;
  4376. }
  4377. #u4447.disabled {
  4378. }
  4379. #u4447_div.hint.disabled {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:265px;
  4385. height:30px;
  4386. background:inherit;
  4387. background-color:rgba(240, 240, 240, 1);
  4388. border:none;
  4389. border-radius:0px;
  4390. -moz-box-shadow:none;
  4391. -webkit-box-shadow:none;
  4392. box-shadow:none;
  4393. font-size:12px;
  4394. color:#606266;
  4395. }
  4396. #u4447.hint.disabled {
  4397. }
  4398. #u4448_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:108px;
  4404. height:16px;
  4405. background:inherit;
  4406. background-color:rgba(255, 255, 255, 0);
  4407. border:none;
  4408. border-radius:0px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. }
  4413. #u4448 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:324px;
  4417. top:611px;
  4418. width:108px;
  4419. height:16px;
  4420. display:flex;
  4421. }
  4422. #u4448 .text {
  4423. position:absolute;
  4424. align-self:flex-start;
  4425. padding:0px 0px 0px 0px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u4448_text {
  4430. border-width:0px;
  4431. white-space:nowrap;
  4432. text-transform:none;
  4433. }
  4434. #u4449_div {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:317px;
  4440. height:111px;
  4441. background:inherit;
  4442. background-color:rgba(255, 223, 37, 1);
  4443. border:none;
  4444. border-radius:0px;
  4445. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4446. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4447. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4448. }
  4449. #u4449 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:678px;
  4453. top:-128px;
  4454. width:317px;
  4455. height:111px;
  4456. display:flex;
  4457. }
  4458. #u4449 .text {
  4459. position:absolute;
  4460. align-self:flex-start;
  4461. padding:10px 10px 10px 10px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u4449_text {
  4466. border-width:0px;
  4467. word-wrap:break-word;
  4468. text-transform:none;
  4469. }
  4470. #u4450_div {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:94px;
  4476. height:16px;
  4477. background:inherit;
  4478. background-color:rgba(255, 255, 255, 0);
  4479. border:none;
  4480. border-radius:0px;
  4481. -moz-box-shadow:none;
  4482. -webkit-box-shadow:none;
  4483. box-shadow:none;
  4484. }
  4485. #u4450 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:315px;
  4489. top:288px;
  4490. width:94px;
  4491. height:16px;
  4492. display:flex;
  4493. }
  4494. #u4450 .text {
  4495. position:absolute;
  4496. align-self:flex-start;
  4497. padding:0px 0px 0px 0px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u4450_text {
  4502. border-width:0px;
  4503. white-space:nowrap;
  4504. text-transform:none;
  4505. }
  4506. #u4451_div {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:80px;
  4512. height:32px;
  4513. background:inherit;
  4514. background-color:rgba(255, 255, 255, 1);
  4515. box-sizing:border-box;
  4516. border-width:1px;
  4517. border-style:solid;
  4518. border-color:rgba(220, 223, 230, 1);
  4519. border-radius:4px;
  4520. -moz-box-shadow:none;
  4521. -webkit-box-shadow:none;
  4522. box-shadow:none;
  4523. font-size:12px;
  4524. color:#606266;
  4525. }
  4526. #u4451 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:436px;
  4530. top:280px;
  4531. width:80px;
  4532. height:32px;
  4533. display:flex;
  4534. font-size:12px;
  4535. color:#606266;
  4536. }
  4537. #u4451 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 2px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u4451_div.mouseOver {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:80px;
  4550. height:32px;
  4551. background:inherit;
  4552. background-color:rgba(236, 245, 255, 1);
  4553. box-sizing:border-box;
  4554. border-width:1px;
  4555. border-style:solid;
  4556. border-color:rgba(198, 226, 255, 1);
  4557. border-radius:4px;
  4558. -moz-box-shadow:none;
  4559. -webkit-box-shadow:none;
  4560. box-shadow:none;
  4561. font-size:12px;
  4562. color:#606266;
  4563. }
  4564. #u4451.mouseOver {
  4565. }
  4566. #u4451_div.mouseDown {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:80px;
  4572. height:32px;
  4573. background:inherit;
  4574. background-color:rgba(236, 245, 255, 1);
  4575. box-sizing:border-box;
  4576. border-width:1px;
  4577. border-style:solid;
  4578. border-color:rgba(58, 142, 230, 1);
  4579. border-radius:4px;
  4580. -moz-box-shadow:none;
  4581. -webkit-box-shadow:none;
  4582. box-shadow:none;
  4583. font-size:12px;
  4584. color:#606266;
  4585. }
  4586. #u4451.mouseDown {
  4587. }
  4588. #u4451_div.disabled {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:80px;
  4594. height:32px;
  4595. background:inherit;
  4596. background-color:rgba(255, 255, 255, 1);
  4597. box-sizing:border-box;
  4598. border-width:1px;
  4599. border-style:solid;
  4600. border-color:rgba(235, 238, 245, 1);
  4601. border-radius:4px;
  4602. -moz-box-shadow:none;
  4603. -webkit-box-shadow:none;
  4604. box-shadow:none;
  4605. font-size:12px;
  4606. color:#606266;
  4607. }
  4608. #u4451.disabled {
  4609. }
  4610. #u4451_div.mouseOver.mouseDown {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:80px;
  4616. height:32px;
  4617. background:inherit;
  4618. background-color:rgba(236, 245, 255, 1);
  4619. box-sizing:border-box;
  4620. border-width:1px;
  4621. border-style:solid;
  4622. border-color:rgba(58, 142, 230, 1);
  4623. border-radius:4px;
  4624. -moz-box-shadow:none;
  4625. -webkit-box-shadow:none;
  4626. box-shadow:none;
  4627. font-size:12px;
  4628. color:#606266;
  4629. }
  4630. #u4451.mouseOver.mouseDown {
  4631. }
  4632. #u4451_text {
  4633. border-width:0px;
  4634. word-wrap:break-word;
  4635. text-transform:none;
  4636. }
  4637. #u4452_img {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:0px;
  4642. width:669px;
  4643. height:2px;
  4644. }
  4645. #u4452 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:400px;
  4649. top:301px;
  4650. width:668px;
  4651. height:1px;
  4652. display:flex;
  4653. }
  4654. #u4452 .text {
  4655. position:absolute;
  4656. align-self:center;
  4657. padding:2px 2px 2px 2px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u4452_text {
  4662. border-width:0px;
  4663. word-wrap:break-word;
  4664. text-transform:none;
  4665. visibility:hidden;
  4666. }
  4667. #u4453_div {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:190px;
  4673. height:90px;
  4674. background:inherit;
  4675. background-color:rgba(255, 223, 37, 1);
  4676. border:none;
  4677. border-radius:0px;
  4678. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4679. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4680. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4681. }
  4682. #u4453 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:712px;
  4686. top:188px;
  4687. width:190px;
  4688. height:90px;
  4689. display:flex;
  4690. }
  4691. #u4453 .text {
  4692. position:absolute;
  4693. align-self:flex-start;
  4694. padding:10px 10px 10px 10px;
  4695. box-sizing:border-box;
  4696. width:100%;
  4697. }
  4698. #u4453_text {
  4699. border-width:0px;
  4700. word-wrap:break-word;
  4701. text-transform:none;
  4702. }
  4703. #u4454 {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:0px;
  4709. height:0px;
  4710. }
  4711. #u4455_div {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:88px;
  4717. height:32px;
  4718. background:inherit;
  4719. background-color:rgba(40, 54, 254, 1);
  4720. border:none;
  4721. border-radius:4px;
  4722. -moz-box-shadow:none;
  4723. -webkit-box-shadow:none;
  4724. box-shadow:none;
  4725. font-family:'Microsoft Tai Le', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:14px;
  4729. color:#FFFFFF;
  4730. line-height:22px;
  4731. }
  4732. #u4455 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:424px;
  4736. top:827px;
  4737. width:88px;
  4738. height:32px;
  4739. display:flex;
  4740. font-family:'Microsoft Tai Le', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:14px;
  4744. color:#FFFFFF;
  4745. line-height:22px;
  4746. }
  4747. #u4455 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:0px 16px 0px 16px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u4455_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. }
  4759. #u4456_div {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:80px;
  4765. height:32px;
  4766. background:inherit;
  4767. background-color:rgba(255, 255, 255, 1);
  4768. box-sizing:border-box;
  4769. border-width:1px;
  4770. border-style:solid;
  4771. border-color:rgba(220, 223, 230, 1);
  4772. border-radius:4px;
  4773. -moz-box-shadow:none;
  4774. -webkit-box-shadow:none;
  4775. box-shadow:none;
  4776. font-size:12px;
  4777. color:#606266;
  4778. }
  4779. #u4456 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:332px;
  4783. top:827px;
  4784. width:80px;
  4785. height:32px;
  4786. display:flex;
  4787. font-size:12px;
  4788. color:#606266;
  4789. }
  4790. #u4456 .text {
  4791. position:absolute;
  4792. align-self:center;
  4793. padding:2px 2px 2px 2px;
  4794. box-sizing:border-box;
  4795. width:100%;
  4796. }
  4797. #u4456_div.mouseOver {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:80px;
  4803. height:32px;
  4804. background:inherit;
  4805. background-color:rgba(236, 245, 255, 1);
  4806. box-sizing:border-box;
  4807. border-width:1px;
  4808. border-style:solid;
  4809. border-color:rgba(198, 226, 255, 1);
  4810. border-radius:4px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-size:12px;
  4815. color:#606266;
  4816. }
  4817. #u4456.mouseOver {
  4818. }
  4819. #u4456_div.mouseDown {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:0px;
  4824. width:80px;
  4825. height:32px;
  4826. background:inherit;
  4827. background-color:rgba(236, 245, 255, 1);
  4828. box-sizing:border-box;
  4829. border-width:1px;
  4830. border-style:solid;
  4831. border-color:rgba(58, 142, 230, 1);
  4832. border-radius:4px;
  4833. -moz-box-shadow:none;
  4834. -webkit-box-shadow:none;
  4835. box-shadow:none;
  4836. font-size:12px;
  4837. color:#606266;
  4838. }
  4839. #u4456.mouseDown {
  4840. }
  4841. #u4456_div.disabled {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:80px;
  4847. height:32px;
  4848. background:inherit;
  4849. background-color:rgba(255, 255, 255, 1);
  4850. box-sizing:border-box;
  4851. border-width:1px;
  4852. border-style:solid;
  4853. border-color:rgba(235, 238, 245, 1);
  4854. border-radius:4px;
  4855. -moz-box-shadow:none;
  4856. -webkit-box-shadow:none;
  4857. box-shadow:none;
  4858. font-size:12px;
  4859. color:#606266;
  4860. }
  4861. #u4456.disabled {
  4862. }
  4863. #u4456_div.mouseOver.mouseDown {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:80px;
  4869. height:32px;
  4870. background:inherit;
  4871. background-color:rgba(236, 245, 255, 1);
  4872. box-sizing:border-box;
  4873. border-width:1px;
  4874. border-style:solid;
  4875. border-color:rgba(58, 142, 230, 1);
  4876. border-radius:4px;
  4877. -moz-box-shadow:none;
  4878. -webkit-box-shadow:none;
  4879. box-shadow:none;
  4880. font-size:12px;
  4881. color:#606266;
  4882. }
  4883. #u4456.mouseOver.mouseDown {
  4884. }
  4885. #u4456_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. }
  4890. #u4457 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:0px;
  4896. height:0px;
  4897. }
  4898. #u4458 {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:0px;
  4904. height:0px;
  4905. }
  4906. #u4459_div {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:130px;
  4912. height:36px;
  4913. background:inherit;
  4914. background-color:rgba(255, 255, 255, 1);
  4915. box-sizing:border-box;
  4916. border-width:1px;
  4917. border-style:solid;
  4918. border-color:rgba(220, 223, 230, 1);
  4919. border-radius:4px;
  4920. -moz-box-shadow:none;
  4921. -webkit-box-shadow:none;
  4922. box-shadow:none;
  4923. font-size:14px;
  4924. color:#C0C4CC;
  4925. text-align:left;
  4926. }
  4927. #u4459 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:432px;
  4931. top:654px;
  4932. width:130px;
  4933. height:36px;
  4934. display:flex;
  4935. font-size:14px;
  4936. color:#C0C4CC;
  4937. text-align:left;
  4938. }
  4939. #u4459 .text {
  4940. position:absolute;
  4941. align-self:center;
  4942. padding:2px 2px 2px 13px;
  4943. box-sizing:border-box;
  4944. width:100%;
  4945. }
  4946. #u4459_div.mouseOver {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:130px;
  4952. height:36px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 1);
  4955. box-sizing:border-box;
  4956. border-width:1px;
  4957. border-style:solid;
  4958. border-color:rgba(192, 196, 204, 1);
  4959. border-radius:4px;
  4960. -moz-box-shadow:none;
  4961. -webkit-box-shadow:none;
  4962. box-shadow:none;
  4963. font-size:14px;
  4964. color:#C0C4CC;
  4965. text-align:left;
  4966. }
  4967. #u4459.mouseOver {
  4968. }
  4969. #u4459_div.selected {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:0px;
  4973. top:0px;
  4974. width:130px;
  4975. height:36px;
  4976. background:inherit;
  4977. background-color:rgba(255, 255, 255, 1);
  4978. box-sizing:border-box;
  4979. border-width:1px;
  4980. border-style:solid;
  4981. border-color:rgba(64, 158, 255, 1);
  4982. border-radius:4px;
  4983. -moz-box-shadow:none;
  4984. -webkit-box-shadow:none;
  4985. box-shadow:none;
  4986. font-size:14px;
  4987. color:#C0C4CC;
  4988. text-align:left;
  4989. }
  4990. #u4459.selected {
  4991. }
  4992. #u4459_div.disabled {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:0px;
  4996. top:0px;
  4997. width:130px;
  4998. height:36px;
  4999. background:inherit;
  5000. background-color:rgba(245, 247, 250, 1);
  5001. box-sizing:border-box;
  5002. border-width:1px;
  5003. border-style:solid;
  5004. border-color:rgba(220, 223, 230, 1);
  5005. border-radius:4px;
  5006. -moz-box-shadow:none;
  5007. -webkit-box-shadow:none;
  5008. box-shadow:none;
  5009. font-size:14px;
  5010. color:#C0C4CC;
  5011. text-align:left;
  5012. }
  5013. #u4459.disabled {
  5014. }
  5015. #u4459_div.mouseOver.selected {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:130px;
  5021. height:36px;
  5022. background:inherit;
  5023. background-color:rgba(255, 255, 255, 1);
  5024. box-sizing:border-box;
  5025. border-width:1px;
  5026. border-style:solid;
  5027. border-color:rgba(64, 158, 255, 1);
  5028. border-radius:4px;
  5029. -moz-box-shadow:none;
  5030. -webkit-box-shadow:none;
  5031. box-shadow:none;
  5032. font-size:14px;
  5033. color:#C0C4CC;
  5034. text-align:left;
  5035. }
  5036. #u4459.mouseOver.selected {
  5037. }
  5038. #u4459_div.selected.disabled {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:130px;
  5044. height:36px;
  5045. background:inherit;
  5046. background-color:rgba(245, 247, 250, 1);
  5047. box-sizing:border-box;
  5048. border-width:1px;
  5049. border-style:solid;
  5050. border-color:rgba(64, 158, 255, 1);
  5051. border-radius:4px;
  5052. -moz-box-shadow:none;
  5053. -webkit-box-shadow:none;
  5054. box-shadow:none;
  5055. font-size:14px;
  5056. color:#C0C4CC;
  5057. text-align:left;
  5058. }
  5059. #u4459.selected.disabled {
  5060. }
  5061. #u4459_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. }
  5066. #u4460 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:432px;
  5070. top:690px;
  5071. width:130px;
  5072. height:102px;
  5073. visibility:hidden;
  5074. }
  5075. #u4460_state0 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:130px;
  5081. height:102px;
  5082. -ms-overflow-x:hidden;
  5083. overflow-x:hidden;
  5084. -ms-overflow-y:hidden;
  5085. overflow-y:hidden;
  5086. background-image:none;
  5087. border:none;
  5088. border-radius:0px;
  5089. -moz-box-shadow:none;
  5090. -webkit-box-shadow:none;
  5091. box-shadow:none;
  5092. }
  5093. #u4460_state0_content {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:1px;
  5099. height:1px;
  5100. }
  5101. #u4461_div {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:130px;
  5107. height:90px;
  5108. background:inherit;
  5109. background-color:rgba(255, 255, 255, 1);
  5110. box-sizing:border-box;
  5111. border-width:1px;
  5112. border-style:solid;
  5113. border-color:rgba(220, 223, 230, 1);
  5114. border-radius:2px;
  5115. -moz-box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  5116. -webkit-box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  5117. box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  5118. }
  5119. #u4461 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:4px;
  5124. width:130px;
  5125. height:90px;
  5126. display:flex;
  5127. }
  5128. #u4461 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 2px 2px 2px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u4461_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u4462_img {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:7px;
  5147. height:4px;
  5148. }
  5149. #u4462 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:22px;
  5153. top:0px;
  5154. width:7px;
  5155. height:4px;
  5156. display:flex;
  5157. }
  5158. #u4462 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 2px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u4462_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u4463 label {
  5172. left:0px;
  5173. width:100%;
  5174. }
  5175. #u4463_img {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:2px;
  5180. width:13px;
  5181. height:13px;
  5182. }
  5183. #u4463 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:6px;
  5187. top:8px;
  5188. width:92px;
  5189. height:15px;
  5190. display:flex;
  5191. }
  5192. #u4463 .text {
  5193. position:absolute;
  5194. align-self:flex-start;
  5195. padding:0px 2px 0px 2px;
  5196. box-sizing:border-box;
  5197. }
  5198. #u4463_img.selected {
  5199. }
  5200. #u4463.selected {
  5201. }
  5202. #u4463_img.disabled {
  5203. }
  5204. #u4463.disabled {
  5205. }
  5206. #u4463_img.selected.error {
  5207. }
  5208. #u4463.selected.error {
  5209. }
  5210. #u4463_img.selected.hint {
  5211. }
  5212. #u4463.selected.hint {
  5213. }
  5214. #u4463_img.selected.error.hint {
  5215. }
  5216. #u4463.selected.error.hint {
  5217. }
  5218. #u4463_img.mouseOver.selected {
  5219. }
  5220. #u4463.mouseOver.selected {
  5221. }
  5222. #u4463_img.mouseOver.selected.error {
  5223. }
  5224. #u4463.mouseOver.selected.error {
  5225. }
  5226. #u4463_img.mouseOver.selected.hint {
  5227. }
  5228. #u4463.mouseOver.selected.hint {
  5229. }
  5230. #u4463_img.mouseOver.selected.error.hint {
  5231. }
  5232. #u4463.mouseOver.selected.error.hint {
  5233. }
  5234. #u4463_img.mouseDown.selected {
  5235. }
  5236. #u4463.mouseDown.selected {
  5237. }
  5238. #u4463_img.mouseDown.selected.error {
  5239. }
  5240. #u4463.mouseDown.selected.error {
  5241. }
  5242. #u4463_img.mouseDown.selected.hint {
  5243. }
  5244. #u4463.mouseDown.selected.hint {
  5245. }
  5246. #u4463_img.mouseDown.selected.error.hint {
  5247. }
  5248. #u4463.mouseDown.selected.error.hint {
  5249. }
  5250. #u4463_img.mouseOver.mouseDown.selected {
  5251. }
  5252. #u4463.mouseOver.mouseDown.selected {
  5253. }
  5254. #u4463_img.mouseOver.mouseDown.selected.error {
  5255. }
  5256. #u4463.mouseOver.mouseDown.selected.error {
  5257. }
  5258. #u4463_img.mouseOver.mouseDown.selected.hint {
  5259. }
  5260. #u4463.mouseOver.mouseDown.selected.hint {
  5261. }
  5262. #u4463_img.mouseOver.mouseDown.selected.error.hint {
  5263. }
  5264. #u4463.mouseOver.mouseDown.selected.error.hint {
  5265. }
  5266. #u4463_img.focused.selected {
  5267. }
  5268. #u4463.focused.selected {
  5269. }
  5270. #u4463_img.focused.selected.error {
  5271. }
  5272. #u4463.focused.selected.error {
  5273. }
  5274. #u4463_img.focused.selected.hint {
  5275. }
  5276. #u4463.focused.selected.hint {
  5277. }
  5278. #u4463_img.focused.selected.error.hint {
  5279. }
  5280. #u4463.focused.selected.error.hint {
  5281. }
  5282. #u4463_img.selected.disabled {
  5283. }
  5284. #u4463.selected.disabled {
  5285. }
  5286. #u4463_img.selected.hint.disabled {
  5287. }
  5288. #u4463.selected.hint.disabled {
  5289. }
  5290. #u4463_img.selected.error.disabled {
  5291. }
  5292. #u4463.selected.error.disabled {
  5293. }
  5294. #u4463_img.selected.error.hint.disabled {
  5295. }
  5296. #u4463.selected.error.hint.disabled {
  5297. }
  5298. #u4463_text {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:13px;
  5302. top:0px;
  5303. width:75px;
  5304. word-wrap:break-word;
  5305. text-transform:none;
  5306. }
  5307. #u4463_input {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:0px;
  5312. width:0px;
  5313. height:0px;
  5314. opacity:0;
  5315. }
  5316. #u4464 label {
  5317. left:0px;
  5318. width:100%;
  5319. }
  5320. #u4464_img {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:2px;
  5325. width:13px;
  5326. height:13px;
  5327. }
  5328. #u4464 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:6px;
  5332. top:29px;
  5333. width:92px;
  5334. height:15px;
  5335. display:flex;
  5336. }
  5337. #u4464 .text {
  5338. position:absolute;
  5339. align-self:flex-start;
  5340. padding:0px 2px 0px 2px;
  5341. box-sizing:border-box;
  5342. }
  5343. #u4464_img.selected {
  5344. }
  5345. #u4464.selected {
  5346. }
  5347. #u4464_img.disabled {
  5348. }
  5349. #u4464.disabled {
  5350. }
  5351. #u4464_img.selected.error {
  5352. }
  5353. #u4464.selected.error {
  5354. }
  5355. #u4464_img.selected.hint {
  5356. }
  5357. #u4464.selected.hint {
  5358. }
  5359. #u4464_img.selected.error.hint {
  5360. }
  5361. #u4464.selected.error.hint {
  5362. }
  5363. #u4464_img.mouseOver.selected {
  5364. }
  5365. #u4464.mouseOver.selected {
  5366. }
  5367. #u4464_img.mouseOver.selected.error {
  5368. }
  5369. #u4464.mouseOver.selected.error {
  5370. }
  5371. #u4464_img.mouseOver.selected.hint {
  5372. }
  5373. #u4464.mouseOver.selected.hint {
  5374. }
  5375. #u4464_img.mouseOver.selected.error.hint {
  5376. }
  5377. #u4464.mouseOver.selected.error.hint {
  5378. }
  5379. #u4464_img.mouseDown.selected {
  5380. }
  5381. #u4464.mouseDown.selected {
  5382. }
  5383. #u4464_img.mouseDown.selected.error {
  5384. }
  5385. #u4464.mouseDown.selected.error {
  5386. }
  5387. #u4464_img.mouseDown.selected.hint {
  5388. }
  5389. #u4464.mouseDown.selected.hint {
  5390. }
  5391. #u4464_img.mouseDown.selected.error.hint {
  5392. }
  5393. #u4464.mouseDown.selected.error.hint {
  5394. }
  5395. #u4464_img.mouseOver.mouseDown.selected {
  5396. }
  5397. #u4464.mouseOver.mouseDown.selected {
  5398. }
  5399. #u4464_img.mouseOver.mouseDown.selected.error {
  5400. }
  5401. #u4464.mouseOver.mouseDown.selected.error {
  5402. }
  5403. #u4464_img.mouseOver.mouseDown.selected.hint {
  5404. }
  5405. #u4464.mouseOver.mouseDown.selected.hint {
  5406. }
  5407. #u4464_img.mouseOver.mouseDown.selected.error.hint {
  5408. }
  5409. #u4464.mouseOver.mouseDown.selected.error.hint {
  5410. }
  5411. #u4464_img.focused.selected {
  5412. }
  5413. #u4464.focused.selected {
  5414. }
  5415. #u4464_img.focused.selected.error {
  5416. }
  5417. #u4464.focused.selected.error {
  5418. }
  5419. #u4464_img.focused.selected.hint {
  5420. }
  5421. #u4464.focused.selected.hint {
  5422. }
  5423. #u4464_img.focused.selected.error.hint {
  5424. }
  5425. #u4464.focused.selected.error.hint {
  5426. }
  5427. #u4464_img.selected.disabled {
  5428. }
  5429. #u4464.selected.disabled {
  5430. }
  5431. #u4464_img.selected.hint.disabled {
  5432. }
  5433. #u4464.selected.hint.disabled {
  5434. }
  5435. #u4464_img.selected.error.disabled {
  5436. }
  5437. #u4464.selected.error.disabled {
  5438. }
  5439. #u4464_img.selected.error.hint.disabled {
  5440. }
  5441. #u4464.selected.error.hint.disabled {
  5442. }
  5443. #u4464_text {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:13px;
  5447. top:0px;
  5448. width:75px;
  5449. word-wrap:break-word;
  5450. text-transform:none;
  5451. }
  5452. #u4464_input {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:0px;
  5458. height:0px;
  5459. opacity:0;
  5460. }
  5461. #u4465 label {
  5462. left:0px;
  5463. width:100%;
  5464. }
  5465. #u4465_img {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:2px;
  5470. width:13px;
  5471. height:13px;
  5472. }
  5473. #u4465 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:6px;
  5477. top:50px;
  5478. width:92px;
  5479. height:15px;
  5480. display:flex;
  5481. }
  5482. #u4465 .text {
  5483. position:absolute;
  5484. align-self:flex-start;
  5485. padding:0px 2px 0px 2px;
  5486. box-sizing:border-box;
  5487. }
  5488. #u4465_img.selected {
  5489. }
  5490. #u4465.selected {
  5491. }
  5492. #u4465_img.disabled {
  5493. }
  5494. #u4465.disabled {
  5495. }
  5496. #u4465_img.selected.error {
  5497. }
  5498. #u4465.selected.error {
  5499. }
  5500. #u4465_img.selected.hint {
  5501. }
  5502. #u4465.selected.hint {
  5503. }
  5504. #u4465_img.selected.error.hint {
  5505. }
  5506. #u4465.selected.error.hint {
  5507. }
  5508. #u4465_img.mouseOver.selected {
  5509. }
  5510. #u4465.mouseOver.selected {
  5511. }
  5512. #u4465_img.mouseOver.selected.error {
  5513. }
  5514. #u4465.mouseOver.selected.error {
  5515. }
  5516. #u4465_img.mouseOver.selected.hint {
  5517. }
  5518. #u4465.mouseOver.selected.hint {
  5519. }
  5520. #u4465_img.mouseOver.selected.error.hint {
  5521. }
  5522. #u4465.mouseOver.selected.error.hint {
  5523. }
  5524. #u4465_img.mouseDown.selected {
  5525. }
  5526. #u4465.mouseDown.selected {
  5527. }
  5528. #u4465_img.mouseDown.selected.error {
  5529. }
  5530. #u4465.mouseDown.selected.error {
  5531. }
  5532. #u4465_img.mouseDown.selected.hint {
  5533. }
  5534. #u4465.mouseDown.selected.hint {
  5535. }
  5536. #u4465_img.mouseDown.selected.error.hint {
  5537. }
  5538. #u4465.mouseDown.selected.error.hint {
  5539. }
  5540. #u4465_img.mouseOver.mouseDown.selected {
  5541. }
  5542. #u4465.mouseOver.mouseDown.selected {
  5543. }
  5544. #u4465_img.mouseOver.mouseDown.selected.error {
  5545. }
  5546. #u4465.mouseOver.mouseDown.selected.error {
  5547. }
  5548. #u4465_img.mouseOver.mouseDown.selected.hint {
  5549. }
  5550. #u4465.mouseOver.mouseDown.selected.hint {
  5551. }
  5552. #u4465_img.mouseOver.mouseDown.selected.error.hint {
  5553. }
  5554. #u4465.mouseOver.mouseDown.selected.error.hint {
  5555. }
  5556. #u4465_img.focused.selected {
  5557. }
  5558. #u4465.focused.selected {
  5559. }
  5560. #u4465_img.focused.selected.error {
  5561. }
  5562. #u4465.focused.selected.error {
  5563. }
  5564. #u4465_img.focused.selected.hint {
  5565. }
  5566. #u4465.focused.selected.hint {
  5567. }
  5568. #u4465_img.focused.selected.error.hint {
  5569. }
  5570. #u4465.focused.selected.error.hint {
  5571. }
  5572. #u4465_img.selected.disabled {
  5573. }
  5574. #u4465.selected.disabled {
  5575. }
  5576. #u4465_img.selected.hint.disabled {
  5577. }
  5578. #u4465.selected.hint.disabled {
  5579. }
  5580. #u4465_img.selected.error.disabled {
  5581. }
  5582. #u4465.selected.error.disabled {
  5583. }
  5584. #u4465_img.selected.error.hint.disabled {
  5585. }
  5586. #u4465.selected.error.hint.disabled {
  5587. }
  5588. #u4465_text {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:13px;
  5592. top:0px;
  5593. width:75px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. }
  5597. #u4465_input {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:0px;
  5603. height:0px;
  5604. opacity:0;
  5605. }
  5606. #u4466 label {
  5607. left:0px;
  5608. width:100%;
  5609. }
  5610. #u4466_img {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:2px;
  5615. width:13px;
  5616. height:13px;
  5617. }
  5618. #u4466 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:6px;
  5622. top:71px;
  5623. width:92px;
  5624. height:15px;
  5625. display:flex;
  5626. }
  5627. #u4466 .text {
  5628. position:absolute;
  5629. align-self:flex-start;
  5630. padding:0px 2px 0px 2px;
  5631. box-sizing:border-box;
  5632. }
  5633. #u4466_img.selected {
  5634. }
  5635. #u4466.selected {
  5636. }
  5637. #u4466_img.disabled {
  5638. }
  5639. #u4466.disabled {
  5640. }
  5641. #u4466_img.selected.error {
  5642. }
  5643. #u4466.selected.error {
  5644. }
  5645. #u4466_img.selected.hint {
  5646. }
  5647. #u4466.selected.hint {
  5648. }
  5649. #u4466_img.selected.error.hint {
  5650. }
  5651. #u4466.selected.error.hint {
  5652. }
  5653. #u4466_img.mouseOver.selected {
  5654. }
  5655. #u4466.mouseOver.selected {
  5656. }
  5657. #u4466_img.mouseOver.selected.error {
  5658. }
  5659. #u4466.mouseOver.selected.error {
  5660. }
  5661. #u4466_img.mouseOver.selected.hint {
  5662. }
  5663. #u4466.mouseOver.selected.hint {
  5664. }
  5665. #u4466_img.mouseOver.selected.error.hint {
  5666. }
  5667. #u4466.mouseOver.selected.error.hint {
  5668. }
  5669. #u4466_img.mouseDown.selected {
  5670. }
  5671. #u4466.mouseDown.selected {
  5672. }
  5673. #u4466_img.mouseDown.selected.error {
  5674. }
  5675. #u4466.mouseDown.selected.error {
  5676. }
  5677. #u4466_img.mouseDown.selected.hint {
  5678. }
  5679. #u4466.mouseDown.selected.hint {
  5680. }
  5681. #u4466_img.mouseDown.selected.error.hint {
  5682. }
  5683. #u4466.mouseDown.selected.error.hint {
  5684. }
  5685. #u4466_img.mouseOver.mouseDown.selected {
  5686. }
  5687. #u4466.mouseOver.mouseDown.selected {
  5688. }
  5689. #u4466_img.mouseOver.mouseDown.selected.error {
  5690. }
  5691. #u4466.mouseOver.mouseDown.selected.error {
  5692. }
  5693. #u4466_img.mouseOver.mouseDown.selected.hint {
  5694. }
  5695. #u4466.mouseOver.mouseDown.selected.hint {
  5696. }
  5697. #u4466_img.mouseOver.mouseDown.selected.error.hint {
  5698. }
  5699. #u4466.mouseOver.mouseDown.selected.error.hint {
  5700. }
  5701. #u4466_img.focused.selected {
  5702. }
  5703. #u4466.focused.selected {
  5704. }
  5705. #u4466_img.focused.selected.error {
  5706. }
  5707. #u4466.focused.selected.error {
  5708. }
  5709. #u4466_img.focused.selected.hint {
  5710. }
  5711. #u4466.focused.selected.hint {
  5712. }
  5713. #u4466_img.focused.selected.error.hint {
  5714. }
  5715. #u4466.focused.selected.error.hint {
  5716. }
  5717. #u4466_img.selected.disabled {
  5718. }
  5719. #u4466.selected.disabled {
  5720. }
  5721. #u4466_img.selected.hint.disabled {
  5722. }
  5723. #u4466.selected.hint.disabled {
  5724. }
  5725. #u4466_img.selected.error.disabled {
  5726. }
  5727. #u4466.selected.error.disabled {
  5728. }
  5729. #u4466_img.selected.error.hint.disabled {
  5730. }
  5731. #u4466.selected.error.hint.disabled {
  5732. }
  5733. #u4466_text {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:13px;
  5737. top:0px;
  5738. width:75px;
  5739. word-wrap:break-word;
  5740. text-transform:none;
  5741. }
  5742. #u4466_input {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:0px;
  5748. height:0px;
  5749. opacity:0;
  5750. }
  5751. #u4467_img {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:10px;
  5757. height:6px;
  5758. }
  5759. #u4467 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:546px;
  5763. top:669px;
  5764. width:10px;
  5765. height:6px;
  5766. display:flex;
  5767. }
  5768. #u4467 .text {
  5769. position:absolute;
  5770. align-self:center;
  5771. padding:2px 2px 2px 20px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u4467_text {
  5776. border-width:0px;
  5777. word-wrap:break-word;
  5778. text-transform:none;
  5779. visibility:hidden;
  5780. }
  5781. #u4468_div {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:80px;
  5787. height:16px;
  5788. background:inherit;
  5789. background-color:rgba(255, 255, 255, 0);
  5790. border:none;
  5791. border-radius:0px;
  5792. -moz-box-shadow:none;
  5793. -webkit-box-shadow:none;
  5794. box-shadow:none;
  5795. }
  5796. #u4468 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:324px;
  5800. top:664px;
  5801. width:80px;
  5802. height:16px;
  5803. display:flex;
  5804. }
  5805. #u4468 .text {
  5806. position:absolute;
  5807. align-self:flex-start;
  5808. padding:0px 0px 0px 0px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u4468_text {
  5813. border-width:0px;
  5814. white-space:nowrap;
  5815. text-transform:none;
  5816. }
  5817. #u4469_div {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:1495px;
  5823. height:1019px;
  5824. background:inherit;
  5825. background-color:rgba(51, 51, 51, 0.3176470588235294);
  5826. border:none;
  5827. border-radius:0px;
  5828. -moz-box-shadow:none;
  5829. -webkit-box-shadow:none;
  5830. box-shadow:none;
  5831. }
  5832. #u4469 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:-3px;
  5836. top:2px;
  5837. width:1495px;
  5838. height:1019px;
  5839. display:flex;
  5840. }
  5841. #u4469 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:2px 2px 2px 2px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u4469_text {
  5849. border-width:0px;
  5850. word-wrap:break-word;
  5851. text-transform:none;
  5852. visibility:hidden;
  5853. }
  5854. #u4470_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:666px;
  5860. height:401px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 1);
  5863. border:none;
  5864. border-radius:5px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. }
  5869. #u4470 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:401px;
  5873. top:251px;
  5874. width:666px;
  5875. height:401px;
  5876. display:flex;
  5877. }
  5878. #u4470 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:2px 2px 2px 2px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u4470_text {
  5886. border-width:0px;
  5887. word-wrap:break-word;
  5888. text-transform:none;
  5889. visibility:hidden;
  5890. }
  5891. #u4471_div {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:56px;
  5897. height:16px;
  5898. background:inherit;
  5899. background-color:rgba(255, 255, 255, 0);
  5900. border:none;
  5901. border-radius:0px;
  5902. -moz-box-shadow:none;
  5903. -webkit-box-shadow:none;
  5904. box-shadow:none;
  5905. }
  5906. #u4471 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:421px;
  5910. top:269px;
  5911. width:56px;
  5912. height:16px;
  5913. display:flex;
  5914. }
  5915. #u4471 .text {
  5916. position:absolute;
  5917. align-self:flex-start;
  5918. padding:0px 0px 0px 0px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u4471_text {
  5923. border-width:0px;
  5924. white-space:nowrap;
  5925. text-transform:none;
  5926. }
  5927. #u4472_img {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:21px;
  5933. height:21px;
  5934. }
  5935. #u4472 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:1022px;
  5939. top:269px;
  5940. width:21px;
  5941. height:21px;
  5942. display:flex;
  5943. }
  5944. #u4472 .text {
  5945. position:absolute;
  5946. align-self:center;
  5947. padding:2px 2px 2px 2px;
  5948. box-sizing:border-box;
  5949. width:100%;
  5950. }
  5951. #u4472_text {
  5952. border-width:0px;
  5953. word-wrap:break-word;
  5954. text-transform:none;
  5955. visibility:hidden;
  5956. }
  5957. #u4473 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:0px;
  5963. height:0px;
  5964. }
  5965. #u4474 {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:0px;
  5969. top:0px;
  5970. width:0px;
  5971. height:0px;
  5972. }
  5973. #u4475_div {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:617px;
  5979. height:54px;
  5980. background:inherit;
  5981. background-color:rgba(250, 250, 250, 1);
  5982. box-sizing:border-box;
  5983. border-width:1px;
  5984. border-style:solid;
  5985. border-color:rgba(232, 232, 232, 1);
  5986. border-radius:4px;
  5987. border-bottom-right-radius:0px;
  5988. border-bottom-left-radius:0px;
  5989. -moz-box-shadow:none;
  5990. -webkit-box-shadow:none;
  5991. box-shadow:none;
  5992. font-family:"Microsoft YaHei", sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:12px;
  5996. color:#666666;
  5997. line-height:18px;
  5998. }
  5999. #u4475 {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:426px;
  6003. top:359px;
  6004. width:617px;
  6005. height:54px;
  6006. display:flex;
  6007. font-family:"Microsoft YaHei", sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:12px;
  6011. color:#666666;
  6012. line-height:18px;
  6013. }
  6014. #u4475 .text {
  6015. position:absolute;
  6016. align-self:center;
  6017. padding:2px 16px 2px 16px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u4475_text {
  6022. border-width:0px;
  6023. word-wrap:break-word;
  6024. text-transform:none;
  6025. visibility:hidden;
  6026. }
  6027. #u4476_div {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:617px;
  6033. height:54px;
  6034. background:inherit;
  6035. background-color:rgba(255, 255, 255, 1);
  6036. box-sizing:border-box;
  6037. border-width:1px;
  6038. border-style:solid;
  6039. border-color:rgba(232, 232, 232, 1);
  6040. border-left:0px;
  6041. border-right:0px;
  6042. border-radius:4px;
  6043. border-top-left-radius:0px;
  6044. border-top-right-radius:0px;
  6045. border-bottom-right-radius:0px;
  6046. border-bottom-left-radius:0px;
  6047. -moz-box-shadow:none;
  6048. -webkit-box-shadow:none;
  6049. box-shadow:none;
  6050. font-family:"Microsoft YaHei", sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:12px;
  6054. color:#666666;
  6055. line-height:18px;
  6056. }
  6057. #u4476 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:426px;
  6061. top:412px;
  6062. width:617px;
  6063. height:54px;
  6064. display:flex;
  6065. font-family:"Microsoft YaHei", sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. color:#666666;
  6070. line-height:18px;
  6071. }
  6072. #u4476 .text {
  6073. position:absolute;
  6074. align-self:center;
  6075. padding:2px 16px 2px 16px;
  6076. box-sizing:border-box;
  6077. width:100%;
  6078. }
  6079. #u4476_text {
  6080. border-width:0px;
  6081. word-wrap:break-word;
  6082. text-transform:none;
  6083. visibility:hidden;
  6084. }
  6085. #u4477_div {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:617px;
  6091. height:54px;
  6092. background:inherit;
  6093. background-color:rgba(255, 255, 255, 1);
  6094. box-sizing:border-box;
  6095. border-width:1px;
  6096. border-style:solid;
  6097. border-color:rgba(232, 232, 232, 1);
  6098. border-left:0px;
  6099. border-right:0px;
  6100. border-radius:4px;
  6101. border-top-left-radius:0px;
  6102. border-top-right-radius:0px;
  6103. border-bottom-right-radius:0px;
  6104. border-bottom-left-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:"Microsoft YaHei", sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:12px;
  6112. color:#666666;
  6113. line-height:18px;
  6114. }
  6115. #u4477 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:426px;
  6119. top:465px;
  6120. width:617px;
  6121. height:54px;
  6122. display:flex;
  6123. font-family:"Microsoft YaHei", sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:12px;
  6127. color:#666666;
  6128. line-height:18px;
  6129. }
  6130. #u4477 .text {
  6131. position:absolute;
  6132. align-self:center;
  6133. padding:2px 16px 2px 16px;
  6134. box-sizing:border-box;
  6135. width:100%;
  6136. }
  6137. #u4477_text {
  6138. border-width:0px;
  6139. word-wrap:break-word;
  6140. text-transform:none;
  6141. visibility:hidden;
  6142. }
  6143. #u4478_div {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:616px;
  6149. height:54px;
  6150. background:inherit;
  6151. background-color:rgba(255, 255, 255, 1);
  6152. box-sizing:border-box;
  6153. border-width:1px;
  6154. border-style:solid;
  6155. border-color:rgba(232, 232, 232, 1);
  6156. border-left:0px;
  6157. border-right:0px;
  6158. border-radius:4px;
  6159. border-top-left-radius:0px;
  6160. border-top-right-radius:0px;
  6161. border-bottom-right-radius:0px;
  6162. border-bottom-left-radius:0px;
  6163. -moz-box-shadow:none;
  6164. -webkit-box-shadow:none;
  6165. box-shadow:none;
  6166. font-family:"Microsoft YaHei", sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. font-size:12px;
  6170. color:#666666;
  6171. line-height:18px;
  6172. }
  6173. #u4478 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:426px;
  6177. top:518px;
  6178. width:616px;
  6179. height:54px;
  6180. display:flex;
  6181. font-family:"Microsoft YaHei", sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:12px;
  6185. color:#666666;
  6186. line-height:18px;
  6187. }
  6188. #u4478 .text {
  6189. position:absolute;
  6190. align-self:center;
  6191. padding:2px 16px 2px 16px;
  6192. box-sizing:border-box;
  6193. width:100%;
  6194. }
  6195. #u4478_text {
  6196. border-width:0px;
  6197. word-wrap:break-word;
  6198. text-transform:none;
  6199. visibility:hidden;
  6200. }
  6201. #u4479 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:0px;
  6207. height:0px;
  6208. }
  6209. #u4480_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:60px;
  6215. height:54px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 0);
  6218. border:none;
  6219. border-left:0px;
  6220. border-top:0px;
  6221. border-right:0px;
  6222. border-radius:4px;
  6223. border-bottom-right-radius:0px;
  6224. border-bottom-left-radius:0px;
  6225. -moz-box-shadow:none;
  6226. -webkit-box-shadow:none;
  6227. box-shadow:none;
  6228. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6229. font-weight:700;
  6230. font-style:normal;
  6231. font-size:14px;
  6232. color:rgba(0, 0, 0, 0.8470588235294118);
  6233. text-align:left;
  6234. line-height:53px;
  6235. }
  6236. #u4480 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:754px;
  6240. top:359px;
  6241. width:60px;
  6242. height:54px;
  6243. display:flex;
  6244. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6245. font-weight:700;
  6246. font-style:normal;
  6247. font-size:14px;
  6248. color:rgba(0, 0, 0, 0.8470588235294118);
  6249. text-align:left;
  6250. line-height:53px;
  6251. }
  6252. #u4480 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:0px 16px 0px 16px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u4480_text {
  6260. border-width:0px;
  6261. white-space:nowrap;
  6262. text-transform:none;
  6263. }
  6264. #u4481_div {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:0px;
  6268. top:0px;
  6269. width:88px;
  6270. height:159px;
  6271. background:inherit;
  6272. background-color:rgba(255, 255, 255, 0);
  6273. border:none;
  6274. border-left:0px;
  6275. border-top:0px;
  6276. border-right:0px;
  6277. border-radius:4px;
  6278. border-bottom-right-radius:0px;
  6279. border-bottom-left-radius:0px;
  6280. -moz-box-shadow:none;
  6281. -webkit-box-shadow:none;
  6282. box-shadow:none;
  6283. font-family:'Microsoft Tai Le', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:14px;
  6287. color:rgba(0, 0, 0, 0.6470588235294118);
  6288. text-align:left;
  6289. line-height:53px;
  6290. }
  6291. #u4481 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:754px;
  6295. top:413px;
  6296. width:88px;
  6297. height:159px;
  6298. display:flex;
  6299. font-family:'Microsoft Tai Le', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:14px;
  6303. color:rgba(0, 0, 0, 0.6470588235294118);
  6304. text-align:left;
  6305. line-height:53px;
  6306. }
  6307. #u4481 .text {
  6308. position:absolute;
  6309. align-self:flex-start;
  6310. padding:0px 16px 0px 16px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u4481_text {
  6315. border-width:0px;
  6316. white-space:nowrap;
  6317. text-transform:none;
  6318. }
  6319. #u4482 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:0px;
  6325. height:0px;
  6326. }
  6327. #u4483_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:88px;
  6333. height:54px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-left:0px;
  6338. border-top:0px;
  6339. border-right:0px;
  6340. border-radius:4px;
  6341. border-bottom-right-radius:0px;
  6342. border-bottom-left-radius:0px;
  6343. -moz-box-shadow:none;
  6344. -webkit-box-shadow:none;
  6345. box-shadow:none;
  6346. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6347. font-weight:700;
  6348. font-style:normal;
  6349. font-size:14px;
  6350. color:rgba(0, 0, 0, 0.8470588235294118);
  6351. text-align:left;
  6352. line-height:53px;
  6353. }
  6354. #u4483 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:596px;
  6358. top:359px;
  6359. width:88px;
  6360. height:54px;
  6361. display:flex;
  6362. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6363. font-weight:700;
  6364. font-style:normal;
  6365. font-size:14px;
  6366. color:rgba(0, 0, 0, 0.8470588235294118);
  6367. text-align:left;
  6368. line-height:53px;
  6369. }
  6370. #u4483 .text {
  6371. position:absolute;
  6372. align-self:center;
  6373. padding:0px 16px 0px 16px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u4483_text {
  6378. border-width:0px;
  6379. white-space:nowrap;
  6380. text-transform:none;
  6381. }
  6382. #u4484_div {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:0px;
  6386. top:0px;
  6387. width:88px;
  6388. height:159px;
  6389. background:inherit;
  6390. background-color:rgba(255, 255, 255, 0);
  6391. border:none;
  6392. border-left:0px;
  6393. border-top:0px;
  6394. border-right:0px;
  6395. border-radius:4px;
  6396. border-bottom-right-radius:0px;
  6397. border-bottom-left-radius:0px;
  6398. -moz-box-shadow:none;
  6399. -webkit-box-shadow:none;
  6400. box-shadow:none;
  6401. font-family:"SF UI Text", sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:14px;
  6405. color:rgba(0, 0, 0, 0.6470588235294118);
  6406. text-align:left;
  6407. line-height:53px;
  6408. }
  6409. #u4484 {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:596px;
  6413. top:413px;
  6414. width:88px;
  6415. height:159px;
  6416. display:flex;
  6417. font-family:"SF UI Text", sans-serif;
  6418. font-weight:400;
  6419. font-style:normal;
  6420. font-size:14px;
  6421. color:rgba(0, 0, 0, 0.6470588235294118);
  6422. text-align:left;
  6423. line-height:53px;
  6424. }
  6425. #u4484 .text {
  6426. position:absolute;
  6427. align-self:flex-start;
  6428. padding:0px 16px 0px 16px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u4484_text {
  6433. border-width:0px;
  6434. white-space:nowrap;
  6435. text-transform:none;
  6436. }
  6437. #u4485 {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:0px;
  6443. height:0px;
  6444. }
  6445. #u4486_div {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:0px;
  6449. top:0px;
  6450. width:60px;
  6451. height:54px;
  6452. background:inherit;
  6453. background-color:rgba(255, 255, 255, 0);
  6454. border:none;
  6455. border-left:0px;
  6456. border-top:0px;
  6457. border-right:0px;
  6458. border-radius:4px;
  6459. border-bottom-right-radius:0px;
  6460. border-bottom-left-radius:0px;
  6461. -moz-box-shadow:none;
  6462. -webkit-box-shadow:none;
  6463. box-shadow:none;
  6464. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6465. font-weight:700;
  6466. font-style:normal;
  6467. font-size:14px;
  6468. color:rgba(0, 0, 0, 0.8470588235294118);
  6469. text-align:left;
  6470. line-height:53px;
  6471. }
  6472. #u4486 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:426px;
  6476. top:359px;
  6477. width:60px;
  6478. height:54px;
  6479. display:flex;
  6480. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6481. font-weight:700;
  6482. font-style:normal;
  6483. font-size:14px;
  6484. color:rgba(0, 0, 0, 0.8470588235294118);
  6485. text-align:left;
  6486. line-height:53px;
  6487. }
  6488. #u4486 .text {
  6489. position:absolute;
  6490. align-self:center;
  6491. padding:0px 16px 0px 16px;
  6492. box-sizing:border-box;
  6493. width:100%;
  6494. }
  6495. #u4486_text {
  6496. border-width:0px;
  6497. white-space:nowrap;
  6498. text-transform:none;
  6499. }
  6500. #u4487_div {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:32px;
  6506. height:53px;
  6507. background:inherit;
  6508. background-color:rgba(255, 255, 255, 0);
  6509. border:none;
  6510. border-left:0px;
  6511. border-top:0px;
  6512. border-right:0px;
  6513. border-radius:4px;
  6514. border-bottom-right-radius:0px;
  6515. border-bottom-left-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:"SF UI Text", sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:14px;
  6523. color:rgba(0, 0, 0, 0.6470588235294118);
  6524. text-align:left;
  6525. line-height:53px;
  6526. }
  6527. #u4487 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:426px;
  6531. top:413px;
  6532. width:32px;
  6533. height:53px;
  6534. display:flex;
  6535. font-family:"SF UI Text", sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:14px;
  6539. color:rgba(0, 0, 0, 0.6470588235294118);
  6540. text-align:left;
  6541. line-height:53px;
  6542. }
  6543. #u4487 .text {
  6544. position:absolute;
  6545. align-self:flex-start;
  6546. padding:0px 16px 0px 16px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u4487_text {
  6551. border-width:0px;
  6552. white-space:nowrap;
  6553. text-transform:none;
  6554. visibility:hidden;
  6555. }
  6556. #u4488 {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:0px;
  6562. height:0px;
  6563. }
  6564. #u4489_img {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:19px;
  6570. height:19px;
  6571. }
  6572. #u4489 {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:442px;
  6576. top:427px;
  6577. width:19px;
  6578. height:19px;
  6579. display:flex;
  6580. }
  6581. #u4489 .text {
  6582. position:absolute;
  6583. align-self:center;
  6584. padding:2px 2px 2px 2px;
  6585. box-sizing:border-box;
  6586. width:100%;
  6587. }
  6588. #u4489_img.mouseOver {
  6589. }
  6590. #u4489.mouseOver {
  6591. }
  6592. #u4489_img.selected {
  6593. }
  6594. #u4489.selected {
  6595. }
  6596. #u4489_img.disabled {
  6597. }
  6598. #u4489.disabled {
  6599. }
  6600. #u4489_img.mouseOver.selected {
  6601. }
  6602. #u4489.mouseOver.selected {
  6603. }
  6604. #u4489_img.selected.disabled {
  6605. }
  6606. #u4489.selected.disabled {
  6607. }
  6608. #u4489_text {
  6609. border-width:0px;
  6610. word-wrap:break-word;
  6611. text-transform:none;
  6612. visibility:hidden;
  6613. }
  6614. #u4490 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:0px;
  6620. height:0px;
  6621. }
  6622. #u4491_img {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:19px;
  6628. height:19px;
  6629. }
  6630. #u4491 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:442px;
  6634. top:481px;
  6635. width:19px;
  6636. height:19px;
  6637. display:flex;
  6638. }
  6639. #u4491 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:2px 2px 2px 2px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u4491_img.mouseOver {
  6647. }
  6648. #u4491.mouseOver {
  6649. }
  6650. #u4491_img.selected {
  6651. }
  6652. #u4491.selected {
  6653. }
  6654. #u4491_img.disabled {
  6655. }
  6656. #u4491.disabled {
  6657. }
  6658. #u4491_img.mouseOver.selected {
  6659. }
  6660. #u4491.mouseOver.selected {
  6661. }
  6662. #u4491_img.selected.disabled {
  6663. }
  6664. #u4491.selected.disabled {
  6665. }
  6666. #u4491_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. visibility:hidden;
  6671. }
  6672. #u4492 {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:0px;
  6678. height:0px;
  6679. }
  6680. #u4493_img {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:19px;
  6686. height:19px;
  6687. }
  6688. #u4493 {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:442px;
  6692. top:537px;
  6693. width:19px;
  6694. height:19px;
  6695. display:flex;
  6696. }
  6697. #u4493 .text {
  6698. position:absolute;
  6699. align-self:center;
  6700. padding:2px 2px 2px 2px;
  6701. box-sizing:border-box;
  6702. width:100%;
  6703. }
  6704. #u4493_img.mouseOver {
  6705. }
  6706. #u4493.mouseOver {
  6707. }
  6708. #u4493_img.selected {
  6709. }
  6710. #u4493.selected {
  6711. }
  6712. #u4493_img.disabled {
  6713. }
  6714. #u4493.disabled {
  6715. }
  6716. #u4493_img.mouseOver.selected {
  6717. }
  6718. #u4493.mouseOver.selected {
  6719. }
  6720. #u4493_img.selected.disabled {
  6721. }
  6722. #u4493.selected.disabled {
  6723. }
  6724. #u4493_text {
  6725. border-width:0px;
  6726. word-wrap:break-word;
  6727. text-transform:none;
  6728. visibility:hidden;
  6729. }
  6730. #u4494 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:0px;
  6734. top:0px;
  6735. width:0px;
  6736. height:0px;
  6737. }
  6738. #u4495_div {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:88px;
  6744. height:54px;
  6745. background:inherit;
  6746. background-color:rgba(255, 255, 255, 0);
  6747. border:none;
  6748. border-left:0px;
  6749. border-top:0px;
  6750. border-right:0px;
  6751. border-radius:4px;
  6752. border-bottom-right-radius:0px;
  6753. border-bottom-left-radius:0px;
  6754. -moz-box-shadow:none;
  6755. -webkit-box-shadow:none;
  6756. box-shadow:none;
  6757. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6758. font-weight:700;
  6759. font-style:normal;
  6760. font-size:14px;
  6761. color:rgba(0, 0, 0, 0.8470588235294118);
  6762. text-align:left;
  6763. line-height:53px;
  6764. }
  6765. #u4495 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:930px;
  6769. top:359px;
  6770. width:88px;
  6771. height:54px;
  6772. display:flex;
  6773. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6774. font-weight:700;
  6775. font-style:normal;
  6776. font-size:14px;
  6777. color:rgba(0, 0, 0, 0.8470588235294118);
  6778. text-align:left;
  6779. line-height:53px;
  6780. }
  6781. #u4495 .text {
  6782. position:absolute;
  6783. align-self:center;
  6784. padding:0px 16px 0px 16px;
  6785. box-sizing:border-box;
  6786. width:100%;
  6787. }
  6788. #u4495_text {
  6789. border-width:0px;
  6790. white-space:nowrap;
  6791. text-transform:none;
  6792. }
  6793. #u4496_div {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:88px;
  6799. height:159px;
  6800. background:inherit;
  6801. background-color:rgba(255, 255, 255, 0);
  6802. border:none;
  6803. border-left:0px;
  6804. border-top:0px;
  6805. border-right:0px;
  6806. border-radius:4px;
  6807. border-bottom-right-radius:0px;
  6808. border-bottom-left-radius:0px;
  6809. -moz-box-shadow:none;
  6810. -webkit-box-shadow:none;
  6811. box-shadow:none;
  6812. font-family:'Microsoft Tai Le', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:14px;
  6816. color:rgba(0, 0, 0, 0.6470588235294118);
  6817. text-align:left;
  6818. line-height:53px;
  6819. }
  6820. #u4496 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:930px;
  6824. top:413px;
  6825. width:88px;
  6826. height:159px;
  6827. display:flex;
  6828. font-family:'Microsoft Tai Le', sans-serif;
  6829. font-weight:400;
  6830. font-style:normal;
  6831. font-size:14px;
  6832. color:rgba(0, 0, 0, 0.6470588235294118);
  6833. text-align:left;
  6834. line-height:53px;
  6835. }
  6836. #u4496 .text {
  6837. position:absolute;
  6838. align-self:flex-start;
  6839. padding:0px 16px 0px 16px;
  6840. box-sizing:border-box;
  6841. width:100%;
  6842. }
  6843. #u4496_text {
  6844. border-width:0px;
  6845. white-space:nowrap;
  6846. text-transform:none;
  6847. }
  6848. #u4497 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:0px;
  6852. top:0px;
  6853. width:0px;
  6854. height:0px;
  6855. }
  6856. #u4498_div {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:88px;
  6862. height:54px;
  6863. background:inherit;
  6864. background-color:rgba(255, 255, 255, 0);
  6865. border:none;
  6866. border-left:0px;
  6867. border-top:0px;
  6868. border-right:0px;
  6869. border-radius:4px;
  6870. border-bottom-right-radius:0px;
  6871. border-bottom-left-radius:0px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6876. font-weight:700;
  6877. font-style:normal;
  6878. font-size:14px;
  6879. color:rgba(0, 0, 0, 0.8470588235294118);
  6880. text-align:left;
  6881. line-height:53px;
  6882. }
  6883. #u4498 {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:505px;
  6887. top:359px;
  6888. width:88px;
  6889. height:54px;
  6890. display:flex;
  6891. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6892. font-weight:700;
  6893. font-style:normal;
  6894. font-size:14px;
  6895. color:rgba(0, 0, 0, 0.8470588235294118);
  6896. text-align:left;
  6897. line-height:53px;
  6898. }
  6899. #u4498 .text {
  6900. position:absolute;
  6901. align-self:center;
  6902. padding:0px 16px 0px 16px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u4498_text {
  6907. border-width:0px;
  6908. white-space:nowrap;
  6909. text-transform:none;
  6910. }
  6911. #u4499_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:32px;
  6917. height:53px;
  6918. background:inherit;
  6919. background-color:rgba(255, 255, 255, 0);
  6920. border:none;
  6921. border-left:0px;
  6922. border-top:0px;
  6923. border-right:0px;
  6924. border-radius:4px;
  6925. border-bottom-right-radius:0px;
  6926. border-bottom-left-radius:0px;
  6927. -moz-box-shadow:none;
  6928. -webkit-box-shadow:none;
  6929. box-shadow:none;
  6930. font-family:"SF UI Text", sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:14px;
  6934. color:rgba(0, 0, 0, 0.6470588235294118);
  6935. text-align:left;
  6936. line-height:53px;
  6937. }
  6938. #u4499 {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:505px;
  6942. top:413px;
  6943. width:32px;
  6944. height:53px;
  6945. display:flex;
  6946. font-family:"SF UI Text", sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:14px;
  6950. color:rgba(0, 0, 0, 0.6470588235294118);
  6951. text-align:left;
  6952. line-height:53px;
  6953. }
  6954. #u4499 .text {
  6955. position:absolute;
  6956. align-self:flex-start;
  6957. padding:0px 16px 0px 16px;
  6958. box-sizing:border-box;
  6959. width:100%;
  6960. }
  6961. #u4499_text {
  6962. border-width:0px;
  6963. white-space:nowrap;
  6964. text-transform:none;
  6965. visibility:hidden;
  6966. }
  6967. #u4500_img {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:35px;
  6973. height:37px;
  6974. }
  6975. #u4500 {
  6976. border-width:0px;
  6977. position:absolute;
  6978. left:521px;
  6979. top:422px;
  6980. width:35px;
  6981. height:37px;
  6982. display:flex;
  6983. }
  6984. #u4500 .text {
  6985. position:absolute;
  6986. align-self:center;
  6987. padding:2px 2px 2px 2px;
  6988. box-sizing:border-box;
  6989. width:100%;
  6990. }
  6991. #u4500_text {
  6992. border-width:0px;
  6993. word-wrap:break-word;
  6994. text-transform:none;
  6995. visibility:hidden;
  6996. }
  6997. #u4501_img {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:35px;
  7003. height:37px;
  7004. }
  7005. #u4501 {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:521px;
  7009. top:474px;
  7010. width:35px;
  7011. height:37px;
  7012. display:flex;
  7013. }
  7014. #u4501 .text {
  7015. position:absolute;
  7016. align-self:center;
  7017. padding:2px 2px 2px 2px;
  7018. box-sizing:border-box;
  7019. width:100%;
  7020. }
  7021. #u4501_text {
  7022. border-width:0px;
  7023. word-wrap:break-word;
  7024. text-transform:none;
  7025. visibility:hidden;
  7026. }
  7027. #u4502_img {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:35px;
  7033. height:37px;
  7034. }
  7035. #u4502 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:521px;
  7039. top:524px;
  7040. width:35px;
  7041. height:37px;
  7042. display:flex;
  7043. }
  7044. #u4502 .text {
  7045. position:absolute;
  7046. align-self:center;
  7047. padding:2px 2px 2px 2px;
  7048. box-sizing:border-box;
  7049. width:100%;
  7050. }
  7051. #u4502_text {
  7052. border-width:0px;
  7053. word-wrap:break-word;
  7054. text-transform:none;
  7055. visibility:hidden;
  7056. }
  7057. #u4503 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:0px;
  7063. height:0px;
  7064. }
  7065. #u4504_div {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:0px;
  7069. top:0px;
  7070. width:51px;
  7071. height:22px;
  7072. background:inherit;
  7073. background-color:rgba(255, 255, 255, 0);
  7074. border:none;
  7075. border-radius:0px;
  7076. -moz-box-shadow:none;
  7077. -webkit-box-shadow:none;
  7078. box-shadow:none;
  7079. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. color:rgba(0, 0, 0, 0.42745098039215684);
  7083. line-height:22px;
  7084. }
  7085. #u4504 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:426px;
  7089. top:596px;
  7090. width:51px;
  7091. height:22px;
  7092. display:flex;
  7093. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. color:rgba(0, 0, 0, 0.42745098039215684);
  7097. line-height:22px;
  7098. }
  7099. #u4504 .text {
  7100. position:absolute;
  7101. align-self:flex-start;
  7102. padding:0px 0px 0px 0px;
  7103. box-sizing:border-box;
  7104. width:100%;
  7105. }
  7106. #u4504_text {
  7107. border-width:0px;
  7108. white-space:nowrap;
  7109. text-transform:none;
  7110. }
  7111. #u4505_div {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:32px;
  7117. height:32px;
  7118. background:inherit;
  7119. background-color:rgba(24, 144, 255, 1);
  7120. border:none;
  7121. border-radius:6px;
  7122. -moz-box-shadow:none;
  7123. -webkit-box-shadow:none;
  7124. box-shadow:none;
  7125. font-size:14px;
  7126. color:#FFFFFF;
  7127. line-height:22px;
  7128. }
  7129. #u4505 {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:538px;
  7133. top:591px;
  7134. width:32px;
  7135. height:32px;
  7136. display:flex;
  7137. font-size:14px;
  7138. color:#FFFFFF;
  7139. line-height:22px;
  7140. }
  7141. #u4505 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:2px 2px 2px 2px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u4505_text {
  7149. border-width:0px;
  7150. word-wrap:break-word;
  7151. text-transform:none;
  7152. }
  7153. #u4506_div {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:32px;
  7159. height:32px;
  7160. background:inherit;
  7161. background-color:rgba(255, 255, 255, 1);
  7162. box-sizing:border-box;
  7163. border-width:1px;
  7164. border-style:solid;
  7165. border-color:rgba(217, 217, 217, 1);
  7166. border-radius:6px;
  7167. -moz-box-shadow:none;
  7168. -webkit-box-shadow:none;
  7169. box-shadow:none;
  7170. font-size:14px;
  7171. color:rgba(0, 0, 0, 0.6470588235294118);
  7172. line-height:22px;
  7173. }
  7174. #u4506 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:578px;
  7178. top:591px;
  7179. width:32px;
  7180. height:32px;
  7181. display:flex;
  7182. font-size:14px;
  7183. color:rgba(0, 0, 0, 0.6470588235294118);
  7184. line-height:22px;
  7185. }
  7186. #u4506 .text {
  7187. position:absolute;
  7188. align-self:center;
  7189. padding:2px 2px 2px 2px;
  7190. box-sizing:border-box;
  7191. width:100%;
  7192. }
  7193. #u4506_text {
  7194. border-width:0px;
  7195. word-wrap:break-word;
  7196. text-transform:none;
  7197. }
  7198. #u4507_div {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:0px;
  7202. top:0px;
  7203. width:32px;
  7204. height:32px;
  7205. background:inherit;
  7206. background-color:rgba(255, 255, 255, 1);
  7207. box-sizing:border-box;
  7208. border-width:1px;
  7209. border-style:solid;
  7210. border-color:rgba(217, 217, 217, 1);
  7211. border-radius:6px;
  7212. -moz-box-shadow:none;
  7213. -webkit-box-shadow:none;
  7214. box-shadow:none;
  7215. font-size:14px;
  7216. color:rgba(0, 0, 0, 0.6470588235294118);
  7217. line-height:22px;
  7218. }
  7219. #u4507 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:618px;
  7223. top:591px;
  7224. width:32px;
  7225. height:32px;
  7226. display:flex;
  7227. font-size:14px;
  7228. color:rgba(0, 0, 0, 0.6470588235294118);
  7229. line-height:22px;
  7230. }
  7231. #u4507 .text {
  7232. position:absolute;
  7233. align-self:center;
  7234. padding:2px 2px 2px 2px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u4507_text {
  7239. border-width:0px;
  7240. word-wrap:break-word;
  7241. text-transform:none;
  7242. }
  7243. #u4508_div {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:32px;
  7249. height:32px;
  7250. background:inherit;
  7251. background-color:rgba(255, 255, 255, 1);
  7252. box-sizing:border-box;
  7253. border-width:1px;
  7254. border-style:solid;
  7255. border-color:rgba(217, 217, 217, 1);
  7256. border-radius:6px;
  7257. -moz-box-shadow:none;
  7258. -webkit-box-shadow:none;
  7259. box-shadow:none;
  7260. font-size:14px;
  7261. color:rgba(0, 0, 0, 0.6470588235294118);
  7262. line-height:22px;
  7263. }
  7264. #u4508 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:658px;
  7268. top:591px;
  7269. width:32px;
  7270. height:32px;
  7271. display:flex;
  7272. font-size:14px;
  7273. color:rgba(0, 0, 0, 0.6470588235294118);
  7274. line-height:22px;
  7275. }
  7276. #u4508 .text {
  7277. position:absolute;
  7278. align-self:center;
  7279. padding:2px 2px 2px 2px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u4508_text {
  7284. border-width:0px;
  7285. word-wrap:break-word;
  7286. text-transform:none;
  7287. }
  7288. #u4509_div {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:32px;
  7294. height:32px;
  7295. background:inherit;
  7296. background-color:rgba(255, 255, 255, 1);
  7297. box-sizing:border-box;
  7298. border-width:1px;
  7299. border-style:solid;
  7300. border-color:rgba(217, 217, 217, 1);
  7301. border-radius:6px;
  7302. -moz-box-shadow:none;
  7303. -webkit-box-shadow:none;
  7304. box-shadow:none;
  7305. font-size:14px;
  7306. color:rgba(0, 0, 0, 0.6470588235294118);
  7307. line-height:22px;
  7308. }
  7309. #u4509 {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:698px;
  7313. top:591px;
  7314. width:32px;
  7315. height:32px;
  7316. display:flex;
  7317. font-size:14px;
  7318. color:rgba(0, 0, 0, 0.6470588235294118);
  7319. line-height:22px;
  7320. }
  7321. #u4509 .text {
  7322. position:absolute;
  7323. align-self:center;
  7324. padding:2px 2px 2px 2px;
  7325. box-sizing:border-box;
  7326. width:100%;
  7327. }
  7328. #u4509_text {
  7329. border-width:0px;
  7330. word-wrap:break-word;
  7331. text-transform:none;
  7332. }
  7333. #u4510_div {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:28px;
  7339. height:22px;
  7340. background:inherit;
  7341. background-color:rgba(255, 255, 255, 0);
  7342. border:none;
  7343. border-radius:0px;
  7344. -moz-box-shadow:none;
  7345. -webkit-box-shadow:none;
  7346. box-shadow:none;
  7347. font-family:"Microsoft YaHei", sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:14px;
  7351. color:rgba(0, 0, 0, 0.6470588235294118);
  7352. line-height:22px;
  7353. }
  7354. #u4510 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:893px;
  7358. top:596px;
  7359. width:28px;
  7360. height:22px;
  7361. display:flex;
  7362. font-family:"Microsoft YaHei", sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:14px;
  7366. color:rgba(0, 0, 0, 0.6470588235294118);
  7367. line-height:22px;
  7368. }
  7369. #u4510 .text {
  7370. position:absolute;
  7371. align-self:flex-start;
  7372. padding:0px 0px 0px 0px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u4510_text {
  7377. border-width:0px;
  7378. white-space:nowrap;
  7379. text-transform:none;
  7380. }
  7381. #u4511_div {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:48px;
  7387. height:32px;
  7388. background:inherit;
  7389. background-color:rgba(255, 255, 255, 1);
  7390. box-sizing:border-box;
  7391. border-width:1px;
  7392. border-style:solid;
  7393. border-color:rgba(217, 217, 217, 1);
  7394. border-radius:6px;
  7395. -moz-box-shadow:none;
  7396. -webkit-box-shadow:none;
  7397. box-shadow:none;
  7398. font-size:14px;
  7399. color:rgba(0, 0, 0, 0.6470588235294118);
  7400. text-align:left;
  7401. line-height:22px;
  7402. }
  7403. #u4511 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:930px;
  7407. top:591px;
  7408. width:48px;
  7409. height:32px;
  7410. display:flex;
  7411. font-size:14px;
  7412. color:rgba(0, 0, 0, 0.6470588235294118);
  7413. text-align:left;
  7414. line-height:22px;
  7415. }
  7416. #u4511 .text {
  7417. position:absolute;
  7418. align-self:center;
  7419. padding:2px 2px 2px 16px;
  7420. box-sizing:border-box;
  7421. width:100%;
  7422. }
  7423. #u4511_text {
  7424. border-width:0px;
  7425. word-wrap:break-word;
  7426. text-transform:none;
  7427. }
  7428. #u4512_div {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:14px;
  7434. height:22px;
  7435. background:inherit;
  7436. background-color:rgba(255, 255, 255, 0);
  7437. border:none;
  7438. border-radius:0px;
  7439. -moz-box-shadow:none;
  7440. -webkit-box-shadow:none;
  7441. box-shadow:none;
  7442. font-family:"Microsoft YaHei", sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:14px;
  7446. color:rgba(0, 0, 0, 0.6470588235294118);
  7447. line-height:22px;
  7448. }
  7449. #u4512 {
  7450. border-width:0px;
  7451. position:absolute;
  7452. left:986px;
  7453. top:596px;
  7454. width:14px;
  7455. height:22px;
  7456. display:flex;
  7457. font-family:"Microsoft YaHei", sans-serif;
  7458. font-weight:400;
  7459. font-style:normal;
  7460. font-size:14px;
  7461. color:rgba(0, 0, 0, 0.6470588235294118);
  7462. line-height:22px;
  7463. }
  7464. #u4512 .text {
  7465. position:absolute;
  7466. align-self:flex-start;
  7467. padding:0px 0px 2px 0px;
  7468. box-sizing:border-box;
  7469. width:100%;
  7470. }
  7471. #u4512_text {
  7472. border-width:0px;
  7473. white-space:nowrap;
  7474. text-transform:none;
  7475. }
  7476. #u4513 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:0px;
  7480. top:0px;
  7481. width:0px;
  7482. height:0px;
  7483. }
  7484. #u4514_div {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:88px;
  7490. height:32px;
  7491. background:inherit;
  7492. background-color:rgba(255, 255, 255, 1);
  7493. box-sizing:border-box;
  7494. border-width:1px;
  7495. border-style:solid;
  7496. border-color:rgba(217, 217, 217, 1);
  7497. border-radius:6px;
  7498. -moz-box-shadow:none;
  7499. -webkit-box-shadow:none;
  7500. box-shadow:none;
  7501. font-size:14px;
  7502. color:rgba(0, 0, 0, 0.6470588235294118);
  7503. text-align:left;
  7504. line-height:22px;
  7505. }
  7506. #u4514 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:786px;
  7510. top:591px;
  7511. width:88px;
  7512. height:32px;
  7513. display:flex;
  7514. font-size:14px;
  7515. color:rgba(0, 0, 0, 0.6470588235294118);
  7516. text-align:left;
  7517. line-height:22px;
  7518. }
  7519. #u4514 .text {
  7520. position:absolute;
  7521. align-self:center;
  7522. padding:2px 30px 2px 8px;
  7523. box-sizing:border-box;
  7524. width:100%;
  7525. }
  7526. #u4514_text {
  7527. border-width:0px;
  7528. white-space:nowrap;
  7529. text-transform:none;
  7530. }
  7531. #u4515_img {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:0px;
  7535. top:0px;
  7536. width:14px;
  7537. height:14px;
  7538. }
  7539. #u4515 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:851px;
  7543. top:600px;
  7544. width:14px;
  7545. height:14px;
  7546. display:flex;
  7547. -webkit-transform:rotate(90deg);
  7548. -moz-transform:rotate(90deg);
  7549. -ms-transform:rotate(90deg);
  7550. transform:rotate(90deg);
  7551. opacity:0.4000000059604645;
  7552. }
  7553. #u4515 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 2px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u4515_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u4516 {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:0px;
  7572. height:0px;
  7573. }
  7574. #u4517_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:32px;
  7580. height:32px;
  7581. background:inherit;
  7582. background-color:rgba(255, 255, 255, 1);
  7583. box-sizing:border-box;
  7584. border-width:1px;
  7585. border-style:solid;
  7586. border-color:rgba(217, 217, 217, 1);
  7587. border-radius:6px;
  7588. -moz-box-shadow:none;
  7589. -webkit-box-shadow:none;
  7590. box-shadow:none;
  7591. font-size:12px;
  7592. color:#666666;
  7593. }
  7594. #u4517 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:498px;
  7598. top:591px;
  7599. width:32px;
  7600. height:32px;
  7601. display:flex;
  7602. font-size:12px;
  7603. color:#666666;
  7604. }
  7605. #u4517 .text {
  7606. position:absolute;
  7607. align-self:center;
  7608. padding:2px 2px 2px 2px;
  7609. box-sizing:border-box;
  7610. width:100%;
  7611. }
  7612. #u4517_text {
  7613. border-width:0px;
  7614. word-wrap:break-word;
  7615. text-transform:none;
  7616. visibility:hidden;
  7617. }
  7618. #u4518_img {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:14px;
  7624. height:14px;
  7625. }
  7626. #u4518 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:507px;
  7630. top:600px;
  7631. width:14px;
  7632. height:14px;
  7633. display:flex;
  7634. -webkit-transform:rotate(180deg);
  7635. -moz-transform:rotate(180deg);
  7636. -ms-transform:rotate(180deg);
  7637. transform:rotate(180deg);
  7638. opacity:0.4000000059604645;
  7639. }
  7640. #u4518 .text {
  7641. position:absolute;
  7642. align-self:center;
  7643. padding:2px 2px 2px 2px;
  7644. box-sizing:border-box;
  7645. width:100%;
  7646. }
  7647. #u4518_text {
  7648. border-width:0px;
  7649. word-wrap:break-word;
  7650. text-transform:none;
  7651. visibility:hidden;
  7652. }
  7653. #u4519 {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:0px;
  7657. top:0px;
  7658. width:0px;
  7659. height:0px;
  7660. }
  7661. #u4520_div {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:32px;
  7667. height:32px;
  7668. background:inherit;
  7669. background-color:rgba(255, 255, 255, 1);
  7670. box-sizing:border-box;
  7671. border-width:1px;
  7672. border-style:solid;
  7673. border-color:rgba(217, 217, 217, 1);
  7674. border-radius:6px;
  7675. -moz-box-shadow:none;
  7676. -webkit-box-shadow:none;
  7677. box-shadow:none;
  7678. font-size:12px;
  7679. color:#666666;
  7680. }
  7681. #u4520 {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:738px;
  7685. top:591px;
  7686. width:32px;
  7687. height:32px;
  7688. display:flex;
  7689. font-size:12px;
  7690. color:#666666;
  7691. }
  7692. #u4520 .text {
  7693. position:absolute;
  7694. align-self:center;
  7695. padding:2px 2px 2px 2px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u4520_text {
  7700. border-width:0px;
  7701. word-wrap:break-word;
  7702. text-transform:none;
  7703. visibility:hidden;
  7704. }
  7705. #u4521_img {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:14px;
  7711. height:14px;
  7712. }
  7713. #u4521 {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:747px;
  7717. top:600px;
  7718. width:14px;
  7719. height:14px;
  7720. display:flex;
  7721. opacity:0.4000000059604645;
  7722. }
  7723. #u4521 .text {
  7724. position:absolute;
  7725. align-self:center;
  7726. padding:2px 2px 2px 2px;
  7727. box-sizing:border-box;
  7728. width:100%;
  7729. }
  7730. #u4521_text {
  7731. border-width:0px;
  7732. word-wrap:break-word;
  7733. text-transform:none;
  7734. visibility:hidden;
  7735. }
  7736. #u4522_div {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:65px;
  7742. height:32px;
  7743. background:inherit;
  7744. background-color:rgba(24, 144, 255, 1);
  7745. border:none;
  7746. border-radius:4px;
  7747. -moz-box-shadow:none;
  7748. -webkit-box-shadow:none;
  7749. box-shadow:none;
  7750. font-family:"Microsoft YaHei", sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:14px;
  7754. color:#FFFFFF;
  7755. text-align:left;
  7756. line-height:22px;
  7757. }
  7758. #u4522 {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:712px;
  7762. top:315px;
  7763. width:65px;
  7764. height:32px;
  7765. display:flex;
  7766. font-family:"Microsoft YaHei", sans-serif;
  7767. font-weight:400;
  7768. font-style:normal;
  7769. font-size:14px;
  7770. color:#FFFFFF;
  7771. text-align:left;
  7772. line-height:22px;
  7773. }
  7774. #u4522 .text {
  7775. position:absolute;
  7776. align-self:center;
  7777. padding:0px 16px 0px 16px;
  7778. box-sizing:border-box;
  7779. width:100%;
  7780. }
  7781. #u4522_text {
  7782. border-width:0px;
  7783. white-space:nowrap;
  7784. text-transform:none;
  7785. }
  7786. #u4523 {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:0px;
  7790. top:0px;
  7791. width:0px;
  7792. height:0px;
  7793. }
  7794. #u4524 {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:0px;
  7798. top:0px;
  7799. width:0px;
  7800. height:0px;
  7801. }
  7802. #u4525_div {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:0px;
  7806. top:0px;
  7807. width:70px;
  7808. height:47px;
  7809. background:inherit;
  7810. background-color:rgba(255, 255, 255, 0);
  7811. border:none;
  7812. border-radius:0px;
  7813. -moz-box-shadow:none;
  7814. -webkit-box-shadow:none;
  7815. box-shadow:none;
  7816. font-family:'Microsoft Tai Le', sans-serif;
  7817. font-weight:400;
  7818. font-style:normal;
  7819. font-size:14px;
  7820. color:rgba(0, 0, 0, 0.8470588235294118);
  7821. text-align:right;
  7822. line-height:22px;
  7823. }
  7824. #u4525 {
  7825. border-width:0px;
  7826. position:absolute;
  7827. left:440px;
  7828. top:315px;
  7829. width:70px;
  7830. height:47px;
  7831. display:flex;
  7832. font-family:'Microsoft Tai Le', sans-serif;
  7833. font-weight:400;
  7834. font-style:normal;
  7835. font-size:14px;
  7836. color:rgba(0, 0, 0, 0.8470588235294118);
  7837. text-align:right;
  7838. line-height:22px;
  7839. }
  7840. #u4525 .text {
  7841. position:absolute;
  7842. align-self:flex-start;
  7843. padding:5px 0px 29px 0px;
  7844. box-sizing:border-box;
  7845. width:100%;
  7846. }
  7847. #u4525_text {
  7848. border-width:0px;
  7849. white-space:nowrap;
  7850. text-transform:none;
  7851. }
  7852. #u4526_div {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:0px;
  7856. top:0px;
  7857. width:180px;
  7858. height:32px;
  7859. background:inherit;
  7860. background-color:rgba(255, 255, 255, 1);
  7861. box-sizing:border-box;
  7862. border-width:1px;
  7863. border-style:solid;
  7864. border-color:rgba(217, 217, 217, 1);
  7865. border-radius:4px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. font-family:'Microsoft Tai Le', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:14px;
  7873. color:rgba(0, 0, 0, 0.24705882352941178);
  7874. text-align:left;
  7875. line-height:22px;
  7876. }
  7877. #u4526 {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:510px;
  7881. top:315px;
  7882. width:180px;
  7883. height:32px;
  7884. display:flex;
  7885. font-family:'Microsoft Tai Le', sans-serif;
  7886. font-weight:400;
  7887. font-style:normal;
  7888. font-size:14px;
  7889. color:rgba(0, 0, 0, 0.24705882352941178);
  7890. text-align:left;
  7891. line-height:22px;
  7892. }
  7893. #u4526 .text {
  7894. position:absolute;
  7895. align-self:flex-start;
  7896. padding:5px 0px 5px 12px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u4526_text {
  7901. border-width:0px;
  7902. word-wrap:break-word;
  7903. text-transform:none;
  7904. }
  7905. #u4527_div {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:180px;
  7911. height:14px;
  7912. background:inherit;
  7913. background-color:rgba(255, 51, 153, 1);
  7914. border:none;
  7915. border-radius:0px;
  7916. -moz-box-shadow:none;
  7917. -webkit-box-shadow:none;
  7918. box-shadow:none;
  7919. color:#FFFFFF;
  7920. }
  7921. #u4527 {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:510px;
  7925. top:347px;
  7926. width:180px;
  7927. height:14px;
  7928. display:flex;
  7929. opacity:0;
  7930. color:#FFFFFF;
  7931. }
  7932. #u4527 .text {
  7933. position:absolute;
  7934. align-self:center;
  7935. padding:2px 2px 2px 2px;
  7936. box-sizing:border-box;
  7937. width:100%;
  7938. }
  7939. #u4527_text {
  7940. border-width:0px;
  7941. word-wrap:break-word;
  7942. text-transform:none;
  7943. }