styles.css 141 KB

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