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. #u3686 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u3687_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. #u3687 {
  43. border-width:0px;
  44. position:absolute;
  45. left:280px;
  46. top:37px;
  47. width:1184px;
  48. height:64px;
  49. display:flex;
  50. }
  51. #u3687 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u3687_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u3688_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:20px;
  70. height:15px;
  71. }
  72. #u3688 {
  73. border-width:0px;
  74. position:absolute;
  75. left:308px;
  76. top:62px;
  77. width:20px;
  78. height:15px;
  79. display:flex;
  80. }
  81. #u3688 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u3688_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u3689 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u3690_img {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:24px;
  108. height:24px;
  109. }
  110. #u3690 {
  111. border-width:0px;
  112. position:absolute;
  113. left:1341px;
  114. top:58px;
  115. width:24px;
  116. height:24px;
  117. display:flex;
  118. }
  119. #u3690 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u3690_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u3691_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. #u3691 {
  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. #u3691 .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. #u3691_text {
  168. border-width:0px;
  169. white-space:nowrap;
  170. text-transform:none;
  171. }
  172. #u3692_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. #u3692 {
  188. border-width:0px;
  189. position:absolute;
  190. left:24px;
  191. top:37px;
  192. width:256px;
  193. height:984px;
  194. display:flex;
  195. }
  196. #u3692 .text {
  197. position:absolute;
  198. align-self:center;
  199. padding:2px 2px 2px 2px;
  200. box-sizing:border-box;
  201. width:100%;
  202. }
  203. #u3692_text {
  204. border-width:0px;
  205. word-wrap:break-word;
  206. text-transform:none;
  207. visibility:hidden;
  208. }
  209. #u3693_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:256px;
  215. height:65px;
  216. }
  217. #u3693 {
  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. #u3693 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:0px 0px 0px 68px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u3693_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u3694 {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:0px;
  251. height:0px;
  252. }
  253. #u3695_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. #u3695 {
  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. #u3695 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:16px 2px 16px 50px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u3695_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. }
  303. #u3696_img {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:14px;
  309. height:14px;
  310. }
  311. #u3696 {
  312. border-width:0px;
  313. position:absolute;
  314. left:48px;
  315. top:122px;
  316. width:14px;
  317. height:14px;
  318. display:flex;
  319. }
  320. #u3696 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u3696_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. visibility:hidden;
  332. }
  333. #u3697_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:7px;
  339. height:14px;
  340. }
  341. #u3697 {
  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. #u3697 .text {
  356. position:absolute;
  357. align-self:center;
  358. padding:0px 0px 0px 0px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u3697_text {
  363. border-width:0px;
  364. white-space:nowrap;
  365. text-transform:none;
  366. }
  367. #u3698 {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:0px;
  373. height:0px;
  374. }
  375. #u3699_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. #u3699 {
  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. #u3699 .text {
  414. position:absolute;
  415. align-self:center;
  416. padding:16px 2px 16px 50px;
  417. box-sizing:border-box;
  418. width:100%;
  419. }
  420. #u3699_text {
  421. border-width:0px;
  422. word-wrap:break-word;
  423. text-transform:none;
  424. }
  425. #u3700_img {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:14px;
  431. height:14px;
  432. }
  433. #u3700 {
  434. border-width:0px;
  435. position:absolute;
  436. left:48px;
  437. top:825px;
  438. width:14px;
  439. height:14px;
  440. display:flex;
  441. }
  442. #u3700 .text {
  443. position:absolute;
  444. align-self:center;
  445. padding:2px 2px 2px 2px;
  446. box-sizing:border-box;
  447. width:100%;
  448. }
  449. #u3700_text {
  450. border-width:0px;
  451. word-wrap:break-word;
  452. text-transform:none;
  453. visibility:hidden;
  454. }
  455. #u3701_img {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:7px;
  461. height:14px;
  462. }
  463. #u3701 {
  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. #u3701 .text {
  478. position:absolute;
  479. align-self:center;
  480. padding:0px 0px 0px 0px;
  481. box-sizing:border-box;
  482. width:100%;
  483. }
  484. #u3701_text {
  485. border-width:0px;
  486. white-space:nowrap;
  487. text-transform:none;
  488. }
  489. #u3702 {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:0px;
  495. height:0px;
  496. }
  497. #u3703_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. #u3703 {
  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. #u3703 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:16px 2px 16px 50px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u3703_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. }
  547. #u3704_img {
  548. border-width:0px;
  549. position:absolute;
  550. left:0px;
  551. top:0px;
  552. width:14px;
  553. height:14px;
  554. }
  555. #u3704 {
  556. border-width:0px;
  557. position:absolute;
  558. left:48px;
  559. top:879px;
  560. width:14px;
  561. height:14px;
  562. display:flex;
  563. }
  564. #u3704 .text {
  565. position:absolute;
  566. align-self:center;
  567. padding:2px 2px 2px 2px;
  568. box-sizing:border-box;
  569. width:100%;
  570. }
  571. #u3704_text {
  572. border-width:0px;
  573. word-wrap:break-word;
  574. text-transform:none;
  575. visibility:hidden;
  576. }
  577. #u3705_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:7px;
  583. height:14px;
  584. }
  585. #u3705 {
  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. #u3705 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:0px 0px 0px 0px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u3705_text {
  607. border-width:0px;
  608. white-space:nowrap;
  609. text-transform:none;
  610. }
  611. #u3706_img {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:7px;
  617. height:14px;
  618. }
  619. #u3706 {
  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. #u3706 .text {
  634. position:absolute;
  635. align-self:center;
  636. padding:0px 0px 0px 0px;
  637. box-sizing:border-box;
  638. width:100%;
  639. }
  640. #u3706_text {
  641. border-width:0px;
  642. white-space:nowrap;
  643. text-transform:none;
  644. }
  645. #u3707 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u3708_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. #u3708 {
  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. #u3708 .text {
  692. position:absolute;
  693. align-self:center;
  694. padding:16px 2px 16px 50px;
  695. box-sizing:border-box;
  696. width:100%;
  697. }
  698. #u3708_text {
  699. border-width:0px;
  700. word-wrap:break-word;
  701. text-transform:none;
  702. }
  703. #u3709_img {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:0px;
  708. width:15px;
  709. height:14px;
  710. }
  711. #u3709 {
  712. border-width:0px;
  713. position:absolute;
  714. left:48px;
  715. top:173px;
  716. width:15px;
  717. height:14px;
  718. display:flex;
  719. }
  720. #u3709 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u3709_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. visibility:hidden;
  732. }
  733. #u3710_img {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:7px;
  739. height:14px;
  740. }
  741. #u3710 {
  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. #u3710 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:0px 0px 0px 0px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u3710_text {
  763. border-width:0px;
  764. white-space:nowrap;
  765. text-transform:none;
  766. }
  767. #u3711 {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:0px;
  773. height:0px;
  774. }
  775. #u3712 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u3713_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. #u3713 {
  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. #u3713 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:12px 0px 12px 50px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u3713_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. }
  833. #u3714 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:0px;
  839. height:0px;
  840. }
  841. #u3715_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. #u3715 {
  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. #u3715 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:16px 2px 16px 50px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u3715_text {
  887. border-width:0px;
  888. word-wrap:break-word;
  889. text-transform:none;
  890. }
  891. #u3716_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:14px;
  897. height:14px;
  898. }
  899. #u3716 {
  900. border-width:0px;
  901. position:absolute;
  902. left:48px;
  903. top:933px;
  904. width:14px;
  905. height:14px;
  906. display:flex;
  907. }
  908. #u3716 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u3716_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u3717_img {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:7px;
  927. height:14px;
  928. }
  929. #u3717 {
  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. #u3717 .text {
  944. position:absolute;
  945. align-self:center;
  946. padding:0px 0px 0px 0px;
  947. box-sizing:border-box;
  948. width:100%;
  949. }
  950. #u3717_text {
  951. border-width:0px;
  952. white-space:nowrap;
  953. text-transform:none;
  954. }
  955. #u3718 {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:0px;
  961. height:0px;
  962. }
  963. #u3719_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. #u3719 {
  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. #u3719 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:16px 2px 16px 50px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u3719_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. }
  1013. #u3720_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:14px;
  1019. height:14px;
  1020. }
  1021. #u3720 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:48px;
  1025. top:987px;
  1026. width:14px;
  1027. height:14px;
  1028. display:flex;
  1029. }
  1030. #u3720 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u3720_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u3721_img {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:7px;
  1049. height:14px;
  1050. }
  1051. #u3721 {
  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. #u3721 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:0px 0px 0px 0px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u3721_text {
  1073. border-width:0px;
  1074. white-space:nowrap;
  1075. text-transform:none;
  1076. }
  1077. #u3722 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:0px;
  1083. height:0px;
  1084. }
  1085. #u3723_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. #u3723 {
  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. #u3723 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:12px 0px 12px 50px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u3723_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u3724 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u3725_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. #u3725 {
  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. #u3725 .text {
  1182. position:absolute;
  1183. align-self:center;
  1184. padding:12px 0px 12px 50px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u3725_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. }
  1193. #u3726_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. #u3726 {
  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. #u3726 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:12px 0px 12px 50px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u3726_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. }
  1243. #u3727_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. #u3727 {
  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. #u3727 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:12px 0px 12px 50px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u3727_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u3728_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. #u3728 {
  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. #u3728 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:12px 0px 12px 50px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u3728_text {
  1339. border-width:0px;
  1340. word-wrap:break-word;
  1341. text-transform:none;
  1342. }
  1343. #u3729_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. #u3729 {
  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. #u3729 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:12px 0px 12px 50px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u3729_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. }
  1393. #u3730_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. #u3730 {
  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. #u3730 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:12px 0px 12px 50px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u3730_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u3731_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. #u3731 {
  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. #u3731 .text {
  1482. position:absolute;
  1483. align-self:center;
  1484. padding:12px 0px 12px 50px;
  1485. box-sizing:border-box;
  1486. width:100%;
  1487. }
  1488. #u3731_text {
  1489. border-width:0px;
  1490. word-wrap:break-word;
  1491. text-transform:none;
  1492. }
  1493. #u3732_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. #u3732 {
  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. #u3732 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:12px 0px 12px 50px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u3732_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. }
  1543. #u3733_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. #u3733 {
  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. #u3733 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:12px 0px 12px 74px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u3733_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. }
  1601. #u3734 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:0px;
  1607. height:0px;
  1608. }
  1609. #u3735_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. #u3735 {
  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. #u3735 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:12px 0px 12px 50px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u3735_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. }
  1659. #u3736_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. #u3736 {
  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. #u3736 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:12px 0px 12px 50px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u3736_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u3737_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. #u3737 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:280px;
  1728. top:101px;
  1729. width:1239px;
  1730. height:920px;
  1731. display:flex;
  1732. }
  1733. #u3737 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u3737_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u3738 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:0px;
  1752. height:0px;
  1753. }
  1754. #u3739_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. #u3739 {
  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. #u3739 .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. #u3739_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u3740 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:292px;
  1809. top:171px;
  1810. width:32px;
  1811. height:32px;
  1812. }
  1813. #u3740_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. #u3740_state0_content {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:1px;
  1837. height:1px;
  1838. }
  1839. #u3741 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:1409px;
  1843. top:171px;
  1844. width:32px;
  1845. height:32px;
  1846. }
  1847. #u3741_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. #u3741_state0_content {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:1px;
  1871. height:1px;
  1872. }
  1873. #u3742_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. #u3742 {
  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. #u3742 .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. #u3742_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. visibility:hidden;
  1926. }
  1927. #u3743_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. #u3743 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:429px;
  1946. top:124px;
  1947. width:7px;
  1948. height:25px;
  1949. display:flex;
  1950. }
  1951. #u3743 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u3743_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. visibility:hidden;
  1963. }
  1964. #u3744_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. #u3744 {
  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. #u3744 .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. #u3744_text {
  2006. border-width:0px;
  2007. white-space:nowrap;
  2008. text-transform:none;
  2009. }
  2010. #u3745_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. #u3745 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:292px;
  2032. top:109px;
  2033. width:120px;
  2034. height:52px;
  2035. display:flex;
  2036. }
  2037. #u3745 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u3745_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u3746 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:0px;
  2055. height:0px;
  2056. }
  2057. #u3747_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. #u3747 {
  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. #u3747 .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. #u3747_text {
  2099. border-width:0px;
  2100. white-space:nowrap;
  2101. text-transform:none;
  2102. }
  2103. #u3748_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. #u3748 {
  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. #u3748 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u3748_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u3749 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:0px;
  2148. height:0px;
  2149. }
  2150. #u3750_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. #u3750 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:435px;
  2172. top:328px;
  2173. width:278px;
  2174. height:32px;
  2175. display:flex;
  2176. }
  2177. #u3750 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u3750_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. #u3750.mouseOver {
  2203. }
  2204. #u3750_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. #u3750.selected {
  2223. }
  2224. #u3750_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. #u3750.mouseOver.selected {
  2243. }
  2244. #u3750_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u3751_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. #u3751_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. #u3751_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. #u3751_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. #u3751_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. #u3751 {
  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. #u3751 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u3751_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. #u3751.hint {
  2379. }
  2380. #u3751_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. #u3751.disabled {
  2398. }
  2399. #u3751_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. #u3751.hint.disabled {
  2417. }
  2418. #u3752_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. #u3752 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:329px;
  2437. top:333px;
  2438. width:80px;
  2439. height:16px;
  2440. display:flex;
  2441. }
  2442. #u3752 .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. #u3752_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u3753 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:0px;
  2460. height:0px;
  2461. }
  2462. #u3754_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. #u3754 {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:800px;
  2484. top:69px;
  2485. width:278px;
  2486. height:32px;
  2487. display:flex;
  2488. }
  2489. #u3754 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 2px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u3754_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. #u3754.mouseOver {
  2515. }
  2516. #u3754_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. #u3754.selected {
  2535. }
  2536. #u3754_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. #u3754.mouseOver.selected {
  2555. }
  2556. #u3754_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u3755_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. #u3755_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. #u3755_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. #u3755_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. #u3755_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. #u3755 {
  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. #u3755 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 2px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u3755_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. #u3755.hint {
  2691. }
  2692. #u3755_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. #u3755.disabled {
  2710. }
  2711. #u3755_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. #u3755.hint.disabled {
  2729. }
  2730. #u3756 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:0px;
  2736. height:0px;
  2737. }
  2738. #u3757_div {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:80px;
  2744. height:16px;
  2745. background:inherit;
  2746. background-color:rgba(255, 255, 255, 0);
  2747. border:none;
  2748. border-radius:0px;
  2749. -moz-box-shadow:none;
  2750. -webkit-box-shadow:none;
  2751. box-shadow:none;
  2752. }
  2753. #u3757 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:324px;
  2757. top:241px;
  2758. width:80px;
  2759. height:16px;
  2760. display:flex;
  2761. }
  2762. #u3757 .text {
  2763. position:absolute;
  2764. align-self:flex-start;
  2765. padding:0px 0px 0px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u3757_text {
  2770. border-width:0px;
  2771. white-space:nowrap;
  2772. text-transform:none;
  2773. }
  2774. #u3758 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:0px;
  2780. height:0px;
  2781. }
  2782. #u3759_div {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:42px;
  2788. height:18px;
  2789. background:inherit;
  2790. background-color:rgba(255, 255, 255, 0);
  2791. border:none;
  2792. border-radius:0px;
  2793. -moz-box-shadow:none;
  2794. -webkit-box-shadow:none;
  2795. box-shadow:none;
  2796. font-family:'Microsoft YaHei UI', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. color:#606266;
  2800. }
  2801. #u3759 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:455px;
  2805. top:239px;
  2806. width:42px;
  2807. height:18px;
  2808. display:flex;
  2809. font-family:'Microsoft YaHei UI', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. color:#606266;
  2813. }
  2814. #u3759 .text {
  2815. position:absolute;
  2816. align-self:flex-start;
  2817. padding:0px 0px 0px 0px;
  2818. box-sizing:border-box;
  2819. width:100%;
  2820. }
  2821. #u3759_div.selected {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:42px;
  2827. height:18px;
  2828. background:inherit;
  2829. background-color:rgba(255, 255, 255, 0);
  2830. border:none;
  2831. border-radius:0px;
  2832. -moz-box-shadow:none;
  2833. -webkit-box-shadow:none;
  2834. box-shadow:none;
  2835. font-family:'Microsoft YaHei UI', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. color:#606266;
  2839. }
  2840. #u3759.selected {
  2841. }
  2842. #u3759_div.disabled {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:42px;
  2848. height:18px;
  2849. background:inherit;
  2850. background-color:rgba(255, 255, 255, 0);
  2851. border:none;
  2852. border-radius:0px;
  2853. -moz-box-shadow:none;
  2854. -webkit-box-shadow:none;
  2855. box-shadow:none;
  2856. font-family:'Microsoft YaHei UI', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. color:#606266;
  2860. }
  2861. #u3759.disabled {
  2862. }
  2863. #u3759_div.selected.disabled {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:42px;
  2869. height:18px;
  2870. background:inherit;
  2871. background-color:rgba(255, 255, 255, 0);
  2872. border:none;
  2873. border-radius:0px;
  2874. -moz-box-shadow:none;
  2875. -webkit-box-shadow:none;
  2876. box-shadow:none;
  2877. font-family:'Microsoft YaHei UI', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. color:#606266;
  2881. }
  2882. #u3759.selected.disabled {
  2883. }
  2884. #u3759_text {
  2885. border-width:0px;
  2886. white-space:nowrap;
  2887. text-transform:none;
  2888. }
  2889. #u3760_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:13px;
  2895. height:13px;
  2896. }
  2897. #u3760 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:436px;
  2901. top:242px;
  2902. width:13px;
  2903. height:13px;
  2904. display:flex;
  2905. }
  2906. #u3760 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 2px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u3760_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u3761_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:80px;
  2925. height:16px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 0);
  2928. border:none;
  2929. border-radius:0px;
  2930. -moz-box-shadow:none;
  2931. -webkit-box-shadow:none;
  2932. box-shadow:none;
  2933. }
  2934. #u3761 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:329px;
  2938. top:390px;
  2939. width:80px;
  2940. height:16px;
  2941. display:flex;
  2942. }
  2943. #u3761 .text {
  2944. position:absolute;
  2945. align-self:flex-start;
  2946. padding:0px 0px 0px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u3761_text {
  2951. border-width:0px;
  2952. white-space:nowrap;
  2953. text-transform:none;
  2954. }
  2955. #u3762_div {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:95px;
  2961. height:75px;
  2962. background:inherit;
  2963. background-color:rgba(230, 230, 230, 1);
  2964. border:none;
  2965. border-radius:0px;
  2966. -moz-box-shadow:none;
  2967. -webkit-box-shadow:none;
  2968. box-shadow:none;
  2969. font-size:22px;
  2970. }
  2971. #u3762 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:432px;
  2975. top:384px;
  2976. width:95px;
  2977. height:75px;
  2978. display:flex;
  2979. font-size:22px;
  2980. }
  2981. #u3762 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 2px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u3762_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u3763_div {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:190px;
  2999. height:60px;
  3000. background:inherit;
  3001. background-color:rgba(255, 223, 37, 1);
  3002. border:none;
  3003. border-radius:0px;
  3004. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3005. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3006. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3007. }
  3008. #u3763 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:635px;
  3012. top:403px;
  3013. width:190px;
  3014. height:60px;
  3015. display:flex;
  3016. }
  3017. #u3763 .text {
  3018. position:absolute;
  3019. align-self:flex-start;
  3020. padding:10px 10px 10px 10px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u3763_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u3764_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:-3px;
  3033. top:-13px;
  3034. width:117px;
  3035. height:31px;
  3036. }
  3037. #u3764 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:527px;
  3041. top:424px;
  3042. width:101px;
  3043. height:5px;
  3044. display:flex;
  3045. -webkit-transform:rotate(10.283433254455293deg);
  3046. -moz-transform:rotate(10.283433254455293deg);
  3047. -ms-transform:rotate(10.283433254455293deg);
  3048. transform:rotate(10.283433254455293deg);
  3049. }
  3050. #u3764 .text {
  3051. position:absolute;
  3052. align-self:center;
  3053. padding:2px 2px 2px 2px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u3764_text {
  3058. border-width:0px;
  3059. word-wrap:break-word;
  3060. text-transform:none;
  3061. visibility:hidden;
  3062. }
  3063. #u3765 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:0px;
  3069. height:0px;
  3070. }
  3071. #u3766_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:28px;
  3077. height:18px;
  3078. background:inherit;
  3079. background-color:rgba(255, 255, 255, 0);
  3080. border:none;
  3081. border-radius:0px;
  3082. -moz-box-shadow:none;
  3083. -webkit-box-shadow:none;
  3084. box-shadow:none;
  3085. font-family:'Microsoft YaHei UI', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. color:#606266;
  3089. }
  3090. #u3766 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:714px;
  3094. top:239px;
  3095. width:28px;
  3096. height:18px;
  3097. display:flex;
  3098. font-family:'Microsoft YaHei UI', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. color:#606266;
  3102. }
  3103. #u3766 .text {
  3104. position:absolute;
  3105. align-self:flex-start;
  3106. padding:0px 0px 0px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u3766_div.selected {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:28px;
  3116. height:18px;
  3117. background:inherit;
  3118. background-color:rgba(255, 255, 255, 0);
  3119. border:none;
  3120. border-radius:0px;
  3121. -moz-box-shadow:none;
  3122. -webkit-box-shadow:none;
  3123. box-shadow:none;
  3124. font-family:'Microsoft YaHei UI', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. color:#606266;
  3128. }
  3129. #u3766.selected {
  3130. }
  3131. #u3766_div.disabled {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:28px;
  3137. height:18px;
  3138. background:inherit;
  3139. background-color:rgba(255, 255, 255, 0);
  3140. border:none;
  3141. border-radius:0px;
  3142. -moz-box-shadow:none;
  3143. -webkit-box-shadow:none;
  3144. box-shadow:none;
  3145. font-family:'Microsoft YaHei UI', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. color:#606266;
  3149. }
  3150. #u3766.disabled {
  3151. }
  3152. #u3766_div.selected.disabled {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:28px;
  3158. height:18px;
  3159. background:inherit;
  3160. background-color:rgba(255, 255, 255, 0);
  3161. border:none;
  3162. border-radius:0px;
  3163. -moz-box-shadow:none;
  3164. -webkit-box-shadow:none;
  3165. box-shadow:none;
  3166. font-family:'Microsoft YaHei UI', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. color:#606266;
  3170. }
  3171. #u3766.selected.disabled {
  3172. }
  3173. #u3766_text {
  3174. border-width:0px;
  3175. white-space:nowrap;
  3176. text-transform:none;
  3177. }
  3178. #u3767_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:13px;
  3184. height:13px;
  3185. }
  3186. #u3767 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:695px;
  3190. top:242px;
  3191. width:13px;
  3192. height:13px;
  3193. display:flex;
  3194. }
  3195. #u3767 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u3767_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u3768 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:0px;
  3214. height:0px;
  3215. }
  3216. #u3769_div {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:28px;
  3222. height:18px;
  3223. background:inherit;
  3224. background-color:rgba(255, 255, 255, 0);
  3225. border:none;
  3226. border-radius:0px;
  3227. -moz-box-shadow:none;
  3228. -webkit-box-shadow:none;
  3229. box-shadow:none;
  3230. font-family:'Microsoft YaHei UI', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. color:#606266;
  3234. }
  3235. #u3769 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:642px;
  3239. top:239px;
  3240. width:28px;
  3241. height:18px;
  3242. display:flex;
  3243. font-family:'Microsoft YaHei UI', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. color:#606266;
  3247. }
  3248. #u3769 .text {
  3249. position:absolute;
  3250. align-self:flex-start;
  3251. padding:0px 0px 0px 0px;
  3252. box-sizing:border-box;
  3253. width:100%;
  3254. }
  3255. #u3769_div.selected {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:28px;
  3261. height:18px;
  3262. background:inherit;
  3263. background-color:rgba(255, 255, 255, 0);
  3264. border:none;
  3265. border-radius:0px;
  3266. -moz-box-shadow:none;
  3267. -webkit-box-shadow:none;
  3268. box-shadow:none;
  3269. font-family:'Microsoft YaHei UI', sans-serif;
  3270. font-weight:400;
  3271. font-style:normal;
  3272. color:#606266;
  3273. }
  3274. #u3769.selected {
  3275. }
  3276. #u3769_div.disabled {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:28px;
  3282. height:18px;
  3283. background:inherit;
  3284. background-color:rgba(255, 255, 255, 0);
  3285. border:none;
  3286. border-radius:0px;
  3287. -moz-box-shadow:none;
  3288. -webkit-box-shadow:none;
  3289. box-shadow:none;
  3290. font-family:'Microsoft YaHei UI', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. color:#606266;
  3294. }
  3295. #u3769.disabled {
  3296. }
  3297. #u3769_div.selected.disabled {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:28px;
  3303. height:18px;
  3304. background:inherit;
  3305. background-color:rgba(255, 255, 255, 0);
  3306. border:none;
  3307. border-radius:0px;
  3308. -moz-box-shadow:none;
  3309. -webkit-box-shadow:none;
  3310. box-shadow:none;
  3311. font-family:'Microsoft YaHei UI', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. color:#606266;
  3315. }
  3316. #u3769.selected.disabled {
  3317. }
  3318. #u3769_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u3770_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:13px;
  3329. height:13px;
  3330. }
  3331. #u3770 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:623px;
  3335. top:242px;
  3336. width:13px;
  3337. height:13px;
  3338. display:flex;
  3339. }
  3340. #u3770 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 2px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u3770_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u3771 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:0px;
  3359. height:0px;
  3360. }
  3361. #u3772_div {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:70px;
  3367. height:18px;
  3368. background:inherit;
  3369. background-color:rgba(255, 255, 255, 0);
  3370. border:none;
  3371. border-radius:0px;
  3372. -moz-box-shadow:none;
  3373. -webkit-box-shadow:none;
  3374. box-shadow:none;
  3375. font-family:'Microsoft YaHei UI', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. color:#606266;
  3379. }
  3380. #u3772 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:537px;
  3384. top:239px;
  3385. width:70px;
  3386. height:18px;
  3387. display:flex;
  3388. font-family:'Microsoft YaHei UI', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. color:#606266;
  3392. }
  3393. #u3772 .text {
  3394. position:absolute;
  3395. align-self:flex-start;
  3396. padding:0px 0px 0px 0px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u3772_div.selected {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:70px;
  3406. height:18px;
  3407. background:inherit;
  3408. background-color:rgba(255, 255, 255, 0);
  3409. border:none;
  3410. border-radius:0px;
  3411. -moz-box-shadow:none;
  3412. -webkit-box-shadow:none;
  3413. box-shadow:none;
  3414. font-family:'Microsoft YaHei UI', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. color:#606266;
  3418. }
  3419. #u3772.selected {
  3420. }
  3421. #u3772_div.disabled {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:70px;
  3427. height:18px;
  3428. background:inherit;
  3429. background-color:rgba(255, 255, 255, 0);
  3430. border:none;
  3431. border-radius:0px;
  3432. -moz-box-shadow:none;
  3433. -webkit-box-shadow:none;
  3434. box-shadow:none;
  3435. font-family:'Microsoft YaHei UI', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. color:#606266;
  3439. }
  3440. #u3772.disabled {
  3441. }
  3442. #u3772_div.selected.disabled {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:70px;
  3448. height:18px;
  3449. background:inherit;
  3450. background-color:rgba(255, 255, 255, 0);
  3451. border:none;
  3452. border-radius:0px;
  3453. -moz-box-shadow:none;
  3454. -webkit-box-shadow:none;
  3455. box-shadow:none;
  3456. font-family:'Microsoft YaHei UI', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. color:#606266;
  3460. }
  3461. #u3772.selected.disabled {
  3462. }
  3463. #u3772_text {
  3464. border-width:0px;
  3465. white-space:nowrap;
  3466. text-transform:none;
  3467. }
  3468. #u3773_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:13px;
  3474. height:13px;
  3475. }
  3476. #u3773 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:518px;
  3480. top:242px;
  3481. width:13px;
  3482. height:13px;
  3483. display:flex;
  3484. }
  3485. #u3773 .text {
  3486. position:absolute;
  3487. align-self:center;
  3488. padding:2px 2px 2px 2px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u3773_text {
  3493. border-width:0px;
  3494. word-wrap:break-word;
  3495. text-transform:none;
  3496. visibility:hidden;
  3497. }
  3498. #u3774 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:0px;
  3504. height:0px;
  3505. }
  3506. #u3775_div {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:278px;
  3512. height:32px;
  3513. background:inherit;
  3514. background-color:rgba(255, 255, 255, 1);
  3515. box-sizing:border-box;
  3516. border-width:1px;
  3517. border-style:solid;
  3518. border-color:rgba(220, 223, 230, 1);
  3519. border-radius:4px;
  3520. -moz-box-shadow:none;
  3521. -webkit-box-shadow:none;
  3522. box-shadow:none;
  3523. }
  3524. #u3775 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:435px;
  3528. top:494px;
  3529. width:278px;
  3530. height:32px;
  3531. display:flex;
  3532. }
  3533. #u3775 .text {
  3534. position:absolute;
  3535. align-self:center;
  3536. padding:2px 2px 2px 2px;
  3537. box-sizing:border-box;
  3538. width:100%;
  3539. }
  3540. #u3775_div.mouseOver {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:278px;
  3546. height:32px;
  3547. background:inherit;
  3548. background-color:rgba(255, 255, 255, 1);
  3549. box-sizing:border-box;
  3550. border-width:1px;
  3551. border-style:solid;
  3552. border-color:rgba(192, 196, 204, 1);
  3553. border-radius:4px;
  3554. -moz-box-shadow:none;
  3555. -webkit-box-shadow:none;
  3556. box-shadow:none;
  3557. }
  3558. #u3775.mouseOver {
  3559. }
  3560. #u3775_div.selected {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:278px;
  3566. height:32px;
  3567. background:inherit;
  3568. background-color:rgba(255, 255, 255, 1);
  3569. box-sizing:border-box;
  3570. border-width:1px;
  3571. border-style:solid;
  3572. border-color:rgba(64, 158, 255, 1);
  3573. border-radius:4px;
  3574. -moz-box-shadow:none;
  3575. -webkit-box-shadow:none;
  3576. box-shadow:none;
  3577. }
  3578. #u3775.selected {
  3579. }
  3580. #u3775_div.mouseOver.selected {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:278px;
  3586. height:32px;
  3587. background:inherit;
  3588. background-color:rgba(255, 255, 255, 1);
  3589. box-sizing:border-box;
  3590. border-width:1px;
  3591. border-style:solid;
  3592. border-color:rgba(64, 158, 255, 1);
  3593. border-radius:4px;
  3594. -moz-box-shadow:none;
  3595. -webkit-box-shadow:none;
  3596. box-shadow:none;
  3597. }
  3598. #u3775.mouseOver.selected {
  3599. }
  3600. #u3775_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u3776_input {
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:265px;
  3611. height:30px;
  3612. padding:2px 2px 2px 2px;
  3613. font-family:"Arial Normal", "Arial", sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:12px;
  3617. letter-spacing:normal;
  3618. color:#606266;
  3619. vertical-align:none;
  3620. text-align:left;
  3621. text-transform:none;
  3622. background-color:transparent;
  3623. border-color:transparent;
  3624. }
  3625. #u3776_input.hint {
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:265px;
  3630. height:30px;
  3631. padding:2px 2px 2px 2px;
  3632. font-family:"Arial Normal", "Arial", sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:12px;
  3636. letter-spacing:normal;
  3637. color:#C0C4CC;
  3638. vertical-align:none;
  3639. text-align:left;
  3640. text-transform:none;
  3641. background-color:transparent;
  3642. border-color:transparent;
  3643. }
  3644. #u3776_input.disabled {
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:265px;
  3649. height:30px;
  3650. padding:2px 2px 2px 2px;
  3651. font-family:"Arial Normal", "Arial", sans-serif;
  3652. font-weight:400;
  3653. font-style:normal;
  3654. font-size:12px;
  3655. letter-spacing:normal;
  3656. color:#606266;
  3657. vertical-align:none;
  3658. text-align:left;
  3659. text-transform:none;
  3660. background-color:transparent;
  3661. border-color:transparent;
  3662. }
  3663. #u3776_input.hint.disabled {
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:265px;
  3668. height:30px;
  3669. padding:2px 2px 2px 2px;
  3670. font-family:"Arial Normal", "Arial", sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:12px;
  3674. letter-spacing:normal;
  3675. color:#C0C4CC;
  3676. vertical-align:none;
  3677. text-align:left;
  3678. text-transform:none;
  3679. background-color:transparent;
  3680. border-color:transparent;
  3681. }
  3682. #u3776_div {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:265px;
  3688. height:30px;
  3689. background:inherit;
  3690. background-color:rgba(255, 255, 255, 1);
  3691. border:none;
  3692. border-radius:0px;
  3693. -moz-box-shadow:none;
  3694. -webkit-box-shadow:none;
  3695. box-shadow:none;
  3696. font-size:12px;
  3697. color:#606266;
  3698. }
  3699. #u3776 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:442px;
  3703. top:495px;
  3704. width:265px;
  3705. height:30px;
  3706. display:flex;
  3707. font-size:12px;
  3708. color:#606266;
  3709. }
  3710. #u3776 .text {
  3711. position:absolute;
  3712. align-self:center;
  3713. padding:2px 2px 2px 2px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u3776_div.hint {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:265px;
  3723. height:30px;
  3724. background:inherit;
  3725. background-color:rgba(255, 255, 255, 1);
  3726. border:none;
  3727. border-radius:0px;
  3728. -moz-box-shadow:none;
  3729. -webkit-box-shadow:none;
  3730. box-shadow:none;
  3731. font-size:12px;
  3732. color:#606266;
  3733. }
  3734. #u3776.hint {
  3735. }
  3736. #u3776_div.disabled {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:265px;
  3742. height:30px;
  3743. background:inherit;
  3744. background-color:rgba(240, 240, 240, 1);
  3745. border:none;
  3746. border-radius:0px;
  3747. -moz-box-shadow:none;
  3748. -webkit-box-shadow:none;
  3749. box-shadow:none;
  3750. font-size:12px;
  3751. color:#606266;
  3752. }
  3753. #u3776.disabled {
  3754. }
  3755. #u3776_div.hint.disabled {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:265px;
  3761. height:30px;
  3762. background:inherit;
  3763. background-color:rgba(240, 240, 240, 1);
  3764. border:none;
  3765. border-radius:0px;
  3766. -moz-box-shadow:none;
  3767. -webkit-box-shadow:none;
  3768. box-shadow:none;
  3769. font-size:12px;
  3770. color:#606266;
  3771. }
  3772. #u3776.hint.disabled {
  3773. }
  3774. #u3777_div {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:80px;
  3780. height:16px;
  3781. background:inherit;
  3782. background-color:rgba(255, 255, 255, 0);
  3783. border:none;
  3784. border-radius:0px;
  3785. -moz-box-shadow:none;
  3786. -webkit-box-shadow:none;
  3787. box-shadow:none;
  3788. }
  3789. #u3777 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:331px;
  3793. top:499px;
  3794. width:80px;
  3795. height:16px;
  3796. display:flex;
  3797. }
  3798. #u3777 .text {
  3799. position:absolute;
  3800. align-self:flex-start;
  3801. padding:0px 0px 0px 0px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u3777_text {
  3806. border-width:0px;
  3807. white-space:nowrap;
  3808. text-transform:none;
  3809. }
  3810. #u3778 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:0px;
  3816. height:0px;
  3817. }
  3818. #u3779_div {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:278px;
  3824. height:32px;
  3825. background:inherit;
  3826. background-color:rgba(255, 255, 255, 1);
  3827. box-sizing:border-box;
  3828. border-width:1px;
  3829. border-style:solid;
  3830. border-color:rgba(220, 223, 230, 1);
  3831. border-radius:4px;
  3832. -moz-box-shadow:none;
  3833. -webkit-box-shadow:none;
  3834. box-shadow:none;
  3835. }
  3836. #u3779 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:435px;
  3840. top:549px;
  3841. width:278px;
  3842. height:32px;
  3843. display:flex;
  3844. }
  3845. #u3779 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 2px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u3779_div.mouseOver {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:278px;
  3858. height:32px;
  3859. background:inherit;
  3860. background-color:rgba(255, 255, 255, 1);
  3861. box-sizing:border-box;
  3862. border-width:1px;
  3863. border-style:solid;
  3864. border-color:rgba(192, 196, 204, 1);
  3865. border-radius:4px;
  3866. -moz-box-shadow:none;
  3867. -webkit-box-shadow:none;
  3868. box-shadow:none;
  3869. }
  3870. #u3779.mouseOver {
  3871. }
  3872. #u3779_div.selected {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:278px;
  3878. height:32px;
  3879. background:inherit;
  3880. background-color:rgba(255, 255, 255, 1);
  3881. box-sizing:border-box;
  3882. border-width:1px;
  3883. border-style:solid;
  3884. border-color:rgba(64, 158, 255, 1);
  3885. border-radius:4px;
  3886. -moz-box-shadow:none;
  3887. -webkit-box-shadow:none;
  3888. box-shadow:none;
  3889. }
  3890. #u3779.selected {
  3891. }
  3892. #u3779_div.mouseOver.selected {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:278px;
  3898. height:32px;
  3899. background:inherit;
  3900. background-color:rgba(255, 255, 255, 1);
  3901. box-sizing:border-box;
  3902. border-width:1px;
  3903. border-style:solid;
  3904. border-color:rgba(64, 158, 255, 1);
  3905. border-radius:4px;
  3906. -moz-box-shadow:none;
  3907. -webkit-box-shadow:none;
  3908. box-shadow:none;
  3909. }
  3910. #u3779.mouseOver.selected {
  3911. }
  3912. #u3779_text {
  3913. border-width:0px;
  3914. word-wrap:break-word;
  3915. text-transform:none;
  3916. visibility:hidden;
  3917. }
  3918. #u3780_input {
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:265px;
  3923. height:30px;
  3924. padding:2px 2px 2px 2px;
  3925. font-family:"Arial Normal", "Arial", sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:12px;
  3929. letter-spacing:normal;
  3930. color:#606266;
  3931. vertical-align:none;
  3932. text-align:left;
  3933. text-transform:none;
  3934. background-color:transparent;
  3935. border-color:transparent;
  3936. }
  3937. #u3780_input.hint {
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:265px;
  3942. height:30px;
  3943. padding:2px 2px 2px 2px;
  3944. font-family:"Arial Normal", "Arial", sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:12px;
  3948. letter-spacing:normal;
  3949. color:#C0C4CC;
  3950. vertical-align:none;
  3951. text-align:left;
  3952. text-transform:none;
  3953. background-color:transparent;
  3954. border-color:transparent;
  3955. }
  3956. #u3780_input.disabled {
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:265px;
  3961. height:30px;
  3962. padding:2px 2px 2px 2px;
  3963. font-family:"Arial Normal", "Arial", sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:12px;
  3967. letter-spacing:normal;
  3968. color:#606266;
  3969. vertical-align:none;
  3970. text-align:left;
  3971. text-transform:none;
  3972. background-color:transparent;
  3973. border-color:transparent;
  3974. }
  3975. #u3780_input.hint.disabled {
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:265px;
  3980. height:30px;
  3981. padding:2px 2px 2px 2px;
  3982. font-family:"Arial Normal", "Arial", sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:12px;
  3986. letter-spacing:normal;
  3987. color:#C0C4CC;
  3988. vertical-align:none;
  3989. text-align:left;
  3990. text-transform:none;
  3991. background-color:transparent;
  3992. border-color:transparent;
  3993. }
  3994. #u3780_div {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:265px;
  4000. height:30px;
  4001. background:inherit;
  4002. background-color:rgba(255, 255, 255, 1);
  4003. border:none;
  4004. border-radius:0px;
  4005. -moz-box-shadow:none;
  4006. -webkit-box-shadow:none;
  4007. box-shadow:none;
  4008. font-size:12px;
  4009. color:#606266;
  4010. }
  4011. #u3780 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:442px;
  4015. top:550px;
  4016. width:265px;
  4017. height:30px;
  4018. display:flex;
  4019. font-size:12px;
  4020. color:#606266;
  4021. }
  4022. #u3780 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:2px 2px 2px 2px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u3780_div.hint {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:265px;
  4035. height:30px;
  4036. background:inherit;
  4037. background-color:rgba(255, 255, 255, 1);
  4038. border:none;
  4039. border-radius:0px;
  4040. -moz-box-shadow:none;
  4041. -webkit-box-shadow:none;
  4042. box-shadow:none;
  4043. font-size:12px;
  4044. color:#606266;
  4045. }
  4046. #u3780.hint {
  4047. }
  4048. #u3780_div.disabled {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:265px;
  4054. height:30px;
  4055. background:inherit;
  4056. background-color:rgba(240, 240, 240, 1);
  4057. border:none;
  4058. border-radius:0px;
  4059. -moz-box-shadow:none;
  4060. -webkit-box-shadow:none;
  4061. box-shadow:none;
  4062. font-size:12px;
  4063. color:#606266;
  4064. }
  4065. #u3780.disabled {
  4066. }
  4067. #u3780_div.hint.disabled {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:265px;
  4073. height:30px;
  4074. background:inherit;
  4075. background-color:rgba(240, 240, 240, 1);
  4076. border:none;
  4077. border-radius:0px;
  4078. -moz-box-shadow:none;
  4079. -webkit-box-shadow:none;
  4080. box-shadow:none;
  4081. font-size:12px;
  4082. color:#606266;
  4083. }
  4084. #u3780.hint.disabled {
  4085. }
  4086. #u3781_div {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:80px;
  4092. height:16px;
  4093. background:inherit;
  4094. background-color:rgba(255, 255, 255, 0);
  4095. border:none;
  4096. border-radius:0px;
  4097. -moz-box-shadow:none;
  4098. -webkit-box-shadow:none;
  4099. box-shadow:none;
  4100. }
  4101. #u3781 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:330px;
  4105. top:554px;
  4106. width:80px;
  4107. height:16px;
  4108. display:flex;
  4109. }
  4110. #u3781 .text {
  4111. position:absolute;
  4112. align-self:flex-start;
  4113. padding:0px 0px 0px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u3781_text {
  4118. border-width:0px;
  4119. white-space:nowrap;
  4120. text-transform:none;
  4121. }
  4122. #u3782 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:0px;
  4128. height:0px;
  4129. }
  4130. #u3783_div {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:278px;
  4136. height:32px;
  4137. background:inherit;
  4138. background-color:rgba(255, 255, 255, 1);
  4139. box-sizing:border-box;
  4140. border-width:1px;
  4141. border-style:solid;
  4142. border-color:rgba(220, 223, 230, 1);
  4143. border-radius:4px;
  4144. -moz-box-shadow:none;
  4145. -webkit-box-shadow:none;
  4146. box-shadow:none;
  4147. }
  4148. #u3783 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:435px;
  4152. top:604px;
  4153. width:278px;
  4154. height:32px;
  4155. display:flex;
  4156. }
  4157. #u3783 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 2px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u3783_div.mouseOver {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:278px;
  4170. height:32px;
  4171. background:inherit;
  4172. background-color:rgba(255, 255, 255, 1);
  4173. box-sizing:border-box;
  4174. border-width:1px;
  4175. border-style:solid;
  4176. border-color:rgba(192, 196, 204, 1);
  4177. border-radius:4px;
  4178. -moz-box-shadow:none;
  4179. -webkit-box-shadow:none;
  4180. box-shadow:none;
  4181. }
  4182. #u3783.mouseOver {
  4183. }
  4184. #u3783_div.selected {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:278px;
  4190. height:32px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 1);
  4193. box-sizing:border-box;
  4194. border-width:1px;
  4195. border-style:solid;
  4196. border-color:rgba(64, 158, 255, 1);
  4197. border-radius:4px;
  4198. -moz-box-shadow:none;
  4199. -webkit-box-shadow:none;
  4200. box-shadow:none;
  4201. }
  4202. #u3783.selected {
  4203. }
  4204. #u3783_div.mouseOver.selected {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:278px;
  4210. height:32px;
  4211. background:inherit;
  4212. background-color:rgba(255, 255, 255, 1);
  4213. box-sizing:border-box;
  4214. border-width:1px;
  4215. border-style:solid;
  4216. border-color:rgba(64, 158, 255, 1);
  4217. border-radius:4px;
  4218. -moz-box-shadow:none;
  4219. -webkit-box-shadow:none;
  4220. box-shadow:none;
  4221. }
  4222. #u3783.mouseOver.selected {
  4223. }
  4224. #u3783_text {
  4225. border-width:0px;
  4226. word-wrap:break-word;
  4227. text-transform:none;
  4228. visibility:hidden;
  4229. }
  4230. #u3784_input {
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:265px;
  4235. height:30px;
  4236. padding:2px 2px 2px 2px;
  4237. font-family:"Arial Normal", "Arial", sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. letter-spacing:normal;
  4242. color:#606266;
  4243. vertical-align:none;
  4244. text-align:left;
  4245. text-transform:none;
  4246. background-color:transparent;
  4247. border-color:transparent;
  4248. }
  4249. #u3784_input.hint {
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:265px;
  4254. height:30px;
  4255. padding:2px 2px 2px 2px;
  4256. font-family:"Arial Normal", "Arial", sans-serif;
  4257. font-weight:400;
  4258. font-style:normal;
  4259. font-size:12px;
  4260. letter-spacing:normal;
  4261. color:#C0C4CC;
  4262. vertical-align:none;
  4263. text-align:left;
  4264. text-transform:none;
  4265. background-color:transparent;
  4266. border-color:transparent;
  4267. }
  4268. #u3784_input.disabled {
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:265px;
  4273. height:30px;
  4274. padding:2px 2px 2px 2px;
  4275. font-family:"Arial Normal", "Arial", sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:12px;
  4279. letter-spacing:normal;
  4280. color:#606266;
  4281. vertical-align:none;
  4282. text-align:left;
  4283. text-transform:none;
  4284. background-color:transparent;
  4285. border-color:transparent;
  4286. }
  4287. #u3784_input.hint.disabled {
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:265px;
  4292. height:30px;
  4293. padding:2px 2px 2px 2px;
  4294. font-family:"Arial Normal", "Arial", sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:12px;
  4298. letter-spacing:normal;
  4299. color:#C0C4CC;
  4300. vertical-align:none;
  4301. text-align:left;
  4302. text-transform:none;
  4303. background-color:transparent;
  4304. border-color:transparent;
  4305. }
  4306. #u3784_div {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:265px;
  4312. height:30px;
  4313. background:inherit;
  4314. background-color:rgba(255, 255, 255, 1);
  4315. border:none;
  4316. border-radius:0px;
  4317. -moz-box-shadow:none;
  4318. -webkit-box-shadow:none;
  4319. box-shadow:none;
  4320. font-size:12px;
  4321. color:#606266;
  4322. }
  4323. #u3784 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:442px;
  4327. top:605px;
  4328. width:265px;
  4329. height:30px;
  4330. display:flex;
  4331. font-size:12px;
  4332. color:#606266;
  4333. }
  4334. #u3784 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u3784_div.hint {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:265px;
  4347. height:30px;
  4348. background:inherit;
  4349. background-color:rgba(255, 255, 255, 1);
  4350. border:none;
  4351. border-radius:0px;
  4352. -moz-box-shadow:none;
  4353. -webkit-box-shadow:none;
  4354. box-shadow:none;
  4355. font-size:12px;
  4356. color:#606266;
  4357. }
  4358. #u3784.hint {
  4359. }
  4360. #u3784_div.disabled {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:265px;
  4366. height:30px;
  4367. background:inherit;
  4368. background-color:rgba(240, 240, 240, 1);
  4369. border:none;
  4370. border-radius:0px;
  4371. -moz-box-shadow:none;
  4372. -webkit-box-shadow:none;
  4373. box-shadow:none;
  4374. font-size:12px;
  4375. color:#606266;
  4376. }
  4377. #u3784.disabled {
  4378. }
  4379. #u3784_div.hint.disabled {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:265px;
  4385. height:30px;
  4386. background:inherit;
  4387. background-color:rgba(240, 240, 240, 1);
  4388. border:none;
  4389. border-radius:0px;
  4390. -moz-box-shadow:none;
  4391. -webkit-box-shadow:none;
  4392. box-shadow:none;
  4393. font-size:12px;
  4394. color:#606266;
  4395. }
  4396. #u3784.hint.disabled {
  4397. }
  4398. #u3785_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:108px;
  4404. height:16px;
  4405. background:inherit;
  4406. background-color:rgba(255, 255, 255, 0);
  4407. border:none;
  4408. border-radius:0px;
  4409. -moz-box-shadow:none;
  4410. -webkit-box-shadow:none;
  4411. box-shadow:none;
  4412. }
  4413. #u3785 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:304px;
  4417. top:609px;
  4418. width:108px;
  4419. height:16px;
  4420. display:flex;
  4421. }
  4422. #u3785 .text {
  4423. position:absolute;
  4424. align-self:flex-start;
  4425. padding:0px 0px 0px 0px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u3785_text {
  4430. border-width:0px;
  4431. white-space:nowrap;
  4432. text-transform:none;
  4433. }
  4434. #u3786_div {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:317px;
  4440. height:111px;
  4441. background:inherit;
  4442. background-color:rgba(255, 223, 37, 1);
  4443. border:none;
  4444. border-radius:0px;
  4445. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4446. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4447. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4448. }
  4449. #u3786 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:678px;
  4453. top:-128px;
  4454. width:317px;
  4455. height:111px;
  4456. display:flex;
  4457. }
  4458. #u3786 .text {
  4459. position:absolute;
  4460. align-self:flex-start;
  4461. padding:10px 10px 10px 10px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u3786_text {
  4466. border-width:0px;
  4467. word-wrap:break-word;
  4468. text-transform:none;
  4469. }
  4470. #u3787_div {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:94px;
  4476. height:16px;
  4477. background:inherit;
  4478. background-color:rgba(255, 255, 255, 0);
  4479. border:none;
  4480. border-radius:0px;
  4481. -moz-box-shadow:none;
  4482. -webkit-box-shadow:none;
  4483. box-shadow:none;
  4484. }
  4485. #u3787 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:310px;
  4489. top:286px;
  4490. width:94px;
  4491. height:16px;
  4492. display:flex;
  4493. }
  4494. #u3787 .text {
  4495. position:absolute;
  4496. align-self:flex-start;
  4497. padding:0px 0px 0px 0px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u3787_text {
  4502. border-width:0px;
  4503. white-space:nowrap;
  4504. text-transform:none;
  4505. }
  4506. #u3788_div {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:110px;
  4512. height:32px;
  4513. background:inherit;
  4514. background-color:rgba(255, 255, 255, 1);
  4515. box-sizing:border-box;
  4516. border-width:1px;
  4517. border-style:solid;
  4518. border-color:rgba(220, 223, 230, 1);
  4519. border-radius:4px;
  4520. -moz-box-shadow:none;
  4521. -webkit-box-shadow:none;
  4522. box-shadow:none;
  4523. font-family:"SF UI Text", sans-serif;
  4524. font-weight:400;
  4525. font-style:normal;
  4526. font-size:14px;
  4527. color:rgba(0, 0, 0, 0.6470588235294118);
  4528. }
  4529. #u3788 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:435px;
  4533. top:278px;
  4534. width:110px;
  4535. height:32px;
  4536. display:flex;
  4537. font-family:"SF UI Text", sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:14px;
  4541. color:rgba(0, 0, 0, 0.6470588235294118);
  4542. }
  4543. #u3788 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 2px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u3788_div.mouseOver {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:110px;
  4556. height:32px;
  4557. background:inherit;
  4558. background-color:rgba(236, 245, 255, 1);
  4559. box-sizing:border-box;
  4560. border-width:1px;
  4561. border-style:solid;
  4562. border-color:rgba(198, 226, 255, 1);
  4563. border-radius:4px;
  4564. -moz-box-shadow:none;
  4565. -webkit-box-shadow:none;
  4566. box-shadow:none;
  4567. font-family:"SF UI Text", sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:14px;
  4571. color:rgba(0, 0, 0, 0.6470588235294118);
  4572. }
  4573. #u3788.mouseOver {
  4574. }
  4575. #u3788_div.mouseDown {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:110px;
  4581. height:32px;
  4582. background:inherit;
  4583. background-color:rgba(236, 245, 255, 1);
  4584. box-sizing:border-box;
  4585. border-width:1px;
  4586. border-style:solid;
  4587. border-color:rgba(58, 142, 230, 1);
  4588. border-radius:4px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. font-family:"SF UI Text", sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:14px;
  4596. color:rgba(0, 0, 0, 0.6470588235294118);
  4597. }
  4598. #u3788.mouseDown {
  4599. }
  4600. #u3788_div.disabled {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:110px;
  4606. height:32px;
  4607. background:inherit;
  4608. background-color:rgba(255, 255, 255, 1);
  4609. box-sizing:border-box;
  4610. border-width:1px;
  4611. border-style:solid;
  4612. border-color:rgba(235, 238, 245, 1);
  4613. border-radius:4px;
  4614. -moz-box-shadow:none;
  4615. -webkit-box-shadow:none;
  4616. box-shadow:none;
  4617. font-family:"SF UI Text", sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. font-size:14px;
  4621. color:rgba(0, 0, 0, 0.6470588235294118);
  4622. }
  4623. #u3788.disabled {
  4624. }
  4625. #u3788_div.mouseOver.mouseDown {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:110px;
  4631. height:32px;
  4632. background:inherit;
  4633. background-color:rgba(236, 245, 255, 1);
  4634. box-sizing:border-box;
  4635. border-width:1px;
  4636. border-style:solid;
  4637. border-color:rgba(58, 142, 230, 1);
  4638. border-radius:4px;
  4639. -moz-box-shadow:none;
  4640. -webkit-box-shadow:none;
  4641. box-shadow:none;
  4642. font-family:"SF UI Text", sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:14px;
  4646. color:rgba(0, 0, 0, 0.6470588235294118);
  4647. }
  4648. #u3788.mouseOver.mouseDown {
  4649. }
  4650. #u3788_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. }
  4655. #u3789_div {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:51px;
  4661. height:32px;
  4662. background:inherit;
  4663. background-color:rgba(255, 255, 255, 1);
  4664. box-sizing:border-box;
  4665. border-width:1px;
  4666. border-style:solid;
  4667. border-color:rgba(220, 223, 230, 1);
  4668. border-radius:4px;
  4669. -moz-box-shadow:none;
  4670. -webkit-box-shadow:none;
  4671. box-shadow:none;
  4672. font-size:12px;
  4673. color:#606266;
  4674. }
  4675. #u3789 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:554px;
  4679. top:278px;
  4680. width:51px;
  4681. height:32px;
  4682. display:flex;
  4683. font-size:12px;
  4684. color:#606266;
  4685. }
  4686. #u3789 .text {
  4687. position:absolute;
  4688. align-self:center;
  4689. padding:2px 2px 2px 2px;
  4690. box-sizing:border-box;
  4691. width:100%;
  4692. }
  4693. #u3789_div.mouseOver {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:51px;
  4699. height:32px;
  4700. background:inherit;
  4701. background-color:rgba(236, 245, 255, 1);
  4702. box-sizing:border-box;
  4703. border-width:1px;
  4704. border-style:solid;
  4705. border-color:rgba(198, 226, 255, 1);
  4706. border-radius:4px;
  4707. -moz-box-shadow:none;
  4708. -webkit-box-shadow:none;
  4709. box-shadow:none;
  4710. font-size:12px;
  4711. color:#606266;
  4712. }
  4713. #u3789.mouseOver {
  4714. }
  4715. #u3789_div.mouseDown {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:51px;
  4721. height:32px;
  4722. background:inherit;
  4723. background-color:rgba(236, 245, 255, 1);
  4724. box-sizing:border-box;
  4725. border-width:1px;
  4726. border-style:solid;
  4727. border-color:rgba(58, 142, 230, 1);
  4728. border-radius:4px;
  4729. -moz-box-shadow:none;
  4730. -webkit-box-shadow:none;
  4731. box-shadow:none;
  4732. font-size:12px;
  4733. color:#606266;
  4734. }
  4735. #u3789.mouseDown {
  4736. }
  4737. #u3789_div.disabled {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:51px;
  4743. height:32px;
  4744. background:inherit;
  4745. background-color:rgba(255, 255, 255, 1);
  4746. box-sizing:border-box;
  4747. border-width:1px;
  4748. border-style:solid;
  4749. border-color:rgba(235, 238, 245, 1);
  4750. border-radius:4px;
  4751. -moz-box-shadow:none;
  4752. -webkit-box-shadow:none;
  4753. box-shadow:none;
  4754. font-size:12px;
  4755. color:#606266;
  4756. }
  4757. #u3789.disabled {
  4758. }
  4759. #u3789_div.mouseOver.mouseDown {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:51px;
  4765. height:32px;
  4766. background:inherit;
  4767. background-color:rgba(236, 245, 255, 1);
  4768. box-sizing:border-box;
  4769. border-width:1px;
  4770. border-style:solid;
  4771. border-color:rgba(58, 142, 230, 1);
  4772. border-radius:4px;
  4773. -moz-box-shadow:none;
  4774. -webkit-box-shadow:none;
  4775. box-shadow:none;
  4776. font-size:12px;
  4777. color:#606266;
  4778. }
  4779. #u3789.mouseOver.mouseDown {
  4780. }
  4781. #u3789_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. }
  4786. #u3790 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:0px;
  4792. height:0px;
  4793. }
  4794. #u3791_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. #u3791 {
  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. #u3791 .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. #u3791_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. #u3791.selected {
  4853. }
  4854. #u3791_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. #u3791.disabled {
  4874. }
  4875. #u3791_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. #u3791.selected.disabled {
  4895. }
  4896. #u3791_text {
  4897. border-width:0px;
  4898. white-space:nowrap;
  4899. text-transform:none;
  4900. }
  4901. #u3792_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:13px;
  4907. height:13px;
  4908. }
  4909. #u3792 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:769px;
  4913. top:244px;
  4914. width:13px;
  4915. height:13px;
  4916. display:flex;
  4917. }
  4918. #u3792 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u3792_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u3793 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:0px;
  4937. height:0px;
  4938. }
  4939. #u3794_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. #u3794 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:423px;
  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. #u3794 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:0px 16px 0px 16px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u3794_text {
  4983. border-width:0px;
  4984. word-wrap:break-word;
  4985. text-transform:none;
  4986. }
  4987. #u3795_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. #u3795 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:331px;
  5011. top:827px;
  5012. width:80px;
  5013. height:32px;
  5014. display:flex;
  5015. font-size:12px;
  5016. color:#606266;
  5017. }
  5018. #u3795 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u3795_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. #u3795.mouseOver {
  5046. }
  5047. #u3795_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. #u3795.mouseDown {
  5068. }
  5069. #u3795_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. #u3795.disabled {
  5090. }
  5091. #u3795_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. #u3795.mouseOver.mouseDown {
  5112. }
  5113. #u3795_text {
  5114. border-width:0px;
  5115. word-wrap:break-word;
  5116. text-transform:none;
  5117. }
  5118. #u3796 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:0px;
  5124. height:0px;
  5125. }
  5126. #u3797 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:0px;
  5132. height:0px;
  5133. }
  5134. #u3798_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. #u3798 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:431px;
  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. #u3798 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:2px 2px 2px 13px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u3798_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. #u3798.mouseOver {
  5196. }
  5197. #u3798_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. #u3798.selected {
  5219. }
  5220. #u3798_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. #u3798.disabled {
  5242. }
  5243. #u3798_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. #u3798.mouseOver.selected {
  5265. }
  5266. #u3798_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. #u3798.selected.disabled {
  5288. }
  5289. #u3798_text {
  5290. border-width:0px;
  5291. word-wrap:break-word;
  5292. text-transform:none;
  5293. }
  5294. #u3799 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:431px;
  5298. top:690px;
  5299. width:130px;
  5300. height:102px;
  5301. visibility:hidden;
  5302. }
  5303. #u3799_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. #u3799_state0_content {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:1px;
  5327. height:1px;
  5328. }
  5329. #u3800_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. #u3800 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:4px;
  5352. width:130px;
  5353. height:90px;
  5354. display:flex;
  5355. }
  5356. #u3800 .text {
  5357. position:absolute;
  5358. align-self:center;
  5359. padding:2px 2px 2px 2px;
  5360. box-sizing:border-box;
  5361. width:100%;
  5362. }
  5363. #u3800_text {
  5364. border-width:0px;
  5365. word-wrap:break-word;
  5366. text-transform:none;
  5367. visibility:hidden;
  5368. }
  5369. #u3801_img {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:7px;
  5375. height:4px;
  5376. }
  5377. #u3801 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:22px;
  5381. top:0px;
  5382. width:7px;
  5383. height:4px;
  5384. display:flex;
  5385. }
  5386. #u3801 .text {
  5387. position:absolute;
  5388. align-self:center;
  5389. padding:2px 2px 2px 2px;
  5390. box-sizing:border-box;
  5391. width:100%;
  5392. }
  5393. #u3801_text {
  5394. border-width:0px;
  5395. word-wrap:break-word;
  5396. text-transform:none;
  5397. visibility:hidden;
  5398. }
  5399. #u3802 label {
  5400. left:0px;
  5401. width:100%;
  5402. }
  5403. #u3802_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:2px;
  5408. width:13px;
  5409. height:13px;
  5410. }
  5411. #u3802 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:6px;
  5415. top:8px;
  5416. width:92px;
  5417. height:15px;
  5418. display:flex;
  5419. }
  5420. #u3802 .text {
  5421. position:absolute;
  5422. align-self:flex-start;
  5423. padding:0px 2px 0px 2px;
  5424. box-sizing:border-box;
  5425. }
  5426. #u3802_img.selected {
  5427. }
  5428. #u3802.selected {
  5429. }
  5430. #u3802_img.disabled {
  5431. }
  5432. #u3802.disabled {
  5433. }
  5434. #u3802_img.selected.error {
  5435. }
  5436. #u3802.selected.error {
  5437. }
  5438. #u3802_img.selected.hint {
  5439. }
  5440. #u3802.selected.hint {
  5441. }
  5442. #u3802_img.selected.error.hint {
  5443. }
  5444. #u3802.selected.error.hint {
  5445. }
  5446. #u3802_img.mouseOver.selected {
  5447. }
  5448. #u3802.mouseOver.selected {
  5449. }
  5450. #u3802_img.mouseOver.selected.error {
  5451. }
  5452. #u3802.mouseOver.selected.error {
  5453. }
  5454. #u3802_img.mouseOver.selected.hint {
  5455. }
  5456. #u3802.mouseOver.selected.hint {
  5457. }
  5458. #u3802_img.mouseOver.selected.error.hint {
  5459. }
  5460. #u3802.mouseOver.selected.error.hint {
  5461. }
  5462. #u3802_img.mouseDown.selected {
  5463. }
  5464. #u3802.mouseDown.selected {
  5465. }
  5466. #u3802_img.mouseDown.selected.error {
  5467. }
  5468. #u3802.mouseDown.selected.error {
  5469. }
  5470. #u3802_img.mouseDown.selected.hint {
  5471. }
  5472. #u3802.mouseDown.selected.hint {
  5473. }
  5474. #u3802_img.mouseDown.selected.error.hint {
  5475. }
  5476. #u3802.mouseDown.selected.error.hint {
  5477. }
  5478. #u3802_img.mouseOver.mouseDown.selected {
  5479. }
  5480. #u3802.mouseOver.mouseDown.selected {
  5481. }
  5482. #u3802_img.mouseOver.mouseDown.selected.error {
  5483. }
  5484. #u3802.mouseOver.mouseDown.selected.error {
  5485. }
  5486. #u3802_img.mouseOver.mouseDown.selected.hint {
  5487. }
  5488. #u3802.mouseOver.mouseDown.selected.hint {
  5489. }
  5490. #u3802_img.mouseOver.mouseDown.selected.error.hint {
  5491. }
  5492. #u3802.mouseOver.mouseDown.selected.error.hint {
  5493. }
  5494. #u3802_img.focused.selected {
  5495. }
  5496. #u3802.focused.selected {
  5497. }
  5498. #u3802_img.focused.selected.error {
  5499. }
  5500. #u3802.focused.selected.error {
  5501. }
  5502. #u3802_img.focused.selected.hint {
  5503. }
  5504. #u3802.focused.selected.hint {
  5505. }
  5506. #u3802_img.focused.selected.error.hint {
  5507. }
  5508. #u3802.focused.selected.error.hint {
  5509. }
  5510. #u3802_img.selected.disabled {
  5511. }
  5512. #u3802.selected.disabled {
  5513. }
  5514. #u3802_img.selected.hint.disabled {
  5515. }
  5516. #u3802.selected.hint.disabled {
  5517. }
  5518. #u3802_img.selected.error.disabled {
  5519. }
  5520. #u3802.selected.error.disabled {
  5521. }
  5522. #u3802_img.selected.error.hint.disabled {
  5523. }
  5524. #u3802.selected.error.hint.disabled {
  5525. }
  5526. #u3802_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. #u3802_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. #u3803 label {
  5545. left:0px;
  5546. width:100%;
  5547. }
  5548. #u3803_img {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:2px;
  5553. width:13px;
  5554. height:13px;
  5555. }
  5556. #u3803 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:6px;
  5560. top:29px;
  5561. width:92px;
  5562. height:15px;
  5563. display:flex;
  5564. }
  5565. #u3803 .text {
  5566. position:absolute;
  5567. align-self:flex-start;
  5568. padding:0px 2px 0px 2px;
  5569. box-sizing:border-box;
  5570. }
  5571. #u3803_img.selected {
  5572. }
  5573. #u3803.selected {
  5574. }
  5575. #u3803_img.disabled {
  5576. }
  5577. #u3803.disabled {
  5578. }
  5579. #u3803_img.selected.error {
  5580. }
  5581. #u3803.selected.error {
  5582. }
  5583. #u3803_img.selected.hint {
  5584. }
  5585. #u3803.selected.hint {
  5586. }
  5587. #u3803_img.selected.error.hint {
  5588. }
  5589. #u3803.selected.error.hint {
  5590. }
  5591. #u3803_img.mouseOver.selected {
  5592. }
  5593. #u3803.mouseOver.selected {
  5594. }
  5595. #u3803_img.mouseOver.selected.error {
  5596. }
  5597. #u3803.mouseOver.selected.error {
  5598. }
  5599. #u3803_img.mouseOver.selected.hint {
  5600. }
  5601. #u3803.mouseOver.selected.hint {
  5602. }
  5603. #u3803_img.mouseOver.selected.error.hint {
  5604. }
  5605. #u3803.mouseOver.selected.error.hint {
  5606. }
  5607. #u3803_img.mouseDown.selected {
  5608. }
  5609. #u3803.mouseDown.selected {
  5610. }
  5611. #u3803_img.mouseDown.selected.error {
  5612. }
  5613. #u3803.mouseDown.selected.error {
  5614. }
  5615. #u3803_img.mouseDown.selected.hint {
  5616. }
  5617. #u3803.mouseDown.selected.hint {
  5618. }
  5619. #u3803_img.mouseDown.selected.error.hint {
  5620. }
  5621. #u3803.mouseDown.selected.error.hint {
  5622. }
  5623. #u3803_img.mouseOver.mouseDown.selected {
  5624. }
  5625. #u3803.mouseOver.mouseDown.selected {
  5626. }
  5627. #u3803_img.mouseOver.mouseDown.selected.error {
  5628. }
  5629. #u3803.mouseOver.mouseDown.selected.error {
  5630. }
  5631. #u3803_img.mouseOver.mouseDown.selected.hint {
  5632. }
  5633. #u3803.mouseOver.mouseDown.selected.hint {
  5634. }
  5635. #u3803_img.mouseOver.mouseDown.selected.error.hint {
  5636. }
  5637. #u3803.mouseOver.mouseDown.selected.error.hint {
  5638. }
  5639. #u3803_img.focused.selected {
  5640. }
  5641. #u3803.focused.selected {
  5642. }
  5643. #u3803_img.focused.selected.error {
  5644. }
  5645. #u3803.focused.selected.error {
  5646. }
  5647. #u3803_img.focused.selected.hint {
  5648. }
  5649. #u3803.focused.selected.hint {
  5650. }
  5651. #u3803_img.focused.selected.error.hint {
  5652. }
  5653. #u3803.focused.selected.error.hint {
  5654. }
  5655. #u3803_img.selected.disabled {
  5656. }
  5657. #u3803.selected.disabled {
  5658. }
  5659. #u3803_img.selected.hint.disabled {
  5660. }
  5661. #u3803.selected.hint.disabled {
  5662. }
  5663. #u3803_img.selected.error.disabled {
  5664. }
  5665. #u3803.selected.error.disabled {
  5666. }
  5667. #u3803_img.selected.error.hint.disabled {
  5668. }
  5669. #u3803.selected.error.hint.disabled {
  5670. }
  5671. #u3803_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. #u3803_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. #u3804 label {
  5690. left:0px;
  5691. width:100%;
  5692. }
  5693. #u3804_img {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:0px;
  5697. top:2px;
  5698. width:13px;
  5699. height:13px;
  5700. }
  5701. #u3804 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:6px;
  5705. top:50px;
  5706. width:92px;
  5707. height:15px;
  5708. display:flex;
  5709. }
  5710. #u3804 .text {
  5711. position:absolute;
  5712. align-self:flex-start;
  5713. padding:0px 2px 0px 2px;
  5714. box-sizing:border-box;
  5715. }
  5716. #u3804_img.selected {
  5717. }
  5718. #u3804.selected {
  5719. }
  5720. #u3804_img.disabled {
  5721. }
  5722. #u3804.disabled {
  5723. }
  5724. #u3804_img.selected.error {
  5725. }
  5726. #u3804.selected.error {
  5727. }
  5728. #u3804_img.selected.hint {
  5729. }
  5730. #u3804.selected.hint {
  5731. }
  5732. #u3804_img.selected.error.hint {
  5733. }
  5734. #u3804.selected.error.hint {
  5735. }
  5736. #u3804_img.mouseOver.selected {
  5737. }
  5738. #u3804.mouseOver.selected {
  5739. }
  5740. #u3804_img.mouseOver.selected.error {
  5741. }
  5742. #u3804.mouseOver.selected.error {
  5743. }
  5744. #u3804_img.mouseOver.selected.hint {
  5745. }
  5746. #u3804.mouseOver.selected.hint {
  5747. }
  5748. #u3804_img.mouseOver.selected.error.hint {
  5749. }
  5750. #u3804.mouseOver.selected.error.hint {
  5751. }
  5752. #u3804_img.mouseDown.selected {
  5753. }
  5754. #u3804.mouseDown.selected {
  5755. }
  5756. #u3804_img.mouseDown.selected.error {
  5757. }
  5758. #u3804.mouseDown.selected.error {
  5759. }
  5760. #u3804_img.mouseDown.selected.hint {
  5761. }
  5762. #u3804.mouseDown.selected.hint {
  5763. }
  5764. #u3804_img.mouseDown.selected.error.hint {
  5765. }
  5766. #u3804.mouseDown.selected.error.hint {
  5767. }
  5768. #u3804_img.mouseOver.mouseDown.selected {
  5769. }
  5770. #u3804.mouseOver.mouseDown.selected {
  5771. }
  5772. #u3804_img.mouseOver.mouseDown.selected.error {
  5773. }
  5774. #u3804.mouseOver.mouseDown.selected.error {
  5775. }
  5776. #u3804_img.mouseOver.mouseDown.selected.hint {
  5777. }
  5778. #u3804.mouseOver.mouseDown.selected.hint {
  5779. }
  5780. #u3804_img.mouseOver.mouseDown.selected.error.hint {
  5781. }
  5782. #u3804.mouseOver.mouseDown.selected.error.hint {
  5783. }
  5784. #u3804_img.focused.selected {
  5785. }
  5786. #u3804.focused.selected {
  5787. }
  5788. #u3804_img.focused.selected.error {
  5789. }
  5790. #u3804.focused.selected.error {
  5791. }
  5792. #u3804_img.focused.selected.hint {
  5793. }
  5794. #u3804.focused.selected.hint {
  5795. }
  5796. #u3804_img.focused.selected.error.hint {
  5797. }
  5798. #u3804.focused.selected.error.hint {
  5799. }
  5800. #u3804_img.selected.disabled {
  5801. }
  5802. #u3804.selected.disabled {
  5803. }
  5804. #u3804_img.selected.hint.disabled {
  5805. }
  5806. #u3804.selected.hint.disabled {
  5807. }
  5808. #u3804_img.selected.error.disabled {
  5809. }
  5810. #u3804.selected.error.disabled {
  5811. }
  5812. #u3804_img.selected.error.hint.disabled {
  5813. }
  5814. #u3804.selected.error.hint.disabled {
  5815. }
  5816. #u3804_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. #u3804_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. #u3805 label {
  5835. left:0px;
  5836. width:100%;
  5837. }
  5838. #u3805_img {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:2px;
  5843. width:13px;
  5844. height:13px;
  5845. }
  5846. #u3805 {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:6px;
  5850. top:71px;
  5851. width:92px;
  5852. height:15px;
  5853. display:flex;
  5854. }
  5855. #u3805 .text {
  5856. position:absolute;
  5857. align-self:flex-start;
  5858. padding:0px 2px 0px 2px;
  5859. box-sizing:border-box;
  5860. }
  5861. #u3805_img.selected {
  5862. }
  5863. #u3805.selected {
  5864. }
  5865. #u3805_img.disabled {
  5866. }
  5867. #u3805.disabled {
  5868. }
  5869. #u3805_img.selected.error {
  5870. }
  5871. #u3805.selected.error {
  5872. }
  5873. #u3805_img.selected.hint {
  5874. }
  5875. #u3805.selected.hint {
  5876. }
  5877. #u3805_img.selected.error.hint {
  5878. }
  5879. #u3805.selected.error.hint {
  5880. }
  5881. #u3805_img.mouseOver.selected {
  5882. }
  5883. #u3805.mouseOver.selected {
  5884. }
  5885. #u3805_img.mouseOver.selected.error {
  5886. }
  5887. #u3805.mouseOver.selected.error {
  5888. }
  5889. #u3805_img.mouseOver.selected.hint {
  5890. }
  5891. #u3805.mouseOver.selected.hint {
  5892. }
  5893. #u3805_img.mouseOver.selected.error.hint {
  5894. }
  5895. #u3805.mouseOver.selected.error.hint {
  5896. }
  5897. #u3805_img.mouseDown.selected {
  5898. }
  5899. #u3805.mouseDown.selected {
  5900. }
  5901. #u3805_img.mouseDown.selected.error {
  5902. }
  5903. #u3805.mouseDown.selected.error {
  5904. }
  5905. #u3805_img.mouseDown.selected.hint {
  5906. }
  5907. #u3805.mouseDown.selected.hint {
  5908. }
  5909. #u3805_img.mouseDown.selected.error.hint {
  5910. }
  5911. #u3805.mouseDown.selected.error.hint {
  5912. }
  5913. #u3805_img.mouseOver.mouseDown.selected {
  5914. }
  5915. #u3805.mouseOver.mouseDown.selected {
  5916. }
  5917. #u3805_img.mouseOver.mouseDown.selected.error {
  5918. }
  5919. #u3805.mouseOver.mouseDown.selected.error {
  5920. }
  5921. #u3805_img.mouseOver.mouseDown.selected.hint {
  5922. }
  5923. #u3805.mouseOver.mouseDown.selected.hint {
  5924. }
  5925. #u3805_img.mouseOver.mouseDown.selected.error.hint {
  5926. }
  5927. #u3805.mouseOver.mouseDown.selected.error.hint {
  5928. }
  5929. #u3805_img.focused.selected {
  5930. }
  5931. #u3805.focused.selected {
  5932. }
  5933. #u3805_img.focused.selected.error {
  5934. }
  5935. #u3805.focused.selected.error {
  5936. }
  5937. #u3805_img.focused.selected.hint {
  5938. }
  5939. #u3805.focused.selected.hint {
  5940. }
  5941. #u3805_img.focused.selected.error.hint {
  5942. }
  5943. #u3805.focused.selected.error.hint {
  5944. }
  5945. #u3805_img.selected.disabled {
  5946. }
  5947. #u3805.selected.disabled {
  5948. }
  5949. #u3805_img.selected.hint.disabled {
  5950. }
  5951. #u3805.selected.hint.disabled {
  5952. }
  5953. #u3805_img.selected.error.disabled {
  5954. }
  5955. #u3805.selected.error.disabled {
  5956. }
  5957. #u3805_img.selected.error.hint.disabled {
  5958. }
  5959. #u3805.selected.error.hint.disabled {
  5960. }
  5961. #u3805_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. #u3805_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. #u3806_img {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:10px;
  5985. height:6px;
  5986. }
  5987. #u3806 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:545px;
  5991. top:669px;
  5992. width:10px;
  5993. height:6px;
  5994. display:flex;
  5995. }
  5996. #u3806 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:2px 2px 2px 20px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u3806_text {
  6004. border-width:0px;
  6005. word-wrap:break-word;
  6006. text-transform:none;
  6007. visibility:hidden;
  6008. }
  6009. #u3807_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. #u3807 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:323px;
  6028. top:664px;
  6029. width:80px;
  6030. height:16px;
  6031. display:flex;
  6032. }
  6033. #u3807 .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. #u3807_text {
  6041. border-width:0px;
  6042. white-space:nowrap;
  6043. text-transform:none;
  6044. }