styles.css 109 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-24px;
  6. width:1495px;
  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. #u4105 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u4106_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. #u4106 {
  43. border-width:0px;
  44. position:absolute;
  45. left:280px;
  46. top:37px;
  47. width:1184px;
  48. height:64px;
  49. display:flex;
  50. }
  51. #u4106 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u4106_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u4107_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:20px;
  70. height:15px;
  71. }
  72. #u4107 {
  73. border-width:0px;
  74. position:absolute;
  75. left:308px;
  76. top:62px;
  77. width:20px;
  78. height:15px;
  79. display:flex;
  80. }
  81. #u4107 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u4107_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u4108 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u4109_img {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:24px;
  108. height:24px;
  109. }
  110. #u4109 {
  111. border-width:0px;
  112. position:absolute;
  113. left:1341px;
  114. top:58px;
  115. width:24px;
  116. height:24px;
  117. display:flex;
  118. }
  119. #u4109 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u4109_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u4110_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. #u4110 {
  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. #u4110 .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. #u4110_text {
  168. border-width:0px;
  169. white-space:nowrap;
  170. text-transform:none;
  171. }
  172. #u4111_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. #u4111 {
  188. border-width:0px;
  189. position:absolute;
  190. left:24px;
  191. top:37px;
  192. width:256px;
  193. height:984px;
  194. display:flex;
  195. }
  196. #u4111 .text {
  197. position:absolute;
  198. align-self:center;
  199. padding:2px 2px 2px 2px;
  200. box-sizing:border-box;
  201. width:100%;
  202. }
  203. #u4111_text {
  204. border-width:0px;
  205. word-wrap:break-word;
  206. text-transform:none;
  207. visibility:hidden;
  208. }
  209. #u4112_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:256px;
  215. height:65px;
  216. }
  217. #u4112 {
  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. #u4112 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:0px 0px 0px 68px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u4112_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u4113 {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:0px;
  251. height:0px;
  252. }
  253. #u4114_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. #u4114 {
  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. #u4114 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:16px 2px 16px 50px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u4114_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. }
  303. #u4115_img {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:14px;
  309. height:14px;
  310. }
  311. #u4115 {
  312. border-width:0px;
  313. position:absolute;
  314. left:48px;
  315. top:122px;
  316. width:14px;
  317. height:14px;
  318. display:flex;
  319. }
  320. #u4115 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u4115_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. visibility:hidden;
  332. }
  333. #u4116_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:7px;
  339. height:14px;
  340. }
  341. #u4116 {
  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. #u4116 .text {
  356. position:absolute;
  357. align-self:center;
  358. padding:0px 0px 0px 0px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u4116_text {
  363. border-width:0px;
  364. white-space:nowrap;
  365. text-transform:none;
  366. }
  367. #u4117 {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:0px;
  373. height:0px;
  374. }
  375. #u4118_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. #u4118 {
  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. #u4118 .text {
  414. position:absolute;
  415. align-self:center;
  416. padding:16px 2px 16px 50px;
  417. box-sizing:border-box;
  418. width:100%;
  419. }
  420. #u4118_text {
  421. border-width:0px;
  422. word-wrap:break-word;
  423. text-transform:none;
  424. }
  425. #u4119_img {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:14px;
  431. height:14px;
  432. }
  433. #u4119 {
  434. border-width:0px;
  435. position:absolute;
  436. left:48px;
  437. top:825px;
  438. width:14px;
  439. height:14px;
  440. display:flex;
  441. }
  442. #u4119 .text {
  443. position:absolute;
  444. align-self:center;
  445. padding:2px 2px 2px 2px;
  446. box-sizing:border-box;
  447. width:100%;
  448. }
  449. #u4119_text {
  450. border-width:0px;
  451. word-wrap:break-word;
  452. text-transform:none;
  453. visibility:hidden;
  454. }
  455. #u4120_img {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:7px;
  461. height:14px;
  462. }
  463. #u4120 {
  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. #u4120 .text {
  478. position:absolute;
  479. align-self:center;
  480. padding:0px 0px 0px 0px;
  481. box-sizing:border-box;
  482. width:100%;
  483. }
  484. #u4120_text {
  485. border-width:0px;
  486. white-space:nowrap;
  487. text-transform:none;
  488. }
  489. #u4121 {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:0px;
  495. height:0px;
  496. }
  497. #u4122_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. #u4122 {
  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. #u4122 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:16px 2px 16px 50px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u4122_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. }
  547. #u4123_img {
  548. border-width:0px;
  549. position:absolute;
  550. left:0px;
  551. top:0px;
  552. width:14px;
  553. height:14px;
  554. }
  555. #u4123 {
  556. border-width:0px;
  557. position:absolute;
  558. left:48px;
  559. top:879px;
  560. width:14px;
  561. height:14px;
  562. display:flex;
  563. }
  564. #u4123 .text {
  565. position:absolute;
  566. align-self:center;
  567. padding:2px 2px 2px 2px;
  568. box-sizing:border-box;
  569. width:100%;
  570. }
  571. #u4123_text {
  572. border-width:0px;
  573. word-wrap:break-word;
  574. text-transform:none;
  575. visibility:hidden;
  576. }
  577. #u4124_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:7px;
  583. height:14px;
  584. }
  585. #u4124 {
  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. #u4124 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:0px 0px 0px 0px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u4124_text {
  607. border-width:0px;
  608. white-space:nowrap;
  609. text-transform:none;
  610. }
  611. #u4125_img {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:7px;
  617. height:14px;
  618. }
  619. #u4125 {
  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. #u4125 .text {
  634. position:absolute;
  635. align-self:center;
  636. padding:0px 0px 0px 0px;
  637. box-sizing:border-box;
  638. width:100%;
  639. }
  640. #u4125_text {
  641. border-width:0px;
  642. white-space:nowrap;
  643. text-transform:none;
  644. }
  645. #u4126 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u4127_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. #u4127 {
  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. #u4127 .text {
  692. position:absolute;
  693. align-self:center;
  694. padding:16px 2px 16px 50px;
  695. box-sizing:border-box;
  696. width:100%;
  697. }
  698. #u4127_text {
  699. border-width:0px;
  700. word-wrap:break-word;
  701. text-transform:none;
  702. }
  703. #u4128_img {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:0px;
  708. width:15px;
  709. height:14px;
  710. }
  711. #u4128 {
  712. border-width:0px;
  713. position:absolute;
  714. left:48px;
  715. top:173px;
  716. width:15px;
  717. height:14px;
  718. display:flex;
  719. }
  720. #u4128 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u4128_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. visibility:hidden;
  732. }
  733. #u4129_img {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:7px;
  739. height:14px;
  740. }
  741. #u4129 {
  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. #u4129 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:0px 0px 0px 0px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u4129_text {
  763. border-width:0px;
  764. white-space:nowrap;
  765. text-transform:none;
  766. }
  767. #u4130 {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:0px;
  773. height:0px;
  774. }
  775. #u4131 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u4132_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. #u4132 {
  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. #u4132 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:12px 0px 12px 50px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u4132_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. }
  833. #u4133 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:0px;
  839. height:0px;
  840. }
  841. #u4134_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. #u4134 {
  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. #u4134 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:16px 2px 16px 50px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u4134_text {
  887. border-width:0px;
  888. word-wrap:break-word;
  889. text-transform:none;
  890. }
  891. #u4135_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:14px;
  897. height:14px;
  898. }
  899. #u4135 {
  900. border-width:0px;
  901. position:absolute;
  902. left:48px;
  903. top:933px;
  904. width:14px;
  905. height:14px;
  906. display:flex;
  907. }
  908. #u4135 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u4135_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u4136_img {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:7px;
  927. height:14px;
  928. }
  929. #u4136 {
  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. #u4136 .text {
  944. position:absolute;
  945. align-self:center;
  946. padding:0px 0px 0px 0px;
  947. box-sizing:border-box;
  948. width:100%;
  949. }
  950. #u4136_text {
  951. border-width:0px;
  952. white-space:nowrap;
  953. text-transform:none;
  954. }
  955. #u4137 {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:0px;
  961. height:0px;
  962. }
  963. #u4138_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. #u4138 {
  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. #u4138 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:16px 2px 16px 50px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u4138_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. }
  1013. #u4139_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:14px;
  1019. height:14px;
  1020. }
  1021. #u4139 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:48px;
  1025. top:987px;
  1026. width:14px;
  1027. height:14px;
  1028. display:flex;
  1029. }
  1030. #u4139 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u4139_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u4140_img {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:7px;
  1049. height:14px;
  1050. }
  1051. #u4140 {
  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. #u4140 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:0px 0px 0px 0px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u4140_text {
  1073. border-width:0px;
  1074. white-space:nowrap;
  1075. text-transform:none;
  1076. }
  1077. #u4141 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:0px;
  1083. height:0px;
  1084. }
  1085. #u4142_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. #u4142 {
  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. #u4142 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:12px 0px 12px 50px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u4142_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u4143 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u4144_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. #u4144 {
  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. #u4144 .text {
  1182. position:absolute;
  1183. align-self:center;
  1184. padding:12px 0px 12px 50px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u4144_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. }
  1193. #u4145_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. #u4145 {
  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. #u4145 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:12px 0px 12px 50px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u4145_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. }
  1243. #u4146_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. #u4146 {
  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. #u4146 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:12px 0px 12px 50px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u4146_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u4147_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. #u4147 {
  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. #u4147 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:12px 0px 12px 50px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u4147_text {
  1339. border-width:0px;
  1340. word-wrap:break-word;
  1341. text-transform:none;
  1342. }
  1343. #u4148_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. #u4148 {
  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. #u4148 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:12px 0px 12px 50px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u4148_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. }
  1393. #u4149_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. #u4149 {
  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. #u4149 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:12px 0px 12px 50px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u4149_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u4150_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. #u4150 {
  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. #u4150 .text {
  1482. position:absolute;
  1483. align-self:center;
  1484. padding:12px 0px 12px 50px;
  1485. box-sizing:border-box;
  1486. width:100%;
  1487. }
  1488. #u4150_text {
  1489. border-width:0px;
  1490. word-wrap:break-word;
  1491. text-transform:none;
  1492. }
  1493. #u4151_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. #u4151 {
  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. #u4151 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:12px 0px 12px 50px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u4151_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. }
  1543. #u4152_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. #u4152 {
  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. #u4152 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:12px 0px 12px 74px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u4152_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. }
  1601. #u4153 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:0px;
  1607. height:0px;
  1608. }
  1609. #u4154_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. #u4154 {
  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. #u4154 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:12px 0px 12px 50px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u4154_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. }
  1659. #u4155_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. #u4155 {
  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. #u4155 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:12px 0px 12px 50px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u4155_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u4156_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. #u4156 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:280px;
  1728. top:101px;
  1729. width:1239px;
  1730. height:920px;
  1731. display:flex;
  1732. }
  1733. #u4156 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u4156_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u4157 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:0px;
  1752. height:0px;
  1753. }
  1754. #u4158_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:1215px;
  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. #u4158 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:292px;
  1780. top:170px;
  1781. width:1215px;
  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. #u4158 .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. #u4158_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u4159 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:292px;
  1809. top:171px;
  1810. width:32px;
  1811. height:32px;
  1812. }
  1813. #u4159_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. #u4159_state0_content {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:1px;
  1837. height:1px;
  1838. }
  1839. #u4160 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:1409px;
  1843. top:171px;
  1844. width:32px;
  1845. height:32px;
  1846. }
  1847. #u4160_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. #u4160_state0_content {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:1px;
  1871. height:1px;
  1872. }
  1873. #u4161_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. #u4161 {
  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. #u4161 .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. #u4161_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. visibility:hidden;
  1926. }
  1927. #u4162_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. #u4162 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:429px;
  1946. top:124px;
  1947. width:7px;
  1948. height:25px;
  1949. display:flex;
  1950. }
  1951. #u4162 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u4162_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. visibility:hidden;
  1963. }
  1964. #u4163_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. #u4163 {
  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. #u4163 .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. #u4163_text {
  2006. border-width:0px;
  2007. white-space:nowrap;
  2008. text-transform:none;
  2009. }
  2010. #u4164_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. #u4164 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:292px;
  2032. top:109px;
  2033. width:120px;
  2034. height:52px;
  2035. display:flex;
  2036. }
  2037. #u4164 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u4164_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u4165 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:0px;
  2055. height:0px;
  2056. }
  2057. #u4166_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. #u4166 {
  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. #u4166 .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. #u4166_text {
  2099. border-width:0px;
  2100. white-space:nowrap;
  2101. text-transform:none;
  2102. }
  2103. #u4167_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. #u4167 {
  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. #u4167 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u4167_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u4168 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:0px;
  2148. height:0px;
  2149. }
  2150. #u4169_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. #u4169 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:435px;
  2172. top:328px;
  2173. width:278px;
  2174. height:32px;
  2175. display:flex;
  2176. }
  2177. #u4169 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u4169_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. #u4169.mouseOver {
  2203. }
  2204. #u4169_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. #u4169.selected {
  2223. }
  2224. #u4169_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. #u4169.mouseOver.selected {
  2243. }
  2244. #u4169_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u4170_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. #u4170_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. #u4170_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. #u4170_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. #u4170_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. #u4170 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:442px;
  2347. top:329px;
  2348. width:265px;
  2349. height:30px;
  2350. display:flex;
  2351. font-size:12px;
  2352. color:#606266;
  2353. }
  2354. #u4170 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u4170_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. #u4170.hint {
  2379. }
  2380. #u4170_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. #u4170.disabled {
  2398. }
  2399. #u4170_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. #u4170.hint.disabled {
  2417. }
  2418. #u4171_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. #u4171 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:329px;
  2437. top:333px;
  2438. width:80px;
  2439. height:16px;
  2440. display:flex;
  2441. }
  2442. #u4171 .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. #u4171_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u4172 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:0px;
  2460. height:0px;
  2461. }
  2462. #u4173_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. #u4173 {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:800px;
  2484. top:69px;
  2485. width:278px;
  2486. height:32px;
  2487. display:flex;
  2488. }
  2489. #u4173 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 2px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u4173_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. #u4173.mouseOver {
  2515. }
  2516. #u4173_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. #u4173.selected {
  2535. }
  2536. #u4173_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. #u4173.mouseOver.selected {
  2555. }
  2556. #u4173_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u4174_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. #u4174_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. #u4174_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. #u4174_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. #u4174_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. #u4174 {
  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. #u4174 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 2px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u4174_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. #u4174.hint {
  2691. }
  2692. #u4174_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. #u4174.disabled {
  2710. }
  2711. #u4174_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. #u4174.hint.disabled {
  2729. }
  2730. #u4175_div {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:80px;
  2736. height:16px;
  2737. background:inherit;
  2738. background-color:rgba(255, 255, 255, 0);
  2739. border:none;
  2740. border-radius:0px;
  2741. -moz-box-shadow:none;
  2742. -webkit-box-shadow:none;
  2743. box-shadow:none;
  2744. }
  2745. #u4175 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:329px;
  2749. top:390px;
  2750. width:80px;
  2751. height:16px;
  2752. display:flex;
  2753. }
  2754. #u4175 .text {
  2755. position:absolute;
  2756. align-self:flex-start;
  2757. padding:0px 0px 0px 0px;
  2758. box-sizing:border-box;
  2759. width:100%;
  2760. }
  2761. #u4175_text {
  2762. border-width:0px;
  2763. white-space:nowrap;
  2764. text-transform:none;
  2765. }
  2766. #u4176_div {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:95px;
  2772. height:75px;
  2773. background:inherit;
  2774. background-color:rgba(230, 230, 230, 1);
  2775. border:none;
  2776. border-radius:0px;
  2777. -moz-box-shadow:none;
  2778. -webkit-box-shadow:none;
  2779. box-shadow:none;
  2780. font-size:22px;
  2781. }
  2782. #u4176 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:432px;
  2786. top:384px;
  2787. width:95px;
  2788. height:75px;
  2789. display:flex;
  2790. font-size:22px;
  2791. }
  2792. #u4176 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 2px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u4176_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. }
  2804. #u4177_div {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:190px;
  2810. height:60px;
  2811. background:inherit;
  2812. background-color:rgba(255, 223, 37, 1);
  2813. border:none;
  2814. border-radius:0px;
  2815. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2816. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2817. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2818. }
  2819. #u4177 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:635px;
  2823. top:403px;
  2824. width:190px;
  2825. height:60px;
  2826. display:flex;
  2827. }
  2828. #u4177 .text {
  2829. position:absolute;
  2830. align-self:flex-start;
  2831. padding:10px 10px 10px 10px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u4177_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. }
  2840. #u4178_img {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:-3px;
  2844. top:-13px;
  2845. width:117px;
  2846. height:31px;
  2847. }
  2848. #u4178 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:527px;
  2852. top:424px;
  2853. width:101px;
  2854. height:5px;
  2855. display:flex;
  2856. -webkit-transform:rotate(10.283433254455293deg);
  2857. -moz-transform:rotate(10.283433254455293deg);
  2858. -ms-transform:rotate(10.283433254455293deg);
  2859. transform:rotate(10.283433254455293deg);
  2860. }
  2861. #u4178 .text {
  2862. position:absolute;
  2863. align-self:center;
  2864. padding:2px 2px 2px 2px;
  2865. box-sizing:border-box;
  2866. width:100%;
  2867. }
  2868. #u4178_text {
  2869. border-width:0px;
  2870. word-wrap:break-word;
  2871. text-transform:none;
  2872. visibility:hidden;
  2873. }
  2874. #u4179 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:0px;
  2880. height:0px;
  2881. }
  2882. #u4180_div {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:28px;
  2888. height:18px;
  2889. background:inherit;
  2890. background-color:rgba(255, 255, 255, 0);
  2891. border:none;
  2892. border-radius:0px;
  2893. -moz-box-shadow:none;
  2894. -webkit-box-shadow:none;
  2895. box-shadow:none;
  2896. font-family:'Microsoft YaHei UI', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. color:#606266;
  2900. }
  2901. #u4180 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:714px;
  2905. top:239px;
  2906. width:28px;
  2907. height:18px;
  2908. display:flex;
  2909. font-family:'Microsoft YaHei UI', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. color:#606266;
  2913. }
  2914. #u4180 .text {
  2915. position:absolute;
  2916. align-self:flex-start;
  2917. padding:0px 0px 0px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u4180_div.selected {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:28px;
  2927. height:18px;
  2928. background:inherit;
  2929. background-color:rgba(255, 255, 255, 0);
  2930. border:none;
  2931. border-radius:0px;
  2932. -moz-box-shadow:none;
  2933. -webkit-box-shadow:none;
  2934. box-shadow:none;
  2935. font-family:'Microsoft YaHei UI', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. color:#606266;
  2939. }
  2940. #u4180.selected {
  2941. }
  2942. #u4180_div.disabled {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:28px;
  2948. height:18px;
  2949. background:inherit;
  2950. background-color:rgba(255, 255, 255, 0);
  2951. border:none;
  2952. border-radius:0px;
  2953. -moz-box-shadow:none;
  2954. -webkit-box-shadow:none;
  2955. box-shadow:none;
  2956. font-family:'Microsoft YaHei UI', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. color:#606266;
  2960. }
  2961. #u4180.disabled {
  2962. }
  2963. #u4180_div.selected.disabled {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:28px;
  2969. height:18px;
  2970. background:inherit;
  2971. background-color:rgba(255, 255, 255, 0);
  2972. border:none;
  2973. border-radius:0px;
  2974. -moz-box-shadow:none;
  2975. -webkit-box-shadow:none;
  2976. box-shadow:none;
  2977. font-family:'Microsoft YaHei UI', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. color:#606266;
  2981. }
  2982. #u4180.selected.disabled {
  2983. }
  2984. #u4180_text {
  2985. border-width:0px;
  2986. white-space:nowrap;
  2987. text-transform:none;
  2988. }
  2989. #u4181_img {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:13px;
  2995. height:13px;
  2996. }
  2997. #u4181 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:695px;
  3001. top:242px;
  3002. width:13px;
  3003. height:13px;
  3004. display:flex;
  3005. }
  3006. #u4181 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 2px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u4181_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u4182 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:0px;
  3025. height:0px;
  3026. }
  3027. #u4183_div {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:28px;
  3033. height:18px;
  3034. background:inherit;
  3035. background-color:rgba(255, 255, 255, 0);
  3036. border:none;
  3037. border-radius:0px;
  3038. -moz-box-shadow:none;
  3039. -webkit-box-shadow:none;
  3040. box-shadow:none;
  3041. font-family:'Microsoft YaHei UI', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. color:#606266;
  3045. }
  3046. #u4183 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:642px;
  3050. top:239px;
  3051. width:28px;
  3052. height:18px;
  3053. display:flex;
  3054. font-family:'Microsoft YaHei UI', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. color:#606266;
  3058. }
  3059. #u4183 .text {
  3060. position:absolute;
  3061. align-self:flex-start;
  3062. padding:0px 0px 0px 0px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u4183_div.selected {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:28px;
  3072. height:18px;
  3073. background:inherit;
  3074. background-color:rgba(255, 255, 255, 0);
  3075. border:none;
  3076. border-radius:0px;
  3077. -moz-box-shadow:none;
  3078. -webkit-box-shadow:none;
  3079. box-shadow:none;
  3080. font-family:'Microsoft YaHei UI', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. color:#606266;
  3084. }
  3085. #u4183.selected {
  3086. }
  3087. #u4183_div.disabled {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:28px;
  3093. height:18px;
  3094. background:inherit;
  3095. background-color:rgba(255, 255, 255, 0);
  3096. border:none;
  3097. border-radius:0px;
  3098. -moz-box-shadow:none;
  3099. -webkit-box-shadow:none;
  3100. box-shadow:none;
  3101. font-family:'Microsoft YaHei UI', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. color:#606266;
  3105. }
  3106. #u4183.disabled {
  3107. }
  3108. #u4183_div.selected.disabled {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:28px;
  3114. height:18px;
  3115. background:inherit;
  3116. background-color:rgba(255, 255, 255, 0);
  3117. border:none;
  3118. border-radius:0px;
  3119. -moz-box-shadow:none;
  3120. -webkit-box-shadow:none;
  3121. box-shadow:none;
  3122. font-family:'Microsoft YaHei UI', sans-serif;
  3123. font-weight:400;
  3124. font-style:normal;
  3125. color:#606266;
  3126. }
  3127. #u4183.selected.disabled {
  3128. }
  3129. #u4183_text {
  3130. border-width:0px;
  3131. white-space:nowrap;
  3132. text-transform:none;
  3133. }
  3134. #u4184_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:13px;
  3140. height:13px;
  3141. }
  3142. #u4184 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:623px;
  3146. top:242px;
  3147. width:13px;
  3148. height:13px;
  3149. display:flex;
  3150. }
  3151. #u4184 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 2px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u4184_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u4185 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:0px;
  3170. height:0px;
  3171. }
  3172. #u4186_div {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:278px;
  3178. height:32px;
  3179. background:inherit;
  3180. background-color:rgba(255, 255, 255, 1);
  3181. box-sizing:border-box;
  3182. border-width:1px;
  3183. border-style:solid;
  3184. border-color:rgba(220, 223, 230, 1);
  3185. border-radius:4px;
  3186. -moz-box-shadow:none;
  3187. -webkit-box-shadow:none;
  3188. box-shadow:none;
  3189. }
  3190. #u4186 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:435px;
  3194. top:494px;
  3195. width:278px;
  3196. height:32px;
  3197. display:flex;
  3198. }
  3199. #u4186 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 2px 2px 2px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u4186_div.mouseOver {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:278px;
  3212. height:32px;
  3213. background:inherit;
  3214. background-color:rgba(255, 255, 255, 1);
  3215. box-sizing:border-box;
  3216. border-width:1px;
  3217. border-style:solid;
  3218. border-color:rgba(192, 196, 204, 1);
  3219. border-radius:4px;
  3220. -moz-box-shadow:none;
  3221. -webkit-box-shadow:none;
  3222. box-shadow:none;
  3223. }
  3224. #u4186.mouseOver {
  3225. }
  3226. #u4186_div.selected {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:278px;
  3232. height:32px;
  3233. background:inherit;
  3234. background-color:rgba(255, 255, 255, 1);
  3235. box-sizing:border-box;
  3236. border-width:1px;
  3237. border-style:solid;
  3238. border-color:rgba(64, 158, 255, 1);
  3239. border-radius:4px;
  3240. -moz-box-shadow:none;
  3241. -webkit-box-shadow:none;
  3242. box-shadow:none;
  3243. }
  3244. #u4186.selected {
  3245. }
  3246. #u4186_div.mouseOver.selected {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:278px;
  3252. height:32px;
  3253. background:inherit;
  3254. background-color:rgba(255, 255, 255, 1);
  3255. box-sizing:border-box;
  3256. border-width:1px;
  3257. border-style:solid;
  3258. border-color:rgba(64, 158, 255, 1);
  3259. border-radius:4px;
  3260. -moz-box-shadow:none;
  3261. -webkit-box-shadow:none;
  3262. box-shadow:none;
  3263. }
  3264. #u4186.mouseOver.selected {
  3265. }
  3266. #u4186_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. visibility:hidden;
  3271. }
  3272. #u4187_input {
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:265px;
  3277. height:30px;
  3278. padding:2px 2px 2px 2px;
  3279. font-family:"Arial Normal", "Arial", sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. letter-spacing:normal;
  3284. color:#606266;
  3285. vertical-align:none;
  3286. text-align:left;
  3287. text-transform:none;
  3288. background-color:transparent;
  3289. border-color:transparent;
  3290. }
  3291. #u4187_input.hint {
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:265px;
  3296. height:30px;
  3297. padding:2px 2px 2px 2px;
  3298. font-family:"Arial Normal", "Arial", sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:12px;
  3302. letter-spacing:normal;
  3303. color:#C0C4CC;
  3304. vertical-align:none;
  3305. text-align:left;
  3306. text-transform:none;
  3307. background-color:transparent;
  3308. border-color:transparent;
  3309. }
  3310. #u4187_input.disabled {
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:265px;
  3315. height:30px;
  3316. padding:2px 2px 2px 2px;
  3317. font-family:"Arial Normal", "Arial", sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:12px;
  3321. letter-spacing:normal;
  3322. color:#606266;
  3323. vertical-align:none;
  3324. text-align:left;
  3325. text-transform:none;
  3326. background-color:transparent;
  3327. border-color:transparent;
  3328. }
  3329. #u4187_input.hint.disabled {
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:265px;
  3334. height:30px;
  3335. padding:2px 2px 2px 2px;
  3336. font-family:"Arial Normal", "Arial", sans-serif;
  3337. font-weight:400;
  3338. font-style:normal;
  3339. font-size:12px;
  3340. letter-spacing:normal;
  3341. color:#C0C4CC;
  3342. vertical-align:none;
  3343. text-align:left;
  3344. text-transform:none;
  3345. background-color:transparent;
  3346. border-color:transparent;
  3347. }
  3348. #u4187_div {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:265px;
  3354. height:30px;
  3355. background:inherit;
  3356. background-color:rgba(255, 255, 255, 1);
  3357. border:none;
  3358. border-radius:0px;
  3359. -moz-box-shadow:none;
  3360. -webkit-box-shadow:none;
  3361. box-shadow:none;
  3362. font-size:12px;
  3363. color:#606266;
  3364. }
  3365. #u4187 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:442px;
  3369. top:495px;
  3370. width:265px;
  3371. height:30px;
  3372. display:flex;
  3373. font-size:12px;
  3374. color:#606266;
  3375. }
  3376. #u4187 .text {
  3377. position:absolute;
  3378. align-self:center;
  3379. padding:2px 2px 2px 2px;
  3380. box-sizing:border-box;
  3381. width:100%;
  3382. }
  3383. #u4187_div.hint {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:265px;
  3389. height:30px;
  3390. background:inherit;
  3391. background-color:rgba(255, 255, 255, 1);
  3392. border:none;
  3393. border-radius:0px;
  3394. -moz-box-shadow:none;
  3395. -webkit-box-shadow:none;
  3396. box-shadow:none;
  3397. font-size:12px;
  3398. color:#606266;
  3399. }
  3400. #u4187.hint {
  3401. }
  3402. #u4187_div.disabled {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:265px;
  3408. height:30px;
  3409. background:inherit;
  3410. background-color:rgba(240, 240, 240, 1);
  3411. border:none;
  3412. border-radius:0px;
  3413. -moz-box-shadow:none;
  3414. -webkit-box-shadow:none;
  3415. box-shadow:none;
  3416. font-size:12px;
  3417. color:#606266;
  3418. }
  3419. #u4187.disabled {
  3420. }
  3421. #u4187_div.hint.disabled {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:265px;
  3427. height:30px;
  3428. background:inherit;
  3429. background-color:rgba(240, 240, 240, 1);
  3430. border:none;
  3431. border-radius:0px;
  3432. -moz-box-shadow:none;
  3433. -webkit-box-shadow:none;
  3434. box-shadow:none;
  3435. font-size:12px;
  3436. color:#606266;
  3437. }
  3438. #u4187.hint.disabled {
  3439. }
  3440. #u4188_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:80px;
  3446. height:16px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 0);
  3449. border:none;
  3450. border-radius:0px;
  3451. -moz-box-shadow:none;
  3452. -webkit-box-shadow:none;
  3453. box-shadow:none;
  3454. }
  3455. #u4188 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:331px;
  3459. top:499px;
  3460. width:80px;
  3461. height:16px;
  3462. display:flex;
  3463. }
  3464. #u4188 .text {
  3465. position:absolute;
  3466. align-self:flex-start;
  3467. padding:0px 0px 0px 0px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u4188_text {
  3472. border-width:0px;
  3473. white-space:nowrap;
  3474. text-transform:none;
  3475. }
  3476. #u4189 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:0px;
  3482. height:0px;
  3483. }
  3484. #u4190_div {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:278px;
  3490. height:32px;
  3491. background:inherit;
  3492. background-color:rgba(255, 255, 255, 1);
  3493. box-sizing:border-box;
  3494. border-width:1px;
  3495. border-style:solid;
  3496. border-color:rgba(220, 223, 230, 1);
  3497. border-radius:4px;
  3498. -moz-box-shadow:none;
  3499. -webkit-box-shadow:none;
  3500. box-shadow:none;
  3501. }
  3502. #u4190 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:435px;
  3506. top:549px;
  3507. width:278px;
  3508. height:32px;
  3509. display:flex;
  3510. }
  3511. #u4190 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 2px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u4190_div.mouseOver {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:278px;
  3524. height:32px;
  3525. background:inherit;
  3526. background-color:rgba(255, 255, 255, 1);
  3527. box-sizing:border-box;
  3528. border-width:1px;
  3529. border-style:solid;
  3530. border-color:rgba(192, 196, 204, 1);
  3531. border-radius:4px;
  3532. -moz-box-shadow:none;
  3533. -webkit-box-shadow:none;
  3534. box-shadow:none;
  3535. }
  3536. #u4190.mouseOver {
  3537. }
  3538. #u4190_div.selected {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:278px;
  3544. height:32px;
  3545. background:inherit;
  3546. background-color:rgba(255, 255, 255, 1);
  3547. box-sizing:border-box;
  3548. border-width:1px;
  3549. border-style:solid;
  3550. border-color:rgba(64, 158, 255, 1);
  3551. border-radius:4px;
  3552. -moz-box-shadow:none;
  3553. -webkit-box-shadow:none;
  3554. box-shadow:none;
  3555. }
  3556. #u4190.selected {
  3557. }
  3558. #u4190_div.mouseOver.selected {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:278px;
  3564. height:32px;
  3565. background:inherit;
  3566. background-color:rgba(255, 255, 255, 1);
  3567. box-sizing:border-box;
  3568. border-width:1px;
  3569. border-style:solid;
  3570. border-color:rgba(64, 158, 255, 1);
  3571. border-radius:4px;
  3572. -moz-box-shadow:none;
  3573. -webkit-box-shadow:none;
  3574. box-shadow:none;
  3575. }
  3576. #u4190.mouseOver.selected {
  3577. }
  3578. #u4190_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u4191_input {
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:265px;
  3589. height:30px;
  3590. padding:2px 2px 2px 2px;
  3591. font-family:"Arial Normal", "Arial", sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:12px;
  3595. letter-spacing:normal;
  3596. color:#606266;
  3597. vertical-align:none;
  3598. text-align:left;
  3599. text-transform:none;
  3600. background-color:transparent;
  3601. border-color:transparent;
  3602. }
  3603. #u4191_input.hint {
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:265px;
  3608. height:30px;
  3609. padding:2px 2px 2px 2px;
  3610. font-family:"Arial Normal", "Arial", sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:12px;
  3614. letter-spacing:normal;
  3615. color:#C0C4CC;
  3616. vertical-align:none;
  3617. text-align:left;
  3618. text-transform:none;
  3619. background-color:transparent;
  3620. border-color:transparent;
  3621. }
  3622. #u4191_input.disabled {
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:265px;
  3627. height:30px;
  3628. padding:2px 2px 2px 2px;
  3629. font-family:"Arial Normal", "Arial", sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. letter-spacing:normal;
  3634. color:#606266;
  3635. vertical-align:none;
  3636. text-align:left;
  3637. text-transform:none;
  3638. background-color:transparent;
  3639. border-color:transparent;
  3640. }
  3641. #u4191_input.hint.disabled {
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:265px;
  3646. height:30px;
  3647. padding:2px 2px 2px 2px;
  3648. font-family:"Arial Normal", "Arial", sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:12px;
  3652. letter-spacing:normal;
  3653. color:#C0C4CC;
  3654. vertical-align:none;
  3655. text-align:left;
  3656. text-transform:none;
  3657. background-color:transparent;
  3658. border-color:transparent;
  3659. }
  3660. #u4191_div {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:265px;
  3666. height:30px;
  3667. background:inherit;
  3668. background-color:rgba(255, 255, 255, 1);
  3669. border:none;
  3670. border-radius:0px;
  3671. -moz-box-shadow:none;
  3672. -webkit-box-shadow:none;
  3673. box-shadow:none;
  3674. font-size:12px;
  3675. color:#606266;
  3676. }
  3677. #u4191 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:442px;
  3681. top:550px;
  3682. width:265px;
  3683. height:30px;
  3684. display:flex;
  3685. font-size:12px;
  3686. color:#606266;
  3687. }
  3688. #u4191 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 2px 2px 2px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u4191_div.hint {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:265px;
  3701. height:30px;
  3702. background:inherit;
  3703. background-color:rgba(255, 255, 255, 1);
  3704. border:none;
  3705. border-radius:0px;
  3706. -moz-box-shadow:none;
  3707. -webkit-box-shadow:none;
  3708. box-shadow:none;
  3709. font-size:12px;
  3710. color:#606266;
  3711. }
  3712. #u4191.hint {
  3713. }
  3714. #u4191_div.disabled {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:0px;
  3718. top:0px;
  3719. width:265px;
  3720. height:30px;
  3721. background:inherit;
  3722. background-color:rgba(240, 240, 240, 1);
  3723. border:none;
  3724. border-radius:0px;
  3725. -moz-box-shadow:none;
  3726. -webkit-box-shadow:none;
  3727. box-shadow:none;
  3728. font-size:12px;
  3729. color:#606266;
  3730. }
  3731. #u4191.disabled {
  3732. }
  3733. #u4191_div.hint.disabled {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:265px;
  3739. height:30px;
  3740. background:inherit;
  3741. background-color:rgba(240, 240, 240, 1);
  3742. border:none;
  3743. border-radius:0px;
  3744. -moz-box-shadow:none;
  3745. -webkit-box-shadow:none;
  3746. box-shadow:none;
  3747. font-size:12px;
  3748. color:#606266;
  3749. }
  3750. #u4191.hint.disabled {
  3751. }
  3752. #u4192_div {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:80px;
  3758. height:16px;
  3759. background:inherit;
  3760. background-color:rgba(255, 255, 255, 0);
  3761. border:none;
  3762. border-radius:0px;
  3763. -moz-box-shadow:none;
  3764. -webkit-box-shadow:none;
  3765. box-shadow:none;
  3766. }
  3767. #u4192 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:330px;
  3771. top:554px;
  3772. width:80px;
  3773. height:16px;
  3774. display:flex;
  3775. }
  3776. #u4192 .text {
  3777. position:absolute;
  3778. align-self:flex-start;
  3779. padding:0px 0px 0px 0px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u4192_text {
  3784. border-width:0px;
  3785. white-space:nowrap;
  3786. text-transform:none;
  3787. }
  3788. #u4193 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:0px;
  3794. height:0px;
  3795. }
  3796. #u4194_div {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:278px;
  3802. height:32px;
  3803. background:inherit;
  3804. background-color:rgba(255, 255, 255, 1);
  3805. box-sizing:border-box;
  3806. border-width:1px;
  3807. border-style:solid;
  3808. border-color:rgba(220, 223, 230, 1);
  3809. border-radius:4px;
  3810. -moz-box-shadow:none;
  3811. -webkit-box-shadow:none;
  3812. box-shadow:none;
  3813. }
  3814. #u4194 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:435px;
  3818. top:604px;
  3819. width:278px;
  3820. height:32px;
  3821. display:flex;
  3822. }
  3823. #u4194 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 2px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u4194_div.mouseOver {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:278px;
  3836. height:32px;
  3837. background:inherit;
  3838. background-color:rgba(255, 255, 255, 1);
  3839. box-sizing:border-box;
  3840. border-width:1px;
  3841. border-style:solid;
  3842. border-color:rgba(192, 196, 204, 1);
  3843. border-radius:4px;
  3844. -moz-box-shadow:none;
  3845. -webkit-box-shadow:none;
  3846. box-shadow:none;
  3847. }
  3848. #u4194.mouseOver {
  3849. }
  3850. #u4194_div.selected {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:278px;
  3856. height:32px;
  3857. background:inherit;
  3858. background-color:rgba(255, 255, 255, 1);
  3859. box-sizing:border-box;
  3860. border-width:1px;
  3861. border-style:solid;
  3862. border-color:rgba(64, 158, 255, 1);
  3863. border-radius:4px;
  3864. -moz-box-shadow:none;
  3865. -webkit-box-shadow:none;
  3866. box-shadow:none;
  3867. }
  3868. #u4194.selected {
  3869. }
  3870. #u4194_div.mouseOver.selected {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:278px;
  3876. height:32px;
  3877. background:inherit;
  3878. background-color:rgba(255, 255, 255, 1);
  3879. box-sizing:border-box;
  3880. border-width:1px;
  3881. border-style:solid;
  3882. border-color:rgba(64, 158, 255, 1);
  3883. border-radius:4px;
  3884. -moz-box-shadow:none;
  3885. -webkit-box-shadow:none;
  3886. box-shadow:none;
  3887. }
  3888. #u4194.mouseOver.selected {
  3889. }
  3890. #u4194_text {
  3891. border-width:0px;
  3892. word-wrap:break-word;
  3893. text-transform:none;
  3894. visibility:hidden;
  3895. }
  3896. #u4195_input {
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:265px;
  3901. height:30px;
  3902. padding:2px 2px 2px 2px;
  3903. font-family:"Arial Normal", "Arial", sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:12px;
  3907. letter-spacing:normal;
  3908. color:#606266;
  3909. vertical-align:none;
  3910. text-align:left;
  3911. text-transform:none;
  3912. background-color:transparent;
  3913. border-color:transparent;
  3914. }
  3915. #u4195_input.hint {
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:265px;
  3920. height:30px;
  3921. padding:2px 2px 2px 2px;
  3922. font-family:"Arial Normal", "Arial", sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:12px;
  3926. letter-spacing:normal;
  3927. color:#C0C4CC;
  3928. vertical-align:none;
  3929. text-align:left;
  3930. text-transform:none;
  3931. background-color:transparent;
  3932. border-color:transparent;
  3933. }
  3934. #u4195_input.disabled {
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:265px;
  3939. height:30px;
  3940. padding:2px 2px 2px 2px;
  3941. font-family:"Arial Normal", "Arial", sans-serif;
  3942. font-weight:400;
  3943. font-style:normal;
  3944. font-size:12px;
  3945. letter-spacing:normal;
  3946. color:#606266;
  3947. vertical-align:none;
  3948. text-align:left;
  3949. text-transform:none;
  3950. background-color:transparent;
  3951. border-color:transparent;
  3952. }
  3953. #u4195_input.hint.disabled {
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:265px;
  3958. height:30px;
  3959. padding:2px 2px 2px 2px;
  3960. font-family:"Arial Normal", "Arial", sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. font-size:12px;
  3964. letter-spacing:normal;
  3965. color:#C0C4CC;
  3966. vertical-align:none;
  3967. text-align:left;
  3968. text-transform:none;
  3969. background-color:transparent;
  3970. border-color:transparent;
  3971. }
  3972. #u4195_div {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:265px;
  3978. height:30px;
  3979. background:inherit;
  3980. background-color:rgba(255, 255, 255, 1);
  3981. border:none;
  3982. border-radius:0px;
  3983. -moz-box-shadow:none;
  3984. -webkit-box-shadow:none;
  3985. box-shadow:none;
  3986. font-size:12px;
  3987. color:#606266;
  3988. }
  3989. #u4195 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:442px;
  3993. top:605px;
  3994. width:265px;
  3995. height:30px;
  3996. display:flex;
  3997. font-size:12px;
  3998. color:#606266;
  3999. }
  4000. #u4195 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 2px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u4195_div.hint {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:265px;
  4013. height:30px;
  4014. background:inherit;
  4015. background-color:rgba(255, 255, 255, 1);
  4016. border:none;
  4017. border-radius:0px;
  4018. -moz-box-shadow:none;
  4019. -webkit-box-shadow:none;
  4020. box-shadow:none;
  4021. font-size:12px;
  4022. color:#606266;
  4023. }
  4024. #u4195.hint {
  4025. }
  4026. #u4195_div.disabled {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:265px;
  4032. height:30px;
  4033. background:inherit;
  4034. background-color:rgba(240, 240, 240, 1);
  4035. border:none;
  4036. border-radius:0px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. font-size:12px;
  4041. color:#606266;
  4042. }
  4043. #u4195.disabled {
  4044. }
  4045. #u4195_div.hint.disabled {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:265px;
  4051. height:30px;
  4052. background:inherit;
  4053. background-color:rgba(240, 240, 240, 1);
  4054. border:none;
  4055. border-radius:0px;
  4056. -moz-box-shadow:none;
  4057. -webkit-box-shadow:none;
  4058. box-shadow:none;
  4059. font-size:12px;
  4060. color:#606266;
  4061. }
  4062. #u4195.hint.disabled {
  4063. }
  4064. #u4196_div {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:108px;
  4070. height:16px;
  4071. background:inherit;
  4072. background-color:rgba(255, 255, 255, 0);
  4073. border:none;
  4074. border-radius:0px;
  4075. -moz-box-shadow:none;
  4076. -webkit-box-shadow:none;
  4077. box-shadow:none;
  4078. }
  4079. #u4196 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:304px;
  4083. top:609px;
  4084. width:108px;
  4085. height:16px;
  4086. display:flex;
  4087. }
  4088. #u4196 .text {
  4089. position:absolute;
  4090. align-self:flex-start;
  4091. padding:0px 0px 0px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u4196_text {
  4096. border-width:0px;
  4097. white-space:nowrap;
  4098. text-transform:none;
  4099. }
  4100. #u4197_div {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:317px;
  4106. height:111px;
  4107. background:inherit;
  4108. background-color:rgba(255, 223, 37, 1);
  4109. border:none;
  4110. border-radius:0px;
  4111. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4112. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4113. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4114. }
  4115. #u4197 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:678px;
  4119. top:-128px;
  4120. width:317px;
  4121. height:111px;
  4122. display:flex;
  4123. }
  4124. #u4197 .text {
  4125. position:absolute;
  4126. align-self:flex-start;
  4127. padding:10px 10px 10px 10px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u4197_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. }
  4136. #u4198_div {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:94px;
  4142. height:16px;
  4143. background:inherit;
  4144. background-color:rgba(255, 255, 255, 0);
  4145. border:none;
  4146. border-radius:0px;
  4147. -moz-box-shadow:none;
  4148. -webkit-box-shadow:none;
  4149. box-shadow:none;
  4150. }
  4151. #u4198 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:310px;
  4155. top:286px;
  4156. width:94px;
  4157. height:16px;
  4158. display:flex;
  4159. }
  4160. #u4198 .text {
  4161. position:absolute;
  4162. align-self:flex-start;
  4163. padding:0px 0px 0px 0px;
  4164. box-sizing:border-box;
  4165. width:100%;
  4166. }
  4167. #u4198_text {
  4168. border-width:0px;
  4169. white-space:nowrap;
  4170. text-transform:none;
  4171. }
  4172. #u4199_div {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:110px;
  4178. height:32px;
  4179. background:inherit;
  4180. background-color:rgba(255, 255, 255, 1);
  4181. box-sizing:border-box;
  4182. border-width:1px;
  4183. border-style:solid;
  4184. border-color:rgba(220, 223, 230, 1);
  4185. border-radius:4px;
  4186. -moz-box-shadow:none;
  4187. -webkit-box-shadow:none;
  4188. box-shadow:none;
  4189. font-family:"SF UI Text", sans-serif;
  4190. font-weight:400;
  4191. font-style:normal;
  4192. font-size:14px;
  4193. color:rgba(0, 0, 0, 0.6470588235294118);
  4194. }
  4195. #u4199 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:435px;
  4199. top:278px;
  4200. width:110px;
  4201. height:32px;
  4202. display:flex;
  4203. font-family:"SF UI Text", sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:14px;
  4207. color:rgba(0, 0, 0, 0.6470588235294118);
  4208. }
  4209. #u4199 .text {
  4210. position:absolute;
  4211. align-self:center;
  4212. padding:2px 2px 2px 2px;
  4213. box-sizing:border-box;
  4214. width:100%;
  4215. }
  4216. #u4199_div.mouseOver {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:110px;
  4222. height:32px;
  4223. background:inherit;
  4224. background-color:rgba(236, 245, 255, 1);
  4225. box-sizing:border-box;
  4226. border-width:1px;
  4227. border-style:solid;
  4228. border-color:rgba(198, 226, 255, 1);
  4229. border-radius:4px;
  4230. -moz-box-shadow:none;
  4231. -webkit-box-shadow:none;
  4232. box-shadow:none;
  4233. font-family:"SF UI Text", sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:14px;
  4237. color:rgba(0, 0, 0, 0.6470588235294118);
  4238. }
  4239. #u4199.mouseOver {
  4240. }
  4241. #u4199_div.mouseDown {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:110px;
  4247. height:32px;
  4248. background:inherit;
  4249. background-color:rgba(236, 245, 255, 1);
  4250. box-sizing:border-box;
  4251. border-width:1px;
  4252. border-style:solid;
  4253. border-color:rgba(58, 142, 230, 1);
  4254. border-radius:4px;
  4255. -moz-box-shadow:none;
  4256. -webkit-box-shadow:none;
  4257. box-shadow:none;
  4258. font-family:"SF UI Text", sans-serif;
  4259. font-weight:400;
  4260. font-style:normal;
  4261. font-size:14px;
  4262. color:rgba(0, 0, 0, 0.6470588235294118);
  4263. }
  4264. #u4199.mouseDown {
  4265. }
  4266. #u4199_div.disabled {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:110px;
  4272. height:32px;
  4273. background:inherit;
  4274. background-color:rgba(255, 255, 255, 1);
  4275. box-sizing:border-box;
  4276. border-width:1px;
  4277. border-style:solid;
  4278. border-color:rgba(235, 238, 245, 1);
  4279. border-radius:4px;
  4280. -moz-box-shadow:none;
  4281. -webkit-box-shadow:none;
  4282. box-shadow:none;
  4283. font-family:"SF UI Text", sans-serif;
  4284. font-weight:400;
  4285. font-style:normal;
  4286. font-size:14px;
  4287. color:rgba(0, 0, 0, 0.6470588235294118);
  4288. }
  4289. #u4199.disabled {
  4290. }
  4291. #u4199_div.mouseOver.mouseDown {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:110px;
  4297. height:32px;
  4298. background:inherit;
  4299. background-color:rgba(236, 245, 255, 1);
  4300. box-sizing:border-box;
  4301. border-width:1px;
  4302. border-style:solid;
  4303. border-color:rgba(58, 142, 230, 1);
  4304. border-radius:4px;
  4305. -moz-box-shadow:none;
  4306. -webkit-box-shadow:none;
  4307. box-shadow:none;
  4308. font-family:"SF UI Text", sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:14px;
  4312. color:rgba(0, 0, 0, 0.6470588235294118);
  4313. }
  4314. #u4199.mouseOver.mouseDown {
  4315. }
  4316. #u4199_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. }
  4321. #u4200_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:51px;
  4327. height:32px;
  4328. background:inherit;
  4329. background-color:rgba(255, 255, 255, 1);
  4330. box-sizing:border-box;
  4331. border-width:1px;
  4332. border-style:solid;
  4333. border-color:rgba(220, 223, 230, 1);
  4334. border-radius:4px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. font-size:12px;
  4339. color:#606266;
  4340. }
  4341. #u4200 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:554px;
  4345. top:278px;
  4346. width:51px;
  4347. height:32px;
  4348. display:flex;
  4349. font-size:12px;
  4350. color:#606266;
  4351. }
  4352. #u4200 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:2px 2px 2px 2px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u4200_div.mouseOver {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:51px;
  4365. height:32px;
  4366. background:inherit;
  4367. background-color:rgba(236, 245, 255, 1);
  4368. box-sizing:border-box;
  4369. border-width:1px;
  4370. border-style:solid;
  4371. border-color:rgba(198, 226, 255, 1);
  4372. border-radius:4px;
  4373. -moz-box-shadow:none;
  4374. -webkit-box-shadow:none;
  4375. box-shadow:none;
  4376. font-size:12px;
  4377. color:#606266;
  4378. }
  4379. #u4200.mouseOver {
  4380. }
  4381. #u4200_div.mouseDown {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:51px;
  4387. height:32px;
  4388. background:inherit;
  4389. background-color:rgba(236, 245, 255, 1);
  4390. box-sizing:border-box;
  4391. border-width:1px;
  4392. border-style:solid;
  4393. border-color:rgba(58, 142, 230, 1);
  4394. border-radius:4px;
  4395. -moz-box-shadow:none;
  4396. -webkit-box-shadow:none;
  4397. box-shadow:none;
  4398. font-size:12px;
  4399. color:#606266;
  4400. }
  4401. #u4200.mouseDown {
  4402. }
  4403. #u4200_div.disabled {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:51px;
  4409. height:32px;
  4410. background:inherit;
  4411. background-color:rgba(255, 255, 255, 1);
  4412. box-sizing:border-box;
  4413. border-width:1px;
  4414. border-style:solid;
  4415. border-color:rgba(235, 238, 245, 1);
  4416. border-radius:4px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. font-size:12px;
  4421. color:#606266;
  4422. }
  4423. #u4200.disabled {
  4424. }
  4425. #u4200_div.mouseOver.mouseDown {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:51px;
  4431. height:32px;
  4432. background:inherit;
  4433. background-color:rgba(236, 245, 255, 1);
  4434. box-sizing:border-box;
  4435. border-width:1px;
  4436. border-style:solid;
  4437. border-color:rgba(58, 142, 230, 1);
  4438. border-radius:4px;
  4439. -moz-box-shadow:none;
  4440. -webkit-box-shadow:none;
  4441. box-shadow:none;
  4442. font-size:12px;
  4443. color:#606266;
  4444. }
  4445. #u4200.mouseOver.mouseDown {
  4446. }
  4447. #u4200_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. }
  4452. #u4201 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:0px;
  4458. height:0px;
  4459. }
  4460. #u4202_div {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:80px;
  4466. height:16px;
  4467. background:inherit;
  4468. background-color:rgba(255, 255, 255, 0);
  4469. border:none;
  4470. border-radius:0px;
  4471. -moz-box-shadow:none;
  4472. -webkit-box-shadow:none;
  4473. box-shadow:none;
  4474. }
  4475. #u4202 {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:324px;
  4479. top:241px;
  4480. width:80px;
  4481. height:16px;
  4482. display:flex;
  4483. }
  4484. #u4202 .text {
  4485. position:absolute;
  4486. align-self:flex-start;
  4487. padding:0px 0px 0px 0px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u4202_text {
  4492. border-width:0px;
  4493. white-space:nowrap;
  4494. text-transform:none;
  4495. }
  4496. #u4203 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:0px;
  4502. height:0px;
  4503. }
  4504. #u4204_div {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:0px;
  4508. top:0px;
  4509. width:42px;
  4510. height:18px;
  4511. background:inherit;
  4512. background-color:rgba(255, 255, 255, 0);
  4513. border:none;
  4514. border-radius:0px;
  4515. -moz-box-shadow:none;
  4516. -webkit-box-shadow:none;
  4517. box-shadow:none;
  4518. font-family:'Microsoft YaHei UI', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. color:#606266;
  4522. }
  4523. #u4204 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:455px;
  4527. top:241px;
  4528. width:42px;
  4529. height:18px;
  4530. display:flex;
  4531. font-family:'Microsoft YaHei UI', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. color:#606266;
  4535. }
  4536. #u4204 .text {
  4537. position:absolute;
  4538. align-self:flex-start;
  4539. padding:0px 0px 0px 0px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u4204_div.selected {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:42px;
  4549. height:18px;
  4550. background:inherit;
  4551. background-color:rgba(255, 255, 255, 0);
  4552. border:none;
  4553. border-radius:0px;
  4554. -moz-box-shadow:none;
  4555. -webkit-box-shadow:none;
  4556. box-shadow:none;
  4557. font-family:'Microsoft YaHei UI', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. color:#606266;
  4561. }
  4562. #u4204.selected {
  4563. }
  4564. #u4204_div.disabled {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:42px;
  4570. height:18px;
  4571. background:inherit;
  4572. background-color:rgba(255, 255, 255, 0);
  4573. border:none;
  4574. border-radius:0px;
  4575. -moz-box-shadow:none;
  4576. -webkit-box-shadow:none;
  4577. box-shadow:none;
  4578. font-family:'Microsoft YaHei UI', sans-serif;
  4579. font-weight:400;
  4580. font-style:normal;
  4581. color:#606266;
  4582. }
  4583. #u4204.disabled {
  4584. }
  4585. #u4204_div.selected.disabled {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:42px;
  4591. height:18px;
  4592. background:inherit;
  4593. background-color:rgba(255, 255, 255, 0);
  4594. border:none;
  4595. border-radius:0px;
  4596. -moz-box-shadow:none;
  4597. -webkit-box-shadow:none;
  4598. box-shadow:none;
  4599. font-family:'Microsoft YaHei UI', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. color:#606266;
  4603. }
  4604. #u4204.selected.disabled {
  4605. }
  4606. #u4204_text {
  4607. border-width:0px;
  4608. white-space:nowrap;
  4609. text-transform:none;
  4610. }
  4611. #u4205_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:13px;
  4617. height:13px;
  4618. }
  4619. #u4205 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:436px;
  4623. top:244px;
  4624. width:13px;
  4625. height:13px;
  4626. display:flex;
  4627. }
  4628. #u4205 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 2px 2px 2px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u4205_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u4206 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:0px;
  4647. height:0px;
  4648. }
  4649. #u4207_div {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:70px;
  4655. height:18px;
  4656. background:inherit;
  4657. background-color:rgba(255, 255, 255, 0);
  4658. border:none;
  4659. border-radius:0px;
  4660. -moz-box-shadow:none;
  4661. -webkit-box-shadow:none;
  4662. box-shadow:none;
  4663. font-family:'Microsoft YaHei UI', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. color:#606266;
  4667. }
  4668. #u4207 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:536px;
  4672. top:241px;
  4673. width:70px;
  4674. height:18px;
  4675. display:flex;
  4676. font-family:'Microsoft YaHei UI', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. color:#606266;
  4680. }
  4681. #u4207 .text {
  4682. position:absolute;
  4683. align-self:flex-start;
  4684. padding:0px 0px 0px 0px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u4207_div.selected {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:70px;
  4694. height:18px;
  4695. background:inherit;
  4696. background-color:rgba(255, 255, 255, 0);
  4697. border:none;
  4698. border-radius:0px;
  4699. -moz-box-shadow:none;
  4700. -webkit-box-shadow:none;
  4701. box-shadow:none;
  4702. font-family:'Microsoft YaHei UI', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. color:#606266;
  4706. }
  4707. #u4207.selected {
  4708. }
  4709. #u4207_div.disabled {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:70px;
  4715. height:18px;
  4716. background:inherit;
  4717. background-color:rgba(255, 255, 255, 0);
  4718. border:none;
  4719. border-radius:0px;
  4720. -moz-box-shadow:none;
  4721. -webkit-box-shadow:none;
  4722. box-shadow:none;
  4723. font-family:'Microsoft YaHei UI', sans-serif;
  4724. font-weight:400;
  4725. font-style:normal;
  4726. color:#606266;
  4727. }
  4728. #u4207.disabled {
  4729. }
  4730. #u4207_div.selected.disabled {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:70px;
  4736. height:18px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. border:none;
  4740. border-radius:0px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'Microsoft YaHei UI', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. color:#606266;
  4748. }
  4749. #u4207.selected.disabled {
  4750. }
  4751. #u4207_text {
  4752. border-width:0px;
  4753. white-space:nowrap;
  4754. text-transform:none;
  4755. }
  4756. #u4208_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:13px;
  4762. height:13px;
  4763. }
  4764. #u4208 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:517px;
  4768. top:244px;
  4769. width:13px;
  4770. height:13px;
  4771. display:flex;
  4772. }
  4773. #u4208 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 2px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u4208_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u4209 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:0px;
  4792. height:0px;
  4793. }
  4794. #u4210_div {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:42px;
  4800. height:18px;
  4801. background:inherit;
  4802. background-color:rgba(255, 255, 255, 0);
  4803. border:none;
  4804. border-radius:0px;
  4805. -moz-box-shadow:none;
  4806. -webkit-box-shadow:none;
  4807. box-shadow:none;
  4808. font-family:'Microsoft YaHei UI', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. color:#606266;
  4812. }
  4813. #u4210 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:788px;
  4817. top:241px;
  4818. width:42px;
  4819. height:18px;
  4820. display:flex;
  4821. font-family:'Microsoft YaHei UI', sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. color:#606266;
  4825. }
  4826. #u4210 .text {
  4827. position:absolute;
  4828. align-self:flex-start;
  4829. padding:0px 0px 0px 0px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u4210_div.selected {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:42px;
  4839. height:18px;
  4840. background:inherit;
  4841. background-color:rgba(255, 255, 255, 0);
  4842. border:none;
  4843. border-radius:0px;
  4844. -moz-box-shadow:none;
  4845. -webkit-box-shadow:none;
  4846. box-shadow:none;
  4847. font-family:'Microsoft YaHei UI', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. color:#606266;
  4851. }
  4852. #u4210.selected {
  4853. }
  4854. #u4210_div.disabled {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:42px;
  4860. height:18px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border:none;
  4864. border-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'Microsoft YaHei UI', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. color:#606266;
  4872. }
  4873. #u4210.disabled {
  4874. }
  4875. #u4210_div.selected.disabled {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:42px;
  4881. height:18px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 0);
  4884. border:none;
  4885. border-radius:0px;
  4886. -moz-box-shadow:none;
  4887. -webkit-box-shadow:none;
  4888. box-shadow:none;
  4889. font-family:'Microsoft YaHei UI', sans-serif;
  4890. font-weight:400;
  4891. font-style:normal;
  4892. color:#606266;
  4893. }
  4894. #u4210.selected.disabled {
  4895. }
  4896. #u4210_text {
  4897. border-width:0px;
  4898. white-space:nowrap;
  4899. text-transform:none;
  4900. }
  4901. #u4211_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:13px;
  4907. height:13px;
  4908. }
  4909. #u4211 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:769px;
  4913. top:244px;
  4914. width:13px;
  4915. height:13px;
  4916. display:flex;
  4917. }
  4918. #u4211 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u4211_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u4212 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:0px;
  4937. height:0px;
  4938. }
  4939. #u4213_div {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:88px;
  4945. height:32px;
  4946. background:inherit;
  4947. background-color:rgba(40, 54, 254, 1);
  4948. border:none;
  4949. border-radius:4px;
  4950. -moz-box-shadow:none;
  4951. -webkit-box-shadow:none;
  4952. box-shadow:none;
  4953. font-family:'Microsoft Tai Le', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:14px;
  4957. color:#FFFFFF;
  4958. line-height:22px;
  4959. }
  4960. #u4213 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:424px;
  4964. top:827px;
  4965. width:88px;
  4966. height:32px;
  4967. display:flex;
  4968. font-family:'Microsoft Tai Le', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:14px;
  4972. color:#FFFFFF;
  4973. line-height:22px;
  4974. }
  4975. #u4213 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:0px 16px 0px 16px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u4213_text {
  4983. border-width:0px;
  4984. word-wrap:break-word;
  4985. text-transform:none;
  4986. }
  4987. #u4214_div {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:80px;
  4993. height:32px;
  4994. background:inherit;
  4995. background-color:rgba(255, 255, 255, 1);
  4996. box-sizing:border-box;
  4997. border-width:1px;
  4998. border-style:solid;
  4999. border-color:rgba(220, 223, 230, 1);
  5000. border-radius:4px;
  5001. -moz-box-shadow:none;
  5002. -webkit-box-shadow:none;
  5003. box-shadow:none;
  5004. font-size:12px;
  5005. color:#606266;
  5006. }
  5007. #u4214 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:332px;
  5011. top:827px;
  5012. width:80px;
  5013. height:32px;
  5014. display:flex;
  5015. font-size:12px;
  5016. color:#606266;
  5017. }
  5018. #u4214 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u4214_div.mouseOver {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:80px;
  5031. height:32px;
  5032. background:inherit;
  5033. background-color:rgba(236, 245, 255, 1);
  5034. box-sizing:border-box;
  5035. border-width:1px;
  5036. border-style:solid;
  5037. border-color:rgba(198, 226, 255, 1);
  5038. border-radius:4px;
  5039. -moz-box-shadow:none;
  5040. -webkit-box-shadow:none;
  5041. box-shadow:none;
  5042. font-size:12px;
  5043. color:#606266;
  5044. }
  5045. #u4214.mouseOver {
  5046. }
  5047. #u4214_div.mouseDown {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:80px;
  5053. height:32px;
  5054. background:inherit;
  5055. background-color:rgba(236, 245, 255, 1);
  5056. box-sizing:border-box;
  5057. border-width:1px;
  5058. border-style:solid;
  5059. border-color:rgba(58, 142, 230, 1);
  5060. border-radius:4px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. font-size:12px;
  5065. color:#606266;
  5066. }
  5067. #u4214.mouseDown {
  5068. }
  5069. #u4214_div.disabled {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:80px;
  5075. height:32px;
  5076. background:inherit;
  5077. background-color:rgba(255, 255, 255, 1);
  5078. box-sizing:border-box;
  5079. border-width:1px;
  5080. border-style:solid;
  5081. border-color:rgba(235, 238, 245, 1);
  5082. border-radius:4px;
  5083. -moz-box-shadow:none;
  5084. -webkit-box-shadow:none;
  5085. box-shadow:none;
  5086. font-size:12px;
  5087. color:#606266;
  5088. }
  5089. #u4214.disabled {
  5090. }
  5091. #u4214_div.mouseOver.mouseDown {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:80px;
  5097. height:32px;
  5098. background:inherit;
  5099. background-color:rgba(236, 245, 255, 1);
  5100. box-sizing:border-box;
  5101. border-width:1px;
  5102. border-style:solid;
  5103. border-color:rgba(58, 142, 230, 1);
  5104. border-radius:4px;
  5105. -moz-box-shadow:none;
  5106. -webkit-box-shadow:none;
  5107. box-shadow:none;
  5108. font-size:12px;
  5109. color:#606266;
  5110. }
  5111. #u4214.mouseOver.mouseDown {
  5112. }
  5113. #u4214_text {
  5114. border-width:0px;
  5115. word-wrap:break-word;
  5116. text-transform:none;
  5117. }
  5118. #u4215 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:0px;
  5124. height:0px;
  5125. }
  5126. #u4216 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:0px;
  5132. height:0px;
  5133. }
  5134. #u4217_div {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:130px;
  5140. height:36px;
  5141. background:inherit;
  5142. background-color:rgba(255, 255, 255, 1);
  5143. box-sizing:border-box;
  5144. border-width:1px;
  5145. border-style:solid;
  5146. border-color:rgba(220, 223, 230, 1);
  5147. border-radius:4px;
  5148. -moz-box-shadow:none;
  5149. -webkit-box-shadow:none;
  5150. box-shadow:none;
  5151. font-size:14px;
  5152. color:#C0C4CC;
  5153. text-align:left;
  5154. }
  5155. #u4217 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:432px;
  5159. top:654px;
  5160. width:130px;
  5161. height:36px;
  5162. display:flex;
  5163. font-size:14px;
  5164. color:#C0C4CC;
  5165. text-align:left;
  5166. }
  5167. #u4217 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:2px 2px 2px 13px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u4217_div.mouseOver {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:130px;
  5180. height:36px;
  5181. background:inherit;
  5182. background-color:rgba(255, 255, 255, 1);
  5183. box-sizing:border-box;
  5184. border-width:1px;
  5185. border-style:solid;
  5186. border-color:rgba(192, 196, 204, 1);
  5187. border-radius:4px;
  5188. -moz-box-shadow:none;
  5189. -webkit-box-shadow:none;
  5190. box-shadow:none;
  5191. font-size:14px;
  5192. color:#C0C4CC;
  5193. text-align:left;
  5194. }
  5195. #u4217.mouseOver {
  5196. }
  5197. #u4217_div.selected {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:0px;
  5201. top:0px;
  5202. width:130px;
  5203. height:36px;
  5204. background:inherit;
  5205. background-color:rgba(255, 255, 255, 1);
  5206. box-sizing:border-box;
  5207. border-width:1px;
  5208. border-style:solid;
  5209. border-color:rgba(64, 158, 255, 1);
  5210. border-radius:4px;
  5211. -moz-box-shadow:none;
  5212. -webkit-box-shadow:none;
  5213. box-shadow:none;
  5214. font-size:14px;
  5215. color:#C0C4CC;
  5216. text-align:left;
  5217. }
  5218. #u4217.selected {
  5219. }
  5220. #u4217_div.disabled {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:130px;
  5226. height:36px;
  5227. background:inherit;
  5228. background-color:rgba(245, 247, 250, 1);
  5229. box-sizing:border-box;
  5230. border-width:1px;
  5231. border-style:solid;
  5232. border-color:rgba(220, 223, 230, 1);
  5233. border-radius:4px;
  5234. -moz-box-shadow:none;
  5235. -webkit-box-shadow:none;
  5236. box-shadow:none;
  5237. font-size:14px;
  5238. color:#C0C4CC;
  5239. text-align:left;
  5240. }
  5241. #u4217.disabled {
  5242. }
  5243. #u4217_div.mouseOver.selected {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:130px;
  5249. height:36px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 1);
  5252. box-sizing:border-box;
  5253. border-width:1px;
  5254. border-style:solid;
  5255. border-color:rgba(64, 158, 255, 1);
  5256. border-radius:4px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-size:14px;
  5261. color:#C0C4CC;
  5262. text-align:left;
  5263. }
  5264. #u4217.mouseOver.selected {
  5265. }
  5266. #u4217_div.selected.disabled {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:130px;
  5272. height:36px;
  5273. background:inherit;
  5274. background-color:rgba(245, 247, 250, 1);
  5275. box-sizing:border-box;
  5276. border-width:1px;
  5277. border-style:solid;
  5278. border-color:rgba(64, 158, 255, 1);
  5279. border-radius:4px;
  5280. -moz-box-shadow:none;
  5281. -webkit-box-shadow:none;
  5282. box-shadow:none;
  5283. font-size:14px;
  5284. color:#C0C4CC;
  5285. text-align:left;
  5286. }
  5287. #u4217.selected.disabled {
  5288. }
  5289. #u4217_text {
  5290. border-width:0px;
  5291. word-wrap:break-word;
  5292. text-transform:none;
  5293. }
  5294. #u4218 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:432px;
  5298. top:690px;
  5299. width:130px;
  5300. height:102px;
  5301. visibility:hidden;
  5302. }
  5303. #u4218_state0 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:130px;
  5309. height:102px;
  5310. -ms-overflow-x:hidden;
  5311. overflow-x:hidden;
  5312. -ms-overflow-y:hidden;
  5313. overflow-y:hidden;
  5314. background-image:none;
  5315. border:none;
  5316. border-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. }
  5321. #u4218_state0_content {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:1px;
  5327. height:1px;
  5328. }
  5329. #u4219_div {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:130px;
  5335. height:90px;
  5336. background:inherit;
  5337. background-color:rgba(255, 255, 255, 1);
  5338. box-sizing:border-box;
  5339. border-width:1px;
  5340. border-style:solid;
  5341. border-color:rgba(220, 223, 230, 1);
  5342. border-radius:2px;
  5343. -moz-box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  5344. -webkit-box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  5345. box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  5346. }
  5347. #u4219 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:4px;
  5352. width:130px;
  5353. height:90px;
  5354. display:flex;
  5355. }
  5356. #u4219 .text {
  5357. position:absolute;
  5358. align-self:center;
  5359. padding:2px 2px 2px 2px;
  5360. box-sizing:border-box;
  5361. width:100%;
  5362. }
  5363. #u4219_text {
  5364. border-width:0px;
  5365. word-wrap:break-word;
  5366. text-transform:none;
  5367. visibility:hidden;
  5368. }
  5369. #u4220_img {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:7px;
  5375. height:4px;
  5376. }
  5377. #u4220 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:22px;
  5381. top:0px;
  5382. width:7px;
  5383. height:4px;
  5384. display:flex;
  5385. }
  5386. #u4220 .text {
  5387. position:absolute;
  5388. align-self:center;
  5389. padding:2px 2px 2px 2px;
  5390. box-sizing:border-box;
  5391. width:100%;
  5392. }
  5393. #u4220_text {
  5394. border-width:0px;
  5395. word-wrap:break-word;
  5396. text-transform:none;
  5397. visibility:hidden;
  5398. }
  5399. #u4221 label {
  5400. left:0px;
  5401. width:100%;
  5402. }
  5403. #u4221_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:2px;
  5408. width:13px;
  5409. height:13px;
  5410. }
  5411. #u4221 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:6px;
  5415. top:8px;
  5416. width:92px;
  5417. height:15px;
  5418. display:flex;
  5419. }
  5420. #u4221 .text {
  5421. position:absolute;
  5422. align-self:flex-start;
  5423. padding:0px 2px 0px 2px;
  5424. box-sizing:border-box;
  5425. }
  5426. #u4221_img.selected {
  5427. }
  5428. #u4221.selected {
  5429. }
  5430. #u4221_img.disabled {
  5431. }
  5432. #u4221.disabled {
  5433. }
  5434. #u4221_img.selected.error {
  5435. }
  5436. #u4221.selected.error {
  5437. }
  5438. #u4221_img.selected.hint {
  5439. }
  5440. #u4221.selected.hint {
  5441. }
  5442. #u4221_img.selected.error.hint {
  5443. }
  5444. #u4221.selected.error.hint {
  5445. }
  5446. #u4221_img.mouseOver.selected {
  5447. }
  5448. #u4221.mouseOver.selected {
  5449. }
  5450. #u4221_img.mouseOver.selected.error {
  5451. }
  5452. #u4221.mouseOver.selected.error {
  5453. }
  5454. #u4221_img.mouseOver.selected.hint {
  5455. }
  5456. #u4221.mouseOver.selected.hint {
  5457. }
  5458. #u4221_img.mouseOver.selected.error.hint {
  5459. }
  5460. #u4221.mouseOver.selected.error.hint {
  5461. }
  5462. #u4221_img.mouseDown.selected {
  5463. }
  5464. #u4221.mouseDown.selected {
  5465. }
  5466. #u4221_img.mouseDown.selected.error {
  5467. }
  5468. #u4221.mouseDown.selected.error {
  5469. }
  5470. #u4221_img.mouseDown.selected.hint {
  5471. }
  5472. #u4221.mouseDown.selected.hint {
  5473. }
  5474. #u4221_img.mouseDown.selected.error.hint {
  5475. }
  5476. #u4221.mouseDown.selected.error.hint {
  5477. }
  5478. #u4221_img.mouseOver.mouseDown.selected {
  5479. }
  5480. #u4221.mouseOver.mouseDown.selected {
  5481. }
  5482. #u4221_img.mouseOver.mouseDown.selected.error {
  5483. }
  5484. #u4221.mouseOver.mouseDown.selected.error {
  5485. }
  5486. #u4221_img.mouseOver.mouseDown.selected.hint {
  5487. }
  5488. #u4221.mouseOver.mouseDown.selected.hint {
  5489. }
  5490. #u4221_img.mouseOver.mouseDown.selected.error.hint {
  5491. }
  5492. #u4221.mouseOver.mouseDown.selected.error.hint {
  5493. }
  5494. #u4221_img.focused.selected {
  5495. }
  5496. #u4221.focused.selected {
  5497. }
  5498. #u4221_img.focused.selected.error {
  5499. }
  5500. #u4221.focused.selected.error {
  5501. }
  5502. #u4221_img.focused.selected.hint {
  5503. }
  5504. #u4221.focused.selected.hint {
  5505. }
  5506. #u4221_img.focused.selected.error.hint {
  5507. }
  5508. #u4221.focused.selected.error.hint {
  5509. }
  5510. #u4221_img.selected.disabled {
  5511. }
  5512. #u4221.selected.disabled {
  5513. }
  5514. #u4221_img.selected.hint.disabled {
  5515. }
  5516. #u4221.selected.hint.disabled {
  5517. }
  5518. #u4221_img.selected.error.disabled {
  5519. }
  5520. #u4221.selected.error.disabled {
  5521. }
  5522. #u4221_img.selected.error.hint.disabled {
  5523. }
  5524. #u4221.selected.error.hint.disabled {
  5525. }
  5526. #u4221_text {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:13px;
  5530. top:0px;
  5531. width:75px;
  5532. word-wrap:break-word;
  5533. text-transform:none;
  5534. }
  5535. #u4221_input {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:0px;
  5541. height:0px;
  5542. opacity:0;
  5543. }
  5544. #u4222 label {
  5545. left:0px;
  5546. width:100%;
  5547. }
  5548. #u4222_img {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:2px;
  5553. width:13px;
  5554. height:13px;
  5555. }
  5556. #u4222 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:6px;
  5560. top:29px;
  5561. width:92px;
  5562. height:15px;
  5563. display:flex;
  5564. }
  5565. #u4222 .text {
  5566. position:absolute;
  5567. align-self:flex-start;
  5568. padding:0px 2px 0px 2px;
  5569. box-sizing:border-box;
  5570. }
  5571. #u4222_img.selected {
  5572. }
  5573. #u4222.selected {
  5574. }
  5575. #u4222_img.disabled {
  5576. }
  5577. #u4222.disabled {
  5578. }
  5579. #u4222_img.selected.error {
  5580. }
  5581. #u4222.selected.error {
  5582. }
  5583. #u4222_img.selected.hint {
  5584. }
  5585. #u4222.selected.hint {
  5586. }
  5587. #u4222_img.selected.error.hint {
  5588. }
  5589. #u4222.selected.error.hint {
  5590. }
  5591. #u4222_img.mouseOver.selected {
  5592. }
  5593. #u4222.mouseOver.selected {
  5594. }
  5595. #u4222_img.mouseOver.selected.error {
  5596. }
  5597. #u4222.mouseOver.selected.error {
  5598. }
  5599. #u4222_img.mouseOver.selected.hint {
  5600. }
  5601. #u4222.mouseOver.selected.hint {
  5602. }
  5603. #u4222_img.mouseOver.selected.error.hint {
  5604. }
  5605. #u4222.mouseOver.selected.error.hint {
  5606. }
  5607. #u4222_img.mouseDown.selected {
  5608. }
  5609. #u4222.mouseDown.selected {
  5610. }
  5611. #u4222_img.mouseDown.selected.error {
  5612. }
  5613. #u4222.mouseDown.selected.error {
  5614. }
  5615. #u4222_img.mouseDown.selected.hint {
  5616. }
  5617. #u4222.mouseDown.selected.hint {
  5618. }
  5619. #u4222_img.mouseDown.selected.error.hint {
  5620. }
  5621. #u4222.mouseDown.selected.error.hint {
  5622. }
  5623. #u4222_img.mouseOver.mouseDown.selected {
  5624. }
  5625. #u4222.mouseOver.mouseDown.selected {
  5626. }
  5627. #u4222_img.mouseOver.mouseDown.selected.error {
  5628. }
  5629. #u4222.mouseOver.mouseDown.selected.error {
  5630. }
  5631. #u4222_img.mouseOver.mouseDown.selected.hint {
  5632. }
  5633. #u4222.mouseOver.mouseDown.selected.hint {
  5634. }
  5635. #u4222_img.mouseOver.mouseDown.selected.error.hint {
  5636. }
  5637. #u4222.mouseOver.mouseDown.selected.error.hint {
  5638. }
  5639. #u4222_img.focused.selected {
  5640. }
  5641. #u4222.focused.selected {
  5642. }
  5643. #u4222_img.focused.selected.error {
  5644. }
  5645. #u4222.focused.selected.error {
  5646. }
  5647. #u4222_img.focused.selected.hint {
  5648. }
  5649. #u4222.focused.selected.hint {
  5650. }
  5651. #u4222_img.focused.selected.error.hint {
  5652. }
  5653. #u4222.focused.selected.error.hint {
  5654. }
  5655. #u4222_img.selected.disabled {
  5656. }
  5657. #u4222.selected.disabled {
  5658. }
  5659. #u4222_img.selected.hint.disabled {
  5660. }
  5661. #u4222.selected.hint.disabled {
  5662. }
  5663. #u4222_img.selected.error.disabled {
  5664. }
  5665. #u4222.selected.error.disabled {
  5666. }
  5667. #u4222_img.selected.error.hint.disabled {
  5668. }
  5669. #u4222.selected.error.hint.disabled {
  5670. }
  5671. #u4222_text {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:13px;
  5675. top:0px;
  5676. width:75px;
  5677. word-wrap:break-word;
  5678. text-transform:none;
  5679. }
  5680. #u4222_input {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:0px;
  5686. height:0px;
  5687. opacity:0;
  5688. }
  5689. #u4223 label {
  5690. left:0px;
  5691. width:100%;
  5692. }
  5693. #u4223_img {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:0px;
  5697. top:2px;
  5698. width:13px;
  5699. height:13px;
  5700. }
  5701. #u4223 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:6px;
  5705. top:50px;
  5706. width:92px;
  5707. height:15px;
  5708. display:flex;
  5709. }
  5710. #u4223 .text {
  5711. position:absolute;
  5712. align-self:flex-start;
  5713. padding:0px 2px 0px 2px;
  5714. box-sizing:border-box;
  5715. }
  5716. #u4223_img.selected {
  5717. }
  5718. #u4223.selected {
  5719. }
  5720. #u4223_img.disabled {
  5721. }
  5722. #u4223.disabled {
  5723. }
  5724. #u4223_img.selected.error {
  5725. }
  5726. #u4223.selected.error {
  5727. }
  5728. #u4223_img.selected.hint {
  5729. }
  5730. #u4223.selected.hint {
  5731. }
  5732. #u4223_img.selected.error.hint {
  5733. }
  5734. #u4223.selected.error.hint {
  5735. }
  5736. #u4223_img.mouseOver.selected {
  5737. }
  5738. #u4223.mouseOver.selected {
  5739. }
  5740. #u4223_img.mouseOver.selected.error {
  5741. }
  5742. #u4223.mouseOver.selected.error {
  5743. }
  5744. #u4223_img.mouseOver.selected.hint {
  5745. }
  5746. #u4223.mouseOver.selected.hint {
  5747. }
  5748. #u4223_img.mouseOver.selected.error.hint {
  5749. }
  5750. #u4223.mouseOver.selected.error.hint {
  5751. }
  5752. #u4223_img.mouseDown.selected {
  5753. }
  5754. #u4223.mouseDown.selected {
  5755. }
  5756. #u4223_img.mouseDown.selected.error {
  5757. }
  5758. #u4223.mouseDown.selected.error {
  5759. }
  5760. #u4223_img.mouseDown.selected.hint {
  5761. }
  5762. #u4223.mouseDown.selected.hint {
  5763. }
  5764. #u4223_img.mouseDown.selected.error.hint {
  5765. }
  5766. #u4223.mouseDown.selected.error.hint {
  5767. }
  5768. #u4223_img.mouseOver.mouseDown.selected {
  5769. }
  5770. #u4223.mouseOver.mouseDown.selected {
  5771. }
  5772. #u4223_img.mouseOver.mouseDown.selected.error {
  5773. }
  5774. #u4223.mouseOver.mouseDown.selected.error {
  5775. }
  5776. #u4223_img.mouseOver.mouseDown.selected.hint {
  5777. }
  5778. #u4223.mouseOver.mouseDown.selected.hint {
  5779. }
  5780. #u4223_img.mouseOver.mouseDown.selected.error.hint {
  5781. }
  5782. #u4223.mouseOver.mouseDown.selected.error.hint {
  5783. }
  5784. #u4223_img.focused.selected {
  5785. }
  5786. #u4223.focused.selected {
  5787. }
  5788. #u4223_img.focused.selected.error {
  5789. }
  5790. #u4223.focused.selected.error {
  5791. }
  5792. #u4223_img.focused.selected.hint {
  5793. }
  5794. #u4223.focused.selected.hint {
  5795. }
  5796. #u4223_img.focused.selected.error.hint {
  5797. }
  5798. #u4223.focused.selected.error.hint {
  5799. }
  5800. #u4223_img.selected.disabled {
  5801. }
  5802. #u4223.selected.disabled {
  5803. }
  5804. #u4223_img.selected.hint.disabled {
  5805. }
  5806. #u4223.selected.hint.disabled {
  5807. }
  5808. #u4223_img.selected.error.disabled {
  5809. }
  5810. #u4223.selected.error.disabled {
  5811. }
  5812. #u4223_img.selected.error.hint.disabled {
  5813. }
  5814. #u4223.selected.error.hint.disabled {
  5815. }
  5816. #u4223_text {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:13px;
  5820. top:0px;
  5821. width:75px;
  5822. word-wrap:break-word;
  5823. text-transform:none;
  5824. }
  5825. #u4223_input {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:0px;
  5831. height:0px;
  5832. opacity:0;
  5833. }
  5834. #u4224 label {
  5835. left:0px;
  5836. width:100%;
  5837. }
  5838. #u4224_img {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:2px;
  5843. width:13px;
  5844. height:13px;
  5845. }
  5846. #u4224 {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:6px;
  5850. top:71px;
  5851. width:92px;
  5852. height:15px;
  5853. display:flex;
  5854. }
  5855. #u4224 .text {
  5856. position:absolute;
  5857. align-self:flex-start;
  5858. padding:0px 2px 0px 2px;
  5859. box-sizing:border-box;
  5860. }
  5861. #u4224_img.selected {
  5862. }
  5863. #u4224.selected {
  5864. }
  5865. #u4224_img.disabled {
  5866. }
  5867. #u4224.disabled {
  5868. }
  5869. #u4224_img.selected.error {
  5870. }
  5871. #u4224.selected.error {
  5872. }
  5873. #u4224_img.selected.hint {
  5874. }
  5875. #u4224.selected.hint {
  5876. }
  5877. #u4224_img.selected.error.hint {
  5878. }
  5879. #u4224.selected.error.hint {
  5880. }
  5881. #u4224_img.mouseOver.selected {
  5882. }
  5883. #u4224.mouseOver.selected {
  5884. }
  5885. #u4224_img.mouseOver.selected.error {
  5886. }
  5887. #u4224.mouseOver.selected.error {
  5888. }
  5889. #u4224_img.mouseOver.selected.hint {
  5890. }
  5891. #u4224.mouseOver.selected.hint {
  5892. }
  5893. #u4224_img.mouseOver.selected.error.hint {
  5894. }
  5895. #u4224.mouseOver.selected.error.hint {
  5896. }
  5897. #u4224_img.mouseDown.selected {
  5898. }
  5899. #u4224.mouseDown.selected {
  5900. }
  5901. #u4224_img.mouseDown.selected.error {
  5902. }
  5903. #u4224.mouseDown.selected.error {
  5904. }
  5905. #u4224_img.mouseDown.selected.hint {
  5906. }
  5907. #u4224.mouseDown.selected.hint {
  5908. }
  5909. #u4224_img.mouseDown.selected.error.hint {
  5910. }
  5911. #u4224.mouseDown.selected.error.hint {
  5912. }
  5913. #u4224_img.mouseOver.mouseDown.selected {
  5914. }
  5915. #u4224.mouseOver.mouseDown.selected {
  5916. }
  5917. #u4224_img.mouseOver.mouseDown.selected.error {
  5918. }
  5919. #u4224.mouseOver.mouseDown.selected.error {
  5920. }
  5921. #u4224_img.mouseOver.mouseDown.selected.hint {
  5922. }
  5923. #u4224.mouseOver.mouseDown.selected.hint {
  5924. }
  5925. #u4224_img.mouseOver.mouseDown.selected.error.hint {
  5926. }
  5927. #u4224.mouseOver.mouseDown.selected.error.hint {
  5928. }
  5929. #u4224_img.focused.selected {
  5930. }
  5931. #u4224.focused.selected {
  5932. }
  5933. #u4224_img.focused.selected.error {
  5934. }
  5935. #u4224.focused.selected.error {
  5936. }
  5937. #u4224_img.focused.selected.hint {
  5938. }
  5939. #u4224.focused.selected.hint {
  5940. }
  5941. #u4224_img.focused.selected.error.hint {
  5942. }
  5943. #u4224.focused.selected.error.hint {
  5944. }
  5945. #u4224_img.selected.disabled {
  5946. }
  5947. #u4224.selected.disabled {
  5948. }
  5949. #u4224_img.selected.hint.disabled {
  5950. }
  5951. #u4224.selected.hint.disabled {
  5952. }
  5953. #u4224_img.selected.error.disabled {
  5954. }
  5955. #u4224.selected.error.disabled {
  5956. }
  5957. #u4224_img.selected.error.hint.disabled {
  5958. }
  5959. #u4224.selected.error.hint.disabled {
  5960. }
  5961. #u4224_text {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:13px;
  5965. top:0px;
  5966. width:75px;
  5967. word-wrap:break-word;
  5968. text-transform:none;
  5969. }
  5970. #u4224_input {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:0px;
  5976. height:0px;
  5977. opacity:0;
  5978. }
  5979. #u4225_img {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:10px;
  5985. height:6px;
  5986. }
  5987. #u4225 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:546px;
  5991. top:669px;
  5992. width:10px;
  5993. height:6px;
  5994. display:flex;
  5995. }
  5996. #u4225 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:2px 2px 2px 20px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u4225_text {
  6004. border-width:0px;
  6005. word-wrap:break-word;
  6006. text-transform:none;
  6007. visibility:hidden;
  6008. }
  6009. #u4226_div {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:0px;
  6013. top:0px;
  6014. width:80px;
  6015. height:16px;
  6016. background:inherit;
  6017. background-color:rgba(255, 255, 255, 0);
  6018. border:none;
  6019. border-radius:0px;
  6020. -moz-box-shadow:none;
  6021. -webkit-box-shadow:none;
  6022. box-shadow:none;
  6023. }
  6024. #u4226 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:324px;
  6028. top:664px;
  6029. width:80px;
  6030. height:16px;
  6031. display:flex;
  6032. }
  6033. #u4226 .text {
  6034. position:absolute;
  6035. align-self:flex-start;
  6036. padding:0px 0px 0px 0px;
  6037. box-sizing:border-box;
  6038. width:100%;
  6039. }
  6040. #u4226_text {
  6041. border-width:0px;
  6042. white-space:nowrap;
  6043. text-transform:none;
  6044. }