styles.css 141 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1506px;
  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. #u3929 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u3930_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. #u3930 {
  43. border-width:0px;
  44. position:absolute;
  45. left:280px;
  46. top:37px;
  47. width:1184px;
  48. height:64px;
  49. display:flex;
  50. }
  51. #u3930 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u3930_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u3931_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:20px;
  70. height:15px;
  71. }
  72. #u3931 {
  73. border-width:0px;
  74. position:absolute;
  75. left:308px;
  76. top:62px;
  77. width:20px;
  78. height:15px;
  79. display:flex;
  80. }
  81. #u3931 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u3931_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u3932 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u3933_img {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:24px;
  108. height:24px;
  109. }
  110. #u3933 {
  111. border-width:0px;
  112. position:absolute;
  113. left:1341px;
  114. top:58px;
  115. width:24px;
  116. height:24px;
  117. display:flex;
  118. }
  119. #u3933 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u3933_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u3934_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. #u3934 {
  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. #u3934 .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. #u3934_text {
  168. border-width:0px;
  169. white-space:nowrap;
  170. text-transform:none;
  171. }
  172. #u3935_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. #u3935 {
  188. border-width:0px;
  189. position:absolute;
  190. left:24px;
  191. top:37px;
  192. width:256px;
  193. height:984px;
  194. display:flex;
  195. }
  196. #u3935 .text {
  197. position:absolute;
  198. align-self:center;
  199. padding:2px 2px 2px 2px;
  200. box-sizing:border-box;
  201. width:100%;
  202. }
  203. #u3935_text {
  204. border-width:0px;
  205. word-wrap:break-word;
  206. text-transform:none;
  207. visibility:hidden;
  208. }
  209. #u3936_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:256px;
  215. height:65px;
  216. }
  217. #u3936 {
  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. #u3936 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:0px 0px 0px 68px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u3936_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u3937 {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:0px;
  251. height:0px;
  252. }
  253. #u3938_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. #u3938 {
  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. #u3938 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:16px 2px 16px 50px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u3938_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. }
  303. #u3939_img {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:14px;
  309. height:14px;
  310. }
  311. #u3939 {
  312. border-width:0px;
  313. position:absolute;
  314. left:48px;
  315. top:122px;
  316. width:14px;
  317. height:14px;
  318. display:flex;
  319. }
  320. #u3939 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u3939_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. visibility:hidden;
  332. }
  333. #u3940_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:7px;
  339. height:14px;
  340. }
  341. #u3940 {
  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. #u3940 .text {
  356. position:absolute;
  357. align-self:center;
  358. padding:0px 0px 0px 0px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u3940_text {
  363. border-width:0px;
  364. white-space:nowrap;
  365. text-transform:none;
  366. }
  367. #u3941 {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:0px;
  373. height:0px;
  374. }
  375. #u3942_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. #u3942 {
  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. #u3942 .text {
  414. position:absolute;
  415. align-self:center;
  416. padding:16px 2px 16px 50px;
  417. box-sizing:border-box;
  418. width:100%;
  419. }
  420. #u3942_text {
  421. border-width:0px;
  422. word-wrap:break-word;
  423. text-transform:none;
  424. }
  425. #u3943_img {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:14px;
  431. height:14px;
  432. }
  433. #u3943 {
  434. border-width:0px;
  435. position:absolute;
  436. left:48px;
  437. top:825px;
  438. width:14px;
  439. height:14px;
  440. display:flex;
  441. }
  442. #u3943 .text {
  443. position:absolute;
  444. align-self:center;
  445. padding:2px 2px 2px 2px;
  446. box-sizing:border-box;
  447. width:100%;
  448. }
  449. #u3943_text {
  450. border-width:0px;
  451. word-wrap:break-word;
  452. text-transform:none;
  453. visibility:hidden;
  454. }
  455. #u3944_img {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:7px;
  461. height:14px;
  462. }
  463. #u3944 {
  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. #u3944 .text {
  478. position:absolute;
  479. align-self:center;
  480. padding:0px 0px 0px 0px;
  481. box-sizing:border-box;
  482. width:100%;
  483. }
  484. #u3944_text {
  485. border-width:0px;
  486. white-space:nowrap;
  487. text-transform:none;
  488. }
  489. #u3945 {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:0px;
  495. height:0px;
  496. }
  497. #u3946_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. #u3946 {
  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. #u3946 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:16px 2px 16px 50px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u3946_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. }
  547. #u3947_img {
  548. border-width:0px;
  549. position:absolute;
  550. left:0px;
  551. top:0px;
  552. width:14px;
  553. height:14px;
  554. }
  555. #u3947 {
  556. border-width:0px;
  557. position:absolute;
  558. left:48px;
  559. top:879px;
  560. width:14px;
  561. height:14px;
  562. display:flex;
  563. }
  564. #u3947 .text {
  565. position:absolute;
  566. align-self:center;
  567. padding:2px 2px 2px 2px;
  568. box-sizing:border-box;
  569. width:100%;
  570. }
  571. #u3947_text {
  572. border-width:0px;
  573. word-wrap:break-word;
  574. text-transform:none;
  575. visibility:hidden;
  576. }
  577. #u3948_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:7px;
  583. height:14px;
  584. }
  585. #u3948 {
  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. #u3948 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:0px 0px 0px 0px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u3948_text {
  607. border-width:0px;
  608. white-space:nowrap;
  609. text-transform:none;
  610. }
  611. #u3949_img {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:7px;
  617. height:14px;
  618. }
  619. #u3949 {
  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. #u3949 .text {
  634. position:absolute;
  635. align-self:center;
  636. padding:0px 0px 0px 0px;
  637. box-sizing:border-box;
  638. width:100%;
  639. }
  640. #u3949_text {
  641. border-width:0px;
  642. white-space:nowrap;
  643. text-transform:none;
  644. }
  645. #u3950 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u3951_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. #u3951 {
  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. #u3951 .text {
  692. position:absolute;
  693. align-self:center;
  694. padding:16px 2px 16px 50px;
  695. box-sizing:border-box;
  696. width:100%;
  697. }
  698. #u3951_text {
  699. border-width:0px;
  700. word-wrap:break-word;
  701. text-transform:none;
  702. }
  703. #u3952_img {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:0px;
  708. width:15px;
  709. height:14px;
  710. }
  711. #u3952 {
  712. border-width:0px;
  713. position:absolute;
  714. left:48px;
  715. top:173px;
  716. width:15px;
  717. height:14px;
  718. display:flex;
  719. }
  720. #u3952 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u3952_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. visibility:hidden;
  732. }
  733. #u3953_img {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:7px;
  739. height:14px;
  740. }
  741. #u3953 {
  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. #u3953 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:0px 0px 0px 0px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u3953_text {
  763. border-width:0px;
  764. white-space:nowrap;
  765. text-transform:none;
  766. }
  767. #u3954 {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:0px;
  773. height:0px;
  774. }
  775. #u3955 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u3956_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. #u3956 {
  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. #u3956 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:12px 0px 12px 50px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u3956_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. }
  833. #u3957 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:0px;
  839. height:0px;
  840. }
  841. #u3958_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. #u3958 {
  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. #u3958 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:16px 2px 16px 50px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u3958_text {
  887. border-width:0px;
  888. word-wrap:break-word;
  889. text-transform:none;
  890. }
  891. #u3959_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:14px;
  897. height:14px;
  898. }
  899. #u3959 {
  900. border-width:0px;
  901. position:absolute;
  902. left:48px;
  903. top:933px;
  904. width:14px;
  905. height:14px;
  906. display:flex;
  907. }
  908. #u3959 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u3959_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u3960_img {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:7px;
  927. height:14px;
  928. }
  929. #u3960 {
  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. #u3960 .text {
  944. position:absolute;
  945. align-self:center;
  946. padding:0px 0px 0px 0px;
  947. box-sizing:border-box;
  948. width:100%;
  949. }
  950. #u3960_text {
  951. border-width:0px;
  952. white-space:nowrap;
  953. text-transform:none;
  954. }
  955. #u3961 {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:0px;
  961. height:0px;
  962. }
  963. #u3962_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. #u3962 {
  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. #u3962 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:16px 2px 16px 50px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u3962_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. }
  1013. #u3963_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:14px;
  1019. height:14px;
  1020. }
  1021. #u3963 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:48px;
  1025. top:987px;
  1026. width:14px;
  1027. height:14px;
  1028. display:flex;
  1029. }
  1030. #u3963 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u3963_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u3964_img {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:7px;
  1049. height:14px;
  1050. }
  1051. #u3964 {
  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. #u3964 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:0px 0px 0px 0px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u3964_text {
  1073. border-width:0px;
  1074. white-space:nowrap;
  1075. text-transform:none;
  1076. }
  1077. #u3965 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:0px;
  1083. height:0px;
  1084. }
  1085. #u3966_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. #u3966 {
  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. #u3966 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:12px 0px 12px 50px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u3966_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u3967 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u3968_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. #u3968 {
  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. #u3968 .text {
  1182. position:absolute;
  1183. align-self:center;
  1184. padding:12px 0px 12px 50px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u3968_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. }
  1193. #u3969_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. #u3969 {
  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. #u3969 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:12px 0px 12px 50px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u3969_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. }
  1243. #u3970_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. #u3970 {
  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. #u3970 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:12px 0px 12px 50px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u3970_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u3971_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. #u3971 {
  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. #u3971 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:12px 0px 12px 50px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u3971_text {
  1339. border-width:0px;
  1340. word-wrap:break-word;
  1341. text-transform:none;
  1342. }
  1343. #u3972_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. #u3972 {
  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. #u3972 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:12px 0px 12px 50px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u3972_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. }
  1393. #u3973_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. #u3973 {
  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. #u3973 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:12px 0px 12px 50px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u3973_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u3974_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. #u3974 {
  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. #u3974 .text {
  1482. position:absolute;
  1483. align-self:center;
  1484. padding:12px 0px 12px 50px;
  1485. box-sizing:border-box;
  1486. width:100%;
  1487. }
  1488. #u3974_text {
  1489. border-width:0px;
  1490. word-wrap:break-word;
  1491. text-transform:none;
  1492. }
  1493. #u3975_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. #u3975 {
  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. #u3975 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:12px 0px 12px 50px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u3975_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. }
  1543. #u3976_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. #u3976 {
  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. #u3976 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:12px 0px 12px 74px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u3976_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. }
  1601. #u3977 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:0px;
  1607. height:0px;
  1608. }
  1609. #u3978_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. #u3978 {
  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. #u3978 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:12px 0px 12px 50px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u3978_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. }
  1659. #u3979_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. #u3979 {
  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. #u3979 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:12px 0px 12px 50px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u3979_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u3980_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. #u3980 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:280px;
  1728. top:101px;
  1729. width:1239px;
  1730. height:920px;
  1731. display:flex;
  1732. }
  1733. #u3980 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u3980_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u3981 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:0px;
  1752. height:0px;
  1753. }
  1754. #u3982_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. #u3982 {
  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. #u3982 .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. #u3982_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u3983 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:292px;
  1809. top:171px;
  1810. width:32px;
  1811. height:32px;
  1812. }
  1813. #u3983_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. #u3983_state0_content {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:1px;
  1837. height:1px;
  1838. }
  1839. #u3984 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:1409px;
  1843. top:171px;
  1844. width:32px;
  1845. height:32px;
  1846. }
  1847. #u3984_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. #u3984_state0_content {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:1px;
  1871. height:1px;
  1872. }
  1873. #u3985_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. #u3985 {
  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. #u3985 .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. #u3985_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. visibility:hidden;
  1926. }
  1927. #u3986_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. #u3986 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:429px;
  1946. top:124px;
  1947. width:7px;
  1948. height:25px;
  1949. display:flex;
  1950. }
  1951. #u3986 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u3986_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. visibility:hidden;
  1963. }
  1964. #u3987_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. #u3987 {
  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. #u3987 .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. #u3987_text {
  2006. border-width:0px;
  2007. white-space:nowrap;
  2008. text-transform:none;
  2009. }
  2010. #u3988_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. #u3988 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:292px;
  2032. top:109px;
  2033. width:120px;
  2034. height:52px;
  2035. display:flex;
  2036. }
  2037. #u3988 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u3988_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u3989 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:0px;
  2055. height:0px;
  2056. }
  2057. #u3990_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. #u3990 {
  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. #u3990 .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. #u3990_text {
  2099. border-width:0px;
  2100. white-space:nowrap;
  2101. text-transform:none;
  2102. }
  2103. #u3991_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. #u3991 {
  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. #u3991 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u3991_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u3992 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:0px;
  2148. height:0px;
  2149. }
  2150. #u3993_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. #u3993 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:436px;
  2172. top:330px;
  2173. width:278px;
  2174. height:32px;
  2175. display:flex;
  2176. }
  2177. #u3993 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u3993_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. #u3993.mouseOver {
  2203. }
  2204. #u3993_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. #u3993.selected {
  2223. }
  2224. #u3993_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. #u3993.mouseOver.selected {
  2243. }
  2244. #u3993_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u3994_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. #u3994_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. #u3994_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. #u3994_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. #u3994_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. #u3994 {
  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. #u3994 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u3994_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. #u3994.hint {
  2379. }
  2380. #u3994_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. #u3994.disabled {
  2398. }
  2399. #u3994_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. #u3994.hint.disabled {
  2417. }
  2418. #u3995_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. #u3995 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:324px;
  2437. top:335px;
  2438. width:80px;
  2439. height:16px;
  2440. display:flex;
  2441. }
  2442. #u3995 .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. #u3995_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u3996 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:0px;
  2460. height:0px;
  2461. }
  2462. #u3997_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. #u3997 {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:800px;
  2484. top:69px;
  2485. width:278px;
  2486. height:32px;
  2487. display:flex;
  2488. }
  2489. #u3997 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 2px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u3997_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. #u3997.mouseOver {
  2515. }
  2516. #u3997_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. #u3997.selected {
  2535. }
  2536. #u3997_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. #u3997.mouseOver.selected {
  2555. }
  2556. #u3997_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u3998_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. #u3998_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. #u3998_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. #u3998_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. #u3998_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. #u3998 {
  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. #u3998 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 2px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u3998_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. #u3998.hint {
  2691. }
  2692. #u3998_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. #u3998.disabled {
  2710. }
  2711. #u3998_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. #u3998.hint.disabled {
  2729. }
  2730. #u3999 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:0px;
  2736. height:0px;
  2737. }
  2738. #u4000_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. #u4000 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:324px;
  2757. top:241px;
  2758. width:80px;
  2759. height:16px;
  2760. display:flex;
  2761. }
  2762. #u4000 .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. #u4000_text {
  2770. border-width:0px;
  2771. white-space:nowrap;
  2772. text-transform:none;
  2773. }
  2774. #u4001 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:0px;
  2780. height:0px;
  2781. }
  2782. #u4002_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. #u4002 {
  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. #u4002 .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. #u4002_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. #u4002.selected {
  2841. }
  2842. #u4002_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. #u4002.disabled {
  2862. }
  2863. #u4002_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. #u4002.selected.disabled {
  2883. }
  2884. #u4002_text {
  2885. border-width:0px;
  2886. white-space:nowrap;
  2887. text-transform:none;
  2888. }
  2889. #u4003_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:13px;
  2895. height:13px;
  2896. }
  2897. #u4003 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:436px;
  2901. top:242px;
  2902. width:13px;
  2903. height:13px;
  2904. display:flex;
  2905. }
  2906. #u4003 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 2px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u4003_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u4004_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. #u4004 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:324px;
  2938. top:392px;
  2939. width:80px;
  2940. height:16px;
  2941. display:flex;
  2942. }
  2943. #u4004 .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. #u4004_text {
  2951. border-width:0px;
  2952. white-space:nowrap;
  2953. text-transform:none;
  2954. }
  2955. #u4005_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. #u4005 {
  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. #u4005 .text {
  2982. position:absolute;
  2983. align-self:center;
  2984. padding:2px 2px 2px 2px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u4005_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u4006_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. #u4006 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:610px;
  3012. top:409px;
  3013. width:190px;
  3014. height:60px;
  3015. display:flex;
  3016. }
  3017. #u4006 .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. #u4006_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u4007_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:-3px;
  3033. top:-13px;
  3034. width:117px;
  3035. height:31px;
  3036. }
  3037. #u4007 {
  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. #u4007 .text {
  3051. position:absolute;
  3052. align-self:center;
  3053. padding:2px 2px 2px 2px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u4007_text {
  3058. border-width:0px;
  3059. word-wrap:break-word;
  3060. text-transform:none;
  3061. visibility:hidden;
  3062. }
  3063. #u4008 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:0px;
  3069. height:0px;
  3070. }
  3071. #u4009_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. #u4009 {
  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. #u4009 .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. #u4009_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. #u4009.selected {
  3130. }
  3131. #u4009_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. #u4009.disabled {
  3151. }
  3152. #u4009_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. #u4009.selected.disabled {
  3172. }
  3173. #u4009_text {
  3174. border-width:0px;
  3175. white-space:nowrap;
  3176. text-transform:none;
  3177. }
  3178. #u4010_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:13px;
  3184. height:13px;
  3185. }
  3186. #u4010 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:695px;
  3190. top:242px;
  3191. width:13px;
  3192. height:13px;
  3193. display:flex;
  3194. }
  3195. #u4010 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u4010_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u4011 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:0px;
  3214. height:0px;
  3215. }
  3216. #u4012_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. #u4012 {
  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. #u4012 .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. #u4012_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. #u4012.selected {
  3275. }
  3276. #u4012_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. #u4012.disabled {
  3296. }
  3297. #u4012_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. #u4012.selected.disabled {
  3317. }
  3318. #u4012_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u4013_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:13px;
  3329. height:13px;
  3330. }
  3331. #u4013 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:623px;
  3335. top:242px;
  3336. width:13px;
  3337. height:13px;
  3338. display:flex;
  3339. }
  3340. #u4013 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 2px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u4013_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u4014 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:0px;
  3359. height:0px;
  3360. }
  3361. #u4015_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. #u4015 {
  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. #u4015 .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. #u4015_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. #u4015.selected {
  3420. }
  3421. #u4015_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. #u4015.disabled {
  3441. }
  3442. #u4015_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. #u4015.selected.disabled {
  3462. }
  3463. #u4015_text {
  3464. border-width:0px;
  3465. white-space:nowrap;
  3466. text-transform:none;
  3467. }
  3468. #u4016_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:13px;
  3474. height:13px;
  3475. }
  3476. #u4016 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:518px;
  3480. top:242px;
  3481. width:13px;
  3482. height:13px;
  3483. display:flex;
  3484. }
  3485. #u4016 .text {
  3486. position:absolute;
  3487. align-self:center;
  3488. padding:2px 2px 2px 2px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u4016_text {
  3493. border-width:0px;
  3494. word-wrap:break-word;
  3495. text-transform:none;
  3496. visibility:hidden;
  3497. }
  3498. #u4017 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:0px;
  3504. height:0px;
  3505. }
  3506. #u4018_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. #u4018 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:436px;
  3528. top:496px;
  3529. width:278px;
  3530. height:32px;
  3531. display:flex;
  3532. }
  3533. #u4018 .text {
  3534. position:absolute;
  3535. align-self:center;
  3536. padding:2px 2px 2px 2px;
  3537. box-sizing:border-box;
  3538. width:100%;
  3539. }
  3540. #u4018_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. #u4018.mouseOver {
  3559. }
  3560. #u4018_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. #u4018.selected {
  3579. }
  3580. #u4018_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. #u4018.mouseOver.selected {
  3599. }
  3600. #u4018_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u4019_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. #u4019_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. #u4019_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. #u4019_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. #u4019_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. #u4019 {
  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. #u4019 .text {
  3711. position:absolute;
  3712. align-self:center;
  3713. padding:2px 2px 2px 2px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u4019_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. #u4019.hint {
  3735. }
  3736. #u4019_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. #u4019.disabled {
  3754. }
  3755. #u4019_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. #u4019.hint.disabled {
  3773. }
  3774. #u4020_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. #u4020 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:324px;
  3793. top:501px;
  3794. width:80px;
  3795. height:16px;
  3796. display:flex;
  3797. }
  3798. #u4020 .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. #u4020_text {
  3806. border-width:0px;
  3807. white-space:nowrap;
  3808. text-transform:none;
  3809. }
  3810. #u4021 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:0px;
  3816. height:0px;
  3817. }
  3818. #u4022_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. #u4022 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:436px;
  3840. top:551px;
  3841. width:278px;
  3842. height:32px;
  3843. display:flex;
  3844. }
  3845. #u4022 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 2px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u4022_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. #u4022.mouseOver {
  3871. }
  3872. #u4022_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. #u4022.selected {
  3891. }
  3892. #u4022_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. #u4022.mouseOver.selected {
  3911. }
  3912. #u4022_text {
  3913. border-width:0px;
  3914. word-wrap:break-word;
  3915. text-transform:none;
  3916. visibility:hidden;
  3917. }
  3918. #u4023_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. #u4023_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. #u4023_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. #u4023_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. #u4023_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. #u4023 {
  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. #u4023 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:2px 2px 2px 2px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u4023_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. #u4023.hint {
  4047. }
  4048. #u4023_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. #u4023.disabled {
  4066. }
  4067. #u4023_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. #u4023.hint.disabled {
  4085. }
  4086. #u4024_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. #u4024 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:324px;
  4105. top:556px;
  4106. width:80px;
  4107. height:16px;
  4108. display:flex;
  4109. }
  4110. #u4024 .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. #u4024_text {
  4118. border-width:0px;
  4119. white-space:nowrap;
  4120. text-transform:none;
  4121. }
  4122. #u4025 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:0px;
  4128. height:0px;
  4129. }
  4130. #u4026_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. #u4026 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:436px;
  4152. top:606px;
  4153. width:278px;
  4154. height:32px;
  4155. display:flex;
  4156. }
  4157. #u4026 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 2px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u4026_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. #u4026.mouseOver {
  4183. }
  4184. #u4026_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. #u4026.selected {
  4203. }
  4204. #u4026_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. #u4026.mouseOver.selected {
  4223. }
  4224. #u4026_text {
  4225. border-width:0px;
  4226. word-wrap:break-word;
  4227. text-transform:none;
  4228. visibility:hidden;
  4229. }
  4230. #u4027_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. #u4027_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. #u4027_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. #u4027_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. #u4027_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. #u4027 {
  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. #u4027 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u4027_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. #u4027.hint {
  4359. }
  4360. #u4027_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. #u4027.disabled {
  4378. }
  4379. #u4027_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. #u4027.hint.disabled {
  4397. }
  4398. #u4028_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. #u4028 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:324px;
  4417. top:611px;
  4418. width:108px;
  4419. height:16px;
  4420. display:flex;
  4421. }
  4422. #u4028 .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. #u4028_text {
  4430. border-width:0px;
  4431. white-space:nowrap;
  4432. text-transform:none;
  4433. }
  4434. #u4029_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. #u4029 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:678px;
  4453. top:-128px;
  4454. width:317px;
  4455. height:111px;
  4456. display:flex;
  4457. }
  4458. #u4029 .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. #u4029_text {
  4466. border-width:0px;
  4467. word-wrap:break-word;
  4468. text-transform:none;
  4469. }
  4470. #u4030_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. #u4030 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:315px;
  4489. top:288px;
  4490. width:94px;
  4491. height:16px;
  4492. display:flex;
  4493. }
  4494. #u4030 .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. #u4030_text {
  4502. border-width:0px;
  4503. white-space:nowrap;
  4504. text-transform:none;
  4505. }
  4506. #u4031_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. #u4031 {
  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. #u4031 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 2px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u4031_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. #u4031.mouseOver {
  4565. }
  4566. #u4031_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. #u4031.mouseDown {
  4587. }
  4588. #u4031_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. #u4031.disabled {
  4609. }
  4610. #u4031_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. #u4031.mouseOver.mouseDown {
  4631. }
  4632. #u4031_text {
  4633. border-width:0px;
  4634. word-wrap:break-word;
  4635. text-transform:none;
  4636. }
  4637. #u4032_div {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:0px;
  4642. width:70px;
  4643. height:16px;
  4644. background:inherit;
  4645. background-color:rgba(255, 255, 255, 0);
  4646. border:none;
  4647. border-radius:0px;
  4648. -moz-box-shadow:none;
  4649. -webkit-box-shadow:none;
  4650. box-shadow:none;
  4651. }
  4652. #u4032 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:421px;
  4656. top:269px;
  4657. width:70px;
  4658. height:16px;
  4659. display:flex;
  4660. }
  4661. #u4032 .text {
  4662. position:absolute;
  4663. align-self:flex-start;
  4664. padding:0px 0px 0px 0px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u4032_text {
  4669. border-width:0px;
  4670. white-space:nowrap;
  4671. text-transform:none;
  4672. }
  4673. #u4033_div {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:190px;
  4679. height:90px;
  4680. background:inherit;
  4681. background-color:rgba(255, 223, 37, 1);
  4682. border:none;
  4683. border-radius:0px;
  4684. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4685. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4686. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4687. }
  4688. #u4033 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:712px;
  4692. top:188px;
  4693. width:190px;
  4694. height:90px;
  4695. display:flex;
  4696. }
  4697. #u4033 .text {
  4698. position:absolute;
  4699. align-self:flex-start;
  4700. padding:10px 10px 10px 10px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u4033_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. }
  4709. #u4034_div {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:80px;
  4715. height:16px;
  4716. background:inherit;
  4717. background-color:rgba(255, 255, 255, 0);
  4718. border:none;
  4719. border-radius:0px;
  4720. -moz-box-shadow:none;
  4721. -webkit-box-shadow:none;
  4722. box-shadow:none;
  4723. }
  4724. #u4034 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:324px;
  4728. top:656px;
  4729. width:80px;
  4730. height:16px;
  4731. display:flex;
  4732. }
  4733. #u4034 .text {
  4734. position:absolute;
  4735. align-self:flex-start;
  4736. padding:0px 0px 0px 0px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u4034_text {
  4741. border-width:0px;
  4742. white-space:nowrap;
  4743. text-transform:none;
  4744. }
  4745. #u4035 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:0px;
  4751. height:0px;
  4752. }
  4753. #u4036 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:0px;
  4759. height:0px;
  4760. }
  4761. #u4037_div {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:130px;
  4767. height:36px;
  4768. background:inherit;
  4769. background-color:rgba(255, 255, 255, 1);
  4770. box-sizing:border-box;
  4771. border-width:1px;
  4772. border-style:solid;
  4773. border-color:rgba(220, 223, 230, 1);
  4774. border-radius:4px;
  4775. -moz-box-shadow:none;
  4776. -webkit-box-shadow:none;
  4777. box-shadow:none;
  4778. font-size:14px;
  4779. color:#C0C4CC;
  4780. text-align:left;
  4781. }
  4782. #u4037 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:432px;
  4786. top:646px;
  4787. width:130px;
  4788. height:36px;
  4789. display:flex;
  4790. font-size:14px;
  4791. color:#C0C4CC;
  4792. text-align:left;
  4793. }
  4794. #u4037 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 13px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u4037_div.mouseOver {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:130px;
  4807. height:36px;
  4808. background:inherit;
  4809. background-color:rgba(255, 255, 255, 1);
  4810. box-sizing:border-box;
  4811. border-width:1px;
  4812. border-style:solid;
  4813. border-color:rgba(192, 196, 204, 1);
  4814. border-radius:4px;
  4815. -moz-box-shadow:none;
  4816. -webkit-box-shadow:none;
  4817. box-shadow:none;
  4818. font-size:14px;
  4819. color:#C0C4CC;
  4820. text-align:left;
  4821. }
  4822. #u4037.mouseOver {
  4823. }
  4824. #u4037_div.selected {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:130px;
  4830. height:36px;
  4831. background:inherit;
  4832. background-color:rgba(255, 255, 255, 1);
  4833. box-sizing:border-box;
  4834. border-width:1px;
  4835. border-style:solid;
  4836. border-color:rgba(64, 158, 255, 1);
  4837. border-radius:4px;
  4838. -moz-box-shadow:none;
  4839. -webkit-box-shadow:none;
  4840. box-shadow:none;
  4841. font-size:14px;
  4842. color:#C0C4CC;
  4843. text-align:left;
  4844. }
  4845. #u4037.selected {
  4846. }
  4847. #u4037_div.disabled {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:130px;
  4853. height:36px;
  4854. background:inherit;
  4855. background-color:rgba(245, 247, 250, 1);
  4856. box-sizing:border-box;
  4857. border-width:1px;
  4858. border-style:solid;
  4859. border-color:rgba(220, 223, 230, 1);
  4860. border-radius:4px;
  4861. -moz-box-shadow:none;
  4862. -webkit-box-shadow:none;
  4863. box-shadow:none;
  4864. font-size:14px;
  4865. color:#C0C4CC;
  4866. text-align:left;
  4867. }
  4868. #u4037.disabled {
  4869. }
  4870. #u4037_div.mouseOver.selected {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:130px;
  4876. height:36px;
  4877. background:inherit;
  4878. background-color:rgba(255, 255, 255, 1);
  4879. box-sizing:border-box;
  4880. border-width:1px;
  4881. border-style:solid;
  4882. border-color:rgba(64, 158, 255, 1);
  4883. border-radius:4px;
  4884. -moz-box-shadow:none;
  4885. -webkit-box-shadow:none;
  4886. box-shadow:none;
  4887. font-size:14px;
  4888. color:#C0C4CC;
  4889. text-align:left;
  4890. }
  4891. #u4037.mouseOver.selected {
  4892. }
  4893. #u4037_div.selected.disabled {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:130px;
  4899. height:36px;
  4900. background:inherit;
  4901. background-color:rgba(245, 247, 250, 1);
  4902. box-sizing:border-box;
  4903. border-width:1px;
  4904. border-style:solid;
  4905. border-color:rgba(64, 158, 255, 1);
  4906. border-radius:4px;
  4907. -moz-box-shadow:none;
  4908. -webkit-box-shadow:none;
  4909. box-shadow:none;
  4910. font-size:14px;
  4911. color:#C0C4CC;
  4912. text-align:left;
  4913. }
  4914. #u4037.selected.disabled {
  4915. }
  4916. #u4037_text {
  4917. border-width:0px;
  4918. word-wrap:break-word;
  4919. text-transform:none;
  4920. }
  4921. #u4038 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:432px;
  4925. top:682px;
  4926. width:130px;
  4927. height:102px;
  4928. visibility:hidden;
  4929. }
  4930. #u4038_state0 {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:130px;
  4936. height:102px;
  4937. -ms-overflow-x:hidden;
  4938. overflow-x:hidden;
  4939. -ms-overflow-y:hidden;
  4940. overflow-y:hidden;
  4941. background-image:none;
  4942. border:none;
  4943. border-radius:0px;
  4944. -moz-box-shadow:none;
  4945. -webkit-box-shadow:none;
  4946. box-shadow:none;
  4947. }
  4948. #u4038_state0_content {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:1px;
  4954. height:1px;
  4955. }
  4956. #u4039_div {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:130px;
  4962. height:90px;
  4963. background:inherit;
  4964. background-color:rgba(255, 255, 255, 1);
  4965. box-sizing:border-box;
  4966. border-width:1px;
  4967. border-style:solid;
  4968. border-color:rgba(220, 223, 230, 1);
  4969. border-radius:2px;
  4970. -moz-box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  4971. -webkit-box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  4972. box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  4973. }
  4974. #u4039 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:4px;
  4979. width:130px;
  4980. height:90px;
  4981. display:flex;
  4982. }
  4983. #u4039 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:2px 2px 2px 2px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u4039_text {
  4991. border-width:0px;
  4992. word-wrap:break-word;
  4993. text-transform:none;
  4994. visibility:hidden;
  4995. }
  4996. #u4040_img {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:7px;
  5002. height:4px;
  5003. }
  5004. #u4040 {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:22px;
  5008. top:0px;
  5009. width:7px;
  5010. height:4px;
  5011. display:flex;
  5012. }
  5013. #u4040 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:2px 2px 2px 2px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u4040_text {
  5021. border-width:0px;
  5022. word-wrap:break-word;
  5023. text-transform:none;
  5024. visibility:hidden;
  5025. }
  5026. #u4041 label {
  5027. left:0px;
  5028. width:100%;
  5029. }
  5030. #u4041_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:2px;
  5035. width:13px;
  5036. height:13px;
  5037. }
  5038. #u4041 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:6px;
  5042. top:8px;
  5043. width:92px;
  5044. height:15px;
  5045. display:flex;
  5046. }
  5047. #u4041 .text {
  5048. position:absolute;
  5049. align-self:flex-start;
  5050. padding:0px 2px 0px 2px;
  5051. box-sizing:border-box;
  5052. }
  5053. #u4041_img.selected {
  5054. }
  5055. #u4041.selected {
  5056. }
  5057. #u4041_img.disabled {
  5058. }
  5059. #u4041.disabled {
  5060. }
  5061. #u4041_img.selected.error {
  5062. }
  5063. #u4041.selected.error {
  5064. }
  5065. #u4041_img.selected.hint {
  5066. }
  5067. #u4041.selected.hint {
  5068. }
  5069. #u4041_img.selected.error.hint {
  5070. }
  5071. #u4041.selected.error.hint {
  5072. }
  5073. #u4041_img.mouseOver.selected {
  5074. }
  5075. #u4041.mouseOver.selected {
  5076. }
  5077. #u4041_img.mouseOver.selected.error {
  5078. }
  5079. #u4041.mouseOver.selected.error {
  5080. }
  5081. #u4041_img.mouseOver.selected.hint {
  5082. }
  5083. #u4041.mouseOver.selected.hint {
  5084. }
  5085. #u4041_img.mouseOver.selected.error.hint {
  5086. }
  5087. #u4041.mouseOver.selected.error.hint {
  5088. }
  5089. #u4041_img.mouseDown.selected {
  5090. }
  5091. #u4041.mouseDown.selected {
  5092. }
  5093. #u4041_img.mouseDown.selected.error {
  5094. }
  5095. #u4041.mouseDown.selected.error {
  5096. }
  5097. #u4041_img.mouseDown.selected.hint {
  5098. }
  5099. #u4041.mouseDown.selected.hint {
  5100. }
  5101. #u4041_img.mouseDown.selected.error.hint {
  5102. }
  5103. #u4041.mouseDown.selected.error.hint {
  5104. }
  5105. #u4041_img.mouseOver.mouseDown.selected {
  5106. }
  5107. #u4041.mouseOver.mouseDown.selected {
  5108. }
  5109. #u4041_img.mouseOver.mouseDown.selected.error {
  5110. }
  5111. #u4041.mouseOver.mouseDown.selected.error {
  5112. }
  5113. #u4041_img.mouseOver.mouseDown.selected.hint {
  5114. }
  5115. #u4041.mouseOver.mouseDown.selected.hint {
  5116. }
  5117. #u4041_img.mouseOver.mouseDown.selected.error.hint {
  5118. }
  5119. #u4041.mouseOver.mouseDown.selected.error.hint {
  5120. }
  5121. #u4041_img.focused.selected {
  5122. }
  5123. #u4041.focused.selected {
  5124. }
  5125. #u4041_img.focused.selected.error {
  5126. }
  5127. #u4041.focused.selected.error {
  5128. }
  5129. #u4041_img.focused.selected.hint {
  5130. }
  5131. #u4041.focused.selected.hint {
  5132. }
  5133. #u4041_img.focused.selected.error.hint {
  5134. }
  5135. #u4041.focused.selected.error.hint {
  5136. }
  5137. #u4041_img.selected.disabled {
  5138. }
  5139. #u4041.selected.disabled {
  5140. }
  5141. #u4041_img.selected.hint.disabled {
  5142. }
  5143. #u4041.selected.hint.disabled {
  5144. }
  5145. #u4041_img.selected.error.disabled {
  5146. }
  5147. #u4041.selected.error.disabled {
  5148. }
  5149. #u4041_img.selected.error.hint.disabled {
  5150. }
  5151. #u4041.selected.error.hint.disabled {
  5152. }
  5153. #u4041_text {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:13px;
  5157. top:0px;
  5158. width:75px;
  5159. word-wrap:break-word;
  5160. text-transform:none;
  5161. }
  5162. #u4041_input {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:0px;
  5168. height:0px;
  5169. opacity:0;
  5170. }
  5171. #u4042 label {
  5172. left:0px;
  5173. width:100%;
  5174. }
  5175. #u4042_img {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:2px;
  5180. width:13px;
  5181. height:13px;
  5182. }
  5183. #u4042 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:6px;
  5187. top:29px;
  5188. width:92px;
  5189. height:15px;
  5190. display:flex;
  5191. }
  5192. #u4042 .text {
  5193. position:absolute;
  5194. align-self:flex-start;
  5195. padding:0px 2px 0px 2px;
  5196. box-sizing:border-box;
  5197. }
  5198. #u4042_img.selected {
  5199. }
  5200. #u4042.selected {
  5201. }
  5202. #u4042_img.disabled {
  5203. }
  5204. #u4042.disabled {
  5205. }
  5206. #u4042_img.selected.error {
  5207. }
  5208. #u4042.selected.error {
  5209. }
  5210. #u4042_img.selected.hint {
  5211. }
  5212. #u4042.selected.hint {
  5213. }
  5214. #u4042_img.selected.error.hint {
  5215. }
  5216. #u4042.selected.error.hint {
  5217. }
  5218. #u4042_img.mouseOver.selected {
  5219. }
  5220. #u4042.mouseOver.selected {
  5221. }
  5222. #u4042_img.mouseOver.selected.error {
  5223. }
  5224. #u4042.mouseOver.selected.error {
  5225. }
  5226. #u4042_img.mouseOver.selected.hint {
  5227. }
  5228. #u4042.mouseOver.selected.hint {
  5229. }
  5230. #u4042_img.mouseOver.selected.error.hint {
  5231. }
  5232. #u4042.mouseOver.selected.error.hint {
  5233. }
  5234. #u4042_img.mouseDown.selected {
  5235. }
  5236. #u4042.mouseDown.selected {
  5237. }
  5238. #u4042_img.mouseDown.selected.error {
  5239. }
  5240. #u4042.mouseDown.selected.error {
  5241. }
  5242. #u4042_img.mouseDown.selected.hint {
  5243. }
  5244. #u4042.mouseDown.selected.hint {
  5245. }
  5246. #u4042_img.mouseDown.selected.error.hint {
  5247. }
  5248. #u4042.mouseDown.selected.error.hint {
  5249. }
  5250. #u4042_img.mouseOver.mouseDown.selected {
  5251. }
  5252. #u4042.mouseOver.mouseDown.selected {
  5253. }
  5254. #u4042_img.mouseOver.mouseDown.selected.error {
  5255. }
  5256. #u4042.mouseOver.mouseDown.selected.error {
  5257. }
  5258. #u4042_img.mouseOver.mouseDown.selected.hint {
  5259. }
  5260. #u4042.mouseOver.mouseDown.selected.hint {
  5261. }
  5262. #u4042_img.mouseOver.mouseDown.selected.error.hint {
  5263. }
  5264. #u4042.mouseOver.mouseDown.selected.error.hint {
  5265. }
  5266. #u4042_img.focused.selected {
  5267. }
  5268. #u4042.focused.selected {
  5269. }
  5270. #u4042_img.focused.selected.error {
  5271. }
  5272. #u4042.focused.selected.error {
  5273. }
  5274. #u4042_img.focused.selected.hint {
  5275. }
  5276. #u4042.focused.selected.hint {
  5277. }
  5278. #u4042_img.focused.selected.error.hint {
  5279. }
  5280. #u4042.focused.selected.error.hint {
  5281. }
  5282. #u4042_img.selected.disabled {
  5283. }
  5284. #u4042.selected.disabled {
  5285. }
  5286. #u4042_img.selected.hint.disabled {
  5287. }
  5288. #u4042.selected.hint.disabled {
  5289. }
  5290. #u4042_img.selected.error.disabled {
  5291. }
  5292. #u4042.selected.error.disabled {
  5293. }
  5294. #u4042_img.selected.error.hint.disabled {
  5295. }
  5296. #u4042.selected.error.hint.disabled {
  5297. }
  5298. #u4042_text {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:13px;
  5302. top:0px;
  5303. width:75px;
  5304. word-wrap:break-word;
  5305. text-transform:none;
  5306. }
  5307. #u4042_input {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:0px;
  5312. width:0px;
  5313. height:0px;
  5314. opacity:0;
  5315. }
  5316. #u4043 label {
  5317. left:0px;
  5318. width:100%;
  5319. }
  5320. #u4043_img {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:2px;
  5325. width:13px;
  5326. height:13px;
  5327. }
  5328. #u4043 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:6px;
  5332. top:50px;
  5333. width:92px;
  5334. height:15px;
  5335. display:flex;
  5336. }
  5337. #u4043 .text {
  5338. position:absolute;
  5339. align-self:flex-start;
  5340. padding:0px 2px 0px 2px;
  5341. box-sizing:border-box;
  5342. }
  5343. #u4043_img.selected {
  5344. }
  5345. #u4043.selected {
  5346. }
  5347. #u4043_img.disabled {
  5348. }
  5349. #u4043.disabled {
  5350. }
  5351. #u4043_img.selected.error {
  5352. }
  5353. #u4043.selected.error {
  5354. }
  5355. #u4043_img.selected.hint {
  5356. }
  5357. #u4043.selected.hint {
  5358. }
  5359. #u4043_img.selected.error.hint {
  5360. }
  5361. #u4043.selected.error.hint {
  5362. }
  5363. #u4043_img.mouseOver.selected {
  5364. }
  5365. #u4043.mouseOver.selected {
  5366. }
  5367. #u4043_img.mouseOver.selected.error {
  5368. }
  5369. #u4043.mouseOver.selected.error {
  5370. }
  5371. #u4043_img.mouseOver.selected.hint {
  5372. }
  5373. #u4043.mouseOver.selected.hint {
  5374. }
  5375. #u4043_img.mouseOver.selected.error.hint {
  5376. }
  5377. #u4043.mouseOver.selected.error.hint {
  5378. }
  5379. #u4043_img.mouseDown.selected {
  5380. }
  5381. #u4043.mouseDown.selected {
  5382. }
  5383. #u4043_img.mouseDown.selected.error {
  5384. }
  5385. #u4043.mouseDown.selected.error {
  5386. }
  5387. #u4043_img.mouseDown.selected.hint {
  5388. }
  5389. #u4043.mouseDown.selected.hint {
  5390. }
  5391. #u4043_img.mouseDown.selected.error.hint {
  5392. }
  5393. #u4043.mouseDown.selected.error.hint {
  5394. }
  5395. #u4043_img.mouseOver.mouseDown.selected {
  5396. }
  5397. #u4043.mouseOver.mouseDown.selected {
  5398. }
  5399. #u4043_img.mouseOver.mouseDown.selected.error {
  5400. }
  5401. #u4043.mouseOver.mouseDown.selected.error {
  5402. }
  5403. #u4043_img.mouseOver.mouseDown.selected.hint {
  5404. }
  5405. #u4043.mouseOver.mouseDown.selected.hint {
  5406. }
  5407. #u4043_img.mouseOver.mouseDown.selected.error.hint {
  5408. }
  5409. #u4043.mouseOver.mouseDown.selected.error.hint {
  5410. }
  5411. #u4043_img.focused.selected {
  5412. }
  5413. #u4043.focused.selected {
  5414. }
  5415. #u4043_img.focused.selected.error {
  5416. }
  5417. #u4043.focused.selected.error {
  5418. }
  5419. #u4043_img.focused.selected.hint {
  5420. }
  5421. #u4043.focused.selected.hint {
  5422. }
  5423. #u4043_img.focused.selected.error.hint {
  5424. }
  5425. #u4043.focused.selected.error.hint {
  5426. }
  5427. #u4043_img.selected.disabled {
  5428. }
  5429. #u4043.selected.disabled {
  5430. }
  5431. #u4043_img.selected.hint.disabled {
  5432. }
  5433. #u4043.selected.hint.disabled {
  5434. }
  5435. #u4043_img.selected.error.disabled {
  5436. }
  5437. #u4043.selected.error.disabled {
  5438. }
  5439. #u4043_img.selected.error.hint.disabled {
  5440. }
  5441. #u4043.selected.error.hint.disabled {
  5442. }
  5443. #u4043_text {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:13px;
  5447. top:0px;
  5448. width:75px;
  5449. word-wrap:break-word;
  5450. text-transform:none;
  5451. }
  5452. #u4043_input {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:0px;
  5458. height:0px;
  5459. opacity:0;
  5460. }
  5461. #u4044 label {
  5462. left:0px;
  5463. width:100%;
  5464. }
  5465. #u4044_img {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:2px;
  5470. width:13px;
  5471. height:13px;
  5472. }
  5473. #u4044 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:6px;
  5477. top:71px;
  5478. width:92px;
  5479. height:15px;
  5480. display:flex;
  5481. }
  5482. #u4044 .text {
  5483. position:absolute;
  5484. align-self:flex-start;
  5485. padding:0px 2px 0px 2px;
  5486. box-sizing:border-box;
  5487. }
  5488. #u4044_img.selected {
  5489. }
  5490. #u4044.selected {
  5491. }
  5492. #u4044_img.disabled {
  5493. }
  5494. #u4044.disabled {
  5495. }
  5496. #u4044_img.selected.error {
  5497. }
  5498. #u4044.selected.error {
  5499. }
  5500. #u4044_img.selected.hint {
  5501. }
  5502. #u4044.selected.hint {
  5503. }
  5504. #u4044_img.selected.error.hint {
  5505. }
  5506. #u4044.selected.error.hint {
  5507. }
  5508. #u4044_img.mouseOver.selected {
  5509. }
  5510. #u4044.mouseOver.selected {
  5511. }
  5512. #u4044_img.mouseOver.selected.error {
  5513. }
  5514. #u4044.mouseOver.selected.error {
  5515. }
  5516. #u4044_img.mouseOver.selected.hint {
  5517. }
  5518. #u4044.mouseOver.selected.hint {
  5519. }
  5520. #u4044_img.mouseOver.selected.error.hint {
  5521. }
  5522. #u4044.mouseOver.selected.error.hint {
  5523. }
  5524. #u4044_img.mouseDown.selected {
  5525. }
  5526. #u4044.mouseDown.selected {
  5527. }
  5528. #u4044_img.mouseDown.selected.error {
  5529. }
  5530. #u4044.mouseDown.selected.error {
  5531. }
  5532. #u4044_img.mouseDown.selected.hint {
  5533. }
  5534. #u4044.mouseDown.selected.hint {
  5535. }
  5536. #u4044_img.mouseDown.selected.error.hint {
  5537. }
  5538. #u4044.mouseDown.selected.error.hint {
  5539. }
  5540. #u4044_img.mouseOver.mouseDown.selected {
  5541. }
  5542. #u4044.mouseOver.mouseDown.selected {
  5543. }
  5544. #u4044_img.mouseOver.mouseDown.selected.error {
  5545. }
  5546. #u4044.mouseOver.mouseDown.selected.error {
  5547. }
  5548. #u4044_img.mouseOver.mouseDown.selected.hint {
  5549. }
  5550. #u4044.mouseOver.mouseDown.selected.hint {
  5551. }
  5552. #u4044_img.mouseOver.mouseDown.selected.error.hint {
  5553. }
  5554. #u4044.mouseOver.mouseDown.selected.error.hint {
  5555. }
  5556. #u4044_img.focused.selected {
  5557. }
  5558. #u4044.focused.selected {
  5559. }
  5560. #u4044_img.focused.selected.error {
  5561. }
  5562. #u4044.focused.selected.error {
  5563. }
  5564. #u4044_img.focused.selected.hint {
  5565. }
  5566. #u4044.focused.selected.hint {
  5567. }
  5568. #u4044_img.focused.selected.error.hint {
  5569. }
  5570. #u4044.focused.selected.error.hint {
  5571. }
  5572. #u4044_img.selected.disabled {
  5573. }
  5574. #u4044.selected.disabled {
  5575. }
  5576. #u4044_img.selected.hint.disabled {
  5577. }
  5578. #u4044.selected.hint.disabled {
  5579. }
  5580. #u4044_img.selected.error.disabled {
  5581. }
  5582. #u4044.selected.error.disabled {
  5583. }
  5584. #u4044_img.selected.error.hint.disabled {
  5585. }
  5586. #u4044.selected.error.hint.disabled {
  5587. }
  5588. #u4044_text {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:13px;
  5592. top:0px;
  5593. width:75px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. }
  5597. #u4044_input {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:0px;
  5603. height:0px;
  5604. opacity:0;
  5605. }
  5606. #u4045_img {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:10px;
  5612. height:6px;
  5613. }
  5614. #u4045 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:546px;
  5618. top:661px;
  5619. width:10px;
  5620. height:6px;
  5621. display:flex;
  5622. }
  5623. #u4045 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 20px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u4045_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. visibility:hidden;
  5635. }
  5636. #u4046 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:0px;
  5642. height:0px;
  5643. }
  5644. #u4047_div {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:88px;
  5650. height:32px;
  5651. background:inherit;
  5652. background-color:rgba(40, 54, 254, 1);
  5653. border:none;
  5654. border-radius:4px;
  5655. -moz-box-shadow:none;
  5656. -webkit-box-shadow:none;
  5657. box-shadow:none;
  5658. font-family:'Microsoft Tai Le', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:14px;
  5662. color:#FFFFFF;
  5663. line-height:22px;
  5664. }
  5665. #u4047 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:424px;
  5669. top:819px;
  5670. width:88px;
  5671. height:32px;
  5672. display:flex;
  5673. font-family:'Microsoft Tai Le', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:14px;
  5677. color:#FFFFFF;
  5678. line-height:22px;
  5679. }
  5680. #u4047 .text {
  5681. position:absolute;
  5682. align-self:center;
  5683. padding:0px 16px 0px 16px;
  5684. box-sizing:border-box;
  5685. width:100%;
  5686. }
  5687. #u4047_text {
  5688. border-width:0px;
  5689. word-wrap:break-word;
  5690. text-transform:none;
  5691. }
  5692. #u4048_div {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:80px;
  5698. height:32px;
  5699. background:inherit;
  5700. background-color:rgba(255, 255, 255, 1);
  5701. box-sizing:border-box;
  5702. border-width:1px;
  5703. border-style:solid;
  5704. border-color:rgba(220, 223, 230, 1);
  5705. border-radius:4px;
  5706. -moz-box-shadow:none;
  5707. -webkit-box-shadow:none;
  5708. box-shadow:none;
  5709. font-size:12px;
  5710. color:#606266;
  5711. }
  5712. #u4048 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:332px;
  5716. top:819px;
  5717. width:80px;
  5718. height:32px;
  5719. display:flex;
  5720. font-size:12px;
  5721. color:#606266;
  5722. }
  5723. #u4048 .text {
  5724. position:absolute;
  5725. align-self:center;
  5726. padding:2px 2px 2px 2px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u4048_div.mouseOver {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:80px;
  5736. height:32px;
  5737. background:inherit;
  5738. background-color:rgba(236, 245, 255, 1);
  5739. box-sizing:border-box;
  5740. border-width:1px;
  5741. border-style:solid;
  5742. border-color:rgba(198, 226, 255, 1);
  5743. border-radius:4px;
  5744. -moz-box-shadow:none;
  5745. -webkit-box-shadow:none;
  5746. box-shadow:none;
  5747. font-size:12px;
  5748. color:#606266;
  5749. }
  5750. #u4048.mouseOver {
  5751. }
  5752. #u4048_div.mouseDown {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:80px;
  5758. height:32px;
  5759. background:inherit;
  5760. background-color:rgba(236, 245, 255, 1);
  5761. box-sizing:border-box;
  5762. border-width:1px;
  5763. border-style:solid;
  5764. border-color:rgba(58, 142, 230, 1);
  5765. border-radius:4px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. font-size:12px;
  5770. color:#606266;
  5771. }
  5772. #u4048.mouseDown {
  5773. }
  5774. #u4048_div.disabled {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:80px;
  5780. height:32px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 255, 1);
  5783. box-sizing:border-box;
  5784. border-width:1px;
  5785. border-style:solid;
  5786. border-color:rgba(235, 238, 245, 1);
  5787. border-radius:4px;
  5788. -moz-box-shadow:none;
  5789. -webkit-box-shadow:none;
  5790. box-shadow:none;
  5791. font-size:12px;
  5792. color:#606266;
  5793. }
  5794. #u4048.disabled {
  5795. }
  5796. #u4048_div.mouseOver.mouseDown {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:80px;
  5802. height:32px;
  5803. background:inherit;
  5804. background-color:rgba(236, 245, 255, 1);
  5805. box-sizing:border-box;
  5806. border-width:1px;
  5807. border-style:solid;
  5808. border-color:rgba(58, 142, 230, 1);
  5809. border-radius:4px;
  5810. -moz-box-shadow:none;
  5811. -webkit-box-shadow:none;
  5812. box-shadow:none;
  5813. font-size:12px;
  5814. color:#606266;
  5815. }
  5816. #u4048.mouseOver.mouseDown {
  5817. }
  5818. #u4048_text {
  5819. border-width:0px;
  5820. word-wrap:break-word;
  5821. text-transform:none;
  5822. }
  5823. #u4049_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:1495px;
  5829. height:1024px;
  5830. background:inherit;
  5831. background-color:rgba(51, 51, 51, 0.3176470588235294);
  5832. border:none;
  5833. border-radius:0px;
  5834. -moz-box-shadow:none;
  5835. -webkit-box-shadow:none;
  5836. box-shadow:none;
  5837. }
  5838. #u4049 {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:-13px;
  5842. top:-3px;
  5843. width:1495px;
  5844. height:1024px;
  5845. display:flex;
  5846. }
  5847. #u4049 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:2px 2px 2px 2px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u4049_text {
  5855. border-width:0px;
  5856. word-wrap:break-word;
  5857. text-transform:none;
  5858. visibility:hidden;
  5859. }
  5860. #u4050_div {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:666px;
  5866. height:401px;
  5867. background:inherit;
  5868. background-color:rgba(255, 255, 255, 1);
  5869. border:none;
  5870. border-radius:5px;
  5871. -moz-box-shadow:none;
  5872. -webkit-box-shadow:none;
  5873. box-shadow:none;
  5874. }
  5875. #u4050 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:401px;
  5879. top:251px;
  5880. width:666px;
  5881. height:401px;
  5882. display:flex;
  5883. }
  5884. #u4050 .text {
  5885. position:absolute;
  5886. align-self:center;
  5887. padding:2px 2px 2px 2px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u4050_text {
  5892. border-width:0px;
  5893. word-wrap:break-word;
  5894. text-transform:none;
  5895. visibility:hidden;
  5896. }
  5897. #u4051_img {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:0px;
  5901. top:0px;
  5902. width:669px;
  5903. height:2px;
  5904. }
  5905. #u4051 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:400px;
  5909. top:301px;
  5910. width:668px;
  5911. height:1px;
  5912. display:flex;
  5913. }
  5914. #u4051 .text {
  5915. position:absolute;
  5916. align-self:center;
  5917. padding:2px 2px 2px 2px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u4051_text {
  5922. border-width:0px;
  5923. word-wrap:break-word;
  5924. text-transform:none;
  5925. visibility:hidden;
  5926. }
  5927. #u4052 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:0px;
  5933. height:0px;
  5934. }
  5935. #u4053 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:0px;
  5941. height:0px;
  5942. }
  5943. #u4054_div {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:617px;
  5949. height:54px;
  5950. background:inherit;
  5951. background-color:rgba(250, 250, 250, 1);
  5952. box-sizing:border-box;
  5953. border-width:1px;
  5954. border-style:solid;
  5955. border-color:rgba(232, 232, 232, 1);
  5956. border-radius:4px;
  5957. border-bottom-right-radius:0px;
  5958. border-bottom-left-radius:0px;
  5959. -moz-box-shadow:none;
  5960. -webkit-box-shadow:none;
  5961. box-shadow:none;
  5962. font-family:"Microsoft YaHei", sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:12px;
  5966. color:#666666;
  5967. line-height:18px;
  5968. }
  5969. #u4054 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:426px;
  5973. top:359px;
  5974. width:617px;
  5975. height:54px;
  5976. display:flex;
  5977. font-family:"Microsoft YaHei", sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. font-size:12px;
  5981. color:#666666;
  5982. line-height:18px;
  5983. }
  5984. #u4054 .text {
  5985. position:absolute;
  5986. align-self:center;
  5987. padding:2px 16px 2px 16px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u4054_text {
  5992. border-width:0px;
  5993. word-wrap:break-word;
  5994. text-transform:none;
  5995. visibility:hidden;
  5996. }
  5997. #u4055_div {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:617px;
  6003. height:54px;
  6004. background:inherit;
  6005. background-color:rgba(255, 255, 255, 1);
  6006. box-sizing:border-box;
  6007. border-width:1px;
  6008. border-style:solid;
  6009. border-color:rgba(232, 232, 232, 1);
  6010. border-left:0px;
  6011. border-right:0px;
  6012. border-radius:4px;
  6013. border-top-left-radius:0px;
  6014. border-top-right-radius:0px;
  6015. border-bottom-right-radius:0px;
  6016. border-bottom-left-radius:0px;
  6017. -moz-box-shadow:none;
  6018. -webkit-box-shadow:none;
  6019. box-shadow:none;
  6020. font-family:"Microsoft YaHei", sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. color:#666666;
  6025. line-height:18px;
  6026. }
  6027. #u4055 {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:426px;
  6031. top:412px;
  6032. width:617px;
  6033. height:54px;
  6034. display:flex;
  6035. font-family:"Microsoft YaHei", sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:12px;
  6039. color:#666666;
  6040. line-height:18px;
  6041. }
  6042. #u4055 .text {
  6043. position:absolute;
  6044. align-self:center;
  6045. padding:2px 16px 2px 16px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u4055_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. visibility:hidden;
  6054. }
  6055. #u4056_div {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:617px;
  6061. height:54px;
  6062. background:inherit;
  6063. background-color:rgba(255, 255, 255, 1);
  6064. box-sizing:border-box;
  6065. border-width:1px;
  6066. border-style:solid;
  6067. border-color:rgba(232, 232, 232, 1);
  6068. border-left:0px;
  6069. border-right:0px;
  6070. border-radius:4px;
  6071. border-top-left-radius:0px;
  6072. border-top-right-radius:0px;
  6073. border-bottom-right-radius:0px;
  6074. border-bottom-left-radius:0px;
  6075. -moz-box-shadow:none;
  6076. -webkit-box-shadow:none;
  6077. box-shadow:none;
  6078. font-family:"Microsoft YaHei", sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:12px;
  6082. color:#666666;
  6083. line-height:18px;
  6084. }
  6085. #u4056 {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:426px;
  6089. top:465px;
  6090. width:617px;
  6091. height:54px;
  6092. display:flex;
  6093. font-family:"Microsoft YaHei", sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:12px;
  6097. color:#666666;
  6098. line-height:18px;
  6099. }
  6100. #u4056 .text {
  6101. position:absolute;
  6102. align-self:center;
  6103. padding:2px 16px 2px 16px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u4056_text {
  6108. border-width:0px;
  6109. word-wrap:break-word;
  6110. text-transform:none;
  6111. visibility:hidden;
  6112. }
  6113. #u4057_div {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:616px;
  6119. height:54px;
  6120. background:inherit;
  6121. background-color:rgba(255, 255, 255, 1);
  6122. box-sizing:border-box;
  6123. border-width:1px;
  6124. border-style:solid;
  6125. border-color:rgba(232, 232, 232, 1);
  6126. border-left:0px;
  6127. border-right:0px;
  6128. border-radius:4px;
  6129. border-top-left-radius:0px;
  6130. border-top-right-radius:0px;
  6131. border-bottom-right-radius:0px;
  6132. border-bottom-left-radius:0px;
  6133. -moz-box-shadow:none;
  6134. -webkit-box-shadow:none;
  6135. box-shadow:none;
  6136. font-family:"Microsoft YaHei", sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:12px;
  6140. color:#666666;
  6141. line-height:18px;
  6142. }
  6143. #u4057 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:426px;
  6147. top:518px;
  6148. width:616px;
  6149. height:54px;
  6150. display:flex;
  6151. font-family:"Microsoft YaHei", sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:12px;
  6155. color:#666666;
  6156. line-height:18px;
  6157. }
  6158. #u4057 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 16px 2px 16px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u4057_text {
  6166. border-width:0px;
  6167. word-wrap:break-word;
  6168. text-transform:none;
  6169. visibility:hidden;
  6170. }
  6171. #u4058 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:0px;
  6177. height:0px;
  6178. }
  6179. #u4059_div {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:88px;
  6185. height:54px;
  6186. background:inherit;
  6187. background-color:rgba(255, 255, 255, 0);
  6188. border:none;
  6189. border-left:0px;
  6190. border-top:0px;
  6191. border-right:0px;
  6192. border-radius:4px;
  6193. border-bottom-right-radius:0px;
  6194. border-bottom-left-radius:0px;
  6195. -moz-box-shadow:none;
  6196. -webkit-box-shadow:none;
  6197. box-shadow:none;
  6198. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6199. font-weight:700;
  6200. font-style:normal;
  6201. font-size:14px;
  6202. color:rgba(0, 0, 0, 0.8470588235294118);
  6203. text-align:left;
  6204. line-height:53px;
  6205. }
  6206. #u4059 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:602px;
  6210. top:359px;
  6211. width:88px;
  6212. height:54px;
  6213. display:flex;
  6214. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6215. font-weight:700;
  6216. font-style:normal;
  6217. font-size:14px;
  6218. color:rgba(0, 0, 0, 0.8470588235294118);
  6219. text-align:left;
  6220. line-height:53px;
  6221. }
  6222. #u4059 .text {
  6223. position:absolute;
  6224. align-self:center;
  6225. padding:0px 16px 0px 16px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u4059_text {
  6230. border-width:0px;
  6231. white-space:nowrap;
  6232. text-transform:none;
  6233. }
  6234. #u4060_div {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:78px;
  6240. height:159px;
  6241. background:inherit;
  6242. background-color:rgba(255, 255, 255, 0);
  6243. border:none;
  6244. border-left:0px;
  6245. border-top:0px;
  6246. border-right:0px;
  6247. border-radius:4px;
  6248. border-bottom-right-radius:0px;
  6249. border-bottom-left-radius:0px;
  6250. -moz-box-shadow:none;
  6251. -webkit-box-shadow:none;
  6252. box-shadow:none;
  6253. font-family:'Microsoft Tai Le', sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:14px;
  6257. color:rgba(0, 0, 0, 0.6470588235294118);
  6258. text-align:left;
  6259. line-height:53px;
  6260. }
  6261. #u4060 {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:602px;
  6265. top:413px;
  6266. width:78px;
  6267. height:159px;
  6268. display:flex;
  6269. font-family:'Microsoft Tai Le', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:14px;
  6273. color:rgba(0, 0, 0, 0.6470588235294118);
  6274. text-align:left;
  6275. line-height:53px;
  6276. }
  6277. #u4060 .text {
  6278. position:absolute;
  6279. align-self:flex-start;
  6280. padding:0px 16px 0px 16px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u4060_text {
  6285. border-width:0px;
  6286. white-space:nowrap;
  6287. text-transform:none;
  6288. }
  6289. #u4061 {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:0px;
  6295. height:0px;
  6296. }
  6297. #u4062_div {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:102px;
  6303. height:54px;
  6304. background:inherit;
  6305. background-color:rgba(255, 255, 255, 0);
  6306. border:none;
  6307. border-left:0px;
  6308. border-top:0px;
  6309. border-right:0px;
  6310. border-radius:4px;
  6311. border-bottom-right-radius:0px;
  6312. border-bottom-left-radius:0px;
  6313. -moz-box-shadow:none;
  6314. -webkit-box-shadow:none;
  6315. box-shadow:none;
  6316. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6317. font-weight:700;
  6318. font-style:normal;
  6319. font-size:14px;
  6320. color:rgba(0, 0, 0, 0.8470588235294118);
  6321. text-align:left;
  6322. line-height:53px;
  6323. }
  6324. #u4062 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:486px;
  6328. top:359px;
  6329. width:102px;
  6330. height:54px;
  6331. display:flex;
  6332. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6333. font-weight:700;
  6334. font-style:normal;
  6335. font-size:14px;
  6336. color:rgba(0, 0, 0, 0.8470588235294118);
  6337. text-align:left;
  6338. line-height:53px;
  6339. }
  6340. #u4062 .text {
  6341. position:absolute;
  6342. align-self:center;
  6343. padding:0px 16px 0px 16px;
  6344. box-sizing:border-box;
  6345. width:100%;
  6346. }
  6347. #u4062_text {
  6348. border-width:0px;
  6349. white-space:nowrap;
  6350. text-transform:none;
  6351. }
  6352. #u4063_div {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:105px;
  6358. height:159px;
  6359. background:inherit;
  6360. background-color:rgba(255, 255, 255, 0);
  6361. border:none;
  6362. border-left:0px;
  6363. border-top:0px;
  6364. border-right:0px;
  6365. border-radius:4px;
  6366. border-bottom-right-radius:0px;
  6367. border-bottom-left-radius:0px;
  6368. -moz-box-shadow:none;
  6369. -webkit-box-shadow:none;
  6370. box-shadow:none;
  6371. font-family:"SF UI Text", sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:14px;
  6375. color:rgba(0, 0, 0, 0.6470588235294118);
  6376. text-align:left;
  6377. line-height:53px;
  6378. }
  6379. #u4063 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:486px;
  6383. top:413px;
  6384. width:105px;
  6385. height:159px;
  6386. display:flex;
  6387. font-family:"SF UI Text", sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:14px;
  6391. color:rgba(0, 0, 0, 0.6470588235294118);
  6392. text-align:left;
  6393. line-height:53px;
  6394. }
  6395. #u4063 .text {
  6396. position:absolute;
  6397. align-self:flex-start;
  6398. padding:0px 16px 0px 16px;
  6399. box-sizing:border-box;
  6400. width:100%;
  6401. }
  6402. #u4063_text {
  6403. border-width:0px;
  6404. white-space:nowrap;
  6405. text-transform:none;
  6406. }
  6407. #u4064 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:0px;
  6413. height:0px;
  6414. }
  6415. #u4065_div {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:0px;
  6419. top:0px;
  6420. width:60px;
  6421. height:54px;
  6422. background:inherit;
  6423. background-color:rgba(255, 255, 255, 0);
  6424. border:none;
  6425. border-left:0px;
  6426. border-top:0px;
  6427. border-right:0px;
  6428. border-radius:4px;
  6429. border-bottom-right-radius:0px;
  6430. border-bottom-left-radius:0px;
  6431. -moz-box-shadow:none;
  6432. -webkit-box-shadow:none;
  6433. box-shadow:none;
  6434. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6435. font-weight:700;
  6436. font-style:normal;
  6437. font-size:14px;
  6438. color:rgba(0, 0, 0, 0.8470588235294118);
  6439. text-align:left;
  6440. line-height:53px;
  6441. }
  6442. #u4065 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:426px;
  6446. top:359px;
  6447. width:60px;
  6448. height:54px;
  6449. display:flex;
  6450. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6451. font-weight:700;
  6452. font-style:normal;
  6453. font-size:14px;
  6454. color:rgba(0, 0, 0, 0.8470588235294118);
  6455. text-align:left;
  6456. line-height:53px;
  6457. }
  6458. #u4065 .text {
  6459. position:absolute;
  6460. align-self:center;
  6461. padding:0px 16px 0px 16px;
  6462. box-sizing:border-box;
  6463. width:100%;
  6464. }
  6465. #u4065_text {
  6466. border-width:0px;
  6467. white-space:nowrap;
  6468. text-transform:none;
  6469. }
  6470. #u4066_div {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:32px;
  6476. height:53px;
  6477. background:inherit;
  6478. background-color:rgba(255, 255, 255, 0);
  6479. border:none;
  6480. border-left:0px;
  6481. border-top:0px;
  6482. border-right:0px;
  6483. border-radius:4px;
  6484. border-bottom-right-radius:0px;
  6485. border-bottom-left-radius:0px;
  6486. -moz-box-shadow:none;
  6487. -webkit-box-shadow:none;
  6488. box-shadow:none;
  6489. font-family:"SF UI Text", sans-serif;
  6490. font-weight:400;
  6491. font-style:normal;
  6492. font-size:14px;
  6493. color:rgba(0, 0, 0, 0.6470588235294118);
  6494. text-align:left;
  6495. line-height:53px;
  6496. }
  6497. #u4066 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:426px;
  6501. top:413px;
  6502. width:32px;
  6503. height:53px;
  6504. display:flex;
  6505. font-family:"SF UI Text", sans-serif;
  6506. font-weight:400;
  6507. font-style:normal;
  6508. font-size:14px;
  6509. color:rgba(0, 0, 0, 0.6470588235294118);
  6510. text-align:left;
  6511. line-height:53px;
  6512. }
  6513. #u4066 .text {
  6514. position:absolute;
  6515. align-self:flex-start;
  6516. padding:0px 16px 0px 16px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u4066_text {
  6521. border-width:0px;
  6522. white-space:nowrap;
  6523. text-transform:none;
  6524. visibility:hidden;
  6525. }
  6526. #u4067 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:0px;
  6532. height:0px;
  6533. }
  6534. #u4068_img {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:19px;
  6540. height:19px;
  6541. }
  6542. #u4068 {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:442px;
  6546. top:427px;
  6547. width:19px;
  6548. height:19px;
  6549. display:flex;
  6550. }
  6551. #u4068 .text {
  6552. position:absolute;
  6553. align-self:center;
  6554. padding:2px 2px 2px 2px;
  6555. box-sizing:border-box;
  6556. width:100%;
  6557. }
  6558. #u4068_img.mouseOver {
  6559. }
  6560. #u4068.mouseOver {
  6561. }
  6562. #u4068_img.selected {
  6563. }
  6564. #u4068.selected {
  6565. }
  6566. #u4068_img.disabled {
  6567. }
  6568. #u4068.disabled {
  6569. }
  6570. #u4068_img.mouseOver.selected {
  6571. }
  6572. #u4068.mouseOver.selected {
  6573. }
  6574. #u4068_img.selected.disabled {
  6575. }
  6576. #u4068.selected.disabled {
  6577. }
  6578. #u4068_text {
  6579. border-width:0px;
  6580. word-wrap:break-word;
  6581. text-transform:none;
  6582. visibility:hidden;
  6583. }
  6584. #u4069 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:0px;
  6590. height:0px;
  6591. }
  6592. #u4070_img {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:19px;
  6598. height:19px;
  6599. }
  6600. #u4070 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:442px;
  6604. top:481px;
  6605. width:19px;
  6606. height:19px;
  6607. display:flex;
  6608. }
  6609. #u4070 .text {
  6610. position:absolute;
  6611. align-self:center;
  6612. padding:2px 2px 2px 2px;
  6613. box-sizing:border-box;
  6614. width:100%;
  6615. }
  6616. #u4070_img.mouseOver {
  6617. }
  6618. #u4070.mouseOver {
  6619. }
  6620. #u4070_img.selected {
  6621. }
  6622. #u4070.selected {
  6623. }
  6624. #u4070_img.disabled {
  6625. }
  6626. #u4070.disabled {
  6627. }
  6628. #u4070_img.mouseOver.selected {
  6629. }
  6630. #u4070.mouseOver.selected {
  6631. }
  6632. #u4070_img.selected.disabled {
  6633. }
  6634. #u4070.selected.disabled {
  6635. }
  6636. #u4070_text {
  6637. border-width:0px;
  6638. word-wrap:break-word;
  6639. text-transform:none;
  6640. visibility:hidden;
  6641. }
  6642. #u4071 {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:0px;
  6648. height:0px;
  6649. }
  6650. #u4072_img {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:19px;
  6656. height:19px;
  6657. }
  6658. #u4072 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:442px;
  6662. top:537px;
  6663. width:19px;
  6664. height:19px;
  6665. display:flex;
  6666. }
  6667. #u4072 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 2px 2px 2px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u4072_img.mouseOver {
  6675. }
  6676. #u4072.mouseOver {
  6677. }
  6678. #u4072_img.selected {
  6679. }
  6680. #u4072.selected {
  6681. }
  6682. #u4072_img.disabled {
  6683. }
  6684. #u4072.disabled {
  6685. }
  6686. #u4072_img.mouseOver.selected {
  6687. }
  6688. #u4072.mouseOver.selected {
  6689. }
  6690. #u4072_img.selected.disabled {
  6691. }
  6692. #u4072.selected.disabled {
  6693. }
  6694. #u4072_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. visibility:hidden;
  6699. }
  6700. #u4073 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:0px;
  6706. height:0px;
  6707. }
  6708. #u4074_div {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:0px;
  6712. top:0px;
  6713. width:74px;
  6714. height:54px;
  6715. background:inherit;
  6716. background-color:rgba(255, 255, 255, 0);
  6717. border:none;
  6718. border-left:0px;
  6719. border-top:0px;
  6720. border-right:0px;
  6721. border-radius:4px;
  6722. border-bottom-right-radius:0px;
  6723. border-bottom-left-radius:0px;
  6724. -moz-box-shadow:none;
  6725. -webkit-box-shadow:none;
  6726. box-shadow:none;
  6727. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6728. font-weight:700;
  6729. font-style:normal;
  6730. font-size:14px;
  6731. color:rgba(0, 0, 0, 0.8470588235294118);
  6732. text-align:left;
  6733. line-height:53px;
  6734. }
  6735. #u4074 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:726px;
  6739. top:359px;
  6740. width:74px;
  6741. height:54px;
  6742. display:flex;
  6743. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6744. font-weight:700;
  6745. font-style:normal;
  6746. font-size:14px;
  6747. color:rgba(0, 0, 0, 0.8470588235294118);
  6748. text-align:left;
  6749. line-height:53px;
  6750. }
  6751. #u4074 .text {
  6752. position:absolute;
  6753. align-self:center;
  6754. padding:0px 16px 0px 16px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u4074_text {
  6759. border-width:0px;
  6760. white-space:nowrap;
  6761. text-transform:none;
  6762. }
  6763. #u4075_div {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:48px;
  6769. height:159px;
  6770. background:inherit;
  6771. background-color:rgba(255, 255, 255, 0);
  6772. border:none;
  6773. border-left:0px;
  6774. border-top:0px;
  6775. border-right:0px;
  6776. border-radius:4px;
  6777. border-bottom-right-radius:0px;
  6778. border-bottom-left-radius:0px;
  6779. -moz-box-shadow:none;
  6780. -webkit-box-shadow:none;
  6781. box-shadow:none;
  6782. font-family:'Microsoft Tai Le', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:14px;
  6786. color:rgba(0, 0, 0, 0.6470588235294118);
  6787. text-align:left;
  6788. line-height:53px;
  6789. }
  6790. #u4075 {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:726px;
  6794. top:413px;
  6795. width:48px;
  6796. height:159px;
  6797. display:flex;
  6798. font-family:'Microsoft Tai Le', sans-serif;
  6799. font-weight:400;
  6800. font-style:normal;
  6801. font-size:14px;
  6802. color:rgba(0, 0, 0, 0.6470588235294118);
  6803. text-align:left;
  6804. line-height:53px;
  6805. }
  6806. #u4075 .text {
  6807. position:absolute;
  6808. align-self:flex-start;
  6809. padding:0px 16px 0px 16px;
  6810. box-sizing:border-box;
  6811. width:100%;
  6812. }
  6813. #u4075_text {
  6814. border-width:0px;
  6815. white-space:nowrap;
  6816. text-transform:none;
  6817. }
  6818. #u4076 {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:0px;
  6822. top:0px;
  6823. width:0px;
  6824. height:0px;
  6825. }
  6826. #u4077_div {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:88px;
  6832. height:54px;
  6833. background:inherit;
  6834. background-color:rgba(255, 255, 255, 0);
  6835. border:none;
  6836. border-left:0px;
  6837. border-top:0px;
  6838. border-right:0px;
  6839. border-radius:4px;
  6840. border-bottom-right-radius:0px;
  6841. border-bottom-left-radius:0px;
  6842. -moz-box-shadow:none;
  6843. -webkit-box-shadow:none;
  6844. box-shadow:none;
  6845. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6846. font-weight:700;
  6847. font-style:normal;
  6848. font-size:14px;
  6849. color:rgba(0, 0, 0, 0.8470588235294118);
  6850. text-align:left;
  6851. line-height:53px;
  6852. }
  6853. #u4077 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:837px;
  6857. top:359px;
  6858. width:88px;
  6859. height:54px;
  6860. display:flex;
  6861. font-family:'Microsoft Tai Le Bold', 'Microsoft Tai Le', sans-serif;
  6862. font-weight:700;
  6863. font-style:normal;
  6864. font-size:14px;
  6865. color:rgba(0, 0, 0, 0.8470588235294118);
  6866. text-align:left;
  6867. line-height:53px;
  6868. }
  6869. #u4077 .text {
  6870. position:absolute;
  6871. align-self:center;
  6872. padding:0px 16px 0px 16px;
  6873. box-sizing:border-box;
  6874. width:100%;
  6875. }
  6876. #u4077_text {
  6877. border-width:0px;
  6878. white-space:nowrap;
  6879. text-transform:none;
  6880. }
  6881. #u4078_div {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:163px;
  6887. height:159px;
  6888. background:inherit;
  6889. background-color:rgba(255, 255, 255, 0);
  6890. border:none;
  6891. border-left:0px;
  6892. border-top:0px;
  6893. border-right:0px;
  6894. border-radius:4px;
  6895. border-bottom-right-radius:0px;
  6896. border-bottom-left-radius:0px;
  6897. -moz-box-shadow:none;
  6898. -webkit-box-shadow:none;
  6899. box-shadow:none;
  6900. font-family:'Microsoft Tai Le', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:14px;
  6904. color:rgba(0, 0, 0, 0.6470588235294118);
  6905. text-align:left;
  6906. line-height:53px;
  6907. }
  6908. #u4078 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:837px;
  6912. top:413px;
  6913. width:163px;
  6914. height:159px;
  6915. display:flex;
  6916. font-family:'Microsoft Tai Le', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:14px;
  6920. color:rgba(0, 0, 0, 0.6470588235294118);
  6921. text-align:left;
  6922. line-height:53px;
  6923. }
  6924. #u4078 .text {
  6925. position:absolute;
  6926. align-self:flex-start;
  6927. padding:0px 16px 0px 16px;
  6928. box-sizing:border-box;
  6929. width:100%;
  6930. }
  6931. #u4078_text {
  6932. border-width:0px;
  6933. white-space:nowrap;
  6934. text-transform:none;
  6935. }
  6936. #u4079 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:0px;
  6942. height:0px;
  6943. }
  6944. #u4080_div {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:51px;
  6950. height:22px;
  6951. background:inherit;
  6952. background-color:rgba(255, 255, 255, 0);
  6953. border:none;
  6954. border-radius:0px;
  6955. -moz-box-shadow:none;
  6956. -webkit-box-shadow:none;
  6957. box-shadow:none;
  6958. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6959. font-weight:400;
  6960. font-style:normal;
  6961. color:rgba(0, 0, 0, 0.42745098039215684);
  6962. line-height:22px;
  6963. }
  6964. #u4080 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:426px;
  6968. top:596px;
  6969. width:51px;
  6970. height:22px;
  6971. display:flex;
  6972. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6973. font-weight:400;
  6974. font-style:normal;
  6975. color:rgba(0, 0, 0, 0.42745098039215684);
  6976. line-height:22px;
  6977. }
  6978. #u4080 .text {
  6979. position:absolute;
  6980. align-self:flex-start;
  6981. padding:0px 0px 0px 0px;
  6982. box-sizing:border-box;
  6983. width:100%;
  6984. }
  6985. #u4080_text {
  6986. border-width:0px;
  6987. white-space:nowrap;
  6988. text-transform:none;
  6989. }
  6990. #u4081_div {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:0px;
  6994. top:0px;
  6995. width:32px;
  6996. height:32px;
  6997. background:inherit;
  6998. background-color:rgba(24, 144, 255, 1);
  6999. border:none;
  7000. border-radius:6px;
  7001. -moz-box-shadow:none;
  7002. -webkit-box-shadow:none;
  7003. box-shadow:none;
  7004. font-size:14px;
  7005. color:#FFFFFF;
  7006. line-height:22px;
  7007. }
  7008. #u4081 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:538px;
  7012. top:591px;
  7013. width:32px;
  7014. height:32px;
  7015. display:flex;
  7016. font-size:14px;
  7017. color:#FFFFFF;
  7018. line-height:22px;
  7019. }
  7020. #u4081 .text {
  7021. position:absolute;
  7022. align-self:center;
  7023. padding:2px 2px 2px 2px;
  7024. box-sizing:border-box;
  7025. width:100%;
  7026. }
  7027. #u4081_text {
  7028. border-width:0px;
  7029. word-wrap:break-word;
  7030. text-transform:none;
  7031. }
  7032. #u4082_div {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:32px;
  7038. height:32px;
  7039. background:inherit;
  7040. background-color:rgba(255, 255, 255, 1);
  7041. box-sizing:border-box;
  7042. border-width:1px;
  7043. border-style:solid;
  7044. border-color:rgba(217, 217, 217, 1);
  7045. border-radius:6px;
  7046. -moz-box-shadow:none;
  7047. -webkit-box-shadow:none;
  7048. box-shadow:none;
  7049. font-size:14px;
  7050. color:rgba(0, 0, 0, 0.6470588235294118);
  7051. line-height:22px;
  7052. }
  7053. #u4082 {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:578px;
  7057. top:591px;
  7058. width:32px;
  7059. height:32px;
  7060. display:flex;
  7061. font-size:14px;
  7062. color:rgba(0, 0, 0, 0.6470588235294118);
  7063. line-height:22px;
  7064. }
  7065. #u4082 .text {
  7066. position:absolute;
  7067. align-self:center;
  7068. padding:2px 2px 2px 2px;
  7069. box-sizing:border-box;
  7070. width:100%;
  7071. }
  7072. #u4082_text {
  7073. border-width:0px;
  7074. word-wrap:break-word;
  7075. text-transform:none;
  7076. }
  7077. #u4083_div {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:32px;
  7083. height:32px;
  7084. background:inherit;
  7085. background-color:rgba(255, 255, 255, 1);
  7086. box-sizing:border-box;
  7087. border-width:1px;
  7088. border-style:solid;
  7089. border-color:rgba(217, 217, 217, 1);
  7090. border-radius:6px;
  7091. -moz-box-shadow:none;
  7092. -webkit-box-shadow:none;
  7093. box-shadow:none;
  7094. font-size:14px;
  7095. color:rgba(0, 0, 0, 0.6470588235294118);
  7096. line-height:22px;
  7097. }
  7098. #u4083 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:618px;
  7102. top:591px;
  7103. width:32px;
  7104. height:32px;
  7105. display:flex;
  7106. font-size:14px;
  7107. color:rgba(0, 0, 0, 0.6470588235294118);
  7108. line-height:22px;
  7109. }
  7110. #u4083 .text {
  7111. position:absolute;
  7112. align-self:center;
  7113. padding:2px 2px 2px 2px;
  7114. box-sizing:border-box;
  7115. width:100%;
  7116. }
  7117. #u4083_text {
  7118. border-width:0px;
  7119. word-wrap:break-word;
  7120. text-transform:none;
  7121. }
  7122. #u4084_div {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:32px;
  7128. height:32px;
  7129. background:inherit;
  7130. background-color:rgba(255, 255, 255, 1);
  7131. box-sizing:border-box;
  7132. border-width:1px;
  7133. border-style:solid;
  7134. border-color:rgba(217, 217, 217, 1);
  7135. border-radius:6px;
  7136. -moz-box-shadow:none;
  7137. -webkit-box-shadow:none;
  7138. box-shadow:none;
  7139. font-size:14px;
  7140. color:rgba(0, 0, 0, 0.6470588235294118);
  7141. line-height:22px;
  7142. }
  7143. #u4084 {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:658px;
  7147. top:591px;
  7148. width:32px;
  7149. height:32px;
  7150. display:flex;
  7151. font-size:14px;
  7152. color:rgba(0, 0, 0, 0.6470588235294118);
  7153. line-height:22px;
  7154. }
  7155. #u4084 .text {
  7156. position:absolute;
  7157. align-self:center;
  7158. padding:2px 2px 2px 2px;
  7159. box-sizing:border-box;
  7160. width:100%;
  7161. }
  7162. #u4084_text {
  7163. border-width:0px;
  7164. word-wrap:break-word;
  7165. text-transform:none;
  7166. }
  7167. #u4085_div {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:32px;
  7173. height:32px;
  7174. background:inherit;
  7175. background-color:rgba(255, 255, 255, 1);
  7176. box-sizing:border-box;
  7177. border-width:1px;
  7178. border-style:solid;
  7179. border-color:rgba(217, 217, 217, 1);
  7180. border-radius:6px;
  7181. -moz-box-shadow:none;
  7182. -webkit-box-shadow:none;
  7183. box-shadow:none;
  7184. font-size:14px;
  7185. color:rgba(0, 0, 0, 0.6470588235294118);
  7186. line-height:22px;
  7187. }
  7188. #u4085 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:698px;
  7192. top:591px;
  7193. width:32px;
  7194. height:32px;
  7195. display:flex;
  7196. font-size:14px;
  7197. color:rgba(0, 0, 0, 0.6470588235294118);
  7198. line-height:22px;
  7199. }
  7200. #u4085 .text {
  7201. position:absolute;
  7202. align-self:center;
  7203. padding:2px 2px 2px 2px;
  7204. box-sizing:border-box;
  7205. width:100%;
  7206. }
  7207. #u4085_text {
  7208. border-width:0px;
  7209. word-wrap:break-word;
  7210. text-transform:none;
  7211. }
  7212. #u4086_div {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:28px;
  7218. height:22px;
  7219. background:inherit;
  7220. background-color:rgba(255, 255, 255, 0);
  7221. border:none;
  7222. border-radius:0px;
  7223. -moz-box-shadow:none;
  7224. -webkit-box-shadow:none;
  7225. box-shadow:none;
  7226. font-family:"Microsoft YaHei", sans-serif;
  7227. font-weight:400;
  7228. font-style:normal;
  7229. font-size:14px;
  7230. color:rgba(0, 0, 0, 0.6470588235294118);
  7231. line-height:22px;
  7232. }
  7233. #u4086 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:893px;
  7237. top:596px;
  7238. width:28px;
  7239. height:22px;
  7240. display:flex;
  7241. font-family:"Microsoft YaHei", sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:14px;
  7245. color:rgba(0, 0, 0, 0.6470588235294118);
  7246. line-height:22px;
  7247. }
  7248. #u4086 .text {
  7249. position:absolute;
  7250. align-self:flex-start;
  7251. padding:0px 0px 0px 0px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u4086_text {
  7256. border-width:0px;
  7257. white-space:nowrap;
  7258. text-transform:none;
  7259. }
  7260. #u4087_div {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:48px;
  7266. height:32px;
  7267. background:inherit;
  7268. background-color:rgba(255, 255, 255, 1);
  7269. box-sizing:border-box;
  7270. border-width:1px;
  7271. border-style:solid;
  7272. border-color:rgba(217, 217, 217, 1);
  7273. border-radius:6px;
  7274. -moz-box-shadow:none;
  7275. -webkit-box-shadow:none;
  7276. box-shadow:none;
  7277. font-size:14px;
  7278. color:rgba(0, 0, 0, 0.6470588235294118);
  7279. text-align:left;
  7280. line-height:22px;
  7281. }
  7282. #u4087 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:930px;
  7286. top:591px;
  7287. width:48px;
  7288. height:32px;
  7289. display:flex;
  7290. font-size:14px;
  7291. color:rgba(0, 0, 0, 0.6470588235294118);
  7292. text-align:left;
  7293. line-height:22px;
  7294. }
  7295. #u4087 .text {
  7296. position:absolute;
  7297. align-self:center;
  7298. padding:2px 2px 2px 16px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u4087_text {
  7303. border-width:0px;
  7304. word-wrap:break-word;
  7305. text-transform:none;
  7306. }
  7307. #u4088_div {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:0px;
  7311. top:0px;
  7312. width:14px;
  7313. height:22px;
  7314. background:inherit;
  7315. background-color:rgba(255, 255, 255, 0);
  7316. border:none;
  7317. border-radius:0px;
  7318. -moz-box-shadow:none;
  7319. -webkit-box-shadow:none;
  7320. box-shadow:none;
  7321. font-family:"Microsoft YaHei", sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. font-size:14px;
  7325. color:rgba(0, 0, 0, 0.6470588235294118);
  7326. line-height:22px;
  7327. }
  7328. #u4088 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:986px;
  7332. top:596px;
  7333. width:14px;
  7334. height:22px;
  7335. display:flex;
  7336. font-family:"Microsoft YaHei", sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:14px;
  7340. color:rgba(0, 0, 0, 0.6470588235294118);
  7341. line-height:22px;
  7342. }
  7343. #u4088 .text {
  7344. position:absolute;
  7345. align-self:flex-start;
  7346. padding:0px 0px 2px 0px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u4088_text {
  7351. border-width:0px;
  7352. white-space:nowrap;
  7353. text-transform:none;
  7354. }
  7355. #u4089 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:0px;
  7361. height:0px;
  7362. }
  7363. #u4090_div {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:0px;
  7367. top:0px;
  7368. width:88px;
  7369. height:32px;
  7370. background:inherit;
  7371. background-color:rgba(255, 255, 255, 1);
  7372. box-sizing:border-box;
  7373. border-width:1px;
  7374. border-style:solid;
  7375. border-color:rgba(217, 217, 217, 1);
  7376. border-radius:6px;
  7377. -moz-box-shadow:none;
  7378. -webkit-box-shadow:none;
  7379. box-shadow:none;
  7380. font-size:14px;
  7381. color:rgba(0, 0, 0, 0.6470588235294118);
  7382. text-align:left;
  7383. line-height:22px;
  7384. }
  7385. #u4090 {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:786px;
  7389. top:591px;
  7390. width:88px;
  7391. height:32px;
  7392. display:flex;
  7393. font-size:14px;
  7394. color:rgba(0, 0, 0, 0.6470588235294118);
  7395. text-align:left;
  7396. line-height:22px;
  7397. }
  7398. #u4090 .text {
  7399. position:absolute;
  7400. align-self:center;
  7401. padding:2px 30px 2px 8px;
  7402. box-sizing:border-box;
  7403. width:100%;
  7404. }
  7405. #u4090_text {
  7406. border-width:0px;
  7407. white-space:nowrap;
  7408. text-transform:none;
  7409. }
  7410. #u4091_img {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:14px;
  7416. height:14px;
  7417. }
  7418. #u4091 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:851px;
  7422. top:600px;
  7423. width:14px;
  7424. height:14px;
  7425. display:flex;
  7426. -webkit-transform:rotate(90deg);
  7427. -moz-transform:rotate(90deg);
  7428. -ms-transform:rotate(90deg);
  7429. transform:rotate(90deg);
  7430. opacity:0.4000000059604645;
  7431. }
  7432. #u4091 .text {
  7433. position:absolute;
  7434. align-self:center;
  7435. padding:2px 2px 2px 2px;
  7436. box-sizing:border-box;
  7437. width:100%;
  7438. }
  7439. #u4091_text {
  7440. border-width:0px;
  7441. word-wrap:break-word;
  7442. text-transform:none;
  7443. visibility:hidden;
  7444. }
  7445. #u4092 {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:0px;
  7451. height:0px;
  7452. }
  7453. #u4093_div {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:0px;
  7457. top:0px;
  7458. width:32px;
  7459. height:32px;
  7460. background:inherit;
  7461. background-color:rgba(255, 255, 255, 1);
  7462. box-sizing:border-box;
  7463. border-width:1px;
  7464. border-style:solid;
  7465. border-color:rgba(217, 217, 217, 1);
  7466. border-radius:6px;
  7467. -moz-box-shadow:none;
  7468. -webkit-box-shadow:none;
  7469. box-shadow:none;
  7470. font-size:12px;
  7471. color:#666666;
  7472. }
  7473. #u4093 {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:498px;
  7477. top:591px;
  7478. width:32px;
  7479. height:32px;
  7480. display:flex;
  7481. font-size:12px;
  7482. color:#666666;
  7483. }
  7484. #u4093 .text {
  7485. position:absolute;
  7486. align-self:center;
  7487. padding:2px 2px 2px 2px;
  7488. box-sizing:border-box;
  7489. width:100%;
  7490. }
  7491. #u4093_text {
  7492. border-width:0px;
  7493. word-wrap:break-word;
  7494. text-transform:none;
  7495. visibility:hidden;
  7496. }
  7497. #u4094_img {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:14px;
  7503. height:14px;
  7504. }
  7505. #u4094 {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:507px;
  7509. top:600px;
  7510. width:14px;
  7511. height:14px;
  7512. display:flex;
  7513. -webkit-transform:rotate(180deg);
  7514. -moz-transform:rotate(180deg);
  7515. -ms-transform:rotate(180deg);
  7516. transform:rotate(180deg);
  7517. opacity:0.4000000059604645;
  7518. }
  7519. #u4094 .text {
  7520. position:absolute;
  7521. align-self:center;
  7522. padding:2px 2px 2px 2px;
  7523. box-sizing:border-box;
  7524. width:100%;
  7525. }
  7526. #u4094_text {
  7527. border-width:0px;
  7528. word-wrap:break-word;
  7529. text-transform:none;
  7530. visibility:hidden;
  7531. }
  7532. #u4095 {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:0px;
  7538. height:0px;
  7539. }
  7540. #u4096_div {
  7541. border-width:0px;
  7542. position:absolute;
  7543. left:0px;
  7544. top:0px;
  7545. width:32px;
  7546. height:32px;
  7547. background:inherit;
  7548. background-color:rgba(255, 255, 255, 1);
  7549. box-sizing:border-box;
  7550. border-width:1px;
  7551. border-style:solid;
  7552. border-color:rgba(217, 217, 217, 1);
  7553. border-radius:6px;
  7554. -moz-box-shadow:none;
  7555. -webkit-box-shadow:none;
  7556. box-shadow:none;
  7557. font-size:12px;
  7558. color:#666666;
  7559. }
  7560. #u4096 {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:738px;
  7564. top:591px;
  7565. width:32px;
  7566. height:32px;
  7567. display:flex;
  7568. font-size:12px;
  7569. color:#666666;
  7570. }
  7571. #u4096 .text {
  7572. position:absolute;
  7573. align-self:center;
  7574. padding:2px 2px 2px 2px;
  7575. box-sizing:border-box;
  7576. width:100%;
  7577. }
  7578. #u4096_text {
  7579. border-width:0px;
  7580. word-wrap:break-word;
  7581. text-transform:none;
  7582. visibility:hidden;
  7583. }
  7584. #u4097_img {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:0px;
  7588. top:0px;
  7589. width:14px;
  7590. height:14px;
  7591. }
  7592. #u4097 {
  7593. border-width:0px;
  7594. position:absolute;
  7595. left:747px;
  7596. top:600px;
  7597. width:14px;
  7598. height:14px;
  7599. display:flex;
  7600. opacity:0.4000000059604645;
  7601. }
  7602. #u4097 .text {
  7603. position:absolute;
  7604. align-self:center;
  7605. padding:2px 2px 2px 2px;
  7606. box-sizing:border-box;
  7607. width:100%;
  7608. }
  7609. #u4097_text {
  7610. border-width:0px;
  7611. word-wrap:break-word;
  7612. text-transform:none;
  7613. visibility:hidden;
  7614. }
  7615. #u4098_div {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:65px;
  7621. height:32px;
  7622. background:inherit;
  7623. background-color:rgba(24, 144, 255, 1);
  7624. border:none;
  7625. border-radius:4px;
  7626. -moz-box-shadow:none;
  7627. -webkit-box-shadow:none;
  7628. box-shadow:none;
  7629. font-family:"Microsoft YaHei", sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:14px;
  7633. color:#FFFFFF;
  7634. text-align:left;
  7635. line-height:22px;
  7636. }
  7637. #u4098 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:712px;
  7641. top:315px;
  7642. width:65px;
  7643. height:32px;
  7644. display:flex;
  7645. font-family:"Microsoft YaHei", sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:14px;
  7649. color:#FFFFFF;
  7650. text-align:left;
  7651. line-height:22px;
  7652. }
  7653. #u4098 .text {
  7654. position:absolute;
  7655. align-self:center;
  7656. padding:0px 16px 0px 16px;
  7657. box-sizing:border-box;
  7658. width:100%;
  7659. }
  7660. #u4098_text {
  7661. border-width:0px;
  7662. white-space:nowrap;
  7663. text-transform:none;
  7664. }
  7665. #u4099 {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:0px;
  7671. height:0px;
  7672. }
  7673. #u4100 {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:0px;
  7677. top:0px;
  7678. width:0px;
  7679. height:0px;
  7680. }
  7681. #u4101_div {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:0px;
  7685. top:0px;
  7686. width:84px;
  7687. height:47px;
  7688. background:inherit;
  7689. background-color:rgba(255, 255, 255, 0);
  7690. border:none;
  7691. border-radius:0px;
  7692. -moz-box-shadow:none;
  7693. -webkit-box-shadow:none;
  7694. box-shadow:none;
  7695. font-family:'Microsoft Tai Le', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:14px;
  7699. color:rgba(0, 0, 0, 0.8470588235294118);
  7700. text-align:right;
  7701. line-height:22px;
  7702. }
  7703. #u4101 {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:426px;
  7707. top:315px;
  7708. width:84px;
  7709. height:47px;
  7710. display:flex;
  7711. font-family:'Microsoft Tai Le', sans-serif;
  7712. font-weight:400;
  7713. font-style:normal;
  7714. font-size:14px;
  7715. color:rgba(0, 0, 0, 0.8470588235294118);
  7716. text-align:right;
  7717. line-height:22px;
  7718. }
  7719. #u4101 .text {
  7720. position:absolute;
  7721. align-self:flex-start;
  7722. padding:5px 0px 29px 0px;
  7723. box-sizing:border-box;
  7724. width:100%;
  7725. }
  7726. #u4101_text {
  7727. border-width:0px;
  7728. white-space:nowrap;
  7729. text-transform:none;
  7730. }
  7731. #u4102_div {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:0px;
  7735. top:0px;
  7736. width:180px;
  7737. height:32px;
  7738. background:inherit;
  7739. background-color:rgba(255, 255, 255, 1);
  7740. box-sizing:border-box;
  7741. border-width:1px;
  7742. border-style:solid;
  7743. border-color:rgba(217, 217, 217, 1);
  7744. border-radius:4px;
  7745. -moz-box-shadow:none;
  7746. -webkit-box-shadow:none;
  7747. box-shadow:none;
  7748. font-family:'Microsoft Tai Le', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:14px;
  7752. color:rgba(0, 0, 0, 0.24705882352941178);
  7753. text-align:left;
  7754. line-height:22px;
  7755. }
  7756. #u4102 {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:510px;
  7760. top:315px;
  7761. width:180px;
  7762. height:32px;
  7763. display:flex;
  7764. font-family:'Microsoft Tai Le', sans-serif;
  7765. font-weight:400;
  7766. font-style:normal;
  7767. font-size:14px;
  7768. color:rgba(0, 0, 0, 0.24705882352941178);
  7769. text-align:left;
  7770. line-height:22px;
  7771. }
  7772. #u4102 .text {
  7773. position:absolute;
  7774. align-self:flex-start;
  7775. padding:5px 0px 5px 12px;
  7776. box-sizing:border-box;
  7777. width:100%;
  7778. }
  7779. #u4102_text {
  7780. border-width:0px;
  7781. word-wrap:break-word;
  7782. text-transform:none;
  7783. }
  7784. #u4103_div {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:0px;
  7788. top:0px;
  7789. width:180px;
  7790. height:14px;
  7791. background:inherit;
  7792. background-color:rgba(255, 51, 153, 1);
  7793. border:none;
  7794. border-radius:0px;
  7795. -moz-box-shadow:none;
  7796. -webkit-box-shadow:none;
  7797. box-shadow:none;
  7798. color:#FFFFFF;
  7799. }
  7800. #u4103 {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:510px;
  7804. top:347px;
  7805. width:180px;
  7806. height:14px;
  7807. display:flex;
  7808. opacity:0;
  7809. color:#FFFFFF;
  7810. }
  7811. #u4103 .text {
  7812. position:absolute;
  7813. align-self:center;
  7814. padding:2px 2px 2px 2px;
  7815. box-sizing:border-box;
  7816. width:100%;
  7817. }
  7818. #u4103_text {
  7819. border-width:0px;
  7820. word-wrap:break-word;
  7821. text-transform:none;
  7822. }
  7823. #u4104_img {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:21px;
  7829. height:21px;
  7830. }
  7831. #u4104 {
  7832. border-width:0px;
  7833. position:absolute;
  7834. left:1022px;
  7835. top:269px;
  7836. width:21px;
  7837. height:21px;
  7838. display:flex;
  7839. }
  7840. #u4104 .text {
  7841. position:absolute;
  7842. align-self:center;
  7843. padding:2px 2px 2px 2px;
  7844. box-sizing:border-box;
  7845. width:100%;
  7846. }
  7847. #u4104_text {
  7848. border-width:0px;
  7849. word-wrap:break-word;
  7850. text-transform:none;
  7851. visibility:hidden;
  7852. }