styles.css 106 KB

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