styles.css 103 KB

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