styles.css 248 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-24px;
  6. width:3085px;
  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. #u2814 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u2815_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. #u2815 {
  43. border-width:0px;
  44. position:absolute;
  45. left:280px;
  46. top:37px;
  47. width:1184px;
  48. height:64px;
  49. display:flex;
  50. }
  51. #u2815 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u2815_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u2816_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:20px;
  70. height:15px;
  71. }
  72. #u2816 {
  73. border-width:0px;
  74. position:absolute;
  75. left:308px;
  76. top:62px;
  77. width:20px;
  78. height:15px;
  79. display:flex;
  80. }
  81. #u2816 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u2816_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u2817 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u2818_img {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:24px;
  108. height:24px;
  109. }
  110. #u2818 {
  111. border-width:0px;
  112. position:absolute;
  113. left:1341px;
  114. top:58px;
  115. width:24px;
  116. height:24px;
  117. display:flex;
  118. }
  119. #u2818 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u2818_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u2819_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. #u2819 {
  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. #u2819 .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. #u2819_text {
  168. border-width:0px;
  169. white-space:nowrap;
  170. text-transform:none;
  171. }
  172. #u2820_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:256px;
  178. height:1776px;
  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. #u2820 {
  188. border-width:0px;
  189. position:absolute;
  190. left:24px;
  191. top:37px;
  192. width:256px;
  193. height:1776px;
  194. display:flex;
  195. }
  196. #u2820 .text {
  197. position:absolute;
  198. align-self:center;
  199. padding:2px 2px 2px 2px;
  200. box-sizing:border-box;
  201. width:100%;
  202. }
  203. #u2820_text {
  204. border-width:0px;
  205. word-wrap:break-word;
  206. text-transform:none;
  207. visibility:hidden;
  208. }
  209. #u2821_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:256px;
  215. height:65px;
  216. }
  217. #u2821 {
  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. #u2821 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:0px 0px 0px 68px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u2821_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u2822 {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:0px;
  251. height:0px;
  252. }
  253. #u2823_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. #u2823 {
  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. #u2823 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:16px 2px 16px 50px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u2823_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. }
  303. #u2824_img {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:14px;
  309. height:14px;
  310. }
  311. #u2824 {
  312. border-width:0px;
  313. position:absolute;
  314. left:48px;
  315. top:122px;
  316. width:14px;
  317. height:14px;
  318. display:flex;
  319. }
  320. #u2824 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u2824_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. visibility:hidden;
  332. }
  333. #u2825_img {
  334. border-width:0px;
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:7px;
  339. height:14px;
  340. }
  341. #u2825 {
  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. #u2825 .text {
  356. position:absolute;
  357. align-self:center;
  358. padding:0px 0px 0px 0px;
  359. box-sizing:border-box;
  360. width:100%;
  361. }
  362. #u2825_text {
  363. border-width:0px;
  364. white-space:nowrap;
  365. text-transform:none;
  366. }
  367. #u2826 {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:0px;
  373. height:0px;
  374. }
  375. #u2827_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. #u2827 {
  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. #u2827 .text {
  414. position:absolute;
  415. align-self:center;
  416. padding:16px 2px 16px 50px;
  417. box-sizing:border-box;
  418. width:100%;
  419. }
  420. #u2827_text {
  421. border-width:0px;
  422. word-wrap:break-word;
  423. text-transform:none;
  424. }
  425. #u2828_img {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:14px;
  431. height:14px;
  432. }
  433. #u2828 {
  434. border-width:0px;
  435. position:absolute;
  436. left:48px;
  437. top:825px;
  438. width:14px;
  439. height:14px;
  440. display:flex;
  441. }
  442. #u2828 .text {
  443. position:absolute;
  444. align-self:center;
  445. padding:2px 2px 2px 2px;
  446. box-sizing:border-box;
  447. width:100%;
  448. }
  449. #u2828_text {
  450. border-width:0px;
  451. word-wrap:break-word;
  452. text-transform:none;
  453. visibility:hidden;
  454. }
  455. #u2829_img {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:7px;
  461. height:14px;
  462. }
  463. #u2829 {
  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. #u2829 .text {
  478. position:absolute;
  479. align-self:center;
  480. padding:0px 0px 0px 0px;
  481. box-sizing:border-box;
  482. width:100%;
  483. }
  484. #u2829_text {
  485. border-width:0px;
  486. white-space:nowrap;
  487. text-transform:none;
  488. }
  489. #u2830 {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:0px;
  495. height:0px;
  496. }
  497. #u2831_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. #u2831 {
  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. #u2831 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:16px 2px 16px 50px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u2831_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. }
  547. #u2832_img {
  548. border-width:0px;
  549. position:absolute;
  550. left:0px;
  551. top:0px;
  552. width:14px;
  553. height:14px;
  554. }
  555. #u2832 {
  556. border-width:0px;
  557. position:absolute;
  558. left:48px;
  559. top:879px;
  560. width:14px;
  561. height:14px;
  562. display:flex;
  563. }
  564. #u2832 .text {
  565. position:absolute;
  566. align-self:center;
  567. padding:2px 2px 2px 2px;
  568. box-sizing:border-box;
  569. width:100%;
  570. }
  571. #u2832_text {
  572. border-width:0px;
  573. word-wrap:break-word;
  574. text-transform:none;
  575. visibility:hidden;
  576. }
  577. #u2833_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:7px;
  583. height:14px;
  584. }
  585. #u2833 {
  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. #u2833 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:0px 0px 0px 0px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u2833_text {
  607. border-width:0px;
  608. white-space:nowrap;
  609. text-transform:none;
  610. }
  611. #u2834_img {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:7px;
  617. height:14px;
  618. }
  619. #u2834 {
  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. #u2834 .text {
  634. position:absolute;
  635. align-self:center;
  636. padding:0px 0px 0px 0px;
  637. box-sizing:border-box;
  638. width:100%;
  639. }
  640. #u2834_text {
  641. border-width:0px;
  642. white-space:nowrap;
  643. text-transform:none;
  644. }
  645. #u2835 {
  646. border-width:0px;
  647. position:absolute;
  648. left:0px;
  649. top:0px;
  650. width:0px;
  651. height:0px;
  652. }
  653. #u2836_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. #u2836 {
  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. #u2836 .text {
  692. position:absolute;
  693. align-self:center;
  694. padding:16px 2px 16px 50px;
  695. box-sizing:border-box;
  696. width:100%;
  697. }
  698. #u2836_text {
  699. border-width:0px;
  700. word-wrap:break-word;
  701. text-transform:none;
  702. }
  703. #u2837_img {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:0px;
  708. width:15px;
  709. height:14px;
  710. }
  711. #u2837 {
  712. border-width:0px;
  713. position:absolute;
  714. left:48px;
  715. top:173px;
  716. width:15px;
  717. height:14px;
  718. display:flex;
  719. }
  720. #u2837 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:2px 2px 2px 2px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u2837_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. visibility:hidden;
  732. }
  733. #u2838_img {
  734. border-width:0px;
  735. position:absolute;
  736. left:0px;
  737. top:0px;
  738. width:7px;
  739. height:14px;
  740. }
  741. #u2838 {
  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. #u2838 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:0px 0px 0px 0px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u2838_text {
  763. border-width:0px;
  764. white-space:nowrap;
  765. text-transform:none;
  766. }
  767. #u2839 {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:0px;
  773. height:0px;
  774. }
  775. #u2840 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u2841_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. #u2841 {
  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. #u2841 .text {
  822. position:absolute;
  823. align-self:center;
  824. padding:12px 0px 12px 50px;
  825. box-sizing:border-box;
  826. width:100%;
  827. }
  828. #u2841_text {
  829. border-width:0px;
  830. word-wrap:break-word;
  831. text-transform:none;
  832. }
  833. #u2842 {
  834. border-width:0px;
  835. position:absolute;
  836. left:0px;
  837. top:0px;
  838. width:0px;
  839. height:0px;
  840. }
  841. #u2843_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. #u2843 {
  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. #u2843 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:16px 2px 16px 50px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u2843_text {
  887. border-width:0px;
  888. word-wrap:break-word;
  889. text-transform:none;
  890. }
  891. #u2844_img {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:14px;
  897. height:14px;
  898. }
  899. #u2844 {
  900. border-width:0px;
  901. position:absolute;
  902. left:48px;
  903. top:933px;
  904. width:14px;
  905. height:14px;
  906. display:flex;
  907. }
  908. #u2844 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u2844_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. visibility:hidden;
  920. }
  921. #u2845_img {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:7px;
  927. height:14px;
  928. }
  929. #u2845 {
  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. #u2845 .text {
  944. position:absolute;
  945. align-self:center;
  946. padding:0px 0px 0px 0px;
  947. box-sizing:border-box;
  948. width:100%;
  949. }
  950. #u2845_text {
  951. border-width:0px;
  952. white-space:nowrap;
  953. text-transform:none;
  954. }
  955. #u2846 {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:0px;
  961. height:0px;
  962. }
  963. #u2847_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. #u2847 {
  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. #u2847 .text {
  1002. position:absolute;
  1003. align-self:center;
  1004. padding:16px 2px 16px 50px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u2847_text {
  1009. border-width:0px;
  1010. word-wrap:break-word;
  1011. text-transform:none;
  1012. }
  1013. #u2848_img {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:14px;
  1019. height:14px;
  1020. }
  1021. #u2848 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:48px;
  1025. top:987px;
  1026. width:14px;
  1027. height:14px;
  1028. display:flex;
  1029. }
  1030. #u2848 .text {
  1031. position:absolute;
  1032. align-self:center;
  1033. padding:2px 2px 2px 2px;
  1034. box-sizing:border-box;
  1035. width:100%;
  1036. }
  1037. #u2848_text {
  1038. border-width:0px;
  1039. word-wrap:break-word;
  1040. text-transform:none;
  1041. visibility:hidden;
  1042. }
  1043. #u2849_img {
  1044. border-width:0px;
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:7px;
  1049. height:14px;
  1050. }
  1051. #u2849 {
  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. #u2849 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:0px 0px 0px 0px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u2849_text {
  1073. border-width:0px;
  1074. white-space:nowrap;
  1075. text-transform:none;
  1076. }
  1077. #u2850 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:0px;
  1083. height:0px;
  1084. }
  1085. #u2851_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. #u2851 {
  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. #u2851 .text {
  1124. position:absolute;
  1125. align-self:center;
  1126. padding:12px 0px 12px 50px;
  1127. box-sizing:border-box;
  1128. width:100%;
  1129. }
  1130. #u2851_text {
  1131. border-width:0px;
  1132. word-wrap:break-word;
  1133. text-transform:none;
  1134. }
  1135. #u2852 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:0px;
  1139. top:0px;
  1140. width:0px;
  1141. height:0px;
  1142. }
  1143. #u2853_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. #u2853 {
  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. #u2853 .text {
  1182. position:absolute;
  1183. align-self:center;
  1184. padding:12px 0px 12px 50px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u2853_text {
  1189. border-width:0px;
  1190. word-wrap:break-word;
  1191. text-transform:none;
  1192. }
  1193. #u2854_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. #u2854 {
  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. #u2854 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:12px 0px 12px 50px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u2854_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. }
  1243. #u2855_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. #u2855 {
  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. #u2855 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:12px 0px 12px 50px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u2855_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u2856_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. #u2856 {
  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. #u2856 .text {
  1332. position:absolute;
  1333. align-self:center;
  1334. padding:12px 0px 12px 50px;
  1335. box-sizing:border-box;
  1336. width:100%;
  1337. }
  1338. #u2856_text {
  1339. border-width:0px;
  1340. word-wrap:break-word;
  1341. text-transform:none;
  1342. }
  1343. #u2857_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. #u2857 {
  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. #u2857 .text {
  1382. position:absolute;
  1383. align-self:center;
  1384. padding:12px 0px 12px 50px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u2857_text {
  1389. border-width:0px;
  1390. word-wrap:break-word;
  1391. text-transform:none;
  1392. }
  1393. #u2858_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. #u2858 {
  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. #u2858 .text {
  1432. position:absolute;
  1433. align-self:center;
  1434. padding:12px 0px 12px 50px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u2858_text {
  1439. border-width:0px;
  1440. word-wrap:break-word;
  1441. text-transform:none;
  1442. }
  1443. #u2859_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. #u2859 {
  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. #u2859 .text {
  1482. position:absolute;
  1483. align-self:center;
  1484. padding:12px 0px 12px 50px;
  1485. box-sizing:border-box;
  1486. width:100%;
  1487. }
  1488. #u2859_text {
  1489. border-width:0px;
  1490. word-wrap:break-word;
  1491. text-transform:none;
  1492. }
  1493. #u2860_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. #u2860 {
  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. #u2860 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:12px 0px 12px 50px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u2860_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. }
  1543. #u2861_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. #u2861 {
  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. #u2861 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:12px 0px 12px 74px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u2861_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. }
  1601. #u2862 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:0px;
  1607. height:0px;
  1608. }
  1609. #u2863_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. #u2863 {
  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. #u2863 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:12px 0px 12px 50px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u2863_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. }
  1659. #u2864_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. #u2864 {
  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. #u2864 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:12px 0px 12px 50px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u2864_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u2865_div {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:1239px;
  1715. height:1712px;
  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. #u2865 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:280px;
  1728. top:101px;
  1729. width:1239px;
  1730. height:1712px;
  1731. display:flex;
  1732. }
  1733. #u2865 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u2865_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u2866 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:0px;
  1752. height:0px;
  1753. }
  1754. #u2867_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:1307px;
  1760. height:1622px;
  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. #u2867 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:292px;
  1780. top:170px;
  1781. width:1307px;
  1782. height:1622px;
  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. #u2867 .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. #u2867_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u2868 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:292px;
  1809. top:171px;
  1810. width:32px;
  1811. height:32px;
  1812. }
  1813. #u2868_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. #u2868_state0_content {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:1px;
  1837. height:1px;
  1838. }
  1839. #u2869 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:1409px;
  1843. top:171px;
  1844. width:32px;
  1845. height:32px;
  1846. }
  1847. #u2869_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. #u2869_state0_content {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:1px;
  1871. height:1px;
  1872. }
  1873. #u2870_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. #u2870 {
  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. #u2870 .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. #u2870_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. visibility:hidden;
  1926. }
  1927. #u2871_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. #u2871 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:429px;
  1946. top:124px;
  1947. width:7px;
  1948. height:25px;
  1949. display:flex;
  1950. }
  1951. #u2871 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u2871_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. visibility:hidden;
  1963. }
  1964. #u2872_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. #u2872 {
  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. #u2872 .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. #u2872_text {
  2006. border-width:0px;
  2007. white-space:nowrap;
  2008. text-transform:none;
  2009. }
  2010. #u2873_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. #u2873 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:292px;
  2032. top:109px;
  2033. width:120px;
  2034. height:52px;
  2035. display:flex;
  2036. }
  2037. #u2873 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 2px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u2873_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u2874 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:0px;
  2055. height:0px;
  2056. }
  2057. #u2875_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. #u2875 {
  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. #u2875 .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. #u2875_text {
  2099. border-width:0px;
  2100. white-space:nowrap;
  2101. text-transform:none;
  2102. }
  2103. #u2876_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. #u2876 {
  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. #u2876 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u2876_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u2877 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:0px;
  2148. height:0px;
  2149. }
  2150. #u2878_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. #u2878 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:426px;
  2172. top:230px;
  2173. width:278px;
  2174. height:32px;
  2175. display:flex;
  2176. }
  2177. #u2878 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 2px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u2878_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. #u2878.mouseOver {
  2203. }
  2204. #u2878_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. #u2878.selected {
  2223. }
  2224. #u2878_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. #u2878.mouseOver.selected {
  2243. }
  2244. #u2878_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. visibility:hidden;
  2249. }
  2250. #u2879_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. #u2879_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. #u2879_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. #u2879_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. #u2879_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. #u2879 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:433px;
  2347. top:231px;
  2348. width:265px;
  2349. height:30px;
  2350. display:flex;
  2351. font-size:12px;
  2352. color:#606266;
  2353. }
  2354. #u2879 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u2879_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. #u2879.hint {
  2379. }
  2380. #u2879_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. #u2879.disabled {
  2398. }
  2399. #u2879_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. #u2879.hint.disabled {
  2417. }
  2418. #u2880_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. #u2880 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:324px;
  2437. top:235px;
  2438. width:80px;
  2439. height:16px;
  2440. display:flex;
  2441. }
  2442. #u2880 .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. #u2880_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u2881_div {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:80px;
  2460. height:16px;
  2461. background:inherit;
  2462. background-color:rgba(255, 255, 255, 0);
  2463. border:none;
  2464. border-radius:0px;
  2465. -moz-box-shadow:none;
  2466. -webkit-box-shadow:none;
  2467. box-shadow:none;
  2468. }
  2469. #u2881 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:326px;
  2473. top:388px;
  2474. width:80px;
  2475. height:16px;
  2476. display:flex;
  2477. }
  2478. #u2881 .text {
  2479. position:absolute;
  2480. align-self:flex-start;
  2481. padding:0px 0px 0px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u2881_text {
  2486. border-width:0px;
  2487. white-space:nowrap;
  2488. text-transform:none;
  2489. }
  2490. #u2882 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:0px;
  2496. height:0px;
  2497. }
  2498. #u2883_div {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:278px;
  2504. height:32px;
  2505. background:inherit;
  2506. background-color:rgba(255, 255, 255, 1);
  2507. box-sizing:border-box;
  2508. border-width:1px;
  2509. border-style:solid;
  2510. border-color:rgba(220, 223, 230, 1);
  2511. border-radius:4px;
  2512. -moz-box-shadow:none;
  2513. -webkit-box-shadow:none;
  2514. box-shadow:none;
  2515. }
  2516. #u2883 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:800px;
  2520. top:69px;
  2521. width:278px;
  2522. height:32px;
  2523. display:flex;
  2524. }
  2525. #u2883 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 2px 2px 2px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u2883_div.mouseOver {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:278px;
  2538. height:32px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 255, 1);
  2541. box-sizing:border-box;
  2542. border-width:1px;
  2543. border-style:solid;
  2544. border-color:rgba(192, 196, 204, 1);
  2545. border-radius:4px;
  2546. -moz-box-shadow:none;
  2547. -webkit-box-shadow:none;
  2548. box-shadow:none;
  2549. }
  2550. #u2883.mouseOver {
  2551. }
  2552. #u2883_div.selected {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:278px;
  2558. height:32px;
  2559. background:inherit;
  2560. background-color:rgba(255, 255, 255, 1);
  2561. box-sizing:border-box;
  2562. border-width:1px;
  2563. border-style:solid;
  2564. border-color:rgba(64, 158, 255, 1);
  2565. border-radius:4px;
  2566. -moz-box-shadow:none;
  2567. -webkit-box-shadow:none;
  2568. box-shadow:none;
  2569. }
  2570. #u2883.selected {
  2571. }
  2572. #u2883_div.mouseOver.selected {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:278px;
  2578. height:32px;
  2579. background:inherit;
  2580. background-color:rgba(255, 255, 255, 1);
  2581. box-sizing:border-box;
  2582. border-width:1px;
  2583. border-style:solid;
  2584. border-color:rgba(64, 158, 255, 1);
  2585. border-radius:4px;
  2586. -moz-box-shadow:none;
  2587. -webkit-box-shadow:none;
  2588. box-shadow:none;
  2589. }
  2590. #u2883.mouseOver.selected {
  2591. }
  2592. #u2883_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u2884_input {
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:265px;
  2603. height:30px;
  2604. padding:2px 2px 2px 2px;
  2605. font-family:"Arial Normal", "Arial", sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. font-size:12px;
  2609. letter-spacing:normal;
  2610. color:#606266;
  2611. vertical-align:none;
  2612. text-align:left;
  2613. text-transform:none;
  2614. background-color:transparent;
  2615. border-color:transparent;
  2616. }
  2617. #u2884_input.hint {
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:265px;
  2622. height:30px;
  2623. padding:2px 2px 2px 2px;
  2624. font-family:"Arial Normal", "Arial", sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:12px;
  2628. letter-spacing:normal;
  2629. color:#C0C4CC;
  2630. vertical-align:none;
  2631. text-align:left;
  2632. text-transform:none;
  2633. background-color:transparent;
  2634. border-color:transparent;
  2635. }
  2636. #u2884_input.disabled {
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:265px;
  2641. height:30px;
  2642. padding:2px 2px 2px 2px;
  2643. font-family:"Arial Normal", "Arial", sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:12px;
  2647. letter-spacing:normal;
  2648. color:#606266;
  2649. vertical-align:none;
  2650. text-align:left;
  2651. text-transform:none;
  2652. background-color:transparent;
  2653. border-color:transparent;
  2654. }
  2655. #u2884_input.hint.disabled {
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:265px;
  2660. height:30px;
  2661. padding:2px 2px 2px 2px;
  2662. font-family:"Arial Normal", "Arial", sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. font-size:12px;
  2666. letter-spacing:normal;
  2667. color:#C0C4CC;
  2668. vertical-align:none;
  2669. text-align:left;
  2670. text-transform:none;
  2671. background-color:transparent;
  2672. border-color:transparent;
  2673. }
  2674. #u2884_div {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:265px;
  2680. height:30px;
  2681. background:inherit;
  2682. background-color:rgba(255, 255, 255, 1);
  2683. border:none;
  2684. border-radius:0px;
  2685. -moz-box-shadow:none;
  2686. -webkit-box-shadow:none;
  2687. box-shadow:none;
  2688. font-size:12px;
  2689. color:#606266;
  2690. }
  2691. #u2884 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:807px;
  2695. top:70px;
  2696. width:265px;
  2697. height:30px;
  2698. display:flex;
  2699. font-size:12px;
  2700. color:#606266;
  2701. }
  2702. #u2884 .text {
  2703. position:absolute;
  2704. align-self:center;
  2705. padding:2px 2px 2px 2px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u2884_div.hint {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:265px;
  2715. height:30px;
  2716. background:inherit;
  2717. background-color:rgba(255, 255, 255, 1);
  2718. border:none;
  2719. border-radius:0px;
  2720. -moz-box-shadow:none;
  2721. -webkit-box-shadow:none;
  2722. box-shadow:none;
  2723. font-size:12px;
  2724. color:#606266;
  2725. }
  2726. #u2884.hint {
  2727. }
  2728. #u2884_div.disabled {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:265px;
  2734. height:30px;
  2735. background:inherit;
  2736. background-color:rgba(240, 240, 240, 1);
  2737. border:none;
  2738. border-radius:0px;
  2739. -moz-box-shadow:none;
  2740. -webkit-box-shadow:none;
  2741. box-shadow:none;
  2742. font-size:12px;
  2743. color:#606266;
  2744. }
  2745. #u2884.disabled {
  2746. }
  2747. #u2884_div.hint.disabled {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:265px;
  2753. height:30px;
  2754. background:inherit;
  2755. background-color:rgba(240, 240, 240, 1);
  2756. border:none;
  2757. border-radius:0px;
  2758. -moz-box-shadow:none;
  2759. -webkit-box-shadow:none;
  2760. box-shadow:none;
  2761. font-size:12px;
  2762. color:#606266;
  2763. }
  2764. #u2884.hint.disabled {
  2765. }
  2766. #u2885 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:0px;
  2772. height:0px;
  2773. }
  2774. #u2886 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:0px;
  2780. height:0px;
  2781. }
  2782. #u2887_div {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:501px;
  2788. height:38px;
  2789. background:inherit;
  2790. background-color:rgba(255, 255, 255, 1);
  2791. box-sizing:border-box;
  2792. border-width:1px;
  2793. border-style:solid;
  2794. border-color:rgba(220, 223, 230, 1);
  2795. border-radius:4px;
  2796. -moz-box-shadow:none;
  2797. -webkit-box-shadow:none;
  2798. box-shadow:none;
  2799. color:#C0C4CC;
  2800. text-align:left;
  2801. }
  2802. #u2887 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:429px;
  2806. top:376px;
  2807. width:501px;
  2808. height:38px;
  2809. display:flex;
  2810. color:#C0C4CC;
  2811. text-align:left;
  2812. }
  2813. #u2887 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 40px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u2887_div.mouseOver {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:501px;
  2826. height:38px;
  2827. background:inherit;
  2828. background-color:rgba(255, 255, 255, 1);
  2829. box-sizing:border-box;
  2830. border-width:1px;
  2831. border-style:solid;
  2832. border-color:rgba(192, 196, 204, 1);
  2833. border-radius:4px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. color:#C0C4CC;
  2838. text-align:left;
  2839. }
  2840. #u2887.mouseOver {
  2841. }
  2842. #u2887_div.selected {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:501px;
  2848. height:38px;
  2849. background:inherit;
  2850. background-color:rgba(255, 255, 255, 1);
  2851. box-sizing:border-box;
  2852. border-width:1px;
  2853. border-style:solid;
  2854. border-color:rgba(64, 158, 255, 1);
  2855. border-radius:4px;
  2856. -moz-box-shadow:none;
  2857. -webkit-box-shadow:none;
  2858. box-shadow:none;
  2859. color:#C0C4CC;
  2860. text-align:left;
  2861. }
  2862. #u2887.selected {
  2863. }
  2864. #u2887_div.mouseOver.selected {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:501px;
  2870. height:38px;
  2871. background:inherit;
  2872. background-color:rgba(255, 255, 255, 1);
  2873. box-sizing:border-box;
  2874. border-width:1px;
  2875. border-style:solid;
  2876. border-color:rgba(64, 158, 255, 1);
  2877. border-radius:4px;
  2878. -moz-box-shadow:none;
  2879. -webkit-box-shadow:none;
  2880. box-shadow:none;
  2881. color:#C0C4CC;
  2882. text-align:left;
  2883. }
  2884. #u2887.mouseOver.selected {
  2885. }
  2886. #u2887_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u2888_img {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:14px;
  2898. height:14px;
  2899. }
  2900. #u2888 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:838px;
  2904. top:388px;
  2905. width:14px;
  2906. height:14px;
  2907. display:flex;
  2908. font-family:"Arial Normal", "Arial", sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. color:rgba(0, 0, 0, 0.8470588235294118);
  2912. }
  2913. #u2888 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 2px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u2888_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. visibility:hidden;
  2925. }
  2926. #u2889_img {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:14px;
  2932. height:14px;
  2933. }
  2934. #u2889 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:443px;
  2938. top:388px;
  2939. width:14px;
  2940. height:14px;
  2941. display:flex;
  2942. font-family:"Arial Normal", "Arial", sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. color:rgba(0, 0, 0, 0.8470588235294118);
  2946. }
  2947. #u2889 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 2px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u2889_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. visibility:hidden;
  2959. }
  2960. #u2890_div {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:13px;
  2966. height:16px;
  2967. background:inherit;
  2968. background-color:rgba(255, 255, 255, 0);
  2969. border:none;
  2970. border-radius:0px;
  2971. -moz-box-shadow:none;
  2972. -webkit-box-shadow:none;
  2973. box-shadow:none;
  2974. font-family:"Microsoft YaHei UI", sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:13px;
  2978. color:#5E6D82;
  2979. }
  2980. #u2890 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:641px;
  2984. top:386px;
  2985. width:13px;
  2986. height:16px;
  2987. display:flex;
  2988. font-family:"Microsoft YaHei UI", sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:13px;
  2992. color:#5E6D82;
  2993. }
  2994. #u2890 .text {
  2995. position:absolute;
  2996. align-self:flex-start;
  2997. padding:0px 0px 0px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u2890_text {
  3002. border-width:0px;
  3003. white-space:nowrap;
  3004. text-transform:none;
  3005. }
  3006. #u2891_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:52px;
  3012. height:15px;
  3013. background:inherit;
  3014. background-color:rgba(255, 255, 255, 0);
  3015. border:none;
  3016. border-radius:0px;
  3017. -moz-box-shadow:none;
  3018. -webkit-box-shadow:none;
  3019. box-shadow:none;
  3020. font-size:13px;
  3021. color:#C0C4CC;
  3022. text-align:center;
  3023. }
  3024. #u2891 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:493px;
  3028. top:387px;
  3029. width:52px;
  3030. height:15px;
  3031. display:flex;
  3032. font-size:13px;
  3033. color:#C0C4CC;
  3034. text-align:center;
  3035. }
  3036. #u2891 .text {
  3037. position:absolute;
  3038. align-self:flex-start;
  3039. padding:0px 0px 0px 0px;
  3040. box-sizing:border-box;
  3041. width:100%;
  3042. }
  3043. #u2891_text {
  3044. border-width:0px;
  3045. white-space:nowrap;
  3046. text-transform:none;
  3047. }
  3048. #u2892_div {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:52px;
  3054. height:15px;
  3055. background:inherit;
  3056. background-color:rgba(255, 255, 255, 0);
  3057. border:none;
  3058. border-radius:0px;
  3059. -moz-box-shadow:none;
  3060. -webkit-box-shadow:none;
  3061. box-shadow:none;
  3062. font-size:13px;
  3063. color:#C0C4CC;
  3064. text-align:center;
  3065. }
  3066. #u2892 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:691px;
  3070. top:387px;
  3071. width:52px;
  3072. height:15px;
  3073. display:flex;
  3074. font-size:13px;
  3075. color:#C0C4CC;
  3076. text-align:center;
  3077. }
  3078. #u2892 .text {
  3079. position:absolute;
  3080. align-self:flex-start;
  3081. padding:0px 0px 0px 0px;
  3082. box-sizing:border-box;
  3083. width:100%;
  3084. }
  3085. #u2892_text {
  3086. border-width:0px;
  3087. white-space:nowrap;
  3088. text-transform:none;
  3089. }
  3090. #u2893 {
  3091. position:absolute;
  3092. left:428px;
  3093. top:416px;
  3094. visibility:hidden;
  3095. }
  3096. #u2893_state0 {
  3097. position:relative;
  3098. left:0px;
  3099. top:0px;
  3100. width:654px;
  3101. height:449px;
  3102. background-image:none;
  3103. border:none;
  3104. border-radius:0px;
  3105. -moz-box-shadow:none;
  3106. -webkit-box-shadow:none;
  3107. box-shadow:none;
  3108. }
  3109. #u2893_state0_content {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:1px;
  3115. height:1px;
  3116. }
  3117. #u2894_div {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:654px;
  3123. height:449px;
  3124. background:inherit;
  3125. background-color:rgba(255, 255, 255, 1);
  3126. box-sizing:border-box;
  3127. border-width:1px;
  3128. border-style:solid;
  3129. border-color:rgba(228, 231, 237, 1);
  3130. border-radius:2px;
  3131. -moz-box-shadow:none;
  3132. -webkit-box-shadow:none;
  3133. box-shadow:none;
  3134. }
  3135. #u2894 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:654px;
  3141. height:449px;
  3142. display:flex;
  3143. }
  3144. #u2894 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 2px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u2894_text {
  3152. border-width:0px;
  3153. word-wrap:break-word;
  3154. text-transform:none;
  3155. visibility:hidden;
  3156. }
  3157. #u2895_img {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:8px;
  3163. height:9px;
  3164. }
  3165. #u2895 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:21px;
  3169. top:71px;
  3170. width:8px;
  3171. height:9px;
  3172. display:flex;
  3173. font-family:"Arial Normal", "Arial", sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. color:rgba(0, 0, 0, 0.8470588235294118);
  3177. }
  3178. #u2895 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:2px 2px 2px 2px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u2895_img.mouseOver {
  3186. }
  3187. #u2895.mouseOver {
  3188. }
  3189. #u2895_text {
  3190. border-width:0px;
  3191. word-wrap:break-word;
  3192. text-transform:none;
  3193. visibility:hidden;
  3194. }
  3195. #u2896_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:5px;
  3201. height:8px;
  3202. }
  3203. #u2896 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:46px;
  3207. top:71px;
  3208. width:5px;
  3209. height:8px;
  3210. display:flex;
  3211. font-family:"Arial Normal", "Arial", sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. color:rgba(0, 0, 0, 0.8470588235294118);
  3215. }
  3216. #u2896 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 2px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u2896_img.mouseOver {
  3224. }
  3225. #u2896.mouseOver {
  3226. }
  3227. #u2896_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u2897_div {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:59px;
  3239. height:20px;
  3240. background:inherit;
  3241. background-color:rgba(255, 255, 255, 0);
  3242. border:none;
  3243. border-radius:0px;
  3244. -moz-box-shadow:none;
  3245. -webkit-box-shadow:none;
  3246. box-shadow:none;
  3247. font-family:"Microsoft YaHei UI", sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:16px;
  3251. color:#606266;
  3252. }
  3253. #u2897 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:114px;
  3257. top:64px;
  3258. width:59px;
  3259. height:20px;
  3260. display:flex;
  3261. font-family:"Microsoft YaHei UI", sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:16px;
  3265. color:#606266;
  3266. }
  3267. #u2897 .text {
  3268. position:absolute;
  3269. align-self:flex-start;
  3270. padding:0px 0px 0px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u2897_div.mouseOver {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:59px;
  3280. height:20px;
  3281. background:inherit;
  3282. background-color:rgba(255, 255, 255, 0);
  3283. border:none;
  3284. border-radius:0px;
  3285. -moz-box-shadow:none;
  3286. -webkit-box-shadow:none;
  3287. box-shadow:none;
  3288. font-family:"Microsoft YaHei UI", sans-serif;
  3289. font-weight:400;
  3290. font-style:normal;
  3291. font-size:16px;
  3292. color:#606266;
  3293. }
  3294. #u2897.mouseOver {
  3295. }
  3296. #u2897_text {
  3297. border-width:0px;
  3298. white-space:nowrap;
  3299. text-transform:none;
  3300. }
  3301. #u2898_div {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:31px;
  3307. height:20px;
  3308. background:inherit;
  3309. background-color:rgba(255, 255, 255, 0);
  3310. border:none;
  3311. border-radius:0px;
  3312. -moz-box-shadow:none;
  3313. -webkit-box-shadow:none;
  3314. box-shadow:none;
  3315. font-family:"Microsoft YaHei UI", sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:16px;
  3319. color:#606266;
  3320. }
  3321. #u2898 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:180px;
  3325. top:64px;
  3326. width:31px;
  3327. height:20px;
  3328. display:flex;
  3329. font-family:"Microsoft YaHei UI", sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:16px;
  3333. color:#606266;
  3334. }
  3335. #u2898 .text {
  3336. position:absolute;
  3337. align-self:flex-start;
  3338. padding:0px 0px 0px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u2898_div.mouseOver {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:31px;
  3348. height:20px;
  3349. background:inherit;
  3350. background-color:rgba(255, 255, 255, 0);
  3351. border:none;
  3352. border-radius:0px;
  3353. -moz-box-shadow:none;
  3354. -webkit-box-shadow:none;
  3355. box-shadow:none;
  3356. font-family:"Microsoft YaHei UI", sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:16px;
  3360. color:#606266;
  3361. }
  3362. #u2898.mouseOver {
  3363. }
  3364. #u2898_text {
  3365. border-width:0px;
  3366. white-space:nowrap;
  3367. text-transform:none;
  3368. }
  3369. .u2900_div {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:12px;
  3375. height:12px;
  3376. background:inherit;
  3377. background-color:rgba(255, 255, 255, 0);
  3378. border:none;
  3379. border-radius:0px;
  3380. -moz-box-shadow:none;
  3381. -webkit-box-shadow:none;
  3382. box-shadow:none;
  3383. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:12px;
  3387. color:#606266;
  3388. line-height:12px;
  3389. }
  3390. .u2900 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:12px;
  3396. height:12px;
  3397. display:flex;
  3398. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. color:#606266;
  3403. line-height:12px;
  3404. }
  3405. .u2900 .text {
  3406. position:absolute;
  3407. align-self:flex-start;
  3408. padding:0px 0px 0px 0px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. .u2900_text {
  3413. border-width:0px;
  3414. white-space:nowrap;
  3415. text-transform:none;
  3416. }
  3417. #u2899-1 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:12px;
  3423. height:12px;
  3424. }
  3425. #u2899-2 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:41px;
  3429. top:0px;
  3430. width:12px;
  3431. height:12px;
  3432. }
  3433. #u2899-3 {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:82px;
  3437. top:0px;
  3438. width:12px;
  3439. height:12px;
  3440. }
  3441. #u2899-4 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:123px;
  3445. top:0px;
  3446. width:12px;
  3447. height:12px;
  3448. }
  3449. #u2899-5 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:164px;
  3453. top:0px;
  3454. width:12px;
  3455. height:12px;
  3456. }
  3457. #u2899-6 {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:205px;
  3461. top:0px;
  3462. width:12px;
  3463. height:12px;
  3464. }
  3465. #u2899-7 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:246px;
  3469. top:0px;
  3470. width:12px;
  3471. height:12px;
  3472. }
  3473. #u2899 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:30px;
  3477. top:120px;
  3478. width:258px;
  3479. height:12px;
  3480. background:inherit;
  3481. background-color:rgba(255, 255, 255, 0);
  3482. border:none;
  3483. border-radius:0px;
  3484. }
  3485. .u2902_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:20px;
  3491. height:20px;
  3492. }
  3493. .u2902 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:20px;
  3499. height:20px;
  3500. display:flex;
  3501. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:12px;
  3505. color:#606266;
  3506. }
  3507. .u2902 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 2px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. .u2902_img.mouseOver {
  3515. }
  3516. .u2902.mouseOver {
  3517. }
  3518. .u2902_img.selected {
  3519. }
  3520. .u2902.selected {
  3521. }
  3522. .u2902_img.disabled {
  3523. }
  3524. .u2902.disabled {
  3525. }
  3526. .u2902_img.mouseOver.selected {
  3527. }
  3528. .u2902.mouseOver.selected {
  3529. }
  3530. .u2902_img.selected.disabled {
  3531. }
  3532. .u2902.selected.disabled {
  3533. }
  3534. .u2902_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. }
  3539. #u2901-1 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:20px;
  3545. height:20px;
  3546. }
  3547. #u2901-2 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:42px;
  3551. top:0px;
  3552. width:20px;
  3553. height:20px;
  3554. }
  3555. #u2901-3 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:84px;
  3559. top:0px;
  3560. width:20px;
  3561. height:20px;
  3562. }
  3563. #u2901-4 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:126px;
  3567. top:0px;
  3568. width:20px;
  3569. height:20px;
  3570. }
  3571. #u2901-5 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:168px;
  3575. top:0px;
  3576. width:20px;
  3577. height:20px;
  3578. }
  3579. #u2901-6 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:210px;
  3583. top:0px;
  3584. width:20px;
  3585. height:20px;
  3586. }
  3587. #u2901-7 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:252px;
  3591. top:0px;
  3592. width:20px;
  3593. height:20px;
  3594. }
  3595. #u2901-8 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:40px;
  3600. width:20px;
  3601. height:20px;
  3602. }
  3603. #u2901-9 {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:42px;
  3607. top:40px;
  3608. width:20px;
  3609. height:20px;
  3610. }
  3611. #u2901-10 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:84px;
  3615. top:40px;
  3616. width:20px;
  3617. height:20px;
  3618. }
  3619. #u2901-11 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:126px;
  3623. top:40px;
  3624. width:20px;
  3625. height:20px;
  3626. }
  3627. #u2901-12 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:168px;
  3631. top:40px;
  3632. width:20px;
  3633. height:20px;
  3634. }
  3635. #u2901-13 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:210px;
  3639. top:40px;
  3640. width:20px;
  3641. height:20px;
  3642. }
  3643. #u2901-14 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:252px;
  3647. top:40px;
  3648. width:20px;
  3649. height:20px;
  3650. }
  3651. #u2901-15 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:80px;
  3656. width:20px;
  3657. height:20px;
  3658. }
  3659. #u2901-16 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:42px;
  3663. top:80px;
  3664. width:20px;
  3665. height:20px;
  3666. }
  3667. #u2901-17 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:84px;
  3671. top:80px;
  3672. width:20px;
  3673. height:20px;
  3674. }
  3675. #u2901-18 {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:126px;
  3679. top:80px;
  3680. width:20px;
  3681. height:20px;
  3682. }
  3683. #u2901-19 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:168px;
  3687. top:80px;
  3688. width:20px;
  3689. height:20px;
  3690. }
  3691. #u2901-20 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:210px;
  3695. top:80px;
  3696. width:20px;
  3697. height:20px;
  3698. }
  3699. #u2901-21 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:252px;
  3703. top:80px;
  3704. width:20px;
  3705. height:20px;
  3706. }
  3707. #u2901-22 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:120px;
  3712. width:20px;
  3713. height:20px;
  3714. }
  3715. #u2901-23 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:42px;
  3719. top:120px;
  3720. width:20px;
  3721. height:20px;
  3722. }
  3723. #u2901-24 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:84px;
  3727. top:120px;
  3728. width:20px;
  3729. height:20px;
  3730. }
  3731. #u2901-25 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:126px;
  3735. top:120px;
  3736. width:20px;
  3737. height:20px;
  3738. }
  3739. #u2901-26 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:168px;
  3743. top:120px;
  3744. width:20px;
  3745. height:20px;
  3746. }
  3747. #u2901-27 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:210px;
  3751. top:120px;
  3752. width:20px;
  3753. height:20px;
  3754. }
  3755. #u2901-28 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:252px;
  3759. top:120px;
  3760. width:20px;
  3761. height:20px;
  3762. }
  3763. #u2901-29 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:160px;
  3768. width:20px;
  3769. height:20px;
  3770. }
  3771. #u2901-30 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:42px;
  3775. top:160px;
  3776. width:20px;
  3777. height:20px;
  3778. }
  3779. #u2901-31 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:84px;
  3783. top:160px;
  3784. width:20px;
  3785. height:20px;
  3786. }
  3787. #u2901-32 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:126px;
  3791. top:160px;
  3792. width:20px;
  3793. height:20px;
  3794. }
  3795. #u2901-33 {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:168px;
  3799. top:160px;
  3800. width:20px;
  3801. height:20px;
  3802. }
  3803. #u2901-34 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:210px;
  3807. top:160px;
  3808. width:20px;
  3809. height:20px;
  3810. }
  3811. #u2901-35 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:252px;
  3815. top:160px;
  3816. width:20px;
  3817. height:20px;
  3818. }
  3819. #u2901-36 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:200px;
  3824. width:20px;
  3825. height:20px;
  3826. }
  3827. #u2901-37 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:42px;
  3831. top:200px;
  3832. width:20px;
  3833. height:20px;
  3834. }
  3835. #u2901-38 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:84px;
  3839. top:200px;
  3840. width:20px;
  3841. height:20px;
  3842. }
  3843. #u2901-39 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:126px;
  3847. top:200px;
  3848. width:20px;
  3849. height:20px;
  3850. }
  3851. #u2901-40 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:168px;
  3855. top:200px;
  3856. width:20px;
  3857. height:20px;
  3858. }
  3859. #u2901-41 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:210px;
  3863. top:200px;
  3864. width:20px;
  3865. height:20px;
  3866. }
  3867. #u2901-42 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:252px;
  3871. top:200px;
  3872. width:20px;
  3873. height:20px;
  3874. }
  3875. #u2901 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:27px;
  3879. top:157px;
  3880. width:272px;
  3881. height:220px;
  3882. background:inherit;
  3883. background-color:rgba(255, 255, 255, 0);
  3884. border:none;
  3885. border-radius:0px;
  3886. }
  3887. #u2903_img {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:292px;
  3893. height:2px;
  3894. }
  3895. #u2903 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:16px;
  3899. top:146px;
  3900. width:291px;
  3901. height:1px;
  3902. display:flex;
  3903. }
  3904. #u2903 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 2px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u2903_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u2904_img {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:321px;
  3923. height:2px;
  3924. }
  3925. #u2904 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:401px;
  3930. width:320px;
  3931. height:1px;
  3932. display:flex;
  3933. }
  3934. #u2904 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 2px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u2904_text {
  3942. border-width:0px;
  3943. word-wrap:break-word;
  3944. text-transform:none;
  3945. visibility:hidden;
  3946. }
  3947. #u2905_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:655px;
  3953. height:2px;
  3954. }
  3955. #u2905 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:46px;
  3960. width:654px;
  3961. height:1px;
  3962. display:flex;
  3963. }
  3964. #u2905 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 2px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u2905_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. visibility:hidden;
  3976. }
  3977. #u2906_div {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:45px;
  3983. height:28px;
  3984. background:inherit;
  3985. background-color:rgba(255, 255, 255, 1);
  3986. box-sizing:border-box;
  3987. border-width:1px;
  3988. border-style:solid;
  3989. border-color:rgba(220, 223, 230, 1);
  3990. border-radius:2px;
  3991. -moz-box-shadow:none;
  3992. -webkit-box-shadow:none;
  3993. box-shadow:none;
  3994. font-size:12px;
  3995. color:#606266;
  3996. }
  3997. #u2906 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:582px;
  4001. top:412px;
  4002. width:45px;
  4003. height:28px;
  4004. display:flex;
  4005. font-size:12px;
  4006. color:#606266;
  4007. }
  4008. #u2906 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u2906_div.mouseOver {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:45px;
  4021. height:28px;
  4022. background:inherit;
  4023. background-color:rgba(255, 255, 255, 1);
  4024. box-sizing:border-box;
  4025. border-width:1px;
  4026. border-style:solid;
  4027. border-color:rgba(64, 158, 255, 1);
  4028. border-radius:2px;
  4029. -moz-box-shadow:none;
  4030. -webkit-box-shadow:none;
  4031. box-shadow:none;
  4032. font-size:12px;
  4033. color:#606266;
  4034. }
  4035. #u2906.mouseOver {
  4036. }
  4037. #u2906_div.mouseDown {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:45px;
  4043. height:28px;
  4044. background:inherit;
  4045. background-color:rgba(255, 255, 255, 1);
  4046. box-sizing:border-box;
  4047. border-width:1px;
  4048. border-style:solid;
  4049. border-color:rgba(83, 168, 255, 1);
  4050. border-radius:2px;
  4051. -moz-box-shadow:none;
  4052. -webkit-box-shadow:none;
  4053. box-shadow:none;
  4054. font-size:12px;
  4055. color:#606266;
  4056. }
  4057. #u2906.mouseDown {
  4058. }
  4059. #u2906_div.disabled {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:45px;
  4065. height:28px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 1);
  4068. box-sizing:border-box;
  4069. border-width:1px;
  4070. border-style:solid;
  4071. border-color:rgba(220, 223, 230, 1);
  4072. border-radius:2px;
  4073. -moz-box-shadow:none;
  4074. -webkit-box-shadow:none;
  4075. box-shadow:none;
  4076. font-size:12px;
  4077. color:#606266;
  4078. }
  4079. #u2906.disabled {
  4080. }
  4081. #u2906_div.mouseOver.mouseDown {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:45px;
  4087. height:28px;
  4088. background:inherit;
  4089. background-color:rgba(255, 255, 255, 1);
  4090. box-sizing:border-box;
  4091. border-width:1px;
  4092. border-style:solid;
  4093. border-color:rgba(83, 168, 255, 1);
  4094. border-radius:2px;
  4095. -moz-box-shadow:none;
  4096. -webkit-box-shadow:none;
  4097. box-shadow:none;
  4098. font-size:12px;
  4099. color:#606266;
  4100. }
  4101. #u2906.mouseOver.mouseDown {
  4102. }
  4103. #u2906_text {
  4104. border-width:0px;
  4105. word-wrap:break-word;
  4106. text-transform:none;
  4107. }
  4108. #u2907_div {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:45px;
  4114. height:28px;
  4115. background:inherit;
  4116. background-color:rgba(255, 255, 255, 0);
  4117. border:none;
  4118. border-radius:4px;
  4119. -moz-box-shadow:none;
  4120. -webkit-box-shadow:none;
  4121. box-shadow:none;
  4122. font-size:12px;
  4123. color:#409EFF;
  4124. }
  4125. #u2907 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:515px;
  4129. top:412px;
  4130. width:45px;
  4131. height:28px;
  4132. display:flex;
  4133. font-size:12px;
  4134. color:#409EFF;
  4135. }
  4136. #u2907 .text {
  4137. position:absolute;
  4138. align-self:center;
  4139. padding:2px 2px 2px 2px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u2907_div.mouseOver {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:45px;
  4149. height:28px;
  4150. background:inherit;
  4151. background-color:rgba(255, 255, 255, 0);
  4152. border:none;
  4153. border-radius:4px;
  4154. -moz-box-shadow:none;
  4155. -webkit-box-shadow:none;
  4156. box-shadow:none;
  4157. font-size:12px;
  4158. color:#409EFF;
  4159. }
  4160. #u2907.mouseOver {
  4161. }
  4162. #u2907_div.mouseDown {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:45px;
  4168. height:28px;
  4169. background:inherit;
  4170. background-color:rgba(255, 255, 255, 0);
  4171. border:none;
  4172. border-radius:4px;
  4173. -moz-box-shadow:none;
  4174. -webkit-box-shadow:none;
  4175. box-shadow:none;
  4176. font-size:12px;
  4177. color:#409EFF;
  4178. }
  4179. #u2907.mouseDown {
  4180. }
  4181. #u2907_div.mouseOver.mouseDown {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:45px;
  4187. height:28px;
  4188. background:inherit;
  4189. background-color:rgba(255, 255, 255, 0);
  4190. border:none;
  4191. border-radius:4px;
  4192. -moz-box-shadow:none;
  4193. -webkit-box-shadow:none;
  4194. box-shadow:none;
  4195. font-size:12px;
  4196. color:#409EFF;
  4197. }
  4198. #u2907.mouseOver.mouseDown {
  4199. }
  4200. #u2907_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. }
  4205. #u2908_div {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:129px;
  4211. height:32px;
  4212. background:inherit;
  4213. background-color:rgba(255, 255, 255, 1);
  4214. box-sizing:border-box;
  4215. border-width:1px;
  4216. border-style:solid;
  4217. border-color:rgba(220, 223, 230, 1);
  4218. border-radius:2px;
  4219. -moz-box-shadow:none;
  4220. -webkit-box-shadow:none;
  4221. box-shadow:none;
  4222. color:#C0C4CC;
  4223. text-align:left;
  4224. }
  4225. #u2908 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:173px;
  4229. top:7px;
  4230. width:129px;
  4231. height:32px;
  4232. display:flex;
  4233. color:#C0C4CC;
  4234. text-align:left;
  4235. }
  4236. #u2908 .text {
  4237. position:absolute;
  4238. align-self:center;
  4239. padding:2px 2px 2px 15px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u2908_div.mouseOver {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:129px;
  4249. height:32px;
  4250. background:inherit;
  4251. background-color:rgba(255, 255, 255, 1);
  4252. box-sizing:border-box;
  4253. border-width:1px;
  4254. border-style:solid;
  4255. border-color:rgba(192, 196, 204, 1);
  4256. border-radius:2px;
  4257. -moz-box-shadow:none;
  4258. -webkit-box-shadow:none;
  4259. box-shadow:none;
  4260. color:#C0C4CC;
  4261. text-align:left;
  4262. }
  4263. #u2908.mouseOver {
  4264. }
  4265. #u2908_div.selected {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:129px;
  4271. height:32px;
  4272. background:inherit;
  4273. background-color:rgba(255, 255, 255, 1);
  4274. box-sizing:border-box;
  4275. border-width:1px;
  4276. border-style:solid;
  4277. border-color:rgba(64, 158, 255, 1);
  4278. border-radius:2px;
  4279. -moz-box-shadow:none;
  4280. -webkit-box-shadow:none;
  4281. box-shadow:none;
  4282. color:#C0C4CC;
  4283. text-align:left;
  4284. }
  4285. #u2908.selected {
  4286. }
  4287. #u2908_div.mouseOver.selected {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:129px;
  4293. height:32px;
  4294. background:inherit;
  4295. background-color:rgba(255, 255, 255, 1);
  4296. box-sizing:border-box;
  4297. border-width:1px;
  4298. border-style:solid;
  4299. border-color:rgba(64, 158, 255, 1);
  4300. border-radius:2px;
  4301. -moz-box-shadow:none;
  4302. -webkit-box-shadow:none;
  4303. box-shadow:none;
  4304. color:#C0C4CC;
  4305. text-align:left;
  4306. }
  4307. #u2908.mouseOver.selected {
  4308. }
  4309. #u2908_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. }
  4314. #u2909_div {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:129px;
  4320. height:32px;
  4321. background:inherit;
  4322. background-color:rgba(255, 255, 255, 1);
  4323. box-sizing:border-box;
  4324. border-width:1px;
  4325. border-style:solid;
  4326. border-color:rgba(220, 223, 230, 1);
  4327. border-radius:2px;
  4328. -moz-box-shadow:none;
  4329. -webkit-box-shadow:none;
  4330. box-shadow:none;
  4331. color:#C0C4CC;
  4332. text-align:left;
  4333. }
  4334. #u2909 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:14px;
  4338. top:7px;
  4339. width:129px;
  4340. height:32px;
  4341. display:flex;
  4342. color:#C0C4CC;
  4343. text-align:left;
  4344. }
  4345. #u2909 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 15px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u2909_div.mouseOver {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:129px;
  4358. height:32px;
  4359. background:inherit;
  4360. background-color:rgba(255, 255, 255, 1);
  4361. box-sizing:border-box;
  4362. border-width:1px;
  4363. border-style:solid;
  4364. border-color:rgba(192, 196, 204, 1);
  4365. border-radius:2px;
  4366. -moz-box-shadow:none;
  4367. -webkit-box-shadow:none;
  4368. box-shadow:none;
  4369. color:#C0C4CC;
  4370. text-align:left;
  4371. }
  4372. #u2909.mouseOver {
  4373. }
  4374. #u2909_div.selected {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:0px;
  4378. top:0px;
  4379. width:129px;
  4380. height:32px;
  4381. background:inherit;
  4382. background-color:rgba(255, 255, 255, 1);
  4383. box-sizing:border-box;
  4384. border-width:1px;
  4385. border-style:solid;
  4386. border-color:rgba(64, 158, 255, 1);
  4387. border-radius:2px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. color:#C0C4CC;
  4392. text-align:left;
  4393. }
  4394. #u2909.selected {
  4395. }
  4396. #u2909_div.mouseOver.selected {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:0px;
  4400. top:0px;
  4401. width:129px;
  4402. height:32px;
  4403. background:inherit;
  4404. background-color:rgba(255, 255, 255, 1);
  4405. box-sizing:border-box;
  4406. border-width:1px;
  4407. border-style:solid;
  4408. border-color:rgba(64, 158, 255, 1);
  4409. border-radius:2px;
  4410. -moz-box-shadow:none;
  4411. -webkit-box-shadow:none;
  4412. box-shadow:none;
  4413. color:#C0C4CC;
  4414. text-align:left;
  4415. }
  4416. #u2909.mouseOver.selected {
  4417. }
  4418. #u2909_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. }
  4423. #u2910_img {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:7px;
  4429. height:8px;
  4430. }
  4431. #u2910 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:620px;
  4435. top:71px;
  4436. width:7px;
  4437. height:8px;
  4438. display:flex;
  4439. font-family:"Arial Normal", "Arial", sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. color:rgba(0, 0, 0, 0.8470588235294118);
  4443. }
  4444. #u2910 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 2px 2px 2px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u2910_img.mouseOver {
  4452. }
  4453. #u2910.mouseOver {
  4454. }
  4455. #u2910_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u2911_img {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:5px;
  4467. height:8px;
  4468. }
  4469. #u2911 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:597px;
  4473. top:71px;
  4474. width:5px;
  4475. height:8px;
  4476. display:flex;
  4477. font-family:"Arial Normal", "Arial", sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. color:rgba(0, 0, 0, 0.8470588235294118);
  4481. }
  4482. #u2911 .text {
  4483. position:absolute;
  4484. align-self:center;
  4485. padding:2px 2px 2px 2px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u2911_img.mouseOver {
  4490. }
  4491. #u2911.mouseOver {
  4492. }
  4493. #u2911_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u2912_div {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:59px;
  4505. height:20px;
  4506. background:inherit;
  4507. background-color:rgba(255, 255, 255, 0);
  4508. border:none;
  4509. border-radius:0px;
  4510. -moz-box-shadow:none;
  4511. -webkit-box-shadow:none;
  4512. box-shadow:none;
  4513. font-family:"Microsoft YaHei UI", sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:16px;
  4517. color:#606266;
  4518. }
  4519. #u2912 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:439px;
  4523. top:64px;
  4524. width:59px;
  4525. height:20px;
  4526. display:flex;
  4527. font-family:"Microsoft YaHei UI", sans-serif;
  4528. font-weight:400;
  4529. font-style:normal;
  4530. font-size:16px;
  4531. color:#606266;
  4532. }
  4533. #u2912 .text {
  4534. position:absolute;
  4535. align-self:flex-start;
  4536. padding:0px 0px 0px 0px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u2912_div.mouseOver {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:59px;
  4546. height:20px;
  4547. background:inherit;
  4548. background-color:rgba(255, 255, 255, 0);
  4549. border:none;
  4550. border-radius:0px;
  4551. -moz-box-shadow:none;
  4552. -webkit-box-shadow:none;
  4553. box-shadow:none;
  4554. font-family:"Microsoft YaHei UI", sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:16px;
  4558. color:#606266;
  4559. }
  4560. #u2912.mouseOver {
  4561. }
  4562. #u2912_text {
  4563. border-width:0px;
  4564. white-space:nowrap;
  4565. text-transform:none;
  4566. }
  4567. #u2913_div {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:31px;
  4573. height:20px;
  4574. background:inherit;
  4575. background-color:rgba(255, 255, 255, 0);
  4576. border:none;
  4577. border-radius:0px;
  4578. -moz-box-shadow:none;
  4579. -webkit-box-shadow:none;
  4580. box-shadow:none;
  4581. font-family:"Microsoft YaHei UI", sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:16px;
  4585. color:#606266;
  4586. }
  4587. #u2913 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:505px;
  4591. top:64px;
  4592. width:31px;
  4593. height:20px;
  4594. display:flex;
  4595. font-family:"Microsoft YaHei UI", sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:16px;
  4599. color:#606266;
  4600. }
  4601. #u2913 .text {
  4602. position:absolute;
  4603. align-self:flex-start;
  4604. padding:0px 0px 0px 0px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u2913_div.mouseOver {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:31px;
  4614. height:20px;
  4615. background:inherit;
  4616. background-color:rgba(255, 255, 255, 0);
  4617. border:none;
  4618. border-radius:0px;
  4619. -moz-box-shadow:none;
  4620. -webkit-box-shadow:none;
  4621. box-shadow:none;
  4622. font-family:"Microsoft YaHei UI", sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:16px;
  4626. color:#606266;
  4627. }
  4628. #u2913.mouseOver {
  4629. }
  4630. #u2913_text {
  4631. border-width:0px;
  4632. white-space:nowrap;
  4633. text-transform:none;
  4634. }
  4635. .u2915_div {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:12px;
  4641. height:12px;
  4642. background:inherit;
  4643. background-color:rgba(255, 255, 255, 0);
  4644. border:none;
  4645. border-radius:0px;
  4646. -moz-box-shadow:none;
  4647. -webkit-box-shadow:none;
  4648. box-shadow:none;
  4649. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:12px;
  4653. color:#606266;
  4654. line-height:12px;
  4655. }
  4656. .u2915 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:12px;
  4662. height:12px;
  4663. display:flex;
  4664. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:12px;
  4668. color:#606266;
  4669. line-height:12px;
  4670. }
  4671. .u2915 .text {
  4672. position:absolute;
  4673. align-self:flex-start;
  4674. padding:0px 0px 0px 0px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. .u2915_text {
  4679. border-width:0px;
  4680. white-space:nowrap;
  4681. text-transform:none;
  4682. }
  4683. #u2914-1 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:12px;
  4689. height:12px;
  4690. }
  4691. #u2914-2 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:41px;
  4695. top:0px;
  4696. width:12px;
  4697. height:12px;
  4698. }
  4699. #u2914-3 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:82px;
  4703. top:0px;
  4704. width:12px;
  4705. height:12px;
  4706. }
  4707. #u2914-4 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:123px;
  4711. top:0px;
  4712. width:12px;
  4713. height:12px;
  4714. }
  4715. #u2914-5 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:164px;
  4719. top:0px;
  4720. width:12px;
  4721. height:12px;
  4722. }
  4723. #u2914-6 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:205px;
  4727. top:0px;
  4728. width:12px;
  4729. height:12px;
  4730. }
  4731. #u2914-7 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:246px;
  4735. top:0px;
  4736. width:12px;
  4737. height:12px;
  4738. }
  4739. #u2914 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:355px;
  4743. top:120px;
  4744. width:258px;
  4745. height:12px;
  4746. background:inherit;
  4747. background-color:rgba(255, 255, 255, 0);
  4748. border:none;
  4749. border-radius:0px;
  4750. }
  4751. .u2917_img {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:20px;
  4757. height:20px;
  4758. }
  4759. .u2917 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:20px;
  4765. height:20px;
  4766. display:flex;
  4767. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4768. font-weight:400;
  4769. font-style:normal;
  4770. font-size:12px;
  4771. color:#606266;
  4772. }
  4773. .u2917 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 2px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. .u2917_img.mouseOver {
  4781. }
  4782. .u2917.mouseOver {
  4783. }
  4784. .u2917_img.selected {
  4785. }
  4786. .u2917.selected {
  4787. }
  4788. .u2917_img.disabled {
  4789. }
  4790. .u2917.disabled {
  4791. }
  4792. .u2917_img.mouseOver.selected {
  4793. }
  4794. .u2917.mouseOver.selected {
  4795. }
  4796. .u2917_img.selected.disabled {
  4797. }
  4798. .u2917.selected.disabled {
  4799. }
  4800. .u2917_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. }
  4805. #u2916-1 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:20px;
  4811. height:20px;
  4812. }
  4813. #u2916-2 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:42px;
  4817. top:0px;
  4818. width:20px;
  4819. height:20px;
  4820. }
  4821. #u2916-3 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:84px;
  4825. top:0px;
  4826. width:20px;
  4827. height:20px;
  4828. }
  4829. #u2916-4 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:126px;
  4833. top:0px;
  4834. width:20px;
  4835. height:20px;
  4836. }
  4837. #u2916-5 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:168px;
  4841. top:0px;
  4842. width:20px;
  4843. height:20px;
  4844. }
  4845. #u2916-6 {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:210px;
  4849. top:0px;
  4850. width:20px;
  4851. height:20px;
  4852. }
  4853. #u2916-7 {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:252px;
  4857. top:0px;
  4858. width:20px;
  4859. height:20px;
  4860. }
  4861. #u2916-8 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:40px;
  4866. width:20px;
  4867. height:20px;
  4868. }
  4869. #u2916-9 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:42px;
  4873. top:40px;
  4874. width:20px;
  4875. height:20px;
  4876. }
  4877. #u2916-10 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:84px;
  4881. top:40px;
  4882. width:20px;
  4883. height:20px;
  4884. }
  4885. #u2916-11 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:126px;
  4889. top:40px;
  4890. width:20px;
  4891. height:20px;
  4892. }
  4893. #u2916-12 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:168px;
  4897. top:40px;
  4898. width:20px;
  4899. height:20px;
  4900. }
  4901. #u2916-13 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:210px;
  4905. top:40px;
  4906. width:20px;
  4907. height:20px;
  4908. }
  4909. #u2916-14 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:252px;
  4913. top:40px;
  4914. width:20px;
  4915. height:20px;
  4916. }
  4917. #u2916-15 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:80px;
  4922. width:20px;
  4923. height:20px;
  4924. }
  4925. #u2916-16 {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:42px;
  4929. top:80px;
  4930. width:20px;
  4931. height:20px;
  4932. }
  4933. #u2916-17 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:84px;
  4937. top:80px;
  4938. width:20px;
  4939. height:20px;
  4940. }
  4941. #u2916-18 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:126px;
  4945. top:80px;
  4946. width:20px;
  4947. height:20px;
  4948. }
  4949. #u2916-19 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:168px;
  4953. top:80px;
  4954. width:20px;
  4955. height:20px;
  4956. }
  4957. #u2916-20 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:210px;
  4961. top:80px;
  4962. width:20px;
  4963. height:20px;
  4964. }
  4965. #u2916-21 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:252px;
  4969. top:80px;
  4970. width:20px;
  4971. height:20px;
  4972. }
  4973. #u2916-22 {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:120px;
  4978. width:20px;
  4979. height:20px;
  4980. }
  4981. #u2916-23 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:42px;
  4985. top:120px;
  4986. width:20px;
  4987. height:20px;
  4988. }
  4989. #u2916-24 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:84px;
  4993. top:120px;
  4994. width:20px;
  4995. height:20px;
  4996. }
  4997. #u2916-25 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:126px;
  5001. top:120px;
  5002. width:20px;
  5003. height:20px;
  5004. }
  5005. #u2916-26 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:168px;
  5009. top:120px;
  5010. width:20px;
  5011. height:20px;
  5012. }
  5013. #u2916-27 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:210px;
  5017. top:120px;
  5018. width:20px;
  5019. height:20px;
  5020. }
  5021. #u2916-28 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:252px;
  5025. top:120px;
  5026. width:20px;
  5027. height:20px;
  5028. }
  5029. #u2916-29 {
  5030. border-width:0px;
  5031. position:absolute;
  5032. left:0px;
  5033. top:160px;
  5034. width:20px;
  5035. height:20px;
  5036. }
  5037. #u2916-30 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:42px;
  5041. top:160px;
  5042. width:20px;
  5043. height:20px;
  5044. }
  5045. #u2916-31 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:84px;
  5049. top:160px;
  5050. width:20px;
  5051. height:20px;
  5052. }
  5053. #u2916-32 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:126px;
  5057. top:160px;
  5058. width:20px;
  5059. height:20px;
  5060. }
  5061. #u2916-33 {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:168px;
  5065. top:160px;
  5066. width:20px;
  5067. height:20px;
  5068. }
  5069. #u2916-34 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:210px;
  5073. top:160px;
  5074. width:20px;
  5075. height:20px;
  5076. }
  5077. #u2916-35 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:252px;
  5081. top:160px;
  5082. width:20px;
  5083. height:20px;
  5084. }
  5085. #u2916-36 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:200px;
  5090. width:20px;
  5091. height:20px;
  5092. }
  5093. #u2916-37 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:42px;
  5097. top:200px;
  5098. width:20px;
  5099. height:20px;
  5100. }
  5101. #u2916-38 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:84px;
  5105. top:200px;
  5106. width:20px;
  5107. height:20px;
  5108. }
  5109. #u2916-39 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:126px;
  5113. top:200px;
  5114. width:20px;
  5115. height:20px;
  5116. }
  5117. #u2916-40 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:168px;
  5121. top:200px;
  5122. width:20px;
  5123. height:20px;
  5124. }
  5125. #u2916-41 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:210px;
  5129. top:200px;
  5130. width:20px;
  5131. height:20px;
  5132. }
  5133. #u2916-42 {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:252px;
  5137. top:200px;
  5138. width:20px;
  5139. height:20px;
  5140. }
  5141. #u2916 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:352px;
  5145. top:157px;
  5146. width:272px;
  5147. height:220px;
  5148. background:inherit;
  5149. background-color:rgba(255, 255, 255, 0);
  5150. border:none;
  5151. border-radius:0px;
  5152. }
  5153. #u2918_img {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:292px;
  5159. height:2px;
  5160. }
  5161. #u2918 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:341px;
  5165. top:146px;
  5166. width:291px;
  5167. height:1px;
  5168. display:flex;
  5169. }
  5170. #u2918 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 2px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u2918_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u2919_img {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:0px;
  5187. top:0px;
  5188. width:330px;
  5189. height:2px;
  5190. }
  5191. #u2919 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:325px;
  5195. top:401px;
  5196. width:329px;
  5197. height:1px;
  5198. display:flex;
  5199. }
  5200. #u2919 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 2px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u2919_text {
  5208. border-width:0px;
  5209. word-wrap:break-word;
  5210. text-transform:none;
  5211. visibility:hidden;
  5212. }
  5213. #u2920_div {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:129px;
  5219. height:32px;
  5220. background:inherit;
  5221. background-color:rgba(255, 255, 255, 1);
  5222. box-sizing:border-box;
  5223. border-width:1px;
  5224. border-style:solid;
  5225. border-color:rgba(220, 223, 230, 1);
  5226. border-radius:2px;
  5227. -moz-box-shadow:none;
  5228. -webkit-box-shadow:none;
  5229. box-shadow:none;
  5230. color:#C0C4CC;
  5231. text-align:left;
  5232. }
  5233. #u2920 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:498px;
  5237. top:7px;
  5238. width:129px;
  5239. height:32px;
  5240. display:flex;
  5241. color:#C0C4CC;
  5242. text-align:left;
  5243. }
  5244. #u2920 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:2px 2px 2px 15px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u2920_div.mouseOver {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:129px;
  5257. height:32px;
  5258. background:inherit;
  5259. background-color:rgba(255, 255, 255, 1);
  5260. box-sizing:border-box;
  5261. border-width:1px;
  5262. border-style:solid;
  5263. border-color:rgba(192, 196, 204, 1);
  5264. border-radius:2px;
  5265. -moz-box-shadow:none;
  5266. -webkit-box-shadow:none;
  5267. box-shadow:none;
  5268. color:#C0C4CC;
  5269. text-align:left;
  5270. }
  5271. #u2920.mouseOver {
  5272. }
  5273. #u2920_div.selected {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:129px;
  5279. height:32px;
  5280. background:inherit;
  5281. background-color:rgba(255, 255, 255, 1);
  5282. box-sizing:border-box;
  5283. border-width:1px;
  5284. border-style:solid;
  5285. border-color:rgba(64, 158, 255, 1);
  5286. border-radius:2px;
  5287. -moz-box-shadow:none;
  5288. -webkit-box-shadow:none;
  5289. box-shadow:none;
  5290. color:#C0C4CC;
  5291. text-align:left;
  5292. }
  5293. #u2920.selected {
  5294. }
  5295. #u2920_div.mouseOver.selected {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:129px;
  5301. height:32px;
  5302. background:inherit;
  5303. background-color:rgba(255, 255, 255, 1);
  5304. box-sizing:border-box;
  5305. border-width:1px;
  5306. border-style:solid;
  5307. border-color:rgba(64, 158, 255, 1);
  5308. border-radius:2px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. color:#C0C4CC;
  5313. text-align:left;
  5314. }
  5315. #u2920.mouseOver.selected {
  5316. }
  5317. #u2920_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. }
  5322. #u2921 {
  5323. position:absolute;
  5324. left:498px;
  5325. top:42px;
  5326. visibility:hidden;
  5327. }
  5328. #u2921_state0 {
  5329. position:relative;
  5330. left:0px;
  5331. top:0px;
  5332. width:182px;
  5333. height:230px;
  5334. background-image:none;
  5335. border:none;
  5336. border-radius:0px;
  5337. -moz-box-shadow:none;
  5338. -webkit-box-shadow:none;
  5339. box-shadow:none;
  5340. }
  5341. #u2921_state0_content {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:1px;
  5347. height:1px;
  5348. }
  5349. #u2922_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:182px;
  5355. height:230px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 1);
  5358. box-sizing:border-box;
  5359. border-width:1px;
  5360. border-style:solid;
  5361. border-color:rgba(228, 231, 237, 1);
  5362. border-radius:2px;
  5363. -moz-box-shadow:none;
  5364. -webkit-box-shadow:none;
  5365. box-shadow:none;
  5366. }
  5367. #u2922 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:182px;
  5373. height:230px;
  5374. display:flex;
  5375. }
  5376. #u2922 .text {
  5377. position:absolute;
  5378. align-self:center;
  5379. padding:2px 2px 2px 2px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u2922_text {
  5384. border-width:0px;
  5385. word-wrap:break-word;
  5386. text-transform:none;
  5387. visibility:hidden;
  5388. }
  5389. .u2924_div {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:60px;
  5395. height:32px;
  5396. background:inherit;
  5397. background-color:rgba(255, 255, 255, 1);
  5398. border:none;
  5399. border-radius:0px;
  5400. -moz-box-shadow:none;
  5401. -webkit-box-shadow:none;
  5402. box-shadow:none;
  5403. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. color:#606266;
  5407. }
  5408. .u2924 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:60px;
  5414. height:32px;
  5415. display:flex;
  5416. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. color:#606266;
  5420. }
  5421. .u2924 .text {
  5422. position:absolute;
  5423. align-self:center;
  5424. padding:2px 2px 2px 2px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. .u2924_div.mouseOver {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:60px;
  5434. height:32px;
  5435. background:inherit;
  5436. background-color:rgba(245, 247, 250, 1);
  5437. border:none;
  5438. border-radius:0px;
  5439. -moz-box-shadow:none;
  5440. -webkit-box-shadow:none;
  5441. box-shadow:none;
  5442. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. color:#606266;
  5446. }
  5447. .u2924.mouseOver {
  5448. }
  5449. .u2924_div.selected {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:60px;
  5455. height:32px;
  5456. background:inherit;
  5457. background-color:rgba(255, 255, 255, 1);
  5458. border:none;
  5459. border-radius:0px;
  5460. -moz-box-shadow:none;
  5461. -webkit-box-shadow:none;
  5462. box-shadow:none;
  5463. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. color:#606266;
  5467. }
  5468. .u2924.selected {
  5469. }
  5470. .u2924_div.disabled {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:60px;
  5476. height:32px;
  5477. background:inherit;
  5478. background-color:rgba(255, 255, 255, 1);
  5479. border:none;
  5480. border-radius:0px;
  5481. -moz-box-shadow:none;
  5482. -webkit-box-shadow:none;
  5483. box-shadow:none;
  5484. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. color:#606266;
  5488. }
  5489. .u2924.disabled {
  5490. }
  5491. .u2924_div.mouseOver.selected {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:60px;
  5497. height:32px;
  5498. background:inherit;
  5499. background-color:rgba(245, 247, 250, 1);
  5500. border:none;
  5501. border-radius:0px;
  5502. -moz-box-shadow:none;
  5503. -webkit-box-shadow:none;
  5504. box-shadow:none;
  5505. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. color:#606266;
  5509. }
  5510. .u2924.mouseOver.selected {
  5511. }
  5512. .u2924_div.selected.disabled {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:60px;
  5518. height:32px;
  5519. background:inherit;
  5520. background-color:rgba(255, 255, 255, 1);
  5521. border:none;
  5522. border-radius:0px;
  5523. -moz-box-shadow:none;
  5524. -webkit-box-shadow:none;
  5525. box-shadow:none;
  5526. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5527. font-weight:400;
  5528. font-style:normal;
  5529. color:#606266;
  5530. }
  5531. .u2924.selected.disabled {
  5532. }
  5533. .u2924_text {
  5534. border-width:0px;
  5535. word-wrap:break-word;
  5536. text-transform:none;
  5537. }
  5538. #u2923-1 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:0px;
  5542. top:0px;
  5543. width:60px;
  5544. height:32px;
  5545. }
  5546. #u2923-2 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:32px;
  5551. width:60px;
  5552. height:32px;
  5553. }
  5554. #u2923-3 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:64px;
  5559. width:60px;
  5560. height:32px;
  5561. }
  5562. #u2923-4 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:96px;
  5567. width:60px;
  5568. height:32px;
  5569. }
  5570. #u2923-5 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:128px;
  5575. width:60px;
  5576. height:32px;
  5577. }
  5578. #u2923-6 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:160px;
  5583. width:60px;
  5584. height:32px;
  5585. }
  5586. #u2923 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:1px;
  5590. top:1px;
  5591. width:60px;
  5592. height:192px;
  5593. background:inherit;
  5594. background-color:rgba(255, 255, 255, 0);
  5595. border:none;
  5596. border-radius:0px;
  5597. }
  5598. #u2925_div {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:45px;
  5604. height:28px;
  5605. background:inherit;
  5606. background-color:rgba(255, 255, 255, 1);
  5607. border:none;
  5608. border-radius:2px;
  5609. -moz-box-shadow:none;
  5610. -webkit-box-shadow:none;
  5611. box-shadow:none;
  5612. font-size:12px;
  5613. color:#606266;
  5614. }
  5615. #u2925 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:71px;
  5619. top:198px;
  5620. width:45px;
  5621. height:28px;
  5622. display:flex;
  5623. font-size:12px;
  5624. color:#606266;
  5625. }
  5626. #u2925 .text {
  5627. position:absolute;
  5628. align-self:center;
  5629. padding:2px 2px 2px 2px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u2925_div.mouseOver {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:45px;
  5639. height:28px;
  5640. background:inherit;
  5641. background-color:rgba(255, 255, 255, 1);
  5642. border:none;
  5643. border-radius:2px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. font-size:12px;
  5648. color:#606266;
  5649. }
  5650. #u2925.mouseOver {
  5651. }
  5652. #u2925_div.disabled {
  5653. border-width:0px;
  5654. position:absolute;
  5655. left:0px;
  5656. top:0px;
  5657. width:45px;
  5658. height:28px;
  5659. background:inherit;
  5660. background-color:rgba(255, 255, 255, 1);
  5661. border:none;
  5662. border-radius:2px;
  5663. -moz-box-shadow:none;
  5664. -webkit-box-shadow:none;
  5665. box-shadow:none;
  5666. font-size:12px;
  5667. color:#606266;
  5668. }
  5669. #u2925.disabled {
  5670. }
  5671. #u2925_text {
  5672. border-width:0px;
  5673. word-wrap:break-word;
  5674. text-transform:none;
  5675. }
  5676. #u2926_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:45px;
  5682. height:28px;
  5683. background:inherit;
  5684. background-color:rgba(255, 255, 255, 0);
  5685. border:none;
  5686. border-radius:4px;
  5687. -moz-box-shadow:none;
  5688. -webkit-box-shadow:none;
  5689. box-shadow:none;
  5690. font-size:12px;
  5691. color:#409EFF;
  5692. }
  5693. #u2926 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:126px;
  5697. top:198px;
  5698. width:45px;
  5699. height:28px;
  5700. display:flex;
  5701. font-size:12px;
  5702. color:#409EFF;
  5703. }
  5704. #u2926 .text {
  5705. position:absolute;
  5706. align-self:center;
  5707. padding:2px 2px 2px 2px;
  5708. box-sizing:border-box;
  5709. width:100%;
  5710. }
  5711. #u2926_div.mouseOver {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:0px;
  5715. top:0px;
  5716. width:45px;
  5717. height:28px;
  5718. background:inherit;
  5719. background-color:rgba(255, 255, 255, 0);
  5720. border:none;
  5721. border-radius:4px;
  5722. -moz-box-shadow:none;
  5723. -webkit-box-shadow:none;
  5724. box-shadow:none;
  5725. font-size:12px;
  5726. color:#409EFF;
  5727. }
  5728. #u2926.mouseOver {
  5729. }
  5730. #u2926_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. }
  5735. .u2928_div {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:0px;
  5739. top:0px;
  5740. width:60px;
  5741. height:32px;
  5742. background:inherit;
  5743. background-color:rgba(255, 255, 255, 1);
  5744. border:none;
  5745. border-radius:0px;
  5746. -moz-box-shadow:none;
  5747. -webkit-box-shadow:none;
  5748. box-shadow:none;
  5749. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. color:#606266;
  5753. }
  5754. .u2928 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:0px;
  5758. top:0px;
  5759. width:60px;
  5760. height:32px;
  5761. display:flex;
  5762. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5763. font-weight:400;
  5764. font-style:normal;
  5765. color:#606266;
  5766. }
  5767. .u2928 .text {
  5768. position:absolute;
  5769. align-self:center;
  5770. padding:2px 2px 2px 2px;
  5771. box-sizing:border-box;
  5772. width:100%;
  5773. }
  5774. .u2928_div.mouseOver {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:60px;
  5780. height:32px;
  5781. background:inherit;
  5782. background-color:rgba(245, 247, 250, 1);
  5783. border:none;
  5784. border-radius:0px;
  5785. -moz-box-shadow:none;
  5786. -webkit-box-shadow:none;
  5787. box-shadow:none;
  5788. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. color:#606266;
  5792. }
  5793. .u2928.mouseOver {
  5794. }
  5795. .u2928_div.selected {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:60px;
  5801. height:32px;
  5802. background:inherit;
  5803. background-color:rgba(255, 255, 255, 1);
  5804. border:none;
  5805. border-radius:0px;
  5806. -moz-box-shadow:none;
  5807. -webkit-box-shadow:none;
  5808. box-shadow:none;
  5809. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. color:#606266;
  5813. }
  5814. .u2928.selected {
  5815. }
  5816. .u2928_div.disabled {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:60px;
  5822. height:32px;
  5823. background:inherit;
  5824. background-color:rgba(255, 255, 255, 1);
  5825. border:none;
  5826. border-radius:0px;
  5827. -moz-box-shadow:none;
  5828. -webkit-box-shadow:none;
  5829. box-shadow:none;
  5830. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5831. font-weight:400;
  5832. font-style:normal;
  5833. color:#606266;
  5834. }
  5835. .u2928.disabled {
  5836. }
  5837. .u2928_div.mouseOver.selected {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:60px;
  5843. height:32px;
  5844. background:inherit;
  5845. background-color:rgba(245, 247, 250, 1);
  5846. border:none;
  5847. border-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. color:#606266;
  5855. }
  5856. .u2928.mouseOver.selected {
  5857. }
  5858. .u2928_div.selected.disabled {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:60px;
  5864. height:32px;
  5865. background:inherit;
  5866. background-color:rgba(255, 255, 255, 1);
  5867. border:none;
  5868. border-radius:0px;
  5869. -moz-box-shadow:none;
  5870. -webkit-box-shadow:none;
  5871. box-shadow:none;
  5872. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. color:#606266;
  5876. }
  5877. .u2928.selected.disabled {
  5878. }
  5879. .u2928_text {
  5880. border-width:0px;
  5881. word-wrap:break-word;
  5882. text-transform:none;
  5883. }
  5884. #u2927-1 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:60px;
  5890. height:32px;
  5891. }
  5892. #u2927-2 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:0px;
  5896. top:32px;
  5897. width:60px;
  5898. height:32px;
  5899. }
  5900. #u2927-3 {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:64px;
  5905. width:60px;
  5906. height:32px;
  5907. }
  5908. #u2927-4 {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:96px;
  5913. width:60px;
  5914. height:32px;
  5915. }
  5916. #u2927-5 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:128px;
  5921. width:60px;
  5922. height:32px;
  5923. }
  5924. #u2927-6 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:160px;
  5929. width:60px;
  5930. height:32px;
  5931. }
  5932. #u2927 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:61px;
  5936. top:1px;
  5937. width:60px;
  5938. height:192px;
  5939. background:inherit;
  5940. background-color:rgba(255, 255, 255, 0);
  5941. border:none;
  5942. border-radius:0px;
  5943. }
  5944. .u2930_div {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:60px;
  5950. height:32px;
  5951. background:inherit;
  5952. background-color:rgba(255, 255, 255, 1);
  5953. border:none;
  5954. border-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. color:#606266;
  5962. }
  5963. .u2930 {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:0px;
  5967. top:0px;
  5968. width:60px;
  5969. height:32px;
  5970. display:flex;
  5971. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. color:#606266;
  5975. }
  5976. .u2930 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:2px 2px 2px 2px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. .u2930_div.mouseOver {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:60px;
  5989. height:32px;
  5990. background:inherit;
  5991. background-color:rgba(245, 247, 250, 1);
  5992. border:none;
  5993. border-radius:0px;
  5994. -moz-box-shadow:none;
  5995. -webkit-box-shadow:none;
  5996. box-shadow:none;
  5997. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. color:#606266;
  6001. }
  6002. .u2930.mouseOver {
  6003. }
  6004. .u2930_div.selected {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:60px;
  6010. height:32px;
  6011. background:inherit;
  6012. background-color:rgba(255, 255, 255, 1);
  6013. border:none;
  6014. border-radius:0px;
  6015. -moz-box-shadow:none;
  6016. -webkit-box-shadow:none;
  6017. box-shadow:none;
  6018. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. color:#606266;
  6022. }
  6023. .u2930.selected {
  6024. }
  6025. .u2930_div.disabled {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:60px;
  6031. height:32px;
  6032. background:inherit;
  6033. background-color:rgba(255, 255, 255, 1);
  6034. border:none;
  6035. border-radius:0px;
  6036. -moz-box-shadow:none;
  6037. -webkit-box-shadow:none;
  6038. box-shadow:none;
  6039. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. color:#606266;
  6043. }
  6044. .u2930.disabled {
  6045. }
  6046. .u2930_div.mouseOver.selected {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:60px;
  6052. height:32px;
  6053. background:inherit;
  6054. background-color:rgba(245, 247, 250, 1);
  6055. border:none;
  6056. border-radius:0px;
  6057. -moz-box-shadow:none;
  6058. -webkit-box-shadow:none;
  6059. box-shadow:none;
  6060. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6061. font-weight:400;
  6062. font-style:normal;
  6063. color:#606266;
  6064. }
  6065. .u2930.mouseOver.selected {
  6066. }
  6067. .u2930_div.selected.disabled {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:60px;
  6073. height:32px;
  6074. background:inherit;
  6075. background-color:rgba(255, 255, 255, 1);
  6076. border:none;
  6077. border-radius:0px;
  6078. -moz-box-shadow:none;
  6079. -webkit-box-shadow:none;
  6080. box-shadow:none;
  6081. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. color:#606266;
  6085. }
  6086. .u2930.selected.disabled {
  6087. }
  6088. .u2930_text {
  6089. border-width:0px;
  6090. word-wrap:break-word;
  6091. text-transform:none;
  6092. }
  6093. #u2929-1 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:60px;
  6099. height:32px;
  6100. }
  6101. #u2929-2 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:32px;
  6106. width:60px;
  6107. height:32px;
  6108. }
  6109. #u2929-3 {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:64px;
  6114. width:60px;
  6115. height:32px;
  6116. }
  6117. #u2929-4 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:96px;
  6122. width:60px;
  6123. height:32px;
  6124. }
  6125. #u2929-5 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:128px;
  6130. width:60px;
  6131. height:32px;
  6132. }
  6133. #u2929-6 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:160px;
  6138. width:60px;
  6139. height:32px;
  6140. }
  6141. #u2929 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:121px;
  6145. top:1px;
  6146. width:60px;
  6147. height:192px;
  6148. background:inherit;
  6149. background-color:rgba(255, 255, 255, 0);
  6150. border:none;
  6151. border-radius:0px;
  6152. }
  6153. #u2931_img {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:135px;
  6159. height:2px;
  6160. }
  6161. #u2931 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:23px;
  6165. top:63px;
  6166. width:134px;
  6167. height:1px;
  6168. display:flex;
  6169. }
  6170. #u2931 .text {
  6171. position:absolute;
  6172. align-self:center;
  6173. padding:2px 2px 2px 2px;
  6174. box-sizing:border-box;
  6175. width:100%;
  6176. }
  6177. #u2931_text {
  6178. border-width:0px;
  6179. word-wrap:break-word;
  6180. text-transform:none;
  6181. visibility:hidden;
  6182. }
  6183. #u2932_img {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:0px;
  6187. top:0px;
  6188. width:135px;
  6189. height:2px;
  6190. }
  6191. #u2932 {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:23px;
  6195. top:95px;
  6196. width:134px;
  6197. height:1px;
  6198. display:flex;
  6199. }
  6200. #u2932 .text {
  6201. position:absolute;
  6202. align-self:center;
  6203. padding:2px 2px 2px 2px;
  6204. box-sizing:border-box;
  6205. width:100%;
  6206. }
  6207. #u2932_text {
  6208. border-width:0px;
  6209. word-wrap:break-word;
  6210. text-transform:none;
  6211. visibility:hidden;
  6212. }
  6213. #u2933_img {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:182px;
  6219. height:2px;
  6220. }
  6221. #u2933 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:0px;
  6225. top:193px;
  6226. width:181px;
  6227. height:1px;
  6228. display:flex;
  6229. }
  6230. #u2933 .text {
  6231. position:absolute;
  6232. align-self:center;
  6233. padding:2px 2px 2px 2px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u2933_text {
  6238. border-width:0px;
  6239. word-wrap:break-word;
  6240. text-transform:none;
  6241. visibility:hidden;
  6242. }
  6243. #u2934_div {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:129px;
  6249. height:32px;
  6250. background:inherit;
  6251. background-color:rgba(255, 255, 255, 1);
  6252. box-sizing:border-box;
  6253. border-width:1px;
  6254. border-style:solid;
  6255. border-color:rgba(220, 223, 230, 1);
  6256. border-radius:2px;
  6257. -moz-box-shadow:none;
  6258. -webkit-box-shadow:none;
  6259. box-shadow:none;
  6260. color:#C0C4CC;
  6261. text-align:left;
  6262. }
  6263. #u2934 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:339px;
  6267. top:7px;
  6268. width:129px;
  6269. height:32px;
  6270. display:flex;
  6271. color:#C0C4CC;
  6272. text-align:left;
  6273. }
  6274. #u2934 .text {
  6275. position:absolute;
  6276. align-self:center;
  6277. padding:2px 2px 2px 15px;
  6278. box-sizing:border-box;
  6279. width:100%;
  6280. }
  6281. #u2934_div.mouseOver {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:129px;
  6287. height:32px;
  6288. background:inherit;
  6289. background-color:rgba(255, 255, 255, 1);
  6290. box-sizing:border-box;
  6291. border-width:1px;
  6292. border-style:solid;
  6293. border-color:rgba(192, 196, 204, 1);
  6294. border-radius:2px;
  6295. -moz-box-shadow:none;
  6296. -webkit-box-shadow:none;
  6297. box-shadow:none;
  6298. color:#C0C4CC;
  6299. text-align:left;
  6300. }
  6301. #u2934.mouseOver {
  6302. }
  6303. #u2934_div.selected {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:129px;
  6309. height:32px;
  6310. background:inherit;
  6311. background-color:rgba(255, 255, 255, 1);
  6312. box-sizing:border-box;
  6313. border-width:1px;
  6314. border-style:solid;
  6315. border-color:rgba(64, 158, 255, 1);
  6316. border-radius:2px;
  6317. -moz-box-shadow:none;
  6318. -webkit-box-shadow:none;
  6319. box-shadow:none;
  6320. color:#C0C4CC;
  6321. text-align:left;
  6322. }
  6323. #u2934.selected {
  6324. }
  6325. #u2934_div.mouseOver.selected {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:129px;
  6331. height:32px;
  6332. background:inherit;
  6333. background-color:rgba(255, 255, 255, 1);
  6334. box-sizing:border-box;
  6335. border-width:1px;
  6336. border-style:solid;
  6337. border-color:rgba(64, 158, 255, 1);
  6338. border-radius:2px;
  6339. -moz-box-shadow:none;
  6340. -webkit-box-shadow:none;
  6341. box-shadow:none;
  6342. color:#C0C4CC;
  6343. text-align:left;
  6344. }
  6345. #u2934.mouseOver.selected {
  6346. }
  6347. #u2934_text {
  6348. border-width:0px;
  6349. word-wrap:break-word;
  6350. text-transform:none;
  6351. }
  6352. #u2935_img {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:2px;
  6358. height:355px;
  6359. }
  6360. #u2935 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:325px;
  6364. top:47px;
  6365. width:1px;
  6366. height:354px;
  6367. display:flex;
  6368. }
  6369. #u2935 .text {
  6370. position:absolute;
  6371. align-self:center;
  6372. padding:2px 2px 2px 2px;
  6373. box-sizing:border-box;
  6374. width:100%;
  6375. }
  6376. #u2935_text {
  6377. border-width:0px;
  6378. word-wrap:break-word;
  6379. text-transform:none;
  6380. visibility:hidden;
  6381. }
  6382. #u2936 {
  6383. position:absolute;
  6384. left:173px;
  6385. top:42px;
  6386. visibility:hidden;
  6387. }
  6388. #u2936_state0 {
  6389. position:relative;
  6390. left:0px;
  6391. top:0px;
  6392. width:182px;
  6393. height:230px;
  6394. background-image:none;
  6395. border:none;
  6396. border-radius:0px;
  6397. -moz-box-shadow:none;
  6398. -webkit-box-shadow:none;
  6399. box-shadow:none;
  6400. }
  6401. #u2936_state0_content {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:1px;
  6407. height:1px;
  6408. }
  6409. #u2937_div {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:182px;
  6415. height:230px;
  6416. background:inherit;
  6417. background-color:rgba(255, 255, 255, 1);
  6418. box-sizing:border-box;
  6419. border-width:1px;
  6420. border-style:solid;
  6421. border-color:rgba(228, 231, 237, 1);
  6422. border-radius:2px;
  6423. -moz-box-shadow:none;
  6424. -webkit-box-shadow:none;
  6425. box-shadow:none;
  6426. }
  6427. #u2937 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:182px;
  6433. height:230px;
  6434. display:flex;
  6435. }
  6436. #u2937 .text {
  6437. position:absolute;
  6438. align-self:center;
  6439. padding:2px 2px 2px 2px;
  6440. box-sizing:border-box;
  6441. width:100%;
  6442. }
  6443. #u2937_text {
  6444. border-width:0px;
  6445. word-wrap:break-word;
  6446. text-transform:none;
  6447. visibility:hidden;
  6448. }
  6449. .u2939_div {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:0px;
  6453. top:0px;
  6454. width:60px;
  6455. height:32px;
  6456. background:inherit;
  6457. background-color:rgba(255, 255, 255, 1);
  6458. border:none;
  6459. border-radius:0px;
  6460. -moz-box-shadow:none;
  6461. -webkit-box-shadow:none;
  6462. box-shadow:none;
  6463. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. color:#606266;
  6467. }
  6468. .u2939 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:60px;
  6474. height:32px;
  6475. display:flex;
  6476. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. color:#606266;
  6480. }
  6481. .u2939 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:2px 2px 2px 2px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. .u2939_div.mouseOver {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:60px;
  6494. height:32px;
  6495. background:inherit;
  6496. background-color:rgba(245, 247, 250, 1);
  6497. border:none;
  6498. border-radius:0px;
  6499. -moz-box-shadow:none;
  6500. -webkit-box-shadow:none;
  6501. box-shadow:none;
  6502. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. color:#606266;
  6506. }
  6507. .u2939.mouseOver {
  6508. }
  6509. .u2939_div.selected {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:60px;
  6515. height:32px;
  6516. background:inherit;
  6517. background-color:rgba(255, 255, 255, 1);
  6518. border:none;
  6519. border-radius:0px;
  6520. -moz-box-shadow:none;
  6521. -webkit-box-shadow:none;
  6522. box-shadow:none;
  6523. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. color:#606266;
  6527. }
  6528. .u2939.selected {
  6529. }
  6530. .u2939_div.disabled {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:60px;
  6536. height:32px;
  6537. background:inherit;
  6538. background-color:rgba(255, 255, 255, 1);
  6539. border:none;
  6540. border-radius:0px;
  6541. -moz-box-shadow:none;
  6542. -webkit-box-shadow:none;
  6543. box-shadow:none;
  6544. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. color:#606266;
  6548. }
  6549. .u2939.disabled {
  6550. }
  6551. .u2939_div.mouseOver.selected {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:60px;
  6557. height:32px;
  6558. background:inherit;
  6559. background-color:rgba(245, 247, 250, 1);
  6560. border:none;
  6561. border-radius:0px;
  6562. -moz-box-shadow:none;
  6563. -webkit-box-shadow:none;
  6564. box-shadow:none;
  6565. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. color:#606266;
  6569. }
  6570. .u2939.mouseOver.selected {
  6571. }
  6572. .u2939_div.selected.disabled {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:60px;
  6578. height:32px;
  6579. background:inherit;
  6580. background-color:rgba(255, 255, 255, 1);
  6581. border:none;
  6582. border-radius:0px;
  6583. -moz-box-shadow:none;
  6584. -webkit-box-shadow:none;
  6585. box-shadow:none;
  6586. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. color:#606266;
  6590. }
  6591. .u2939.selected.disabled {
  6592. }
  6593. .u2939_text {
  6594. border-width:0px;
  6595. word-wrap:break-word;
  6596. text-transform:none;
  6597. }
  6598. #u2938-1 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:0px;
  6602. top:0px;
  6603. width:60px;
  6604. height:32px;
  6605. }
  6606. #u2938-2 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:32px;
  6611. width:60px;
  6612. height:32px;
  6613. }
  6614. #u2938-3 {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:64px;
  6619. width:60px;
  6620. height:32px;
  6621. }
  6622. #u2938-4 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:96px;
  6627. width:60px;
  6628. height:32px;
  6629. }
  6630. #u2938-5 {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:128px;
  6635. width:60px;
  6636. height:32px;
  6637. }
  6638. #u2938-6 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:160px;
  6643. width:60px;
  6644. height:32px;
  6645. }
  6646. #u2938 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:1px;
  6650. top:1px;
  6651. width:60px;
  6652. height:192px;
  6653. background:inherit;
  6654. background-color:rgba(255, 255, 255, 0);
  6655. border:none;
  6656. border-radius:0px;
  6657. }
  6658. #u2940_div {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:0px;
  6662. top:0px;
  6663. width:45px;
  6664. height:28px;
  6665. background:inherit;
  6666. background-color:rgba(255, 255, 255, 1);
  6667. border:none;
  6668. border-radius:2px;
  6669. -moz-box-shadow:none;
  6670. -webkit-box-shadow:none;
  6671. box-shadow:none;
  6672. font-size:12px;
  6673. color:#606266;
  6674. }
  6675. #u2940 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:71px;
  6679. top:198px;
  6680. width:45px;
  6681. height:28px;
  6682. display:flex;
  6683. font-size:12px;
  6684. color:#606266;
  6685. }
  6686. #u2940 .text {
  6687. position:absolute;
  6688. align-self:center;
  6689. padding:2px 2px 2px 2px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u2940_div.mouseOver {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:45px;
  6699. height:28px;
  6700. background:inherit;
  6701. background-color:rgba(255, 255, 255, 1);
  6702. border:none;
  6703. border-radius:2px;
  6704. -moz-box-shadow:none;
  6705. -webkit-box-shadow:none;
  6706. box-shadow:none;
  6707. font-size:12px;
  6708. color:#606266;
  6709. }
  6710. #u2940.mouseOver {
  6711. }
  6712. #u2940_div.disabled {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:45px;
  6718. height:28px;
  6719. background:inherit;
  6720. background-color:rgba(255, 255, 255, 1);
  6721. border:none;
  6722. border-radius:2px;
  6723. -moz-box-shadow:none;
  6724. -webkit-box-shadow:none;
  6725. box-shadow:none;
  6726. font-size:12px;
  6727. color:#606266;
  6728. }
  6729. #u2940.disabled {
  6730. }
  6731. #u2940_text {
  6732. border-width:0px;
  6733. word-wrap:break-word;
  6734. text-transform:none;
  6735. }
  6736. #u2941_div {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:45px;
  6742. height:28px;
  6743. background:inherit;
  6744. background-color:rgba(255, 255, 255, 0);
  6745. border:none;
  6746. border-radius:4px;
  6747. -moz-box-shadow:none;
  6748. -webkit-box-shadow:none;
  6749. box-shadow:none;
  6750. font-size:12px;
  6751. color:#409EFF;
  6752. }
  6753. #u2941 {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:126px;
  6757. top:198px;
  6758. width:45px;
  6759. height:28px;
  6760. display:flex;
  6761. font-size:12px;
  6762. color:#409EFF;
  6763. }
  6764. #u2941 .text {
  6765. position:absolute;
  6766. align-self:center;
  6767. padding:2px 2px 2px 2px;
  6768. box-sizing:border-box;
  6769. width:100%;
  6770. }
  6771. #u2941_div.mouseOver {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:45px;
  6777. height:28px;
  6778. background:inherit;
  6779. background-color:rgba(255, 255, 255, 0);
  6780. border:none;
  6781. border-radius:4px;
  6782. -moz-box-shadow:none;
  6783. -webkit-box-shadow:none;
  6784. box-shadow:none;
  6785. font-size:12px;
  6786. color:#409EFF;
  6787. }
  6788. #u2941.mouseOver {
  6789. }
  6790. #u2941_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. }
  6795. .u2943_div {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:60px;
  6801. height:32px;
  6802. background:inherit;
  6803. background-color:rgba(255, 255, 255, 1);
  6804. border:none;
  6805. border-radius:0px;
  6806. -moz-box-shadow:none;
  6807. -webkit-box-shadow:none;
  6808. box-shadow:none;
  6809. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. color:#606266;
  6813. }
  6814. .u2943 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:60px;
  6820. height:32px;
  6821. display:flex;
  6822. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6823. font-weight:400;
  6824. font-style:normal;
  6825. color:#606266;
  6826. }
  6827. .u2943 .text {
  6828. position:absolute;
  6829. align-self:center;
  6830. padding:2px 2px 2px 2px;
  6831. box-sizing:border-box;
  6832. width:100%;
  6833. }
  6834. .u2943_div.mouseOver {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:60px;
  6840. height:32px;
  6841. background:inherit;
  6842. background-color:rgba(245, 247, 250, 1);
  6843. border:none;
  6844. border-radius:0px;
  6845. -moz-box-shadow:none;
  6846. -webkit-box-shadow:none;
  6847. box-shadow:none;
  6848. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6849. font-weight:400;
  6850. font-style:normal;
  6851. color:#606266;
  6852. }
  6853. .u2943.mouseOver {
  6854. }
  6855. .u2943_div.selected {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:0px;
  6859. top:0px;
  6860. width:60px;
  6861. height:32px;
  6862. background:inherit;
  6863. background-color:rgba(255, 255, 255, 1);
  6864. border:none;
  6865. border-radius:0px;
  6866. -moz-box-shadow:none;
  6867. -webkit-box-shadow:none;
  6868. box-shadow:none;
  6869. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6870. font-weight:400;
  6871. font-style:normal;
  6872. color:#606266;
  6873. }
  6874. .u2943.selected {
  6875. }
  6876. .u2943_div.disabled {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:60px;
  6882. height:32px;
  6883. background:inherit;
  6884. background-color:rgba(255, 255, 255, 1);
  6885. border:none;
  6886. border-radius:0px;
  6887. -moz-box-shadow:none;
  6888. -webkit-box-shadow:none;
  6889. box-shadow:none;
  6890. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. color:#606266;
  6894. }
  6895. .u2943.disabled {
  6896. }
  6897. .u2943_div.mouseOver.selected {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:60px;
  6903. height:32px;
  6904. background:inherit;
  6905. background-color:rgba(245, 247, 250, 1);
  6906. border:none;
  6907. border-radius:0px;
  6908. -moz-box-shadow:none;
  6909. -webkit-box-shadow:none;
  6910. box-shadow:none;
  6911. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. color:#606266;
  6915. }
  6916. .u2943.mouseOver.selected {
  6917. }
  6918. .u2943_div.selected.disabled {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:60px;
  6924. height:32px;
  6925. background:inherit;
  6926. background-color:rgba(255, 255, 255, 1);
  6927. border:none;
  6928. border-radius:0px;
  6929. -moz-box-shadow:none;
  6930. -webkit-box-shadow:none;
  6931. box-shadow:none;
  6932. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. color:#606266;
  6936. }
  6937. .u2943.selected.disabled {
  6938. }
  6939. .u2943_text {
  6940. border-width:0px;
  6941. word-wrap:break-word;
  6942. text-transform:none;
  6943. }
  6944. #u2942-1 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:60px;
  6950. height:32px;
  6951. }
  6952. #u2942-2 {
  6953. border-width:0px;
  6954. position:absolute;
  6955. left:0px;
  6956. top:32px;
  6957. width:60px;
  6958. height:32px;
  6959. }
  6960. #u2942-3 {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:0px;
  6964. top:64px;
  6965. width:60px;
  6966. height:32px;
  6967. }
  6968. #u2942-4 {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:96px;
  6973. width:60px;
  6974. height:32px;
  6975. }
  6976. #u2942-5 {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:128px;
  6981. width:60px;
  6982. height:32px;
  6983. }
  6984. #u2942-6 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:160px;
  6989. width:60px;
  6990. height:32px;
  6991. }
  6992. #u2942 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:61px;
  6996. top:1px;
  6997. width:60px;
  6998. height:192px;
  6999. background:inherit;
  7000. background-color:rgba(255, 255, 255, 0);
  7001. border:none;
  7002. border-radius:0px;
  7003. }
  7004. .u2945_div {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:0px;
  7008. top:0px;
  7009. width:60px;
  7010. height:32px;
  7011. background:inherit;
  7012. background-color:rgba(255, 255, 255, 1);
  7013. border:none;
  7014. border-radius:0px;
  7015. -moz-box-shadow:none;
  7016. -webkit-box-shadow:none;
  7017. box-shadow:none;
  7018. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. color:#606266;
  7022. }
  7023. .u2945 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:60px;
  7029. height:32px;
  7030. display:flex;
  7031. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. color:#606266;
  7035. }
  7036. .u2945 .text {
  7037. position:absolute;
  7038. align-self:center;
  7039. padding:2px 2px 2px 2px;
  7040. box-sizing:border-box;
  7041. width:100%;
  7042. }
  7043. .u2945_div.mouseOver {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:60px;
  7049. height:32px;
  7050. background:inherit;
  7051. background-color:rgba(245, 247, 250, 1);
  7052. border:none;
  7053. border-radius:0px;
  7054. -moz-box-shadow:none;
  7055. -webkit-box-shadow:none;
  7056. box-shadow:none;
  7057. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. color:#606266;
  7061. }
  7062. .u2945.mouseOver {
  7063. }
  7064. .u2945_div.selected {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:0px;
  7068. top:0px;
  7069. width:60px;
  7070. height:32px;
  7071. background:inherit;
  7072. background-color:rgba(255, 255, 255, 1);
  7073. border:none;
  7074. border-radius:0px;
  7075. -moz-box-shadow:none;
  7076. -webkit-box-shadow:none;
  7077. box-shadow:none;
  7078. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. color:#606266;
  7082. }
  7083. .u2945.selected {
  7084. }
  7085. .u2945_div.disabled {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:60px;
  7091. height:32px;
  7092. background:inherit;
  7093. background-color:rgba(255, 255, 255, 1);
  7094. border:none;
  7095. border-radius:0px;
  7096. -moz-box-shadow:none;
  7097. -webkit-box-shadow:none;
  7098. box-shadow:none;
  7099. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7100. font-weight:400;
  7101. font-style:normal;
  7102. color:#606266;
  7103. }
  7104. .u2945.disabled {
  7105. }
  7106. .u2945_div.mouseOver.selected {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:60px;
  7112. height:32px;
  7113. background:inherit;
  7114. background-color:rgba(245, 247, 250, 1);
  7115. border:none;
  7116. border-radius:0px;
  7117. -moz-box-shadow:none;
  7118. -webkit-box-shadow:none;
  7119. box-shadow:none;
  7120. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7121. font-weight:400;
  7122. font-style:normal;
  7123. color:#606266;
  7124. }
  7125. .u2945.mouseOver.selected {
  7126. }
  7127. .u2945_div.selected.disabled {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:0px;
  7131. top:0px;
  7132. width:60px;
  7133. height:32px;
  7134. background:inherit;
  7135. background-color:rgba(255, 255, 255, 1);
  7136. border:none;
  7137. border-radius:0px;
  7138. -moz-box-shadow:none;
  7139. -webkit-box-shadow:none;
  7140. box-shadow:none;
  7141. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. color:#606266;
  7145. }
  7146. .u2945.selected.disabled {
  7147. }
  7148. .u2945_text {
  7149. border-width:0px;
  7150. word-wrap:break-word;
  7151. text-transform:none;
  7152. }
  7153. #u2944-1 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:60px;
  7159. height:32px;
  7160. }
  7161. #u2944-2 {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:32px;
  7166. width:60px;
  7167. height:32px;
  7168. }
  7169. #u2944-3 {
  7170. border-width:0px;
  7171. position:absolute;
  7172. left:0px;
  7173. top:64px;
  7174. width:60px;
  7175. height:32px;
  7176. }
  7177. #u2944-4 {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:0px;
  7181. top:96px;
  7182. width:60px;
  7183. height:32px;
  7184. }
  7185. #u2944-5 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:128px;
  7190. width:60px;
  7191. height:32px;
  7192. }
  7193. #u2944-6 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:160px;
  7198. width:60px;
  7199. height:32px;
  7200. }
  7201. #u2944 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:121px;
  7205. top:1px;
  7206. width:60px;
  7207. height:192px;
  7208. background:inherit;
  7209. background-color:rgba(255, 255, 255, 0);
  7210. border:none;
  7211. border-radius:0px;
  7212. }
  7213. #u2946_img {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:135px;
  7219. height:2px;
  7220. }
  7221. #u2946 {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:23px;
  7225. top:63px;
  7226. width:134px;
  7227. height:1px;
  7228. display:flex;
  7229. }
  7230. #u2946 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:2px 2px 2px 2px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u2946_text {
  7238. border-width:0px;
  7239. word-wrap:break-word;
  7240. text-transform:none;
  7241. visibility:hidden;
  7242. }
  7243. #u2947_img {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:135px;
  7249. height:2px;
  7250. }
  7251. #u2947 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:23px;
  7255. top:95px;
  7256. width:134px;
  7257. height:1px;
  7258. display:flex;
  7259. }
  7260. #u2947 .text {
  7261. position:absolute;
  7262. align-self:center;
  7263. padding:2px 2px 2px 2px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u2947_text {
  7268. border-width:0px;
  7269. word-wrap:break-word;
  7270. text-transform:none;
  7271. visibility:hidden;
  7272. }
  7273. #u2948_img {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:182px;
  7279. height:2px;
  7280. }
  7281. #u2948 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:193px;
  7286. width:181px;
  7287. height:1px;
  7288. display:flex;
  7289. }
  7290. #u2948 .text {
  7291. position:absolute;
  7292. align-self:center;
  7293. padding:2px 2px 2px 2px;
  7294. box-sizing:border-box;
  7295. width:100%;
  7296. }
  7297. #u2948_text {
  7298. border-width:0px;
  7299. word-wrap:break-word;
  7300. text-transform:none;
  7301. visibility:hidden;
  7302. }
  7303. #u2949_img {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:9px;
  7309. height:16px;
  7310. }
  7311. #u2949 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:316px;
  7315. top:15px;
  7316. width:9px;
  7317. height:16px;
  7318. display:flex;
  7319. font-family:"Arial Normal", "Arial", sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. color:rgba(0, 0, 0, 0.8470588235294118);
  7323. }
  7324. #u2949 .text {
  7325. position:absolute;
  7326. align-self:center;
  7327. padding:2px 2px 2px 2px;
  7328. box-sizing:border-box;
  7329. width:100%;
  7330. }
  7331. #u2949_text {
  7332. border-width:0px;
  7333. word-wrap:break-word;
  7334. text-transform:none;
  7335. visibility:hidden;
  7336. }
  7337. #u2950 {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:0px;
  7343. height:0px;
  7344. }
  7345. #u2951_div {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:64px;
  7351. height:20px;
  7352. background:inherit;
  7353. background-color:rgba(255, 255, 255, 0);
  7354. border:none;
  7355. border-radius:0px;
  7356. -moz-box-shadow:none;
  7357. -webkit-box-shadow:none;
  7358. box-shadow:none;
  7359. font-family:"Microsoft YaHei UI", sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. font-size:16px;
  7363. color:#606266;
  7364. }
  7365. #u2951 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:326px;
  7369. top:592px;
  7370. width:64px;
  7371. height:20px;
  7372. display:flex;
  7373. font-family:"Microsoft YaHei UI", sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. font-size:16px;
  7377. color:#606266;
  7378. }
  7379. #u2951 .text {
  7380. position:absolute;
  7381. align-self:flex-start;
  7382. padding:0px 0px 0px 0px;
  7383. box-sizing:border-box;
  7384. width:100%;
  7385. }
  7386. #u2951_text {
  7387. border-width:0px;
  7388. white-space:nowrap;
  7389. text-transform:none;
  7390. }
  7391. #u2952_div {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:5px;
  7397. height:25px;
  7398. background:inherit;
  7399. background-color:rgba(40, 54, 254, 1);
  7400. border:none;
  7401. border-radius:0px;
  7402. -moz-box-shadow:none;
  7403. -webkit-box-shadow:none;
  7404. box-shadow:none;
  7405. color:#7240FF;
  7406. }
  7407. #u2952 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:311px;
  7411. top:589px;
  7412. width:5px;
  7413. height:25px;
  7414. display:flex;
  7415. color:#7240FF;
  7416. }
  7417. #u2952 .text {
  7418. position:absolute;
  7419. align-self:center;
  7420. padding:2px 2px 2px 2px;
  7421. box-sizing:border-box;
  7422. width:100%;
  7423. }
  7424. #u2952_text {
  7425. border-width:0px;
  7426. word-wrap:break-word;
  7427. text-transform:none;
  7428. visibility:hidden;
  7429. }
  7430. #u2953 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:0px;
  7436. height:0px;
  7437. }
  7438. #u2954_div {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:0px;
  7442. top:0px;
  7443. width:80px;
  7444. height:16px;
  7445. background:inherit;
  7446. background-color:rgba(255, 255, 255, 0);
  7447. border:none;
  7448. border-radius:0px;
  7449. -moz-box-shadow:none;
  7450. -webkit-box-shadow:none;
  7451. box-shadow:none;
  7452. }
  7453. #u2954 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:327px;
  7457. top:702px;
  7458. width:80px;
  7459. height:16px;
  7460. display:flex;
  7461. }
  7462. #u2954 .text {
  7463. position:absolute;
  7464. align-self:flex-start;
  7465. padding:0px 0px 0px 0px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u2954_text {
  7470. border-width:0px;
  7471. white-space:nowrap;
  7472. text-transform:none;
  7473. }
  7474. #u2955 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:0px;
  7480. height:0px;
  7481. }
  7482. #u2956 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:0px;
  7488. height:0px;
  7489. }
  7490. #u2957_div {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:0px;
  7494. top:0px;
  7495. width:1261px;
  7496. height:54px;
  7497. background:inherit;
  7498. background-color:rgba(250, 250, 250, 1);
  7499. box-sizing:border-box;
  7500. border-width:1px;
  7501. border-style:solid;
  7502. border-color:rgba(232, 232, 232, 1);
  7503. border-radius:4px;
  7504. border-bottom-right-radius:0px;
  7505. border-bottom-left-radius:0px;
  7506. -moz-box-shadow:none;
  7507. -webkit-box-shadow:none;
  7508. box-shadow:none;
  7509. font-family:"Microsoft YaHei", sans-serif;
  7510. font-weight:400;
  7511. font-style:normal;
  7512. font-size:12px;
  7513. color:#666666;
  7514. line-height:18px;
  7515. }
  7516. #u2957 {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:327px;
  7520. top:779px;
  7521. width:1261px;
  7522. height:54px;
  7523. display:flex;
  7524. font-family:"Microsoft YaHei", sans-serif;
  7525. font-weight:400;
  7526. font-style:normal;
  7527. font-size:12px;
  7528. color:#666666;
  7529. line-height:18px;
  7530. }
  7531. #u2957 .text {
  7532. position:absolute;
  7533. align-self:center;
  7534. padding:2px 16px 2px 16px;
  7535. box-sizing:border-box;
  7536. width:100%;
  7537. }
  7538. #u2957_text {
  7539. border-width:0px;
  7540. word-wrap:break-word;
  7541. text-transform:none;
  7542. visibility:hidden;
  7543. }
  7544. #u2958_div {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:1261px;
  7550. height:106px;
  7551. background:inherit;
  7552. background-color:rgba(255, 255, 255, 1);
  7553. box-sizing:border-box;
  7554. border-width:1px;
  7555. border-style:solid;
  7556. border-color:rgba(232, 232, 232, 1);
  7557. border-left:0px;
  7558. border-right:0px;
  7559. border-radius:4px;
  7560. border-top-left-radius:0px;
  7561. border-top-right-radius:0px;
  7562. border-bottom-right-radius:0px;
  7563. border-bottom-left-radius:0px;
  7564. -moz-box-shadow:none;
  7565. -webkit-box-shadow:none;
  7566. box-shadow:none;
  7567. font-family:"Microsoft YaHei", sans-serif;
  7568. font-weight:400;
  7569. font-style:normal;
  7570. font-size:12px;
  7571. color:#666666;
  7572. line-height:18px;
  7573. }
  7574. #u2958 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:327px;
  7578. top:832px;
  7579. width:1261px;
  7580. height:106px;
  7581. display:flex;
  7582. font-family:"Microsoft YaHei", sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:12px;
  7586. color:#666666;
  7587. line-height:18px;
  7588. }
  7589. #u2958 .text {
  7590. position:absolute;
  7591. align-self:center;
  7592. padding:2px 16px 2px 16px;
  7593. box-sizing:border-box;
  7594. width:100%;
  7595. }
  7596. #u2958_text {
  7597. border-width:0px;
  7598. word-wrap:break-word;
  7599. text-transform:none;
  7600. visibility:hidden;
  7601. }
  7602. #u2959_div {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:0px;
  7606. top:0px;
  7607. width:1261px;
  7608. height:106px;
  7609. background:inherit;
  7610. background-color:rgba(255, 255, 255, 1);
  7611. box-sizing:border-box;
  7612. border-width:1px;
  7613. border-style:solid;
  7614. border-color:rgba(232, 232, 232, 1);
  7615. border-left:0px;
  7616. border-right:0px;
  7617. border-radius:4px;
  7618. border-top-left-radius:0px;
  7619. border-top-right-radius:0px;
  7620. border-bottom-right-radius:0px;
  7621. border-bottom-left-radius:0px;
  7622. -moz-box-shadow:none;
  7623. -webkit-box-shadow:none;
  7624. box-shadow:none;
  7625. font-family:"Microsoft YaHei", sans-serif;
  7626. font-weight:400;
  7627. font-style:normal;
  7628. font-size:12px;
  7629. color:#666666;
  7630. line-height:18px;
  7631. }
  7632. #u2959 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:327px;
  7636. top:939px;
  7637. width:1261px;
  7638. height:106px;
  7639. display:flex;
  7640. font-family:"Microsoft YaHei", sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:12px;
  7644. color:#666666;
  7645. line-height:18px;
  7646. }
  7647. #u2959 .text {
  7648. position:absolute;
  7649. align-self:center;
  7650. padding:2px 16px 2px 16px;
  7651. box-sizing:border-box;
  7652. width:100%;
  7653. }
  7654. #u2959_text {
  7655. border-width:0px;
  7656. word-wrap:break-word;
  7657. text-transform:none;
  7658. visibility:hidden;
  7659. }
  7660. #u2960_div {
  7661. border-width:0px;
  7662. position:absolute;
  7663. left:0px;
  7664. top:0px;
  7665. width:1261px;
  7666. height:106px;
  7667. background:inherit;
  7668. background-color:rgba(255, 255, 255, 1);
  7669. box-sizing:border-box;
  7670. border-width:1px;
  7671. border-style:solid;
  7672. border-color:rgba(232, 232, 232, 1);
  7673. border-left:0px;
  7674. border-right:0px;
  7675. border-radius:4px;
  7676. border-top-left-radius:0px;
  7677. border-top-right-radius:0px;
  7678. border-bottom-right-radius:0px;
  7679. border-bottom-left-radius:0px;
  7680. -moz-box-shadow:none;
  7681. -webkit-box-shadow:none;
  7682. box-shadow:none;
  7683. font-family:"Microsoft YaHei", sans-serif;
  7684. font-weight:400;
  7685. font-style:normal;
  7686. font-size:12px;
  7687. color:#666666;
  7688. line-height:18px;
  7689. }
  7690. #u2960 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:327px;
  7694. top:1045px;
  7695. width:1261px;
  7696. height:106px;
  7697. display:flex;
  7698. font-family:"Microsoft YaHei", sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:12px;
  7702. color:#666666;
  7703. line-height:18px;
  7704. }
  7705. #u2960 .text {
  7706. position:absolute;
  7707. align-self:center;
  7708. padding:2px 16px 2px 16px;
  7709. box-sizing:border-box;
  7710. width:100%;
  7711. }
  7712. #u2960_text {
  7713. border-width:0px;
  7714. word-wrap:break-word;
  7715. text-transform:none;
  7716. visibility:hidden;
  7717. }
  7718. #u2961_div {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:0px;
  7722. top:0px;
  7723. width:1261px;
  7724. height:106px;
  7725. background:inherit;
  7726. background-color:rgba(255, 255, 255, 1);
  7727. box-sizing:border-box;
  7728. border-width:1px;
  7729. border-style:solid;
  7730. border-color:rgba(232, 232, 232, 1);
  7731. border-left:0px;
  7732. border-right:0px;
  7733. border-radius:4px;
  7734. border-top-left-radius:0px;
  7735. border-top-right-radius:0px;
  7736. border-bottom-right-radius:0px;
  7737. border-bottom-left-radius:0px;
  7738. -moz-box-shadow:none;
  7739. -webkit-box-shadow:none;
  7740. box-shadow:none;
  7741. font-family:"Microsoft YaHei", sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:12px;
  7745. color:#666666;
  7746. line-height:18px;
  7747. }
  7748. #u2961 {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:327px;
  7752. top:1152px;
  7753. width:1261px;
  7754. height:106px;
  7755. display:flex;
  7756. font-family:"Microsoft YaHei", sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:12px;
  7760. color:#666666;
  7761. line-height:18px;
  7762. }
  7763. #u2961 .text {
  7764. position:absolute;
  7765. align-self:center;
  7766. padding:2px 16px 2px 16px;
  7767. box-sizing:border-box;
  7768. width:100%;
  7769. }
  7770. #u2961_text {
  7771. border-width:0px;
  7772. word-wrap:break-word;
  7773. text-transform:none;
  7774. visibility:hidden;
  7775. }
  7776. #u2962_div {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:1261px;
  7782. height:106px;
  7783. background:inherit;
  7784. background-color:rgba(255, 255, 255, 1);
  7785. box-sizing:border-box;
  7786. border-width:1px;
  7787. border-style:solid;
  7788. border-color:rgba(232, 232, 232, 1);
  7789. border-left:0px;
  7790. border-right:0px;
  7791. border-radius:4px;
  7792. border-top-left-radius:0px;
  7793. border-top-right-radius:0px;
  7794. border-bottom-right-radius:0px;
  7795. border-bottom-left-radius:0px;
  7796. -moz-box-shadow:none;
  7797. -webkit-box-shadow:none;
  7798. box-shadow:none;
  7799. font-family:"Microsoft YaHei", sans-serif;
  7800. font-weight:400;
  7801. font-style:normal;
  7802. font-size:12px;
  7803. color:#666666;
  7804. line-height:18px;
  7805. }
  7806. #u2962 {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:327px;
  7810. top:1258px;
  7811. width:1261px;
  7812. height:106px;
  7813. display:flex;
  7814. font-family:"Microsoft YaHei", sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:12px;
  7818. color:#666666;
  7819. line-height:18px;
  7820. }
  7821. #u2962 .text {
  7822. position:absolute;
  7823. align-self:center;
  7824. padding:2px 16px 2px 16px;
  7825. box-sizing:border-box;
  7826. width:100%;
  7827. }
  7828. #u2962_text {
  7829. border-width:0px;
  7830. word-wrap:break-word;
  7831. text-transform:none;
  7832. visibility:hidden;
  7833. }
  7834. #u2963_div {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:1261px;
  7840. height:106px;
  7841. background:inherit;
  7842. background-color:rgba(255, 255, 255, 1);
  7843. box-sizing:border-box;
  7844. border-width:1px;
  7845. border-style:solid;
  7846. border-color:rgba(232, 232, 232, 1);
  7847. border-left:0px;
  7848. border-right:0px;
  7849. border-radius:4px;
  7850. border-top-left-radius:0px;
  7851. border-top-right-radius:0px;
  7852. border-bottom-right-radius:0px;
  7853. border-bottom-left-radius:0px;
  7854. -moz-box-shadow:none;
  7855. -webkit-box-shadow:none;
  7856. box-shadow:none;
  7857. font-family:"Microsoft YaHei", sans-serif;
  7858. font-weight:400;
  7859. font-style:normal;
  7860. font-size:12px;
  7861. color:#666666;
  7862. line-height:18px;
  7863. }
  7864. #u2963 {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:327px;
  7868. top:1365px;
  7869. width:1261px;
  7870. height:106px;
  7871. display:flex;
  7872. font-family:"Microsoft YaHei", sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:12px;
  7876. color:#666666;
  7877. line-height:18px;
  7878. }
  7879. #u2963 .text {
  7880. position:absolute;
  7881. align-self:center;
  7882. padding:2px 16px 2px 16px;
  7883. box-sizing:border-box;
  7884. width:100%;
  7885. }
  7886. #u2963_text {
  7887. border-width:0px;
  7888. word-wrap:break-word;
  7889. text-transform:none;
  7890. visibility:hidden;
  7891. }
  7892. #u2964_div {
  7893. border-width:0px;
  7894. position:absolute;
  7895. left:0px;
  7896. top:0px;
  7897. width:1261px;
  7898. height:106px;
  7899. background:inherit;
  7900. background-color:rgba(255, 255, 255, 1);
  7901. box-sizing:border-box;
  7902. border-width:1px;
  7903. border-style:solid;
  7904. border-color:rgba(232, 232, 232, 1);
  7905. border-left:0px;
  7906. border-right:0px;
  7907. border-radius:4px;
  7908. border-top-left-radius:0px;
  7909. border-top-right-radius:0px;
  7910. border-bottom-right-radius:0px;
  7911. border-bottom-left-radius:0px;
  7912. -moz-box-shadow:none;
  7913. -webkit-box-shadow:none;
  7914. box-shadow:none;
  7915. font-family:"Microsoft YaHei", sans-serif;
  7916. font-weight:400;
  7917. font-style:normal;
  7918. font-size:12px;
  7919. color:#666666;
  7920. line-height:18px;
  7921. }
  7922. #u2964 {
  7923. border-width:0px;
  7924. position:absolute;
  7925. left:327px;
  7926. top:1471px;
  7927. width:1261px;
  7928. height:106px;
  7929. display:flex;
  7930. font-family:"Microsoft YaHei", sans-serif;
  7931. font-weight:400;
  7932. font-style:normal;
  7933. font-size:12px;
  7934. color:#666666;
  7935. line-height:18px;
  7936. }
  7937. #u2964 .text {
  7938. position:absolute;
  7939. align-self:center;
  7940. padding:2px 16px 2px 16px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u2964_text {
  7945. border-width:0px;
  7946. word-wrap:break-word;
  7947. text-transform:none;
  7948. visibility:hidden;
  7949. }
  7950. #u2965_div {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:0px;
  7954. top:0px;
  7955. width:1261px;
  7956. height:106px;
  7957. background:inherit;
  7958. background-color:rgba(255, 255, 255, 1);
  7959. box-sizing:border-box;
  7960. border-width:1px;
  7961. border-style:solid;
  7962. border-color:rgba(232, 232, 232, 1);
  7963. border-left:0px;
  7964. border-right:0px;
  7965. border-radius:4px;
  7966. border-top-left-radius:0px;
  7967. border-top-right-radius:0px;
  7968. border-bottom-right-radius:0px;
  7969. border-bottom-left-radius:0px;
  7970. -moz-box-shadow:none;
  7971. -webkit-box-shadow:none;
  7972. box-shadow:none;
  7973. font-family:"Microsoft YaHei", sans-serif;
  7974. font-weight:400;
  7975. font-style:normal;
  7976. font-size:12px;
  7977. color:#666666;
  7978. line-height:18px;
  7979. }
  7980. #u2965 {
  7981. border-width:0px;
  7982. position:absolute;
  7983. left:327px;
  7984. top:1578px;
  7985. width:1261px;
  7986. height:106px;
  7987. display:flex;
  7988. font-family:"Microsoft YaHei", sans-serif;
  7989. font-weight:400;
  7990. font-style:normal;
  7991. font-size:12px;
  7992. color:#666666;
  7993. line-height:18px;
  7994. }
  7995. #u2965 .text {
  7996. position:absolute;
  7997. align-self:center;
  7998. padding:2px 16px 2px 16px;
  7999. box-sizing:border-box;
  8000. width:100%;
  8001. }
  8002. #u2965_text {
  8003. border-width:0px;
  8004. word-wrap:break-word;
  8005. text-transform:none;
  8006. visibility:hidden;
  8007. }
  8008. #u2966 {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:0px;
  8012. top:0px;
  8013. width:0px;
  8014. height:0px;
  8015. }
  8016. #u2967_div {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:0px;
  8020. top:0px;
  8021. width:117px;
  8022. height:54px;
  8023. background:inherit;
  8024. background-color:rgba(255, 255, 255, 0);
  8025. border:none;
  8026. border-left:0px;
  8027. border-top:0px;
  8028. border-right:0px;
  8029. border-radius:4px;
  8030. border-bottom-right-radius:0px;
  8031. border-bottom-left-radius:0px;
  8032. -moz-box-shadow:none;
  8033. -webkit-box-shadow:none;
  8034. box-shadow:none;
  8035. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8036. font-weight:700;
  8037. font-style:normal;
  8038. font-size:14px;
  8039. color:rgba(0, 0, 0, 0.8470588235294118);
  8040. text-align:left;
  8041. line-height:53px;
  8042. }
  8043. #u2967 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:379px;
  8047. top:779px;
  8048. width:117px;
  8049. height:54px;
  8050. display:flex;
  8051. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8052. font-weight:700;
  8053. font-style:normal;
  8054. font-size:14px;
  8055. color:rgba(0, 0, 0, 0.8470588235294118);
  8056. text-align:left;
  8057. line-height:53px;
  8058. }
  8059. #u2967 .text {
  8060. position:absolute;
  8061. align-self:center;
  8062. padding:0px 16px 0px 16px;
  8063. box-sizing:border-box;
  8064. width:100%;
  8065. }
  8066. #u2967_text {
  8067. border-width:0px;
  8068. word-wrap:break-word;
  8069. text-transform:none;
  8070. }
  8071. #u2968_div {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:0px;
  8075. top:0px;
  8076. width:113px;
  8077. height:53px;
  8078. background:inherit;
  8079. background-color:rgba(255, 255, 255, 0);
  8080. border:none;
  8081. border-left:0px;
  8082. border-top:0px;
  8083. border-right:0px;
  8084. border-radius:4px;
  8085. border-bottom-right-radius:0px;
  8086. border-bottom-left-radius:0px;
  8087. -moz-box-shadow:none;
  8088. -webkit-box-shadow:none;
  8089. box-shadow:none;
  8090. font-family:"SF UI Text", sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:14px;
  8094. color:rgba(0, 0, 0, 0.6470588235294118);
  8095. text-align:left;
  8096. line-height:53px;
  8097. }
  8098. #u2968 {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:379px;
  8102. top:833px;
  8103. width:113px;
  8104. height:53px;
  8105. display:flex;
  8106. font-family:"SF UI Text", sans-serif;
  8107. font-weight:400;
  8108. font-style:normal;
  8109. font-size:14px;
  8110. color:rgba(0, 0, 0, 0.6470588235294118);
  8111. text-align:left;
  8112. line-height:53px;
  8113. }
  8114. #u2968 .text {
  8115. position:absolute;
  8116. align-self:flex-start;
  8117. padding:0px 16px 0px 16px;
  8118. box-sizing:border-box;
  8119. width:100%;
  8120. }
  8121. #u2968_text {
  8122. border-width:0px;
  8123. word-wrap:break-word;
  8124. text-transform:none;
  8125. visibility:hidden;
  8126. }
  8127. #u2969_img {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:0px;
  8131. top:0px;
  8132. width:80px;
  8133. height:80px;
  8134. }
  8135. #u2969 {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:394px;
  8139. top:845px;
  8140. width:80px;
  8141. height:80px;
  8142. display:flex;
  8143. }
  8144. #u2969 .text {
  8145. position:absolute;
  8146. align-self:center;
  8147. padding:2px 2px 2px 2px;
  8148. box-sizing:border-box;
  8149. width:100%;
  8150. }
  8151. #u2969_text {
  8152. border-width:0px;
  8153. word-wrap:break-word;
  8154. text-transform:none;
  8155. visibility:hidden;
  8156. }
  8157. #u2970_img {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:72px;
  8163. height:68px;
  8164. }
  8165. #u2970 {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:398px;
  8169. top:851px;
  8170. width:72px;
  8171. height:68px;
  8172. display:flex;
  8173. }
  8174. #u2970 .text {
  8175. position:absolute;
  8176. align-self:center;
  8177. padding:2px 2px 2px 2px;
  8178. box-sizing:border-box;
  8179. width:100%;
  8180. }
  8181. #u2970_text {
  8182. border-width:0px;
  8183. word-wrap:break-word;
  8184. text-transform:none;
  8185. visibility:hidden;
  8186. }
  8187. #u2971_img {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:0px;
  8191. top:0px;
  8192. width:80px;
  8193. height:80px;
  8194. }
  8195. #u2971 {
  8196. border-width:0px;
  8197. position:absolute;
  8198. left:394px;
  8199. top:956px;
  8200. width:80px;
  8201. height:80px;
  8202. display:flex;
  8203. }
  8204. #u2971 .text {
  8205. position:absolute;
  8206. align-self:center;
  8207. padding:2px 2px 2px 2px;
  8208. box-sizing:border-box;
  8209. width:100%;
  8210. }
  8211. #u2971_text {
  8212. border-width:0px;
  8213. word-wrap:break-word;
  8214. text-transform:none;
  8215. visibility:hidden;
  8216. }
  8217. #u2972_img {
  8218. border-width:0px;
  8219. position:absolute;
  8220. left:0px;
  8221. top:0px;
  8222. width:80px;
  8223. height:80px;
  8224. }
  8225. #u2972 {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:394px;
  8229. top:1060px;
  8230. width:80px;
  8231. height:80px;
  8232. display:flex;
  8233. }
  8234. #u2972 .text {
  8235. position:absolute;
  8236. align-self:center;
  8237. padding:2px 2px 2px 2px;
  8238. box-sizing:border-box;
  8239. width:100%;
  8240. }
  8241. #u2972_text {
  8242. border-width:0px;
  8243. word-wrap:break-word;
  8244. text-transform:none;
  8245. visibility:hidden;
  8246. }
  8247. #u2973_img {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:0px;
  8251. top:0px;
  8252. width:80px;
  8253. height:80px;
  8254. }
  8255. #u2973 {
  8256. border-width:0px;
  8257. position:absolute;
  8258. left:394px;
  8259. top:1166px;
  8260. width:80px;
  8261. height:80px;
  8262. display:flex;
  8263. }
  8264. #u2973 .text {
  8265. position:absolute;
  8266. align-self:center;
  8267. padding:2px 2px 2px 2px;
  8268. box-sizing:border-box;
  8269. width:100%;
  8270. }
  8271. #u2973_text {
  8272. border-width:0px;
  8273. word-wrap:break-word;
  8274. text-transform:none;
  8275. visibility:hidden;
  8276. }
  8277. #u2974_img {
  8278. border-width:0px;
  8279. position:absolute;
  8280. left:0px;
  8281. top:0px;
  8282. width:80px;
  8283. height:80px;
  8284. }
  8285. #u2974 {
  8286. border-width:0px;
  8287. position:absolute;
  8288. left:394px;
  8289. top:1270px;
  8290. width:80px;
  8291. height:80px;
  8292. display:flex;
  8293. }
  8294. #u2974 .text {
  8295. position:absolute;
  8296. align-self:center;
  8297. padding:2px 2px 2px 2px;
  8298. box-sizing:border-box;
  8299. width:100%;
  8300. }
  8301. #u2974_text {
  8302. border-width:0px;
  8303. word-wrap:break-word;
  8304. text-transform:none;
  8305. visibility:hidden;
  8306. }
  8307. #u2975_img {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:0px;
  8311. top:0px;
  8312. width:80px;
  8313. height:80px;
  8314. }
  8315. #u2975 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:394px;
  8319. top:1379px;
  8320. width:80px;
  8321. height:80px;
  8322. display:flex;
  8323. }
  8324. #u2975 .text {
  8325. position:absolute;
  8326. align-self:center;
  8327. padding:2px 2px 2px 2px;
  8328. box-sizing:border-box;
  8329. width:100%;
  8330. }
  8331. #u2975_text {
  8332. border-width:0px;
  8333. word-wrap:break-word;
  8334. text-transform:none;
  8335. visibility:hidden;
  8336. }
  8337. #u2976_img {
  8338. border-width:0px;
  8339. position:absolute;
  8340. left:0px;
  8341. top:0px;
  8342. width:80px;
  8343. height:80px;
  8344. }
  8345. #u2976 {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:394px;
  8349. top:1485px;
  8350. width:80px;
  8351. height:80px;
  8352. display:flex;
  8353. }
  8354. #u2976 .text {
  8355. position:absolute;
  8356. align-self:center;
  8357. padding:2px 2px 2px 2px;
  8358. box-sizing:border-box;
  8359. width:100%;
  8360. }
  8361. #u2976_text {
  8362. border-width:0px;
  8363. word-wrap:break-word;
  8364. text-transform:none;
  8365. visibility:hidden;
  8366. }
  8367. #u2977_img {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:0px;
  8371. top:0px;
  8372. width:80px;
  8373. height:80px;
  8374. }
  8375. #u2977 {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:394px;
  8379. top:1589px;
  8380. width:80px;
  8381. height:80px;
  8382. display:flex;
  8383. }
  8384. #u2977 .text {
  8385. position:absolute;
  8386. align-self:center;
  8387. padding:2px 2px 2px 2px;
  8388. box-sizing:border-box;
  8389. width:100%;
  8390. }
  8391. #u2977_text {
  8392. border-width:0px;
  8393. word-wrap:break-word;
  8394. text-transform:none;
  8395. visibility:hidden;
  8396. }
  8397. #u2978 {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:0px;
  8403. height:0px;
  8404. }
  8405. #u2979_div {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:0px;
  8409. top:0px;
  8410. width:67px;
  8411. height:54px;
  8412. background:inherit;
  8413. background-color:rgba(255, 255, 255, 0);
  8414. border:none;
  8415. border-left:0px;
  8416. border-top:0px;
  8417. border-right:0px;
  8418. border-radius:4px;
  8419. border-bottom-right-radius:0px;
  8420. border-bottom-left-radius:0px;
  8421. -moz-box-shadow:none;
  8422. -webkit-box-shadow:none;
  8423. box-shadow:none;
  8424. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8425. font-weight:700;
  8426. font-style:normal;
  8427. font-size:14px;
  8428. color:rgba(0, 0, 0, 0.8470588235294118);
  8429. text-align:left;
  8430. line-height:53px;
  8431. }
  8432. #u2979 {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:1521px;
  8436. top:779px;
  8437. width:67px;
  8438. height:54px;
  8439. display:flex;
  8440. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8441. font-weight:700;
  8442. font-style:normal;
  8443. font-size:14px;
  8444. color:rgba(0, 0, 0, 0.8470588235294118);
  8445. text-align:left;
  8446. line-height:53px;
  8447. }
  8448. #u2979 .text {
  8449. position:absolute;
  8450. align-self:center;
  8451. padding:0px 16px 0px 16px;
  8452. box-sizing:border-box;
  8453. width:100%;
  8454. }
  8455. #u2979_text {
  8456. border-width:0px;
  8457. word-wrap:break-word;
  8458. text-transform:none;
  8459. }
  8460. #u2980_div {
  8461. border-width:0px;
  8462. position:absolute;
  8463. left:0px;
  8464. top:0px;
  8465. width:67px;
  8466. height:848px;
  8467. background:inherit;
  8468. background-color:rgba(255, 255, 255, 0);
  8469. border:none;
  8470. border-left:0px;
  8471. border-top:0px;
  8472. border-right:0px;
  8473. border-radius:4px;
  8474. border-bottom-right-radius:0px;
  8475. border-bottom-left-radius:0px;
  8476. -moz-box-shadow:none;
  8477. -webkit-box-shadow:none;
  8478. box-shadow:none;
  8479. font-family:"Microsoft YaHei", sans-serif;
  8480. font-weight:400;
  8481. font-style:normal;
  8482. font-size:14px;
  8483. color:#1890FF;
  8484. text-align:left;
  8485. line-height:106px;
  8486. }
  8487. #u2980 {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:1521px;
  8491. top:833px;
  8492. width:67px;
  8493. height:848px;
  8494. display:flex;
  8495. font-family:"Microsoft YaHei", sans-serif;
  8496. font-weight:400;
  8497. font-style:normal;
  8498. font-size:14px;
  8499. color:#1890FF;
  8500. text-align:left;
  8501. line-height:106px;
  8502. }
  8503. #u2980 .text {
  8504. position:absolute;
  8505. align-self:flex-start;
  8506. padding:0px 16px 0px 16px;
  8507. box-sizing:border-box;
  8508. width:100%;
  8509. }
  8510. #u2980_text {
  8511. border-width:0px;
  8512. word-wrap:break-word;
  8513. text-transform:none;
  8514. }
  8515. #u2981 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:0px;
  8519. top:0px;
  8520. width:0px;
  8521. height:0px;
  8522. }
  8523. #u2982_div {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:63px;
  8529. height:54px;
  8530. background:inherit;
  8531. background-color:rgba(255, 255, 255, 0);
  8532. border:none;
  8533. border-left:0px;
  8534. border-top:0px;
  8535. border-right:0px;
  8536. border-radius:4px;
  8537. border-bottom-right-radius:0px;
  8538. border-bottom-left-radius:0px;
  8539. -moz-box-shadow:none;
  8540. -webkit-box-shadow:none;
  8541. box-shadow:none;
  8542. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8543. font-weight:700;
  8544. font-style:normal;
  8545. font-size:14px;
  8546. color:rgba(0, 0, 0, 0.8470588235294118);
  8547. text-align:left;
  8548. line-height:53px;
  8549. }
  8550. #u2982 {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:327px;
  8554. top:777px;
  8555. width:63px;
  8556. height:54px;
  8557. display:flex;
  8558. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8559. font-weight:700;
  8560. font-style:normal;
  8561. font-size:14px;
  8562. color:rgba(0, 0, 0, 0.8470588235294118);
  8563. text-align:left;
  8564. line-height:53px;
  8565. }
  8566. #u2982 .text {
  8567. position:absolute;
  8568. align-self:center;
  8569. padding:0px 16px 0px 16px;
  8570. box-sizing:border-box;
  8571. width:100%;
  8572. }
  8573. #u2982_text {
  8574. border-width:0px;
  8575. word-wrap:break-word;
  8576. text-transform:none;
  8577. }
  8578. #u2983_div {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:56px;
  8584. height:848px;
  8585. background:inherit;
  8586. background-color:rgba(255, 255, 255, 0);
  8587. box-sizing:border-box;
  8588. border-width:3px;
  8589. border-style:solid;
  8590. border-color:rgba(235, 235, 235, 1);
  8591. border-left:0px;
  8592. border-top:0px;
  8593. border-right:0px;
  8594. border-radius:4px;
  8595. border-bottom-right-radius:0px;
  8596. border-bottom-left-radius:0px;
  8597. -moz-box-shadow:none;
  8598. -webkit-box-shadow:none;
  8599. box-shadow:none;
  8600. font-family:"Microsoft Tai Le", sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:14px;
  8604. color:rgba(0, 0, 0, 0.6470588235294118);
  8605. text-align:left;
  8606. line-height:106px;
  8607. }
  8608. #u2983 {
  8609. border-width:0px;
  8610. position:absolute;
  8611. left:327px;
  8612. top:831px;
  8613. width:56px;
  8614. height:848px;
  8615. display:flex;
  8616. font-family:"Microsoft Tai Le", sans-serif;
  8617. font-weight:400;
  8618. font-style:normal;
  8619. font-size:14px;
  8620. color:rgba(0, 0, 0, 0.6470588235294118);
  8621. text-align:left;
  8622. line-height:106px;
  8623. }
  8624. #u2983 .text {
  8625. position:absolute;
  8626. align-self:flex-start;
  8627. padding:0px 16px 0px 16px;
  8628. box-sizing:border-box;
  8629. width:100%;
  8630. }
  8631. #u2983_text {
  8632. border-width:0px;
  8633. word-wrap:break-word;
  8634. text-transform:none;
  8635. }
  8636. #u2984 {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:0px;
  8640. top:0px;
  8641. width:0px;
  8642. height:0px;
  8643. }
  8644. #u2985_div {
  8645. border-width:0px;
  8646. position:absolute;
  8647. left:0px;
  8648. top:0px;
  8649. width:204px;
  8650. height:54px;
  8651. background:inherit;
  8652. background-color:rgba(255, 255, 255, 0);
  8653. border:none;
  8654. border-left:0px;
  8655. border-top:0px;
  8656. border-right:0px;
  8657. border-radius:4px;
  8658. border-bottom-right-radius:0px;
  8659. border-bottom-left-radius:0px;
  8660. -moz-box-shadow:none;
  8661. -webkit-box-shadow:none;
  8662. box-shadow:none;
  8663. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8664. font-weight:700;
  8665. font-style:normal;
  8666. font-size:14px;
  8667. color:rgba(0, 0, 0, 0.8470588235294118);
  8668. text-align:left;
  8669. line-height:53px;
  8670. }
  8671. #u2985 {
  8672. border-width:0px;
  8673. position:absolute;
  8674. left:489px;
  8675. top:779px;
  8676. width:204px;
  8677. height:54px;
  8678. display:flex;
  8679. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8680. font-weight:700;
  8681. font-style:normal;
  8682. font-size:14px;
  8683. color:rgba(0, 0, 0, 0.8470588235294118);
  8684. text-align:left;
  8685. line-height:53px;
  8686. }
  8687. #u2985 .text {
  8688. position:absolute;
  8689. align-self:center;
  8690. padding:0px 16px 0px 16px;
  8691. box-sizing:border-box;
  8692. width:100%;
  8693. }
  8694. #u2985_text {
  8695. border-width:0px;
  8696. word-wrap:break-word;
  8697. text-transform:none;
  8698. }
  8699. #u2986_div {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:0px;
  8703. top:0px;
  8704. width:187px;
  8705. height:848px;
  8706. background:inherit;
  8707. background-color:rgba(255, 255, 255, 0);
  8708. border:none;
  8709. border-left:0px;
  8710. border-top:0px;
  8711. border-right:0px;
  8712. border-radius:4px;
  8713. border-bottom-right-radius:0px;
  8714. border-bottom-left-radius:0px;
  8715. -moz-box-shadow:none;
  8716. -webkit-box-shadow:none;
  8717. box-shadow:none;
  8718. font-family:"Microsoft Tai Le", sans-serif;
  8719. font-weight:400;
  8720. font-style:normal;
  8721. font-size:14px;
  8722. color:rgba(0, 0, 0, 0.6470588235294118);
  8723. text-align:left;
  8724. line-height:106px;
  8725. }
  8726. #u2986 {
  8727. border-width:0px;
  8728. position:absolute;
  8729. left:489px;
  8730. top:833px;
  8731. width:187px;
  8732. height:848px;
  8733. display:flex;
  8734. font-family:"Microsoft Tai Le", sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:14px;
  8738. color:rgba(0, 0, 0, 0.6470588235294118);
  8739. text-align:left;
  8740. line-height:106px;
  8741. }
  8742. #u2986 .text {
  8743. position:absolute;
  8744. align-self:flex-start;
  8745. padding:0px 16px 0px 16px;
  8746. box-sizing:border-box;
  8747. width:100%;
  8748. }
  8749. #u2986_text {
  8750. border-width:0px;
  8751. word-wrap:break-word;
  8752. text-transform:none;
  8753. }
  8754. #u2987 {
  8755. border-width:0px;
  8756. position:absolute;
  8757. left:0px;
  8758. top:0px;
  8759. width:0px;
  8760. height:0px;
  8761. }
  8762. #u2988_div {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:95px;
  8768. height:54px;
  8769. background:inherit;
  8770. background-color:rgba(255, 255, 255, 0);
  8771. border:none;
  8772. border-left:0px;
  8773. border-top:0px;
  8774. border-right:0px;
  8775. border-radius:4px;
  8776. border-bottom-right-radius:0px;
  8777. border-bottom-left-radius:0px;
  8778. -moz-box-shadow:none;
  8779. -webkit-box-shadow:none;
  8780. box-shadow:none;
  8781. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8782. font-weight:700;
  8783. font-style:normal;
  8784. font-size:14px;
  8785. color:rgba(0, 0, 0, 0.8470588235294118);
  8786. text-align:left;
  8787. line-height:53px;
  8788. }
  8789. #u2988 {
  8790. border-width:0px;
  8791. position:absolute;
  8792. left:638px;
  8793. top:779px;
  8794. width:95px;
  8795. height:54px;
  8796. display:flex;
  8797. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8798. font-weight:700;
  8799. font-style:normal;
  8800. font-size:14px;
  8801. color:rgba(0, 0, 0, 0.8470588235294118);
  8802. text-align:left;
  8803. line-height:53px;
  8804. }
  8805. #u2988 .text {
  8806. position:absolute;
  8807. align-self:center;
  8808. padding:0px 16px 0px 16px;
  8809. box-sizing:border-box;
  8810. width:100%;
  8811. }
  8812. #u2988_text {
  8813. border-width:0px;
  8814. word-wrap:break-word;
  8815. text-transform:none;
  8816. }
  8817. #u2989_div {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:0px;
  8821. top:0px;
  8822. width:87px;
  8823. height:848px;
  8824. background:inherit;
  8825. background-color:rgba(255, 255, 255, 0);
  8826. border:none;
  8827. border-left:0px;
  8828. border-top:0px;
  8829. border-right:0px;
  8830. border-radius:4px;
  8831. border-bottom-right-radius:0px;
  8832. border-bottom-left-radius:0px;
  8833. -moz-box-shadow:none;
  8834. -webkit-box-shadow:none;
  8835. box-shadow:none;
  8836. font-family:"Microsoft Tai Le", sans-serif;
  8837. font-weight:400;
  8838. font-style:normal;
  8839. font-size:14px;
  8840. color:rgba(0, 0, 0, 0.6470588235294118);
  8841. text-align:left;
  8842. line-height:106px;
  8843. }
  8844. #u2989 {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:638px;
  8848. top:833px;
  8849. width:87px;
  8850. height:848px;
  8851. display:flex;
  8852. font-family:"Microsoft Tai Le", sans-serif;
  8853. font-weight:400;
  8854. font-style:normal;
  8855. font-size:14px;
  8856. color:rgba(0, 0, 0, 0.6470588235294118);
  8857. text-align:left;
  8858. line-height:106px;
  8859. }
  8860. #u2989 .text {
  8861. position:absolute;
  8862. align-self:flex-start;
  8863. padding:0px 16px 0px 16px;
  8864. box-sizing:border-box;
  8865. width:100%;
  8866. }
  8867. #u2989_text {
  8868. border-width:0px;
  8869. word-wrap:break-word;
  8870. text-transform:none;
  8871. }
  8872. #u2990 {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:0px;
  8878. height:0px;
  8879. }
  8880. #u2991_div {
  8881. border-width:0px;
  8882. position:absolute;
  8883. left:0px;
  8884. top:0px;
  8885. width:95px;
  8886. height:54px;
  8887. background:inherit;
  8888. background-color:rgba(255, 255, 255, 0);
  8889. border:none;
  8890. border-left:0px;
  8891. border-top:0px;
  8892. border-right:0px;
  8893. border-radius:4px;
  8894. border-bottom-right-radius:0px;
  8895. border-bottom-left-radius:0px;
  8896. -moz-box-shadow:none;
  8897. -webkit-box-shadow:none;
  8898. box-shadow:none;
  8899. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8900. font-weight:700;
  8901. font-style:normal;
  8902. font-size:14px;
  8903. color:rgba(0, 0, 0, 0.8470588235294118);
  8904. text-align:left;
  8905. line-height:53px;
  8906. }
  8907. #u2991 {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:734px;
  8911. top:779px;
  8912. width:95px;
  8913. height:54px;
  8914. display:flex;
  8915. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  8916. font-weight:700;
  8917. font-style:normal;
  8918. font-size:14px;
  8919. color:rgba(0, 0, 0, 0.8470588235294118);
  8920. text-align:left;
  8921. line-height:53px;
  8922. }
  8923. #u2991 .text {
  8924. position:absolute;
  8925. align-self:center;
  8926. padding:0px 16px 0px 16px;
  8927. box-sizing:border-box;
  8928. width:100%;
  8929. }
  8930. #u2991_text {
  8931. border-width:0px;
  8932. word-wrap:break-word;
  8933. text-transform:none;
  8934. }
  8935. #u2992_div {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:87px;
  8941. height:106px;
  8942. background:inherit;
  8943. background-color:rgba(255, 255, 255, 0);
  8944. border:none;
  8945. border-left:0px;
  8946. border-top:0px;
  8947. border-right:0px;
  8948. border-radius:4px;
  8949. border-bottom-right-radius:0px;
  8950. border-bottom-left-radius:0px;
  8951. -moz-box-shadow:none;
  8952. -webkit-box-shadow:none;
  8953. box-shadow:none;
  8954. font-family:"Microsoft Tai Le", sans-serif;
  8955. font-weight:400;
  8956. font-style:normal;
  8957. font-size:14px;
  8958. color:rgba(0, 0, 0, 0.6470588235294118);
  8959. text-align:left;
  8960. line-height:106px;
  8961. }
  8962. #u2992 {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:734px;
  8966. top:833px;
  8967. width:87px;
  8968. height:106px;
  8969. display:flex;
  8970. font-family:"Microsoft Tai Le", sans-serif;
  8971. font-weight:400;
  8972. font-style:normal;
  8973. font-size:14px;
  8974. color:rgba(0, 0, 0, 0.6470588235294118);
  8975. text-align:left;
  8976. line-height:106px;
  8977. }
  8978. #u2992 .text {
  8979. position:absolute;
  8980. align-self:flex-start;
  8981. padding:0px 16px 0px 16px;
  8982. box-sizing:border-box;
  8983. width:100%;
  8984. }
  8985. #u2992_text {
  8986. border-width:0px;
  8987. word-wrap:break-word;
  8988. text-transform:none;
  8989. visibility:hidden;
  8990. }
  8991. #u2993_div {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:0px;
  8995. top:0px;
  8996. width:42px;
  8997. height:16px;
  8998. background:inherit;
  8999. background-color:rgba(255, 255, 255, 0);
  9000. border:none;
  9001. border-radius:0px;
  9002. -moz-box-shadow:none;
  9003. -webkit-box-shadow:none;
  9004. box-shadow:none;
  9005. }
  9006. #u2993 {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:743px;
  9010. top:878px;
  9011. width:42px;
  9012. height:16px;
  9013. display:flex;
  9014. }
  9015. #u2993 .text {
  9016. position:absolute;
  9017. align-self:flex-start;
  9018. padding:0px 0px 0px 0px;
  9019. box-sizing:border-box;
  9020. width:100%;
  9021. }
  9022. #u2993_text {
  9023. border-width:0px;
  9024. white-space:nowrap;
  9025. text-transform:none;
  9026. }
  9027. #u2994_div {
  9028. border-width:0px;
  9029. position:absolute;
  9030. left:0px;
  9031. top:0px;
  9032. width:8px;
  9033. height:16px;
  9034. background:inherit;
  9035. background-color:rgba(255, 255, 255, 0);
  9036. border:none;
  9037. border-radius:0px;
  9038. -moz-box-shadow:none;
  9039. -webkit-box-shadow:none;
  9040. box-shadow:none;
  9041. }
  9042. #u2994 {
  9043. border-width:0px;
  9044. position:absolute;
  9045. left:743px;
  9046. top:984px;
  9047. width:8px;
  9048. height:16px;
  9049. display:flex;
  9050. }
  9051. #u2994 .text {
  9052. position:absolute;
  9053. align-self:flex-start;
  9054. padding:0px 0px 0px 0px;
  9055. box-sizing:border-box;
  9056. width:100%;
  9057. }
  9058. #u2994_text {
  9059. border-width:0px;
  9060. white-space:nowrap;
  9061. text-transform:none;
  9062. }
  9063. #u2995_div {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:8px;
  9069. height:16px;
  9070. background:inherit;
  9071. background-color:rgba(255, 255, 255, 0);
  9072. border:none;
  9073. border-radius:0px;
  9074. -moz-box-shadow:none;
  9075. -webkit-box-shadow:none;
  9076. box-shadow:none;
  9077. }
  9078. #u2995 {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:743px;
  9082. top:1087px;
  9083. width:8px;
  9084. height:16px;
  9085. display:flex;
  9086. }
  9087. #u2995 .text {
  9088. position:absolute;
  9089. align-self:flex-start;
  9090. padding:0px 0px 0px 0px;
  9091. box-sizing:border-box;
  9092. width:100%;
  9093. }
  9094. #u2995_text {
  9095. border-width:0px;
  9096. white-space:nowrap;
  9097. text-transform:none;
  9098. }
  9099. #u2996_div {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:0px;
  9103. top:0px;
  9104. width:16px;
  9105. height:16px;
  9106. background:inherit;
  9107. background-color:rgba(255, 255, 255, 0);
  9108. border:none;
  9109. border-radius:0px;
  9110. -moz-box-shadow:none;
  9111. -webkit-box-shadow:none;
  9112. box-shadow:none;
  9113. }
  9114. #u2996 {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:743px;
  9118. top:1190px;
  9119. width:16px;
  9120. height:16px;
  9121. display:flex;
  9122. }
  9123. #u2996 .text {
  9124. position:absolute;
  9125. align-self:flex-start;
  9126. padding:0px 0px 0px 0px;
  9127. box-sizing:border-box;
  9128. width:100%;
  9129. }
  9130. #u2996_text {
  9131. border-width:0px;
  9132. white-space:nowrap;
  9133. text-transform:none;
  9134. }
  9135. #u2997_div {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:0px;
  9139. top:0px;
  9140. width:16px;
  9141. height:16px;
  9142. background:inherit;
  9143. background-color:rgba(255, 255, 255, 0);
  9144. border:none;
  9145. border-radius:0px;
  9146. -moz-box-shadow:none;
  9147. -webkit-box-shadow:none;
  9148. box-shadow:none;
  9149. }
  9150. #u2997 {
  9151. border-width:0px;
  9152. position:absolute;
  9153. left:743px;
  9154. top:1409px;
  9155. width:16px;
  9156. height:16px;
  9157. display:flex;
  9158. }
  9159. #u2997 .text {
  9160. position:absolute;
  9161. align-self:flex-start;
  9162. padding:0px 0px 0px 0px;
  9163. box-sizing:border-box;
  9164. width:100%;
  9165. }
  9166. #u2997_text {
  9167. border-width:0px;
  9168. white-space:nowrap;
  9169. text-transform:none;
  9170. }
  9171. #u2998_div {
  9172. border-width:0px;
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:8px;
  9177. height:16px;
  9178. background:inherit;
  9179. background-color:rgba(255, 255, 255, 0);
  9180. border:none;
  9181. border-radius:0px;
  9182. -moz-box-shadow:none;
  9183. -webkit-box-shadow:none;
  9184. box-shadow:none;
  9185. }
  9186. #u2998 {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:743px;
  9190. top:1516px;
  9191. width:8px;
  9192. height:16px;
  9193. display:flex;
  9194. }
  9195. #u2998 .text {
  9196. position:absolute;
  9197. align-self:flex-start;
  9198. padding:0px 0px 0px 0px;
  9199. box-sizing:border-box;
  9200. width:100%;
  9201. }
  9202. #u2998_text {
  9203. border-width:0px;
  9204. white-space:nowrap;
  9205. text-transform:none;
  9206. }
  9207. #u2999_div {
  9208. border-width:0px;
  9209. position:absolute;
  9210. left:0px;
  9211. top:0px;
  9212. width:16px;
  9213. height:16px;
  9214. background:inherit;
  9215. background-color:rgba(255, 255, 255, 0);
  9216. border:none;
  9217. border-radius:0px;
  9218. -moz-box-shadow:none;
  9219. -webkit-box-shadow:none;
  9220. box-shadow:none;
  9221. }
  9222. #u2999 {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:743px;
  9226. top:1625px;
  9227. width:16px;
  9228. height:16px;
  9229. display:flex;
  9230. }
  9231. #u2999 .text {
  9232. position:absolute;
  9233. align-self:flex-start;
  9234. padding:0px 0px 0px 0px;
  9235. box-sizing:border-box;
  9236. width:100%;
  9237. }
  9238. #u2999_text {
  9239. border-width:0px;
  9240. white-space:nowrap;
  9241. text-transform:none;
  9242. }
  9243. #u3000_div {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:0px;
  9247. top:0px;
  9248. width:8px;
  9249. height:16px;
  9250. background:inherit;
  9251. background-color:rgba(255, 255, 255, 0);
  9252. border:none;
  9253. border-radius:0px;
  9254. -moz-box-shadow:none;
  9255. -webkit-box-shadow:none;
  9256. box-shadow:none;
  9257. }
  9258. #u3000 {
  9259. border-width:0px;
  9260. position:absolute;
  9261. left:743px;
  9262. top:1302px;
  9263. width:8px;
  9264. height:16px;
  9265. display:flex;
  9266. }
  9267. #u3000 .text {
  9268. position:absolute;
  9269. align-self:flex-start;
  9270. padding:0px 0px 0px 0px;
  9271. box-sizing:border-box;
  9272. width:100%;
  9273. }
  9274. #u3000_text {
  9275. border-width:0px;
  9276. white-space:nowrap;
  9277. text-transform:none;
  9278. }
  9279. #u3001 {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:0px;
  9283. top:0px;
  9284. width:0px;
  9285. height:0px;
  9286. }
  9287. #u3002_div {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:95px;
  9293. height:54px;
  9294. background:inherit;
  9295. background-color:rgba(255, 255, 255, 0);
  9296. border:none;
  9297. border-left:0px;
  9298. border-top:0px;
  9299. border-right:0px;
  9300. border-radius:4px;
  9301. border-bottom-right-radius:0px;
  9302. border-bottom-left-radius:0px;
  9303. -moz-box-shadow:none;
  9304. -webkit-box-shadow:none;
  9305. box-shadow:none;
  9306. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9307. font-weight:700;
  9308. font-style:normal;
  9309. font-size:14px;
  9310. color:rgba(0, 0, 0, 0.8470588235294118);
  9311. text-align:left;
  9312. line-height:53px;
  9313. }
  9314. #u3002 {
  9315. border-width:0px;
  9316. position:absolute;
  9317. left:924px;
  9318. top:779px;
  9319. width:95px;
  9320. height:54px;
  9321. display:flex;
  9322. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9323. font-weight:700;
  9324. font-style:normal;
  9325. font-size:14px;
  9326. color:rgba(0, 0, 0, 0.8470588235294118);
  9327. text-align:left;
  9328. line-height:53px;
  9329. }
  9330. #u3002 .text {
  9331. position:absolute;
  9332. align-self:center;
  9333. padding:0px 16px 0px 16px;
  9334. box-sizing:border-box;
  9335. width:100%;
  9336. }
  9337. #u3002_text {
  9338. border-width:0px;
  9339. word-wrap:break-word;
  9340. text-transform:none;
  9341. }
  9342. #u3003_div {
  9343. border-width:0px;
  9344. position:absolute;
  9345. left:0px;
  9346. top:0px;
  9347. width:87px;
  9348. height:848px;
  9349. background:inherit;
  9350. background-color:rgba(255, 255, 255, 0);
  9351. border:none;
  9352. border-left:0px;
  9353. border-top:0px;
  9354. border-right:0px;
  9355. border-radius:4px;
  9356. border-bottom-right-radius:0px;
  9357. border-bottom-left-radius:0px;
  9358. -moz-box-shadow:none;
  9359. -webkit-box-shadow:none;
  9360. box-shadow:none;
  9361. font-family:"Microsoft Tai Le", sans-serif;
  9362. font-weight:400;
  9363. font-style:normal;
  9364. font-size:14px;
  9365. color:rgba(0, 0, 0, 0.6470588235294118);
  9366. text-align:left;
  9367. line-height:106px;
  9368. }
  9369. #u3003 {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:932px;
  9373. top:833px;
  9374. width:87px;
  9375. height:848px;
  9376. display:flex;
  9377. font-family:"Microsoft Tai Le", sans-serif;
  9378. font-weight:400;
  9379. font-style:normal;
  9380. font-size:14px;
  9381. color:rgba(0, 0, 0, 0.6470588235294118);
  9382. text-align:left;
  9383. line-height:106px;
  9384. }
  9385. #u3003 .text {
  9386. position:absolute;
  9387. align-self:flex-start;
  9388. padding:0px 16px 0px 16px;
  9389. box-sizing:border-box;
  9390. width:100%;
  9391. }
  9392. #u3003_text {
  9393. border-width:0px;
  9394. word-wrap:break-word;
  9395. text-transform:none;
  9396. }
  9397. #u3004 {
  9398. border-width:0px;
  9399. position:absolute;
  9400. left:0px;
  9401. top:0px;
  9402. width:0px;
  9403. height:0px;
  9404. }
  9405. #u3005_div {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:0px;
  9409. top:0px;
  9410. width:95px;
  9411. height:54px;
  9412. background:inherit;
  9413. background-color:rgba(255, 255, 255, 0);
  9414. border:none;
  9415. border-left:0px;
  9416. border-top:0px;
  9417. border-right:0px;
  9418. border-radius:4px;
  9419. border-bottom-right-radius:0px;
  9420. border-bottom-left-radius:0px;
  9421. -moz-box-shadow:none;
  9422. -webkit-box-shadow:none;
  9423. box-shadow:none;
  9424. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9425. font-weight:700;
  9426. font-style:normal;
  9427. font-size:14px;
  9428. color:rgba(0, 0, 0, 0.8470588235294118);
  9429. text-align:left;
  9430. line-height:53px;
  9431. }
  9432. #u3005 {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:829px;
  9436. top:779px;
  9437. width:95px;
  9438. height:54px;
  9439. display:flex;
  9440. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9441. font-weight:700;
  9442. font-style:normal;
  9443. font-size:14px;
  9444. color:rgba(0, 0, 0, 0.8470588235294118);
  9445. text-align:left;
  9446. line-height:53px;
  9447. }
  9448. #u3005 .text {
  9449. position:absolute;
  9450. align-self:center;
  9451. padding:0px 16px 0px 16px;
  9452. box-sizing:border-box;
  9453. width:100%;
  9454. }
  9455. #u3005_text {
  9456. border-width:0px;
  9457. word-wrap:break-word;
  9458. text-transform:none;
  9459. }
  9460. #u3006_div {
  9461. border-width:0px;
  9462. position:absolute;
  9463. left:0px;
  9464. top:0px;
  9465. width:87px;
  9466. height:106px;
  9467. background:inherit;
  9468. background-color:rgba(255, 255, 255, 0);
  9469. border:none;
  9470. border-left:0px;
  9471. border-top:0px;
  9472. border-right:0px;
  9473. border-radius:4px;
  9474. border-bottom-right-radius:0px;
  9475. border-bottom-left-radius:0px;
  9476. -moz-box-shadow:none;
  9477. -webkit-box-shadow:none;
  9478. box-shadow:none;
  9479. font-family:"Microsoft Tai Le", sans-serif;
  9480. font-weight:400;
  9481. font-style:normal;
  9482. font-size:14px;
  9483. color:rgba(0, 0, 0, 0.6470588235294118);
  9484. text-align:left;
  9485. line-height:106px;
  9486. }
  9487. #u3006 {
  9488. border-width:0px;
  9489. position:absolute;
  9490. left:829px;
  9491. top:833px;
  9492. width:87px;
  9493. height:106px;
  9494. display:flex;
  9495. font-family:"Microsoft Tai Le", sans-serif;
  9496. font-weight:400;
  9497. font-style:normal;
  9498. font-size:14px;
  9499. color:rgba(0, 0, 0, 0.6470588235294118);
  9500. text-align:left;
  9501. line-height:106px;
  9502. }
  9503. #u3006 .text {
  9504. position:absolute;
  9505. align-self:flex-start;
  9506. padding:0px 16px 0px 16px;
  9507. box-sizing:border-box;
  9508. width:100%;
  9509. }
  9510. #u3006_text {
  9511. border-width:0px;
  9512. word-wrap:break-word;
  9513. text-transform:none;
  9514. visibility:hidden;
  9515. }
  9516. #u3007_div {
  9517. border-width:0px;
  9518. position:absolute;
  9519. left:0px;
  9520. top:0px;
  9521. width:32px;
  9522. height:16px;
  9523. background:inherit;
  9524. background-color:rgba(255, 255, 255, 0);
  9525. border:none;
  9526. border-radius:0px;
  9527. -moz-box-shadow:none;
  9528. -webkit-box-shadow:none;
  9529. box-shadow:none;
  9530. }
  9531. #u3007 {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:851px;
  9535. top:878px;
  9536. width:32px;
  9537. height:16px;
  9538. display:flex;
  9539. }
  9540. #u3007 .text {
  9541. position:absolute;
  9542. align-self:flex-start;
  9543. padding:0px 0px 0px 0px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u3007_text {
  9548. border-width:0px;
  9549. white-space:nowrap;
  9550. text-transform:none;
  9551. }
  9552. #u3008_div {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:0px;
  9556. top:0px;
  9557. width:24px;
  9558. height:16px;
  9559. background:inherit;
  9560. background-color:rgba(255, 255, 255, 0);
  9561. border:none;
  9562. border-radius:0px;
  9563. -moz-box-shadow:none;
  9564. -webkit-box-shadow:none;
  9565. box-shadow:none;
  9566. }
  9567. #u3008 {
  9568. border-width:0px;
  9569. position:absolute;
  9570. left:851px;
  9571. top:984px;
  9572. width:24px;
  9573. height:16px;
  9574. display:flex;
  9575. }
  9576. #u3008 .text {
  9577. position:absolute;
  9578. align-self:flex-start;
  9579. padding:0px 0px 0px 0px;
  9580. box-sizing:border-box;
  9581. width:100%;
  9582. }
  9583. #u3008_text {
  9584. border-width:0px;
  9585. white-space:nowrap;
  9586. text-transform:none;
  9587. }
  9588. #u3009_div {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:0px;
  9592. top:0px;
  9593. width:24px;
  9594. height:16px;
  9595. background:inherit;
  9596. background-color:rgba(255, 255, 255, 0);
  9597. border:none;
  9598. border-radius:0px;
  9599. -moz-box-shadow:none;
  9600. -webkit-box-shadow:none;
  9601. box-shadow:none;
  9602. }
  9603. #u3009 {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:851px;
  9607. top:1087px;
  9608. width:24px;
  9609. height:16px;
  9610. display:flex;
  9611. }
  9612. #u3009 .text {
  9613. position:absolute;
  9614. align-self:flex-start;
  9615. padding:0px 0px 0px 0px;
  9616. box-sizing:border-box;
  9617. width:100%;
  9618. }
  9619. #u3009_text {
  9620. border-width:0px;
  9621. white-space:nowrap;
  9622. text-transform:none;
  9623. }
  9624. #u3010_div {
  9625. border-width:0px;
  9626. position:absolute;
  9627. left:0px;
  9628. top:0px;
  9629. width:24px;
  9630. height:16px;
  9631. background:inherit;
  9632. background-color:rgba(255, 255, 255, 0);
  9633. border:none;
  9634. border-radius:0px;
  9635. -moz-box-shadow:none;
  9636. -webkit-box-shadow:none;
  9637. box-shadow:none;
  9638. }
  9639. #u3010 {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:851px;
  9643. top:1190px;
  9644. width:24px;
  9645. height:16px;
  9646. display:flex;
  9647. }
  9648. #u3010 .text {
  9649. position:absolute;
  9650. align-self:flex-start;
  9651. padding:0px 0px 0px 0px;
  9652. box-sizing:border-box;
  9653. width:100%;
  9654. }
  9655. #u3010_text {
  9656. border-width:0px;
  9657. white-space:nowrap;
  9658. text-transform:none;
  9659. }
  9660. #u3011_div {
  9661. border-width:0px;
  9662. position:absolute;
  9663. left:0px;
  9664. top:0px;
  9665. width:24px;
  9666. height:16px;
  9667. background:inherit;
  9668. background-color:rgba(255, 255, 255, 0);
  9669. border:none;
  9670. border-radius:0px;
  9671. -moz-box-shadow:none;
  9672. -webkit-box-shadow:none;
  9673. box-shadow:none;
  9674. }
  9675. #u3011 {
  9676. border-width:0px;
  9677. position:absolute;
  9678. left:851px;
  9679. top:1409px;
  9680. width:24px;
  9681. height:16px;
  9682. display:flex;
  9683. }
  9684. #u3011 .text {
  9685. position:absolute;
  9686. align-self:flex-start;
  9687. padding:0px 0px 0px 0px;
  9688. box-sizing:border-box;
  9689. width:100%;
  9690. }
  9691. #u3011_text {
  9692. border-width:0px;
  9693. white-space:nowrap;
  9694. text-transform:none;
  9695. }
  9696. #u3012_div {
  9697. border-width:0px;
  9698. position:absolute;
  9699. left:0px;
  9700. top:0px;
  9701. width:8px;
  9702. height:16px;
  9703. background:inherit;
  9704. background-color:rgba(255, 255, 255, 0);
  9705. border:none;
  9706. border-radius:0px;
  9707. -moz-box-shadow:none;
  9708. -webkit-box-shadow:none;
  9709. box-shadow:none;
  9710. }
  9711. #u3012 {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:851px;
  9715. top:1516px;
  9716. width:8px;
  9717. height:16px;
  9718. display:flex;
  9719. }
  9720. #u3012 .text {
  9721. position:absolute;
  9722. align-self:flex-start;
  9723. padding:0px 0px 0px 0px;
  9724. box-sizing:border-box;
  9725. width:100%;
  9726. }
  9727. #u3012_text {
  9728. border-width:0px;
  9729. white-space:nowrap;
  9730. text-transform:none;
  9731. }
  9732. #u3013_div {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:0px;
  9736. top:0px;
  9737. width:16px;
  9738. height:16px;
  9739. background:inherit;
  9740. background-color:rgba(255, 255, 255, 0);
  9741. border:none;
  9742. border-radius:0px;
  9743. -moz-box-shadow:none;
  9744. -webkit-box-shadow:none;
  9745. box-shadow:none;
  9746. }
  9747. #u3013 {
  9748. border-width:0px;
  9749. position:absolute;
  9750. left:851px;
  9751. top:1625px;
  9752. width:16px;
  9753. height:16px;
  9754. display:flex;
  9755. }
  9756. #u3013 .text {
  9757. position:absolute;
  9758. align-self:flex-start;
  9759. padding:0px 0px 0px 0px;
  9760. box-sizing:border-box;
  9761. width:100%;
  9762. }
  9763. #u3013_text {
  9764. border-width:0px;
  9765. white-space:nowrap;
  9766. text-transform:none;
  9767. }
  9768. #u3014_div {
  9769. border-width:0px;
  9770. position:absolute;
  9771. left:0px;
  9772. top:0px;
  9773. width:16px;
  9774. height:16px;
  9775. background:inherit;
  9776. background-color:rgba(255, 255, 255, 0);
  9777. border:none;
  9778. border-radius:0px;
  9779. -moz-box-shadow:none;
  9780. -webkit-box-shadow:none;
  9781. box-shadow:none;
  9782. }
  9783. #u3014 {
  9784. border-width:0px;
  9785. position:absolute;
  9786. left:851px;
  9787. top:1302px;
  9788. width:16px;
  9789. height:16px;
  9790. display:flex;
  9791. }
  9792. #u3014 .text {
  9793. position:absolute;
  9794. align-self:flex-start;
  9795. padding:0px 0px 0px 0px;
  9796. box-sizing:border-box;
  9797. width:100%;
  9798. }
  9799. #u3014_text {
  9800. border-width:0px;
  9801. white-space:nowrap;
  9802. text-transform:none;
  9803. }
  9804. #u3015 {
  9805. border-width:0px;
  9806. position:absolute;
  9807. left:0px;
  9808. top:0px;
  9809. width:0px;
  9810. height:0px;
  9811. }
  9812. #u3016_div {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:0px;
  9816. top:0px;
  9817. width:128px;
  9818. height:54px;
  9819. background:inherit;
  9820. background-color:rgba(255, 255, 255, 0);
  9821. border:none;
  9822. border-left:0px;
  9823. border-top:0px;
  9824. border-right:0px;
  9825. border-radius:4px;
  9826. border-bottom-right-radius:0px;
  9827. border-bottom-left-radius:0px;
  9828. -moz-box-shadow:none;
  9829. -webkit-box-shadow:none;
  9830. box-shadow:none;
  9831. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9832. font-weight:700;
  9833. font-style:normal;
  9834. font-size:14px;
  9835. color:rgba(0, 0, 0, 0.8470588235294118);
  9836. text-align:left;
  9837. line-height:53px;
  9838. }
  9839. #u3016 {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:1216px;
  9843. top:779px;
  9844. width:128px;
  9845. height:54px;
  9846. display:flex;
  9847. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  9848. font-weight:700;
  9849. font-style:normal;
  9850. font-size:14px;
  9851. color:rgba(0, 0, 0, 0.8470588235294118);
  9852. text-align:left;
  9853. line-height:53px;
  9854. }
  9855. #u3016 .text {
  9856. position:absolute;
  9857. align-self:center;
  9858. padding:0px 16px 0px 16px;
  9859. box-sizing:border-box;
  9860. width:100%;
  9861. }
  9862. #u3016_text {
  9863. border-width:0px;
  9864. word-wrap:break-word;
  9865. text-transform:none;
  9866. }
  9867. #u3017_div {
  9868. border-width:0px;
  9869. position:absolute;
  9870. left:0px;
  9871. top:0px;
  9872. width:137px;
  9873. height:106px;
  9874. background:inherit;
  9875. background-color:rgba(255, 255, 255, 0);
  9876. border:none;
  9877. border-left:0px;
  9878. border-top:0px;
  9879. border-right:0px;
  9880. border-radius:4px;
  9881. border-bottom-right-radius:0px;
  9882. border-bottom-left-radius:0px;
  9883. -moz-box-shadow:none;
  9884. -webkit-box-shadow:none;
  9885. box-shadow:none;
  9886. font-family:"Microsoft Tai Le", sans-serif;
  9887. font-weight:400;
  9888. font-style:normal;
  9889. font-size:14px;
  9890. color:rgba(0, 0, 0, 0.6470588235294118);
  9891. text-align:left;
  9892. line-height:106px;
  9893. }
  9894. #u3017 {
  9895. border-width:0px;
  9896. position:absolute;
  9897. left:1216px;
  9898. top:833px;
  9899. width:137px;
  9900. height:106px;
  9901. display:flex;
  9902. font-family:"Microsoft Tai Le", sans-serif;
  9903. font-weight:400;
  9904. font-style:normal;
  9905. font-size:14px;
  9906. color:rgba(0, 0, 0, 0.6470588235294118);
  9907. text-align:left;
  9908. line-height:106px;
  9909. }
  9910. #u3017 .text {
  9911. position:absolute;
  9912. align-self:flex-start;
  9913. padding:0px 16px 0px 16px;
  9914. box-sizing:border-box;
  9915. width:100%;
  9916. }
  9917. #u3017_text {
  9918. border-width:0px;
  9919. word-wrap:break-word;
  9920. text-transform:none;
  9921. visibility:hidden;
  9922. }
  9923. #u3018_div {
  9924. border-width:0px;
  9925. position:absolute;
  9926. left:0px;
  9927. top:0px;
  9928. width:16px;
  9929. height:16px;
  9930. background:inherit;
  9931. background-color:rgba(255, 255, 255, 0);
  9932. border:none;
  9933. border-radius:0px;
  9934. -moz-box-shadow:none;
  9935. -webkit-box-shadow:none;
  9936. box-shadow:none;
  9937. }
  9938. #u3018 {
  9939. border-width:0px;
  9940. position:absolute;
  9941. left:1264px;
  9942. top:876px;
  9943. width:16px;
  9944. height:16px;
  9945. display:flex;
  9946. }
  9947. #u3018 .text {
  9948. position:absolute;
  9949. align-self:flex-start;
  9950. padding:0px 0px 0px 0px;
  9951. box-sizing:border-box;
  9952. width:100%;
  9953. }
  9954. #u3018_text {
  9955. border-width:0px;
  9956. white-space:nowrap;
  9957. text-transform:none;
  9958. }
  9959. #u3019_div {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:16px;
  9965. height:16px;
  9966. background:inherit;
  9967. background-color:rgba(255, 255, 255, 0);
  9968. border:none;
  9969. border-radius:0px;
  9970. -moz-box-shadow:none;
  9971. -webkit-box-shadow:none;
  9972. box-shadow:none;
  9973. }
  9974. #u3019 {
  9975. border-width:0px;
  9976. position:absolute;
  9977. left:1264px;
  9978. top:982px;
  9979. width:16px;
  9980. height:16px;
  9981. display:flex;
  9982. }
  9983. #u3019 .text {
  9984. position:absolute;
  9985. align-self:flex-start;
  9986. padding:0px 0px 0px 0px;
  9987. box-sizing:border-box;
  9988. width:100%;
  9989. }
  9990. #u3019_text {
  9991. border-width:0px;
  9992. white-space:nowrap;
  9993. text-transform:none;
  9994. }
  9995. #u3020_div {
  9996. border-width:0px;
  9997. position:absolute;
  9998. left:0px;
  9999. top:0px;
  10000. width:16px;
  10001. height:16px;
  10002. background:inherit;
  10003. background-color:rgba(255, 255, 255, 0);
  10004. border:none;
  10005. border-radius:0px;
  10006. -moz-box-shadow:none;
  10007. -webkit-box-shadow:none;
  10008. box-shadow:none;
  10009. }
  10010. #u3020 {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:1264px;
  10014. top:1085px;
  10015. width:16px;
  10016. height:16px;
  10017. display:flex;
  10018. }
  10019. #u3020 .text {
  10020. position:absolute;
  10021. align-self:flex-start;
  10022. padding:0px 0px 0px 0px;
  10023. box-sizing:border-box;
  10024. width:100%;
  10025. }
  10026. #u3020_text {
  10027. border-width:0px;
  10028. white-space:nowrap;
  10029. text-transform:none;
  10030. }
  10031. #u3021_div {
  10032. border-width:0px;
  10033. position:absolute;
  10034. left:0px;
  10035. top:0px;
  10036. width:16px;
  10037. height:16px;
  10038. background:inherit;
  10039. background-color:rgba(255, 255, 255, 0);
  10040. border:none;
  10041. border-radius:0px;
  10042. -moz-box-shadow:none;
  10043. -webkit-box-shadow:none;
  10044. box-shadow:none;
  10045. }
  10046. #u3021 {
  10047. border-width:0px;
  10048. position:absolute;
  10049. left:1264px;
  10050. top:1188px;
  10051. width:16px;
  10052. height:16px;
  10053. display:flex;
  10054. }
  10055. #u3021 .text {
  10056. position:absolute;
  10057. align-self:flex-start;
  10058. padding:0px 0px 0px 0px;
  10059. box-sizing:border-box;
  10060. width:100%;
  10061. }
  10062. #u3021_text {
  10063. border-width:0px;
  10064. white-space:nowrap;
  10065. text-transform:none;
  10066. }
  10067. #u3022_div {
  10068. border-width:0px;
  10069. position:absolute;
  10070. left:0px;
  10071. top:0px;
  10072. width:16px;
  10073. height:16px;
  10074. background:inherit;
  10075. background-color:rgba(255, 255, 255, 0);
  10076. border:none;
  10077. border-radius:0px;
  10078. -moz-box-shadow:none;
  10079. -webkit-box-shadow:none;
  10080. box-shadow:none;
  10081. }
  10082. #u3022 {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:1264px;
  10086. top:1407px;
  10087. width:16px;
  10088. height:16px;
  10089. display:flex;
  10090. }
  10091. #u3022 .text {
  10092. position:absolute;
  10093. align-self:flex-start;
  10094. padding:0px 0px 0px 0px;
  10095. box-sizing:border-box;
  10096. width:100%;
  10097. }
  10098. #u3022_text {
  10099. border-width:0px;
  10100. white-space:nowrap;
  10101. text-transform:none;
  10102. }
  10103. #u3023_div {
  10104. border-width:0px;
  10105. position:absolute;
  10106. left:0px;
  10107. top:0px;
  10108. width:8px;
  10109. height:16px;
  10110. background:inherit;
  10111. background-color:rgba(255, 255, 255, 0);
  10112. border:none;
  10113. border-radius:0px;
  10114. -moz-box-shadow:none;
  10115. -webkit-box-shadow:none;
  10116. box-shadow:none;
  10117. }
  10118. #u3023 {
  10119. border-width:0px;
  10120. position:absolute;
  10121. left:1264px;
  10122. top:1514px;
  10123. width:8px;
  10124. height:16px;
  10125. display:flex;
  10126. }
  10127. #u3023 .text {
  10128. position:absolute;
  10129. align-self:flex-start;
  10130. padding:0px 0px 0px 0px;
  10131. box-sizing:border-box;
  10132. width:100%;
  10133. }
  10134. #u3023_text {
  10135. border-width:0px;
  10136. white-space:nowrap;
  10137. text-transform:none;
  10138. }
  10139. #u3024_div {
  10140. border-width:0px;
  10141. position:absolute;
  10142. left:0px;
  10143. top:0px;
  10144. width:8px;
  10145. height:16px;
  10146. background:inherit;
  10147. background-color:rgba(255, 255, 255, 0);
  10148. border:none;
  10149. border-radius:0px;
  10150. -moz-box-shadow:none;
  10151. -webkit-box-shadow:none;
  10152. box-shadow:none;
  10153. }
  10154. #u3024 {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:1264px;
  10158. top:1623px;
  10159. width:8px;
  10160. height:16px;
  10161. display:flex;
  10162. }
  10163. #u3024 .text {
  10164. position:absolute;
  10165. align-self:flex-start;
  10166. padding:0px 0px 0px 0px;
  10167. box-sizing:border-box;
  10168. width:100%;
  10169. }
  10170. #u3024_text {
  10171. border-width:0px;
  10172. white-space:nowrap;
  10173. text-transform:none;
  10174. }
  10175. #u3025_div {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:0px;
  10179. top:0px;
  10180. width:8px;
  10181. height:16px;
  10182. background:inherit;
  10183. background-color:rgba(255, 255, 255, 0);
  10184. border:none;
  10185. border-radius:0px;
  10186. -moz-box-shadow:none;
  10187. -webkit-box-shadow:none;
  10188. box-shadow:none;
  10189. }
  10190. #u3025 {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:1264px;
  10194. top:1300px;
  10195. width:8px;
  10196. height:16px;
  10197. display:flex;
  10198. }
  10199. #u3025 .text {
  10200. position:absolute;
  10201. align-self:flex-start;
  10202. padding:0px 0px 0px 0px;
  10203. box-sizing:border-box;
  10204. width:100%;
  10205. }
  10206. #u3025_text {
  10207. border-width:0px;
  10208. white-space:nowrap;
  10209. text-transform:none;
  10210. }
  10211. #u3026 {
  10212. border-width:0px;
  10213. position:absolute;
  10214. left:0px;
  10215. top:0px;
  10216. width:0px;
  10217. height:0px;
  10218. }
  10219. #u3027_div {
  10220. border-width:0px;
  10221. position:absolute;
  10222. left:0px;
  10223. top:0px;
  10224. width:132px;
  10225. height:54px;
  10226. background:inherit;
  10227. background-color:rgba(255, 255, 255, 0);
  10228. border:none;
  10229. border-left:0px;
  10230. border-top:0px;
  10231. border-right:0px;
  10232. border-radius:4px;
  10233. border-bottom-right-radius:0px;
  10234. border-bottom-left-radius:0px;
  10235. -moz-box-shadow:none;
  10236. -webkit-box-shadow:none;
  10237. box-shadow:none;
  10238. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  10239. font-weight:700;
  10240. font-style:normal;
  10241. font-size:14px;
  10242. color:rgba(0, 0, 0, 0.8470588235294118);
  10243. text-align:left;
  10244. line-height:53px;
  10245. }
  10246. #u3027 {
  10247. border-width:0px;
  10248. position:absolute;
  10249. left:1373px;
  10250. top:779px;
  10251. width:132px;
  10252. height:54px;
  10253. display:flex;
  10254. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  10255. font-weight:700;
  10256. font-style:normal;
  10257. font-size:14px;
  10258. color:rgba(0, 0, 0, 0.8470588235294118);
  10259. text-align:left;
  10260. line-height:53px;
  10261. }
  10262. #u3027 .text {
  10263. position:absolute;
  10264. align-self:center;
  10265. padding:0px 16px 0px 16px;
  10266. box-sizing:border-box;
  10267. width:100%;
  10268. }
  10269. #u3027_text {
  10270. border-width:0px;
  10271. word-wrap:break-word;
  10272. text-transform:none;
  10273. }
  10274. #u3028_div {
  10275. border-width:0px;
  10276. position:absolute;
  10277. left:0px;
  10278. top:0px;
  10279. width:87px;
  10280. height:848px;
  10281. background:inherit;
  10282. background-color:rgba(255, 255, 255, 0);
  10283. border:none;
  10284. border-left:0px;
  10285. border-top:0px;
  10286. border-right:0px;
  10287. border-radius:4px;
  10288. border-bottom-right-radius:0px;
  10289. border-bottom-left-radius:0px;
  10290. -moz-box-shadow:none;
  10291. -webkit-box-shadow:none;
  10292. box-shadow:none;
  10293. font-family:"Microsoft Tai Le", sans-serif;
  10294. font-weight:400;
  10295. font-style:normal;
  10296. font-size:14px;
  10297. color:rgba(0, 0, 0, 0.6470588235294118);
  10298. text-align:left;
  10299. line-height:106px;
  10300. }
  10301. #u3028 {
  10302. border-width:0px;
  10303. position:absolute;
  10304. left:1373px;
  10305. top:833px;
  10306. width:87px;
  10307. height:848px;
  10308. display:flex;
  10309. font-family:"Microsoft Tai Le", sans-serif;
  10310. font-weight:400;
  10311. font-style:normal;
  10312. font-size:14px;
  10313. color:rgba(0, 0, 0, 0.6470588235294118);
  10314. text-align:left;
  10315. line-height:106px;
  10316. }
  10317. #u3028 .text {
  10318. position:absolute;
  10319. align-self:flex-start;
  10320. padding:0px 16px 0px 16px;
  10321. box-sizing:border-box;
  10322. width:100%;
  10323. }
  10324. #u3028_text {
  10325. border-width:0px;
  10326. word-wrap:break-word;
  10327. text-transform:none;
  10328. }
  10329. #u3029 {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:0px;
  10333. top:0px;
  10334. width:0px;
  10335. height:0px;
  10336. }
  10337. #u3030_div {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:0px;
  10341. top:0px;
  10342. width:128px;
  10343. height:54px;
  10344. background:inherit;
  10345. background-color:rgba(255, 255, 255, 0);
  10346. border:none;
  10347. border-left:0px;
  10348. border-top:0px;
  10349. border-right:0px;
  10350. border-radius:4px;
  10351. border-bottom-right-radius:0px;
  10352. border-bottom-left-radius:0px;
  10353. -moz-box-shadow:none;
  10354. -webkit-box-shadow:none;
  10355. box-shadow:none;
  10356. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  10357. font-weight:700;
  10358. font-style:normal;
  10359. font-size:14px;
  10360. color:rgba(0, 0, 0, 0.8470588235294118);
  10361. text-align:left;
  10362. line-height:53px;
  10363. }
  10364. #u3030 {
  10365. border-width:0px;
  10366. position:absolute;
  10367. left:1049px;
  10368. top:779px;
  10369. width:128px;
  10370. height:54px;
  10371. display:flex;
  10372. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  10373. font-weight:700;
  10374. font-style:normal;
  10375. font-size:14px;
  10376. color:rgba(0, 0, 0, 0.8470588235294118);
  10377. text-align:left;
  10378. line-height:53px;
  10379. }
  10380. #u3030 .text {
  10381. position:absolute;
  10382. align-self:center;
  10383. padding:0px 16px 0px 16px;
  10384. box-sizing:border-box;
  10385. width:100%;
  10386. }
  10387. #u3030_text {
  10388. border-width:0px;
  10389. word-wrap:break-word;
  10390. text-transform:none;
  10391. }
  10392. #u3031_div {
  10393. border-width:0px;
  10394. position:absolute;
  10395. left:0px;
  10396. top:0px;
  10397. width:137px;
  10398. height:106px;
  10399. background:inherit;
  10400. background-color:rgba(255, 255, 255, 0);
  10401. border:none;
  10402. border-left:0px;
  10403. border-top:0px;
  10404. border-right:0px;
  10405. border-radius:4px;
  10406. border-bottom-right-radius:0px;
  10407. border-bottom-left-radius:0px;
  10408. -moz-box-shadow:none;
  10409. -webkit-box-shadow:none;
  10410. box-shadow:none;
  10411. font-family:"Microsoft Tai Le", sans-serif;
  10412. font-weight:400;
  10413. font-style:normal;
  10414. font-size:14px;
  10415. color:rgba(0, 0, 0, 0.6470588235294118);
  10416. text-align:left;
  10417. line-height:106px;
  10418. }
  10419. #u3031 {
  10420. border-width:0px;
  10421. position:absolute;
  10422. left:1049px;
  10423. top:833px;
  10424. width:137px;
  10425. height:106px;
  10426. display:flex;
  10427. font-family:"Microsoft Tai Le", sans-serif;
  10428. font-weight:400;
  10429. font-style:normal;
  10430. font-size:14px;
  10431. color:rgba(0, 0, 0, 0.6470588235294118);
  10432. text-align:left;
  10433. line-height:106px;
  10434. }
  10435. #u3031 .text {
  10436. position:absolute;
  10437. align-self:flex-start;
  10438. padding:0px 16px 0px 16px;
  10439. box-sizing:border-box;
  10440. width:100%;
  10441. }
  10442. #u3031_text {
  10443. border-width:0px;
  10444. word-wrap:break-word;
  10445. text-transform:none;
  10446. visibility:hidden;
  10447. }
  10448. #u3032 {
  10449. border-width:0px;
  10450. position:absolute;
  10451. left:0px;
  10452. top:0px;
  10453. width:0px;
  10454. height:0px;
  10455. }
  10456. #u3033_div {
  10457. border-width:0px;
  10458. position:absolute;
  10459. left:0px;
  10460. top:0px;
  10461. width:52px;
  10462. height:15px;
  10463. background:inherit;
  10464. background-color:rgba(255, 255, 255, 0);
  10465. border:none;
  10466. border-radius:0px;
  10467. -moz-box-shadow:none;
  10468. -webkit-box-shadow:none;
  10469. box-shadow:none;
  10470. font-size:13px;
  10471. }
  10472. #u3033 {
  10473. border-width:0px;
  10474. position:absolute;
  10475. left:1074px;
  10476. top:852px;
  10477. width:52px;
  10478. height:15px;
  10479. display:flex;
  10480. font-size:13px;
  10481. }
  10482. #u3033 .text {
  10483. position:absolute;
  10484. align-self:flex-start;
  10485. padding:0px 0px 0px 0px;
  10486. box-sizing:border-box;
  10487. width:100%;
  10488. }
  10489. #u3033_text {
  10490. border-width:0px;
  10491. white-space:nowrap;
  10492. text-transform:none;
  10493. }
  10494. #u3034_div {
  10495. border-width:0px;
  10496. position:absolute;
  10497. left:0px;
  10498. top:0px;
  10499. width:52px;
  10500. height:15px;
  10501. background:inherit;
  10502. background-color:rgba(255, 255, 255, 0);
  10503. border:none;
  10504. border-radius:0px;
  10505. -moz-box-shadow:none;
  10506. -webkit-box-shadow:none;
  10507. box-shadow:none;
  10508. font-size:13px;
  10509. }
  10510. #u3034 {
  10511. border-width:0px;
  10512. position:absolute;
  10513. left:1074px;
  10514. top:879px;
  10515. width:52px;
  10516. height:15px;
  10517. display:flex;
  10518. font-size:13px;
  10519. }
  10520. #u3034 .text {
  10521. position:absolute;
  10522. align-self:flex-start;
  10523. padding:0px 0px 0px 0px;
  10524. box-sizing:border-box;
  10525. width:100%;
  10526. }
  10527. #u3034_text {
  10528. border-width:0px;
  10529. white-space:nowrap;
  10530. text-transform:none;
  10531. }
  10532. #u3035_div {
  10533. border-width:0px;
  10534. position:absolute;
  10535. left:0px;
  10536. top:0px;
  10537. width:52px;
  10538. height:15px;
  10539. background:inherit;
  10540. background-color:rgba(255, 255, 255, 0);
  10541. border:none;
  10542. border-radius:0px;
  10543. -moz-box-shadow:none;
  10544. -webkit-box-shadow:none;
  10545. box-shadow:none;
  10546. font-size:13px;
  10547. }
  10548. #u3035 {
  10549. border-width:0px;
  10550. position:absolute;
  10551. left:1074px;
  10552. top:905px;
  10553. width:52px;
  10554. height:15px;
  10555. display:flex;
  10556. font-size:13px;
  10557. }
  10558. #u3035 .text {
  10559. position:absolute;
  10560. align-self:flex-start;
  10561. padding:0px 0px 0px 0px;
  10562. box-sizing:border-box;
  10563. width:100%;
  10564. }
  10565. #u3035_text {
  10566. border-width:0px;
  10567. white-space:nowrap;
  10568. text-transform:none;
  10569. }
  10570. #u3036 {
  10571. border-width:0px;
  10572. position:absolute;
  10573. left:0px;
  10574. top:0px;
  10575. width:0px;
  10576. height:0px;
  10577. }
  10578. #u3037_div {
  10579. border-width:0px;
  10580. position:absolute;
  10581. left:0px;
  10582. top:0px;
  10583. width:52px;
  10584. height:15px;
  10585. background:inherit;
  10586. background-color:rgba(255, 255, 255, 0);
  10587. border:none;
  10588. border-radius:0px;
  10589. -moz-box-shadow:none;
  10590. -webkit-box-shadow:none;
  10591. box-shadow:none;
  10592. font-size:13px;
  10593. }
  10594. #u3037 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:1074px;
  10598. top:958px;
  10599. width:52px;
  10600. height:15px;
  10601. display:flex;
  10602. font-size:13px;
  10603. }
  10604. #u3037 .text {
  10605. position:absolute;
  10606. align-self:flex-start;
  10607. padding:0px 0px 0px 0px;
  10608. box-sizing:border-box;
  10609. width:100%;
  10610. }
  10611. #u3037_text {
  10612. border-width:0px;
  10613. white-space:nowrap;
  10614. text-transform:none;
  10615. }
  10616. #u3038_div {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:0px;
  10620. top:0px;
  10621. width:52px;
  10622. height:15px;
  10623. background:inherit;
  10624. background-color:rgba(255, 255, 255, 0);
  10625. border:none;
  10626. border-radius:0px;
  10627. -moz-box-shadow:none;
  10628. -webkit-box-shadow:none;
  10629. box-shadow:none;
  10630. font-size:13px;
  10631. }
  10632. #u3038 {
  10633. border-width:0px;
  10634. position:absolute;
  10635. left:1074px;
  10636. top:985px;
  10637. width:52px;
  10638. height:15px;
  10639. display:flex;
  10640. font-size:13px;
  10641. }
  10642. #u3038 .text {
  10643. position:absolute;
  10644. align-self:flex-start;
  10645. padding:0px 0px 0px 0px;
  10646. box-sizing:border-box;
  10647. width:100%;
  10648. }
  10649. #u3038_text {
  10650. border-width:0px;
  10651. white-space:nowrap;
  10652. text-transform:none;
  10653. }
  10654. #u3039_div {
  10655. border-width:0px;
  10656. position:absolute;
  10657. left:0px;
  10658. top:0px;
  10659. width:52px;
  10660. height:15px;
  10661. background:inherit;
  10662. background-color:rgba(255, 255, 255, 0);
  10663. border:none;
  10664. border-radius:0px;
  10665. -moz-box-shadow:none;
  10666. -webkit-box-shadow:none;
  10667. box-shadow:none;
  10668. font-size:13px;
  10669. }
  10670. #u3039 {
  10671. border-width:0px;
  10672. position:absolute;
  10673. left:1074px;
  10674. top:1011px;
  10675. width:52px;
  10676. height:15px;
  10677. display:flex;
  10678. font-size:13px;
  10679. }
  10680. #u3039 .text {
  10681. position:absolute;
  10682. align-self:flex-start;
  10683. padding:0px 0px 0px 0px;
  10684. box-sizing:border-box;
  10685. width:100%;
  10686. }
  10687. #u3039_text {
  10688. border-width:0px;
  10689. white-space:nowrap;
  10690. text-transform:none;
  10691. }
  10692. #u3040 {
  10693. border-width:0px;
  10694. position:absolute;
  10695. left:0px;
  10696. top:0px;
  10697. width:0px;
  10698. height:0px;
  10699. }
  10700. #u3041_div {
  10701. border-width:0px;
  10702. position:absolute;
  10703. left:0px;
  10704. top:0px;
  10705. width:52px;
  10706. height:15px;
  10707. background:inherit;
  10708. background-color:rgba(255, 255, 255, 0);
  10709. border:none;
  10710. border-radius:0px;
  10711. -moz-box-shadow:none;
  10712. -webkit-box-shadow:none;
  10713. box-shadow:none;
  10714. font-size:13px;
  10715. }
  10716. #u3041 {
  10717. border-width:0px;
  10718. position:absolute;
  10719. left:1074px;
  10720. top:1061px;
  10721. width:52px;
  10722. height:15px;
  10723. display:flex;
  10724. font-size:13px;
  10725. }
  10726. #u3041 .text {
  10727. position:absolute;
  10728. align-self:flex-start;
  10729. padding:0px 0px 0px 0px;
  10730. box-sizing:border-box;
  10731. width:100%;
  10732. }
  10733. #u3041_text {
  10734. border-width:0px;
  10735. white-space:nowrap;
  10736. text-transform:none;
  10737. }
  10738. #u3042_div {
  10739. border-width:0px;
  10740. position:absolute;
  10741. left:0px;
  10742. top:0px;
  10743. width:52px;
  10744. height:15px;
  10745. background:inherit;
  10746. background-color:rgba(255, 255, 255, 0);
  10747. border:none;
  10748. border-radius:0px;
  10749. -moz-box-shadow:none;
  10750. -webkit-box-shadow:none;
  10751. box-shadow:none;
  10752. font-size:13px;
  10753. }
  10754. #u3042 {
  10755. border-width:0px;
  10756. position:absolute;
  10757. left:1074px;
  10758. top:1088px;
  10759. width:52px;
  10760. height:15px;
  10761. display:flex;
  10762. font-size:13px;
  10763. }
  10764. #u3042 .text {
  10765. position:absolute;
  10766. align-self:flex-start;
  10767. padding:0px 0px 0px 0px;
  10768. box-sizing:border-box;
  10769. width:100%;
  10770. }
  10771. #u3042_text {
  10772. border-width:0px;
  10773. white-space:nowrap;
  10774. text-transform:none;
  10775. }
  10776. #u3043_div {
  10777. border-width:0px;
  10778. position:absolute;
  10779. left:0px;
  10780. top:0px;
  10781. width:52px;
  10782. height:15px;
  10783. background:inherit;
  10784. background-color:rgba(255, 255, 255, 0);
  10785. border:none;
  10786. border-radius:0px;
  10787. -moz-box-shadow:none;
  10788. -webkit-box-shadow:none;
  10789. box-shadow:none;
  10790. font-size:13px;
  10791. }
  10792. #u3043 {
  10793. border-width:0px;
  10794. position:absolute;
  10795. left:1074px;
  10796. top:1114px;
  10797. width:52px;
  10798. height:15px;
  10799. display:flex;
  10800. font-size:13px;
  10801. }
  10802. #u3043 .text {
  10803. position:absolute;
  10804. align-self:flex-start;
  10805. padding:0px 0px 0px 0px;
  10806. box-sizing:border-box;
  10807. width:100%;
  10808. }
  10809. #u3043_text {
  10810. border-width:0px;
  10811. white-space:nowrap;
  10812. text-transform:none;
  10813. }
  10814. #u3044 {
  10815. border-width:0px;
  10816. position:absolute;
  10817. left:0px;
  10818. top:0px;
  10819. width:0px;
  10820. height:0px;
  10821. }
  10822. #u3045_div {
  10823. border-width:0px;
  10824. position:absolute;
  10825. left:0px;
  10826. top:0px;
  10827. width:52px;
  10828. height:15px;
  10829. background:inherit;
  10830. background-color:rgba(255, 255, 255, 0);
  10831. border:none;
  10832. border-radius:0px;
  10833. -moz-box-shadow:none;
  10834. -webkit-box-shadow:none;
  10835. box-shadow:none;
  10836. font-size:13px;
  10837. }
  10838. #u3045 {
  10839. border-width:0px;
  10840. position:absolute;
  10841. left:1074px;
  10842. top:1171px;
  10843. width:52px;
  10844. height:15px;
  10845. display:flex;
  10846. font-size:13px;
  10847. }
  10848. #u3045 .text {
  10849. position:absolute;
  10850. align-self:flex-start;
  10851. padding:0px 0px 0px 0px;
  10852. box-sizing:border-box;
  10853. width:100%;
  10854. }
  10855. #u3045_text {
  10856. border-width:0px;
  10857. white-space:nowrap;
  10858. text-transform:none;
  10859. }
  10860. #u3046_div {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:0px;
  10864. top:0px;
  10865. width:52px;
  10866. height:15px;
  10867. background:inherit;
  10868. background-color:rgba(255, 255, 255, 0);
  10869. border:none;
  10870. border-radius:0px;
  10871. -moz-box-shadow:none;
  10872. -webkit-box-shadow:none;
  10873. box-shadow:none;
  10874. font-size:13px;
  10875. }
  10876. #u3046 {
  10877. border-width:0px;
  10878. position:absolute;
  10879. left:1074px;
  10880. top:1198px;
  10881. width:52px;
  10882. height:15px;
  10883. display:flex;
  10884. font-size:13px;
  10885. }
  10886. #u3046 .text {
  10887. position:absolute;
  10888. align-self:flex-start;
  10889. padding:0px 0px 0px 0px;
  10890. box-sizing:border-box;
  10891. width:100%;
  10892. }
  10893. #u3046_text {
  10894. border-width:0px;
  10895. white-space:nowrap;
  10896. text-transform:none;
  10897. }
  10898. #u3047_div {
  10899. border-width:0px;
  10900. position:absolute;
  10901. left:0px;
  10902. top:0px;
  10903. width:52px;
  10904. height:15px;
  10905. background:inherit;
  10906. background-color:rgba(255, 255, 255, 0);
  10907. border:none;
  10908. border-radius:0px;
  10909. -moz-box-shadow:none;
  10910. -webkit-box-shadow:none;
  10911. box-shadow:none;
  10912. font-size:13px;
  10913. }
  10914. #u3047 {
  10915. border-width:0px;
  10916. position:absolute;
  10917. left:1074px;
  10918. top:1224px;
  10919. width:52px;
  10920. height:15px;
  10921. display:flex;
  10922. font-size:13px;
  10923. }
  10924. #u3047 .text {
  10925. position:absolute;
  10926. align-self:flex-start;
  10927. padding:0px 0px 0px 0px;
  10928. box-sizing:border-box;
  10929. width:100%;
  10930. }
  10931. #u3047_text {
  10932. border-width:0px;
  10933. white-space:nowrap;
  10934. text-transform:none;
  10935. }
  10936. #u3048 {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:0px;
  10940. top:0px;
  10941. width:0px;
  10942. height:0px;
  10943. }
  10944. #u3049_div {
  10945. border-width:0px;
  10946. position:absolute;
  10947. left:0px;
  10948. top:0px;
  10949. width:52px;
  10950. height:15px;
  10951. background:inherit;
  10952. background-color:rgba(255, 255, 255, 0);
  10953. border:none;
  10954. border-radius:0px;
  10955. -moz-box-shadow:none;
  10956. -webkit-box-shadow:none;
  10957. box-shadow:none;
  10958. font-size:13px;
  10959. }
  10960. #u3049 {
  10961. border-width:0px;
  10962. position:absolute;
  10963. left:1074px;
  10964. top:1276px;
  10965. width:52px;
  10966. height:15px;
  10967. display:flex;
  10968. font-size:13px;
  10969. }
  10970. #u3049 .text {
  10971. position:absolute;
  10972. align-self:flex-start;
  10973. padding:0px 0px 0px 0px;
  10974. box-sizing:border-box;
  10975. width:100%;
  10976. }
  10977. #u3049_text {
  10978. border-width:0px;
  10979. white-space:nowrap;
  10980. text-transform:none;
  10981. }
  10982. #u3050_div {
  10983. border-width:0px;
  10984. position:absolute;
  10985. left:0px;
  10986. top:0px;
  10987. width:52px;
  10988. height:15px;
  10989. background:inherit;
  10990. background-color:rgba(255, 255, 255, 0);
  10991. border:none;
  10992. border-radius:0px;
  10993. -moz-box-shadow:none;
  10994. -webkit-box-shadow:none;
  10995. box-shadow:none;
  10996. font-size:13px;
  10997. }
  10998. #u3050 {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:1074px;
  11002. top:1303px;
  11003. width:52px;
  11004. height:15px;
  11005. display:flex;
  11006. font-size:13px;
  11007. }
  11008. #u3050 .text {
  11009. position:absolute;
  11010. align-self:flex-start;
  11011. padding:0px 0px 0px 0px;
  11012. box-sizing:border-box;
  11013. width:100%;
  11014. }
  11015. #u3050_text {
  11016. border-width:0px;
  11017. white-space:nowrap;
  11018. text-transform:none;
  11019. }
  11020. #u3051_div {
  11021. border-width:0px;
  11022. position:absolute;
  11023. left:0px;
  11024. top:0px;
  11025. width:52px;
  11026. height:15px;
  11027. background:inherit;
  11028. background-color:rgba(255, 255, 255, 0);
  11029. border:none;
  11030. border-radius:0px;
  11031. -moz-box-shadow:none;
  11032. -webkit-box-shadow:none;
  11033. box-shadow:none;
  11034. font-size:13px;
  11035. }
  11036. #u3051 {
  11037. border-width:0px;
  11038. position:absolute;
  11039. left:1074px;
  11040. top:1329px;
  11041. width:52px;
  11042. height:15px;
  11043. display:flex;
  11044. font-size:13px;
  11045. }
  11046. #u3051 .text {
  11047. position:absolute;
  11048. align-self:flex-start;
  11049. padding:0px 0px 0px 0px;
  11050. box-sizing:border-box;
  11051. width:100%;
  11052. }
  11053. #u3051_text {
  11054. border-width:0px;
  11055. white-space:nowrap;
  11056. text-transform:none;
  11057. }
  11058. #u3052 {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:0px;
  11062. top:0px;
  11063. width:0px;
  11064. height:0px;
  11065. }
  11066. #u3053_div {
  11067. border-width:0px;
  11068. position:absolute;
  11069. left:0px;
  11070. top:0px;
  11071. width:52px;
  11072. height:15px;
  11073. background:inherit;
  11074. background-color:rgba(255, 255, 255, 0);
  11075. border:none;
  11076. border-radius:0px;
  11077. -moz-box-shadow:none;
  11078. -webkit-box-shadow:none;
  11079. box-shadow:none;
  11080. font-size:13px;
  11081. }
  11082. #u3053 {
  11083. border-width:0px;
  11084. position:absolute;
  11085. left:1074px;
  11086. top:1386px;
  11087. width:52px;
  11088. height:15px;
  11089. display:flex;
  11090. font-size:13px;
  11091. }
  11092. #u3053 .text {
  11093. position:absolute;
  11094. align-self:flex-start;
  11095. padding:0px 0px 0px 0px;
  11096. box-sizing:border-box;
  11097. width:100%;
  11098. }
  11099. #u3053_text {
  11100. border-width:0px;
  11101. white-space:nowrap;
  11102. text-transform:none;
  11103. }
  11104. #u3054_div {
  11105. border-width:0px;
  11106. position:absolute;
  11107. left:0px;
  11108. top:0px;
  11109. width:52px;
  11110. height:15px;
  11111. background:inherit;
  11112. background-color:rgba(255, 255, 255, 0);
  11113. border:none;
  11114. border-radius:0px;
  11115. -moz-box-shadow:none;
  11116. -webkit-box-shadow:none;
  11117. box-shadow:none;
  11118. font-size:13px;
  11119. }
  11120. #u3054 {
  11121. border-width:0px;
  11122. position:absolute;
  11123. left:1074px;
  11124. top:1413px;
  11125. width:52px;
  11126. height:15px;
  11127. display:flex;
  11128. font-size:13px;
  11129. }
  11130. #u3054 .text {
  11131. position:absolute;
  11132. align-self:flex-start;
  11133. padding:0px 0px 0px 0px;
  11134. box-sizing:border-box;
  11135. width:100%;
  11136. }
  11137. #u3054_text {
  11138. border-width:0px;
  11139. white-space:nowrap;
  11140. text-transform:none;
  11141. }
  11142. #u3055_div {
  11143. border-width:0px;
  11144. position:absolute;
  11145. left:0px;
  11146. top:0px;
  11147. width:52px;
  11148. height:15px;
  11149. background:inherit;
  11150. background-color:rgba(255, 255, 255, 0);
  11151. border:none;
  11152. border-radius:0px;
  11153. -moz-box-shadow:none;
  11154. -webkit-box-shadow:none;
  11155. box-shadow:none;
  11156. font-size:13px;
  11157. }
  11158. #u3055 {
  11159. border-width:0px;
  11160. position:absolute;
  11161. left:1074px;
  11162. top:1439px;
  11163. width:52px;
  11164. height:15px;
  11165. display:flex;
  11166. font-size:13px;
  11167. }
  11168. #u3055 .text {
  11169. position:absolute;
  11170. align-self:flex-start;
  11171. padding:0px 0px 0px 0px;
  11172. box-sizing:border-box;
  11173. width:100%;
  11174. }
  11175. #u3055_text {
  11176. border-width:0px;
  11177. white-space:nowrap;
  11178. text-transform:none;
  11179. }
  11180. #u3056 {
  11181. border-width:0px;
  11182. position:absolute;
  11183. left:0px;
  11184. top:0px;
  11185. width:0px;
  11186. height:0px;
  11187. }
  11188. #u3057_div {
  11189. border-width:0px;
  11190. position:absolute;
  11191. left:0px;
  11192. top:0px;
  11193. width:52px;
  11194. height:15px;
  11195. background:inherit;
  11196. background-color:rgba(255, 255, 255, 0);
  11197. border:none;
  11198. border-radius:0px;
  11199. -moz-box-shadow:none;
  11200. -webkit-box-shadow:none;
  11201. box-shadow:none;
  11202. font-size:13px;
  11203. }
  11204. #u3057 {
  11205. border-width:0px;
  11206. position:absolute;
  11207. left:1074px;
  11208. top:1490px;
  11209. width:52px;
  11210. height:15px;
  11211. display:flex;
  11212. font-size:13px;
  11213. }
  11214. #u3057 .text {
  11215. position:absolute;
  11216. align-self:flex-start;
  11217. padding:0px 0px 0px 0px;
  11218. box-sizing:border-box;
  11219. width:100%;
  11220. }
  11221. #u3057_text {
  11222. border-width:0px;
  11223. white-space:nowrap;
  11224. text-transform:none;
  11225. }
  11226. #u3058_div {
  11227. border-width:0px;
  11228. position:absolute;
  11229. left:0px;
  11230. top:0px;
  11231. width:52px;
  11232. height:15px;
  11233. background:inherit;
  11234. background-color:rgba(255, 255, 255, 0);
  11235. border:none;
  11236. border-radius:0px;
  11237. -moz-box-shadow:none;
  11238. -webkit-box-shadow:none;
  11239. box-shadow:none;
  11240. font-size:13px;
  11241. }
  11242. #u3058 {
  11243. border-width:0px;
  11244. position:absolute;
  11245. left:1074px;
  11246. top:1517px;
  11247. width:52px;
  11248. height:15px;
  11249. display:flex;
  11250. font-size:13px;
  11251. }
  11252. #u3058 .text {
  11253. position:absolute;
  11254. align-self:flex-start;
  11255. padding:0px 0px 0px 0px;
  11256. box-sizing:border-box;
  11257. width:100%;
  11258. }
  11259. #u3058_text {
  11260. border-width:0px;
  11261. white-space:nowrap;
  11262. text-transform:none;
  11263. }
  11264. #u3059_div {
  11265. border-width:0px;
  11266. position:absolute;
  11267. left:0px;
  11268. top:0px;
  11269. width:52px;
  11270. height:15px;
  11271. background:inherit;
  11272. background-color:rgba(255, 255, 255, 0);
  11273. border:none;
  11274. border-radius:0px;
  11275. -moz-box-shadow:none;
  11276. -webkit-box-shadow:none;
  11277. box-shadow:none;
  11278. font-size:13px;
  11279. }
  11280. #u3059 {
  11281. border-width:0px;
  11282. position:absolute;
  11283. left:1074px;
  11284. top:1543px;
  11285. width:52px;
  11286. height:15px;
  11287. display:flex;
  11288. font-size:13px;
  11289. }
  11290. #u3059 .text {
  11291. position:absolute;
  11292. align-self:flex-start;
  11293. padding:0px 0px 0px 0px;
  11294. box-sizing:border-box;
  11295. width:100%;
  11296. }
  11297. #u3059_text {
  11298. border-width:0px;
  11299. white-space:nowrap;
  11300. text-transform:none;
  11301. }
  11302. #u3060 {
  11303. border-width:0px;
  11304. position:absolute;
  11305. left:0px;
  11306. top:0px;
  11307. width:0px;
  11308. height:0px;
  11309. }
  11310. #u3061_div {
  11311. border-width:0px;
  11312. position:absolute;
  11313. left:0px;
  11314. top:0px;
  11315. width:52px;
  11316. height:15px;
  11317. background:inherit;
  11318. background-color:rgba(255, 255, 255, 0);
  11319. border:none;
  11320. border-radius:0px;
  11321. -moz-box-shadow:none;
  11322. -webkit-box-shadow:none;
  11323. box-shadow:none;
  11324. font-size:13px;
  11325. }
  11326. #u3061 {
  11327. border-width:0px;
  11328. position:absolute;
  11329. left:1074px;
  11330. top:1599px;
  11331. width:52px;
  11332. height:15px;
  11333. display:flex;
  11334. font-size:13px;
  11335. }
  11336. #u3061 .text {
  11337. position:absolute;
  11338. align-self:flex-start;
  11339. padding:0px 0px 0px 0px;
  11340. box-sizing:border-box;
  11341. width:100%;
  11342. }
  11343. #u3061_text {
  11344. border-width:0px;
  11345. white-space:nowrap;
  11346. text-transform:none;
  11347. }
  11348. #u3062_div {
  11349. border-width:0px;
  11350. position:absolute;
  11351. left:0px;
  11352. top:0px;
  11353. width:52px;
  11354. height:15px;
  11355. background:inherit;
  11356. background-color:rgba(255, 255, 255, 0);
  11357. border:none;
  11358. border-radius:0px;
  11359. -moz-box-shadow:none;
  11360. -webkit-box-shadow:none;
  11361. box-shadow:none;
  11362. font-size:13px;
  11363. }
  11364. #u3062 {
  11365. border-width:0px;
  11366. position:absolute;
  11367. left:1074px;
  11368. top:1626px;
  11369. width:52px;
  11370. height:15px;
  11371. display:flex;
  11372. font-size:13px;
  11373. }
  11374. #u3062 .text {
  11375. position:absolute;
  11376. align-self:flex-start;
  11377. padding:0px 0px 0px 0px;
  11378. box-sizing:border-box;
  11379. width:100%;
  11380. }
  11381. #u3062_text {
  11382. border-width:0px;
  11383. white-space:nowrap;
  11384. text-transform:none;
  11385. }
  11386. #u3063_div {
  11387. border-width:0px;
  11388. position:absolute;
  11389. left:0px;
  11390. top:0px;
  11391. width:52px;
  11392. height:15px;
  11393. background:inherit;
  11394. background-color:rgba(255, 255, 255, 0);
  11395. border:none;
  11396. border-radius:0px;
  11397. -moz-box-shadow:none;
  11398. -webkit-box-shadow:none;
  11399. box-shadow:none;
  11400. font-size:13px;
  11401. }
  11402. #u3063 {
  11403. border-width:0px;
  11404. position:absolute;
  11405. left:1074px;
  11406. top:1652px;
  11407. width:52px;
  11408. height:15px;
  11409. display:flex;
  11410. font-size:13px;
  11411. }
  11412. #u3063 .text {
  11413. position:absolute;
  11414. align-self:flex-start;
  11415. padding:0px 0px 0px 0px;
  11416. box-sizing:border-box;
  11417. width:100%;
  11418. }
  11419. #u3063_text {
  11420. border-width:0px;
  11421. white-space:nowrap;
  11422. text-transform:none;
  11423. }
  11424. #u3064 {
  11425. border-width:0px;
  11426. position:absolute;
  11427. left:0px;
  11428. top:0px;
  11429. width:0px;
  11430. height:0px;
  11431. }
  11432. #u3065_div {
  11433. border-width:0px;
  11434. position:absolute;
  11435. left:0px;
  11436. top:0px;
  11437. width:88px;
  11438. height:32px;
  11439. background:inherit;
  11440. background-color:rgba(40, 54, 254, 1);
  11441. border:none;
  11442. border-radius:4px;
  11443. -moz-box-shadow:none;
  11444. -webkit-box-shadow:none;
  11445. box-shadow:none;
  11446. font-family:"Microsoft Tai Le", sans-serif;
  11447. font-weight:400;
  11448. font-style:normal;
  11449. font-size:14px;
  11450. color:#FFFFFF;
  11451. line-height:22px;
  11452. }
  11453. #u3065 {
  11454. border-width:0px;
  11455. position:absolute;
  11456. left:400px;
  11457. top:1716px;
  11458. width:88px;
  11459. height:32px;
  11460. display:flex;
  11461. font-family:"Microsoft Tai Le", sans-serif;
  11462. font-weight:400;
  11463. font-style:normal;
  11464. font-size:14px;
  11465. color:#FFFFFF;
  11466. line-height:22px;
  11467. }
  11468. #u3065 .text {
  11469. position:absolute;
  11470. align-self:center;
  11471. padding:0px 16px 0px 16px;
  11472. box-sizing:border-box;
  11473. width:100%;
  11474. }
  11475. #u3065_text {
  11476. border-width:0px;
  11477. word-wrap:break-word;
  11478. text-transform:none;
  11479. }
  11480. #u3066_div {
  11481. border-width:0px;
  11482. position:absolute;
  11483. left:0px;
  11484. top:0px;
  11485. width:80px;
  11486. height:32px;
  11487. background:inherit;
  11488. background-color:rgba(255, 255, 255, 1);
  11489. box-sizing:border-box;
  11490. border-width:1px;
  11491. border-style:solid;
  11492. border-color:rgba(220, 223, 230, 1);
  11493. border-radius:4px;
  11494. -moz-box-shadow:none;
  11495. -webkit-box-shadow:none;
  11496. box-shadow:none;
  11497. font-size:12px;
  11498. color:#606266;
  11499. }
  11500. #u3066 {
  11501. border-width:0px;
  11502. position:absolute;
  11503. left:308px;
  11504. top:1716px;
  11505. width:80px;
  11506. height:32px;
  11507. display:flex;
  11508. font-size:12px;
  11509. color:#606266;
  11510. }
  11511. #u3066 .text {
  11512. position:absolute;
  11513. align-self:center;
  11514. padding:2px 2px 2px 2px;
  11515. box-sizing:border-box;
  11516. width:100%;
  11517. }
  11518. #u3066_div.mouseOver {
  11519. border-width:0px;
  11520. position:absolute;
  11521. left:0px;
  11522. top:0px;
  11523. width:80px;
  11524. height:32px;
  11525. background:inherit;
  11526. background-color:rgba(236, 245, 255, 1);
  11527. box-sizing:border-box;
  11528. border-width:1px;
  11529. border-style:solid;
  11530. border-color:rgba(198, 226, 255, 1);
  11531. border-radius:4px;
  11532. -moz-box-shadow:none;
  11533. -webkit-box-shadow:none;
  11534. box-shadow:none;
  11535. font-size:12px;
  11536. color:#606266;
  11537. }
  11538. #u3066.mouseOver {
  11539. }
  11540. #u3066_div.mouseDown {
  11541. border-width:0px;
  11542. position:absolute;
  11543. left:0px;
  11544. top:0px;
  11545. width:80px;
  11546. height:32px;
  11547. background:inherit;
  11548. background-color:rgba(236, 245, 255, 1);
  11549. box-sizing:border-box;
  11550. border-width:1px;
  11551. border-style:solid;
  11552. border-color:rgba(58, 142, 230, 1);
  11553. border-radius:4px;
  11554. -moz-box-shadow:none;
  11555. -webkit-box-shadow:none;
  11556. box-shadow:none;
  11557. font-size:12px;
  11558. color:#606266;
  11559. }
  11560. #u3066.mouseDown {
  11561. }
  11562. #u3066_div.disabled {
  11563. border-width:0px;
  11564. position:absolute;
  11565. left:0px;
  11566. top:0px;
  11567. width:80px;
  11568. height:32px;
  11569. background:inherit;
  11570. background-color:rgba(255, 255, 255, 1);
  11571. box-sizing:border-box;
  11572. border-width:1px;
  11573. border-style:solid;
  11574. border-color:rgba(235, 238, 245, 1);
  11575. border-radius:4px;
  11576. -moz-box-shadow:none;
  11577. -webkit-box-shadow:none;
  11578. box-shadow:none;
  11579. font-size:12px;
  11580. color:#606266;
  11581. }
  11582. #u3066.disabled {
  11583. }
  11584. #u3066_div.mouseOver.mouseDown {
  11585. border-width:0px;
  11586. position:absolute;
  11587. left:0px;
  11588. top:0px;
  11589. width:80px;
  11590. height:32px;
  11591. background:inherit;
  11592. background-color:rgba(236, 245, 255, 1);
  11593. box-sizing:border-box;
  11594. border-width:1px;
  11595. border-style:solid;
  11596. border-color:rgba(58, 142, 230, 1);
  11597. border-radius:4px;
  11598. -moz-box-shadow:none;
  11599. -webkit-box-shadow:none;
  11600. box-shadow:none;
  11601. font-size:12px;
  11602. color:#606266;
  11603. }
  11604. #u3066.mouseOver.mouseDown {
  11605. }
  11606. #u3066_text {
  11607. border-width:0px;
  11608. word-wrap:break-word;
  11609. text-transform:none;
  11610. }
  11611. #u3067 {
  11612. border-width:0px;
  11613. position:absolute;
  11614. left:0px;
  11615. top:0px;
  11616. width:0px;
  11617. height:0px;
  11618. }
  11619. #u3068_div {
  11620. border-width:0px;
  11621. position:absolute;
  11622. left:0px;
  11623. top:0px;
  11624. width:80px;
  11625. height:16px;
  11626. background:inherit;
  11627. background-color:rgba(255, 255, 255, 0);
  11628. border:none;
  11629. border-radius:0px;
  11630. -moz-box-shadow:none;
  11631. -webkit-box-shadow:none;
  11632. box-shadow:none;
  11633. }
  11634. #u3068 {
  11635. border-width:0px;
  11636. position:absolute;
  11637. left:327px;
  11638. top:650px;
  11639. width:80px;
  11640. height:16px;
  11641. display:flex;
  11642. }
  11643. #u3068 .text {
  11644. position:absolute;
  11645. align-self:flex-start;
  11646. padding:0px 0px 0px 0px;
  11647. box-sizing:border-box;
  11648. width:100%;
  11649. }
  11650. #u3068_text {
  11651. border-width:0px;
  11652. white-space:nowrap;
  11653. text-transform:none;
  11654. }
  11655. #u3069 {
  11656. border-width:0px;
  11657. position:absolute;
  11658. left:0px;
  11659. top:0px;
  11660. width:0px;
  11661. height:0px;
  11662. }
  11663. #u3070_div {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:0px;
  11667. top:0px;
  11668. width:23px;
  11669. height:18px;
  11670. background:inherit;
  11671. background-color:rgba(255, 255, 255, 0);
  11672. border:none;
  11673. border-radius:0px;
  11674. -moz-box-shadow:none;
  11675. -webkit-box-shadow:none;
  11676. box-shadow:none;
  11677. font-family:"Microsoft YaHei UI", sans-serif;
  11678. font-weight:400;
  11679. font-style:normal;
  11680. color:#606266;
  11681. }
  11682. #u3070 {
  11683. border-width:0px;
  11684. position:absolute;
  11685. left:448px;
  11686. top:648px;
  11687. width:23px;
  11688. height:18px;
  11689. display:flex;
  11690. font-family:"Microsoft YaHei UI", sans-serif;
  11691. font-weight:400;
  11692. font-style:normal;
  11693. color:#606266;
  11694. }
  11695. #u3070 .text {
  11696. position:absolute;
  11697. align-self:flex-start;
  11698. padding:0px 0px 0px 0px;
  11699. box-sizing:border-box;
  11700. width:100%;
  11701. }
  11702. #u3070_div.selected {
  11703. border-width:0px;
  11704. position:absolute;
  11705. left:0px;
  11706. top:0px;
  11707. width:23px;
  11708. height:18px;
  11709. background:inherit;
  11710. background-color:rgba(255, 255, 255, 0);
  11711. border:none;
  11712. border-radius:0px;
  11713. -moz-box-shadow:none;
  11714. -webkit-box-shadow:none;
  11715. box-shadow:none;
  11716. font-family:"Microsoft YaHei UI", sans-serif;
  11717. font-weight:400;
  11718. font-style:normal;
  11719. color:#606266;
  11720. }
  11721. #u3070.selected {
  11722. }
  11723. #u3070_div.disabled {
  11724. border-width:0px;
  11725. position:absolute;
  11726. left:0px;
  11727. top:0px;
  11728. width:23px;
  11729. height:18px;
  11730. background:inherit;
  11731. background-color:rgba(255, 255, 255, 0);
  11732. border:none;
  11733. border-radius:0px;
  11734. -moz-box-shadow:none;
  11735. -webkit-box-shadow:none;
  11736. box-shadow:none;
  11737. font-family:"Microsoft YaHei UI", sans-serif;
  11738. font-weight:400;
  11739. font-style:normal;
  11740. color:#606266;
  11741. }
  11742. #u3070.disabled {
  11743. }
  11744. #u3070_div.selected.disabled {
  11745. border-width:0px;
  11746. position:absolute;
  11747. left:0px;
  11748. top:0px;
  11749. width:23px;
  11750. height:18px;
  11751. background:inherit;
  11752. background-color:rgba(255, 255, 255, 0);
  11753. border:none;
  11754. border-radius:0px;
  11755. -moz-box-shadow:none;
  11756. -webkit-box-shadow:none;
  11757. box-shadow:none;
  11758. font-family:"Microsoft YaHei UI", sans-serif;
  11759. font-weight:400;
  11760. font-style:normal;
  11761. color:#606266;
  11762. }
  11763. #u3070.selected.disabled {
  11764. }
  11765. #u3070_text {
  11766. border-width:0px;
  11767. white-space:nowrap;
  11768. text-transform:none;
  11769. }
  11770. #u3071_img {
  11771. border-width:0px;
  11772. position:absolute;
  11773. left:0px;
  11774. top:0px;
  11775. width:13px;
  11776. height:13px;
  11777. }
  11778. #u3071 {
  11779. border-width:0px;
  11780. position:absolute;
  11781. left:429px;
  11782. top:651px;
  11783. width:13px;
  11784. height:13px;
  11785. display:flex;
  11786. }
  11787. #u3071 .text {
  11788. position:absolute;
  11789. align-self:center;
  11790. padding:2px 2px 2px 2px;
  11791. box-sizing:border-box;
  11792. width:100%;
  11793. }
  11794. #u3071_text {
  11795. border-width:0px;
  11796. word-wrap:break-word;
  11797. text-transform:none;
  11798. visibility:hidden;
  11799. }
  11800. #u3072 {
  11801. border-width:0px;
  11802. position:absolute;
  11803. left:0px;
  11804. top:0px;
  11805. width:0px;
  11806. height:0px;
  11807. }
  11808. #u3073_div {
  11809. border-width:0px;
  11810. position:absolute;
  11811. left:0px;
  11812. top:0px;
  11813. width:23px;
  11814. height:18px;
  11815. background:inherit;
  11816. background-color:rgba(255, 255, 255, 0);
  11817. border:none;
  11818. border-radius:0px;
  11819. -moz-box-shadow:none;
  11820. -webkit-box-shadow:none;
  11821. box-shadow:none;
  11822. font-family:"Microsoft YaHei UI", sans-serif;
  11823. font-weight:400;
  11824. font-style:normal;
  11825. color:#606266;
  11826. }
  11827. #u3073 {
  11828. border-width:0px;
  11829. position:absolute;
  11830. left:511px;
  11831. top:648px;
  11832. width:23px;
  11833. height:18px;
  11834. display:flex;
  11835. font-family:"Microsoft YaHei UI", sans-serif;
  11836. font-weight:400;
  11837. font-style:normal;
  11838. color:#606266;
  11839. }
  11840. #u3073 .text {
  11841. position:absolute;
  11842. align-self:flex-start;
  11843. padding:0px 0px 0px 0px;
  11844. box-sizing:border-box;
  11845. width:100%;
  11846. }
  11847. #u3073_div.selected {
  11848. border-width:0px;
  11849. position:absolute;
  11850. left:0px;
  11851. top:0px;
  11852. width:23px;
  11853. height:18px;
  11854. background:inherit;
  11855. background-color:rgba(255, 255, 255, 0);
  11856. border:none;
  11857. border-radius:0px;
  11858. -moz-box-shadow:none;
  11859. -webkit-box-shadow:none;
  11860. box-shadow:none;
  11861. font-family:"Microsoft YaHei UI", sans-serif;
  11862. font-weight:400;
  11863. font-style:normal;
  11864. color:#606266;
  11865. }
  11866. #u3073.selected {
  11867. }
  11868. #u3073_div.disabled {
  11869. border-width:0px;
  11870. position:absolute;
  11871. left:0px;
  11872. top:0px;
  11873. width:23px;
  11874. height:18px;
  11875. background:inherit;
  11876. background-color:rgba(255, 255, 255, 0);
  11877. border:none;
  11878. border-radius:0px;
  11879. -moz-box-shadow:none;
  11880. -webkit-box-shadow:none;
  11881. box-shadow:none;
  11882. font-family:"Microsoft YaHei UI", sans-serif;
  11883. font-weight:400;
  11884. font-style:normal;
  11885. color:#606266;
  11886. }
  11887. #u3073.disabled {
  11888. }
  11889. #u3073_div.selected.disabled {
  11890. border-width:0px;
  11891. position:absolute;
  11892. left:0px;
  11893. top:0px;
  11894. width:23px;
  11895. height:18px;
  11896. background:inherit;
  11897. background-color:rgba(255, 255, 255, 0);
  11898. border:none;
  11899. border-radius:0px;
  11900. -moz-box-shadow:none;
  11901. -webkit-box-shadow:none;
  11902. box-shadow:none;
  11903. font-family:"Microsoft YaHei UI", sans-serif;
  11904. font-weight:400;
  11905. font-style:normal;
  11906. color:#606266;
  11907. }
  11908. #u3073.selected.disabled {
  11909. }
  11910. #u3073_text {
  11911. border-width:0px;
  11912. white-space:nowrap;
  11913. text-transform:none;
  11914. }
  11915. #u3074_img {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:0px;
  11919. top:0px;
  11920. width:13px;
  11921. height:13px;
  11922. }
  11923. #u3074 {
  11924. border-width:0px;
  11925. position:absolute;
  11926. left:492px;
  11927. top:651px;
  11928. width:13px;
  11929. height:13px;
  11930. display:flex;
  11931. }
  11932. #u3074 .text {
  11933. position:absolute;
  11934. align-self:center;
  11935. padding:2px 2px 2px 2px;
  11936. box-sizing:border-box;
  11937. width:100%;
  11938. }
  11939. #u3074_text {
  11940. border-width:0px;
  11941. word-wrap:break-word;
  11942. text-transform:none;
  11943. visibility:hidden;
  11944. }
  11945. #u3075 {
  11946. border-width:0px;
  11947. position:absolute;
  11948. left:0px;
  11949. top:0px;
  11950. width:0px;
  11951. height:0px;
  11952. }
  11953. #u3076_div {
  11954. border-width:0px;
  11955. position:absolute;
  11956. left:0px;
  11957. top:0px;
  11958. width:23px;
  11959. height:18px;
  11960. background:inherit;
  11961. background-color:rgba(255, 255, 255, 0);
  11962. border:none;
  11963. border-radius:0px;
  11964. -moz-box-shadow:none;
  11965. -webkit-box-shadow:none;
  11966. box-shadow:none;
  11967. font-family:"Microsoft YaHei UI", sans-serif;
  11968. font-weight:400;
  11969. font-style:normal;
  11970. color:#606266;
  11971. }
  11972. #u3076 {
  11973. border-width:0px;
  11974. position:absolute;
  11975. left:571px;
  11976. top:648px;
  11977. width:23px;
  11978. height:18px;
  11979. display:flex;
  11980. font-family:"Microsoft YaHei UI", sans-serif;
  11981. font-weight:400;
  11982. font-style:normal;
  11983. color:#606266;
  11984. }
  11985. #u3076 .text {
  11986. position:absolute;
  11987. align-self:flex-start;
  11988. padding:0px 0px 0px 0px;
  11989. box-sizing:border-box;
  11990. width:100%;
  11991. }
  11992. #u3076_div.selected {
  11993. border-width:0px;
  11994. position:absolute;
  11995. left:0px;
  11996. top:0px;
  11997. width:23px;
  11998. height:18px;
  11999. background:inherit;
  12000. background-color:rgba(255, 255, 255, 0);
  12001. border:none;
  12002. border-radius:0px;
  12003. -moz-box-shadow:none;
  12004. -webkit-box-shadow:none;
  12005. box-shadow:none;
  12006. font-family:"Microsoft YaHei UI", sans-serif;
  12007. font-weight:400;
  12008. font-style:normal;
  12009. color:#606266;
  12010. }
  12011. #u3076.selected {
  12012. }
  12013. #u3076_div.disabled {
  12014. border-width:0px;
  12015. position:absolute;
  12016. left:0px;
  12017. top:0px;
  12018. width:23px;
  12019. height:18px;
  12020. background:inherit;
  12021. background-color:rgba(255, 255, 255, 0);
  12022. border:none;
  12023. border-radius:0px;
  12024. -moz-box-shadow:none;
  12025. -webkit-box-shadow:none;
  12026. box-shadow:none;
  12027. font-family:"Microsoft YaHei UI", sans-serif;
  12028. font-weight:400;
  12029. font-style:normal;
  12030. color:#606266;
  12031. }
  12032. #u3076.disabled {
  12033. }
  12034. #u3076_div.selected.disabled {
  12035. border-width:0px;
  12036. position:absolute;
  12037. left:0px;
  12038. top:0px;
  12039. width:23px;
  12040. height:18px;
  12041. background:inherit;
  12042. background-color:rgba(255, 255, 255, 0);
  12043. border:none;
  12044. border-radius:0px;
  12045. -moz-box-shadow:none;
  12046. -webkit-box-shadow:none;
  12047. box-shadow:none;
  12048. font-family:"Microsoft YaHei UI", sans-serif;
  12049. font-weight:400;
  12050. font-style:normal;
  12051. color:#606266;
  12052. }
  12053. #u3076.selected.disabled {
  12054. }
  12055. #u3076_text {
  12056. border-width:0px;
  12057. white-space:nowrap;
  12058. text-transform:none;
  12059. }
  12060. #u3077_img {
  12061. border-width:0px;
  12062. position:absolute;
  12063. left:0px;
  12064. top:0px;
  12065. width:13px;
  12066. height:13px;
  12067. }
  12068. #u3077 {
  12069. border-width:0px;
  12070. position:absolute;
  12071. left:552px;
  12072. top:651px;
  12073. width:13px;
  12074. height:13px;
  12075. display:flex;
  12076. }
  12077. #u3077 .text {
  12078. position:absolute;
  12079. align-self:center;
  12080. padding:2px 2px 2px 2px;
  12081. box-sizing:border-box;
  12082. width:100%;
  12083. }
  12084. #u3077_text {
  12085. border-width:0px;
  12086. word-wrap:break-word;
  12087. text-transform:none;
  12088. visibility:hidden;
  12089. }
  12090. #u3078 {
  12091. border-width:0px;
  12092. position:absolute;
  12093. left:0px;
  12094. top:0px;
  12095. width:0px;
  12096. height:0px;
  12097. }
  12098. #u3079_div {
  12099. border-width:0px;
  12100. position:absolute;
  12101. left:0px;
  12102. top:0px;
  12103. width:23px;
  12104. height:18px;
  12105. background:inherit;
  12106. background-color:rgba(255, 255, 255, 0);
  12107. border:none;
  12108. border-radius:0px;
  12109. -moz-box-shadow:none;
  12110. -webkit-box-shadow:none;
  12111. box-shadow:none;
  12112. font-family:"Microsoft YaHei UI", sans-serif;
  12113. font-weight:400;
  12114. font-style:normal;
  12115. color:#606266;
  12116. }
  12117. #u3079 {
  12118. border-width:0px;
  12119. position:absolute;
  12120. left:632px;
  12121. top:648px;
  12122. width:23px;
  12123. height:18px;
  12124. display:flex;
  12125. font-family:"Microsoft YaHei UI", sans-serif;
  12126. font-weight:400;
  12127. font-style:normal;
  12128. color:#606266;
  12129. }
  12130. #u3079 .text {
  12131. position:absolute;
  12132. align-self:flex-start;
  12133. padding:0px 0px 0px 0px;
  12134. box-sizing:border-box;
  12135. width:100%;
  12136. }
  12137. #u3079_div.selected {
  12138. border-width:0px;
  12139. position:absolute;
  12140. left:0px;
  12141. top:0px;
  12142. width:23px;
  12143. height:18px;
  12144. background:inherit;
  12145. background-color:rgba(255, 255, 255, 0);
  12146. border:none;
  12147. border-radius:0px;
  12148. -moz-box-shadow:none;
  12149. -webkit-box-shadow:none;
  12150. box-shadow:none;
  12151. font-family:"Microsoft YaHei UI", sans-serif;
  12152. font-weight:400;
  12153. font-style:normal;
  12154. color:#606266;
  12155. }
  12156. #u3079.selected {
  12157. }
  12158. #u3079_div.disabled {
  12159. border-width:0px;
  12160. position:absolute;
  12161. left:0px;
  12162. top:0px;
  12163. width:23px;
  12164. height:18px;
  12165. background:inherit;
  12166. background-color:rgba(255, 255, 255, 0);
  12167. border:none;
  12168. border-radius:0px;
  12169. -moz-box-shadow:none;
  12170. -webkit-box-shadow:none;
  12171. box-shadow:none;
  12172. font-family:"Microsoft YaHei UI", sans-serif;
  12173. font-weight:400;
  12174. font-style:normal;
  12175. color:#606266;
  12176. }
  12177. #u3079.disabled {
  12178. }
  12179. #u3079_div.selected.disabled {
  12180. border-width:0px;
  12181. position:absolute;
  12182. left:0px;
  12183. top:0px;
  12184. width:23px;
  12185. height:18px;
  12186. background:inherit;
  12187. background-color:rgba(255, 255, 255, 0);
  12188. border:none;
  12189. border-radius:0px;
  12190. -moz-box-shadow:none;
  12191. -webkit-box-shadow:none;
  12192. box-shadow:none;
  12193. font-family:"Microsoft YaHei UI", sans-serif;
  12194. font-weight:400;
  12195. font-style:normal;
  12196. color:#606266;
  12197. }
  12198. #u3079.selected.disabled {
  12199. }
  12200. #u3079_text {
  12201. border-width:0px;
  12202. white-space:nowrap;
  12203. text-transform:none;
  12204. }
  12205. #u3080_img {
  12206. border-width:0px;
  12207. position:absolute;
  12208. left:0px;
  12209. top:0px;
  12210. width:13px;
  12211. height:13px;
  12212. }
  12213. #u3080 {
  12214. border-width:0px;
  12215. position:absolute;
  12216. left:613px;
  12217. top:651px;
  12218. width:13px;
  12219. height:13px;
  12220. display:flex;
  12221. }
  12222. #u3080 .text {
  12223. position:absolute;
  12224. align-self:center;
  12225. padding:2px 2px 2px 2px;
  12226. box-sizing:border-box;
  12227. width:100%;
  12228. }
  12229. #u3080_text {
  12230. border-width:0px;
  12231. word-wrap:break-word;
  12232. text-transform:none;
  12233. visibility:hidden;
  12234. }
  12235. #u3081 {
  12236. border-width:0px;
  12237. position:absolute;
  12238. left:0px;
  12239. top:0px;
  12240. width:0px;
  12241. height:0px;
  12242. }
  12243. #u3082_div {
  12244. border-width:0px;
  12245. position:absolute;
  12246. left:0px;
  12247. top:0px;
  12248. width:23px;
  12249. height:18px;
  12250. background:inherit;
  12251. background-color:rgba(255, 255, 255, 0);
  12252. border:none;
  12253. border-radius:0px;
  12254. -moz-box-shadow:none;
  12255. -webkit-box-shadow:none;
  12256. box-shadow:none;
  12257. font-family:"Microsoft YaHei UI", sans-serif;
  12258. font-weight:400;
  12259. font-style:normal;
  12260. color:#606266;
  12261. }
  12262. #u3082 {
  12263. border-width:0px;
  12264. position:absolute;
  12265. left:691px;
  12266. top:648px;
  12267. width:23px;
  12268. height:18px;
  12269. display:flex;
  12270. font-family:"Microsoft YaHei UI", sans-serif;
  12271. font-weight:400;
  12272. font-style:normal;
  12273. color:#606266;
  12274. }
  12275. #u3082 .text {
  12276. position:absolute;
  12277. align-self:flex-start;
  12278. padding:0px 0px 0px 0px;
  12279. box-sizing:border-box;
  12280. width:100%;
  12281. }
  12282. #u3082_div.selected {
  12283. border-width:0px;
  12284. position:absolute;
  12285. left:0px;
  12286. top:0px;
  12287. width:23px;
  12288. height:18px;
  12289. background:inherit;
  12290. background-color:rgba(255, 255, 255, 0);
  12291. border:none;
  12292. border-radius:0px;
  12293. -moz-box-shadow:none;
  12294. -webkit-box-shadow:none;
  12295. box-shadow:none;
  12296. font-family:"Microsoft YaHei UI", sans-serif;
  12297. font-weight:400;
  12298. font-style:normal;
  12299. color:#606266;
  12300. }
  12301. #u3082.selected {
  12302. }
  12303. #u3082_div.disabled {
  12304. border-width:0px;
  12305. position:absolute;
  12306. left:0px;
  12307. top:0px;
  12308. width:23px;
  12309. height:18px;
  12310. background:inherit;
  12311. background-color:rgba(255, 255, 255, 0);
  12312. border:none;
  12313. border-radius:0px;
  12314. -moz-box-shadow:none;
  12315. -webkit-box-shadow:none;
  12316. box-shadow:none;
  12317. font-family:"Microsoft YaHei UI", sans-serif;
  12318. font-weight:400;
  12319. font-style:normal;
  12320. color:#606266;
  12321. }
  12322. #u3082.disabled {
  12323. }
  12324. #u3082_div.selected.disabled {
  12325. border-width:0px;
  12326. position:absolute;
  12327. left:0px;
  12328. top:0px;
  12329. width:23px;
  12330. height:18px;
  12331. background:inherit;
  12332. background-color:rgba(255, 255, 255, 0);
  12333. border:none;
  12334. border-radius:0px;
  12335. -moz-box-shadow:none;
  12336. -webkit-box-shadow:none;
  12337. box-shadow:none;
  12338. font-family:"Microsoft YaHei UI", sans-serif;
  12339. font-weight:400;
  12340. font-style:normal;
  12341. color:#606266;
  12342. }
  12343. #u3082.selected.disabled {
  12344. }
  12345. #u3082_text {
  12346. border-width:0px;
  12347. white-space:nowrap;
  12348. text-transform:none;
  12349. }
  12350. #u3083_img {
  12351. border-width:0px;
  12352. position:absolute;
  12353. left:0px;
  12354. top:0px;
  12355. width:13px;
  12356. height:13px;
  12357. }
  12358. #u3083 {
  12359. border-width:0px;
  12360. position:absolute;
  12361. left:672px;
  12362. top:651px;
  12363. width:13px;
  12364. height:13px;
  12365. display:flex;
  12366. }
  12367. #u3083 .text {
  12368. position:absolute;
  12369. align-self:center;
  12370. padding:2px 2px 2px 2px;
  12371. box-sizing:border-box;
  12372. width:100%;
  12373. }
  12374. #u3083_text {
  12375. border-width:0px;
  12376. word-wrap:break-word;
  12377. text-transform:none;
  12378. visibility:hidden;
  12379. }
  12380. #u3084 {
  12381. border-width:0px;
  12382. position:absolute;
  12383. left:0px;
  12384. top:0px;
  12385. width:0px;
  12386. height:0px;
  12387. }
  12388. #u3085_div {
  12389. border-width:0px;
  12390. position:absolute;
  12391. left:0px;
  12392. top:0px;
  12393. width:23px;
  12394. height:18px;
  12395. background:inherit;
  12396. background-color:rgba(255, 255, 255, 0);
  12397. border:none;
  12398. border-radius:0px;
  12399. -moz-box-shadow:none;
  12400. -webkit-box-shadow:none;
  12401. box-shadow:none;
  12402. font-family:"Microsoft YaHei UI", sans-serif;
  12403. font-weight:400;
  12404. font-style:normal;
  12405. color:#606266;
  12406. }
  12407. #u3085 {
  12408. border-width:0px;
  12409. position:absolute;
  12410. left:749px;
  12411. top:648px;
  12412. width:23px;
  12413. height:18px;
  12414. display:flex;
  12415. font-family:"Microsoft YaHei UI", sans-serif;
  12416. font-weight:400;
  12417. font-style:normal;
  12418. color:#606266;
  12419. }
  12420. #u3085 .text {
  12421. position:absolute;
  12422. align-self:flex-start;
  12423. padding:0px 0px 0px 0px;
  12424. box-sizing:border-box;
  12425. width:100%;
  12426. }
  12427. #u3085_div.selected {
  12428. border-width:0px;
  12429. position:absolute;
  12430. left:0px;
  12431. top:0px;
  12432. width:23px;
  12433. height:18px;
  12434. background:inherit;
  12435. background-color:rgba(255, 255, 255, 0);
  12436. border:none;
  12437. border-radius:0px;
  12438. -moz-box-shadow:none;
  12439. -webkit-box-shadow:none;
  12440. box-shadow:none;
  12441. font-family:"Microsoft YaHei UI", sans-serif;
  12442. font-weight:400;
  12443. font-style:normal;
  12444. color:#606266;
  12445. }
  12446. #u3085.selected {
  12447. }
  12448. #u3085_div.disabled {
  12449. border-width:0px;
  12450. position:absolute;
  12451. left:0px;
  12452. top:0px;
  12453. width:23px;
  12454. height:18px;
  12455. background:inherit;
  12456. background-color:rgba(255, 255, 255, 0);
  12457. border:none;
  12458. border-radius:0px;
  12459. -moz-box-shadow:none;
  12460. -webkit-box-shadow:none;
  12461. box-shadow:none;
  12462. font-family:"Microsoft YaHei UI", sans-serif;
  12463. font-weight:400;
  12464. font-style:normal;
  12465. color:#606266;
  12466. }
  12467. #u3085.disabled {
  12468. }
  12469. #u3085_div.selected.disabled {
  12470. border-width:0px;
  12471. position:absolute;
  12472. left:0px;
  12473. top:0px;
  12474. width:23px;
  12475. height:18px;
  12476. background:inherit;
  12477. background-color:rgba(255, 255, 255, 0);
  12478. border:none;
  12479. border-radius:0px;
  12480. -moz-box-shadow:none;
  12481. -webkit-box-shadow:none;
  12482. box-shadow:none;
  12483. font-family:"Microsoft YaHei UI", sans-serif;
  12484. font-weight:400;
  12485. font-style:normal;
  12486. color:#606266;
  12487. }
  12488. #u3085.selected.disabled {
  12489. }
  12490. #u3085_text {
  12491. border-width:0px;
  12492. white-space:nowrap;
  12493. text-transform:none;
  12494. }
  12495. #u3086_img {
  12496. border-width:0px;
  12497. position:absolute;
  12498. left:0px;
  12499. top:0px;
  12500. width:13px;
  12501. height:13px;
  12502. }
  12503. #u3086 {
  12504. border-width:0px;
  12505. position:absolute;
  12506. left:730px;
  12507. top:651px;
  12508. width:13px;
  12509. height:13px;
  12510. display:flex;
  12511. }
  12512. #u3086 .text {
  12513. position:absolute;
  12514. align-self:center;
  12515. padding:2px 2px 2px 2px;
  12516. box-sizing:border-box;
  12517. width:100%;
  12518. }
  12519. #u3086_text {
  12520. border-width:0px;
  12521. word-wrap:break-word;
  12522. text-transform:none;
  12523. visibility:hidden;
  12524. }
  12525. #u3087 {
  12526. border-width:0px;
  12527. position:absolute;
  12528. left:0px;
  12529. top:0px;
  12530. width:0px;
  12531. height:0px;
  12532. }
  12533. #u3088_div {
  12534. border-width:0px;
  12535. position:absolute;
  12536. left:0px;
  12537. top:0px;
  12538. width:23px;
  12539. height:18px;
  12540. background:inherit;
  12541. background-color:rgba(255, 255, 255, 0);
  12542. border:none;
  12543. border-radius:0px;
  12544. -moz-box-shadow:none;
  12545. -webkit-box-shadow:none;
  12546. box-shadow:none;
  12547. font-family:"Microsoft YaHei UI", sans-serif;
  12548. font-weight:400;
  12549. font-style:normal;
  12550. color:#606266;
  12551. }
  12552. #u3088 {
  12553. border-width:0px;
  12554. position:absolute;
  12555. left:805px;
  12556. top:648px;
  12557. width:23px;
  12558. height:18px;
  12559. display:flex;
  12560. font-family:"Microsoft YaHei UI", sans-serif;
  12561. font-weight:400;
  12562. font-style:normal;
  12563. color:#606266;
  12564. }
  12565. #u3088 .text {
  12566. position:absolute;
  12567. align-self:flex-start;
  12568. padding:0px 0px 0px 0px;
  12569. box-sizing:border-box;
  12570. width:100%;
  12571. }
  12572. #u3088_div.selected {
  12573. border-width:0px;
  12574. position:absolute;
  12575. left:0px;
  12576. top:0px;
  12577. width:23px;
  12578. height:18px;
  12579. background:inherit;
  12580. background-color:rgba(255, 255, 255, 0);
  12581. border:none;
  12582. border-radius:0px;
  12583. -moz-box-shadow:none;
  12584. -webkit-box-shadow:none;
  12585. box-shadow:none;
  12586. font-family:"Microsoft YaHei UI", sans-serif;
  12587. font-weight:400;
  12588. font-style:normal;
  12589. color:#606266;
  12590. }
  12591. #u3088.selected {
  12592. }
  12593. #u3088_div.disabled {
  12594. border-width:0px;
  12595. position:absolute;
  12596. left:0px;
  12597. top:0px;
  12598. width:23px;
  12599. height:18px;
  12600. background:inherit;
  12601. background-color:rgba(255, 255, 255, 0);
  12602. border:none;
  12603. border-radius:0px;
  12604. -moz-box-shadow:none;
  12605. -webkit-box-shadow:none;
  12606. box-shadow:none;
  12607. font-family:"Microsoft YaHei UI", sans-serif;
  12608. font-weight:400;
  12609. font-style:normal;
  12610. color:#606266;
  12611. }
  12612. #u3088.disabled {
  12613. }
  12614. #u3088_div.selected.disabled {
  12615. border-width:0px;
  12616. position:absolute;
  12617. left:0px;
  12618. top:0px;
  12619. width:23px;
  12620. height:18px;
  12621. background:inherit;
  12622. background-color:rgba(255, 255, 255, 0);
  12623. border:none;
  12624. border-radius:0px;
  12625. -moz-box-shadow:none;
  12626. -webkit-box-shadow:none;
  12627. box-shadow:none;
  12628. font-family:"Microsoft YaHei UI", sans-serif;
  12629. font-weight:400;
  12630. font-style:normal;
  12631. color:#606266;
  12632. }
  12633. #u3088.selected.disabled {
  12634. }
  12635. #u3088_text {
  12636. border-width:0px;
  12637. white-space:nowrap;
  12638. text-transform:none;
  12639. }
  12640. #u3089_img {
  12641. border-width:0px;
  12642. position:absolute;
  12643. left:0px;
  12644. top:0px;
  12645. width:13px;
  12646. height:13px;
  12647. }
  12648. #u3089 {
  12649. border-width:0px;
  12650. position:absolute;
  12651. left:786px;
  12652. top:651px;
  12653. width:13px;
  12654. height:13px;
  12655. display:flex;
  12656. }
  12657. #u3089 .text {
  12658. position:absolute;
  12659. align-self:center;
  12660. padding:2px 2px 2px 2px;
  12661. box-sizing:border-box;
  12662. width:100%;
  12663. }
  12664. #u3089_text {
  12665. border-width:0px;
  12666. word-wrap:break-word;
  12667. text-transform:none;
  12668. visibility:hidden;
  12669. }
  12670. #u3090_div {
  12671. border-width:0px;
  12672. position:absolute;
  12673. left:0px;
  12674. top:0px;
  12675. width:80px;
  12676. height:16px;
  12677. background:inherit;
  12678. background-color:rgba(255, 255, 255, 0);
  12679. border:none;
  12680. border-radius:0px;
  12681. -moz-box-shadow:none;
  12682. -webkit-box-shadow:none;
  12683. box-shadow:none;
  12684. }
  12685. #u3090 {
  12686. border-width:0px;
  12687. position:absolute;
  12688. left:334px;
  12689. top:436px;
  12690. width:80px;
  12691. height:16px;
  12692. display:flex;
  12693. }
  12694. #u3090 .text {
  12695. position:absolute;
  12696. align-self:flex-start;
  12697. padding:0px 0px 0px 0px;
  12698. box-sizing:border-box;
  12699. width:100%;
  12700. }
  12701. #u3090_text {
  12702. border-width:0px;
  12703. white-space:nowrap;
  12704. text-transform:none;
  12705. }
  12706. #u3091_div {
  12707. border-width:0px;
  12708. position:absolute;
  12709. left:0px;
  12710. top:0px;
  12711. width:95px;
  12712. height:75px;
  12713. background:inherit;
  12714. background-color:rgba(230, 230, 230, 1);
  12715. border:none;
  12716. border-radius:0px;
  12717. -moz-box-shadow:none;
  12718. -webkit-box-shadow:none;
  12719. box-shadow:none;
  12720. font-size:22px;
  12721. }
  12722. #u3091 {
  12723. border-width:0px;
  12724. position:absolute;
  12725. left:433px;
  12726. top:430px;
  12727. width:95px;
  12728. height:75px;
  12729. display:flex;
  12730. font-size:22px;
  12731. }
  12732. #u3091 .text {
  12733. position:absolute;
  12734. align-self:center;
  12735. padding:2px 2px 2px 2px;
  12736. box-sizing:border-box;
  12737. width:100%;
  12738. }
  12739. #u3091_text {
  12740. border-width:0px;
  12741. word-wrap:break-word;
  12742. text-transform:none;
  12743. }
  12744. #u3092_div {
  12745. border-width:0px;
  12746. position:absolute;
  12747. left:0px;
  12748. top:0px;
  12749. width:190px;
  12750. height:60px;
  12751. background:inherit;
  12752. background-color:rgba(255, 223, 37, 1);
  12753. border:none;
  12754. border-radius:0px;
  12755. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  12756. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  12757. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  12758. }
  12759. #u3092 {
  12760. border-width:0px;
  12761. position:absolute;
  12762. left:617px;
  12763. top:462px;
  12764. width:190px;
  12765. height:60px;
  12766. display:flex;
  12767. }
  12768. #u3092 .text {
  12769. position:absolute;
  12770. align-self:flex-start;
  12771. padding:10px 10px 10px 10px;
  12772. box-sizing:border-box;
  12773. width:100%;
  12774. }
  12775. #u3092_text {
  12776. border-width:0px;
  12777. word-wrap:break-word;
  12778. text-transform:none;
  12779. }
  12780. #u3093_img {
  12781. border-width:0px;
  12782. position:absolute;
  12783. left:-3px;
  12784. top:-13px;
  12785. width:117px;
  12786. height:31px;
  12787. }
  12788. #u3093 {
  12789. border-width:0px;
  12790. position:absolute;
  12791. left:515px;
  12792. top:475px;
  12793. width:101px;
  12794. height:5px;
  12795. display:flex;
  12796. -webkit-transform:rotate(10.283433254455293deg);
  12797. -moz-transform:rotate(10.283433254455293deg);
  12798. -ms-transform:rotate(10.283433254455293deg);
  12799. transform:rotate(10.283433254455293deg);
  12800. }
  12801. #u3093 .text {
  12802. position:absolute;
  12803. align-self:center;
  12804. padding:2px 2px 2px 2px;
  12805. box-sizing:border-box;
  12806. width:100%;
  12807. }
  12808. #u3093_text {
  12809. border-width:0px;
  12810. word-wrap:break-word;
  12811. text-transform:none;
  12812. visibility:hidden;
  12813. }
  12814. #u3094_div {
  12815. border-width:0px;
  12816. position:absolute;
  12817. left:0px;
  12818. top:0px;
  12819. width:80px;
  12820. height:16px;
  12821. background:inherit;
  12822. background-color:rgba(255, 255, 255, 0);
  12823. border:none;
  12824. border-radius:0px;
  12825. -moz-box-shadow:none;
  12826. -webkit-box-shadow:none;
  12827. box-shadow:none;
  12828. }
  12829. #u3094 {
  12830. border-width:0px;
  12831. position:absolute;
  12832. left:334px;
  12833. top:521px;
  12834. width:80px;
  12835. height:16px;
  12836. display:flex;
  12837. }
  12838. #u3094 .text {
  12839. position:absolute;
  12840. align-self:flex-start;
  12841. padding:0px 0px 0px 0px;
  12842. box-sizing:border-box;
  12843. width:100%;
  12844. }
  12845. #u3094_text {
  12846. border-width:0px;
  12847. white-space:nowrap;
  12848. text-transform:none;
  12849. }
  12850. #u3095_div {
  12851. border-width:0px;
  12852. position:absolute;
  12853. left:0px;
  12854. top:0px;
  12855. width:95px;
  12856. height:75px;
  12857. background:inherit;
  12858. background-color:rgba(230, 230, 230, 1);
  12859. border:none;
  12860. border-radius:0px;
  12861. -moz-box-shadow:none;
  12862. -webkit-box-shadow:none;
  12863. box-shadow:none;
  12864. font-size:22px;
  12865. }
  12866. #u3095 {
  12867. border-width:0px;
  12868. position:absolute;
  12869. left:433px;
  12870. top:515px;
  12871. width:95px;
  12872. height:75px;
  12873. display:flex;
  12874. font-size:22px;
  12875. }
  12876. #u3095 .text {
  12877. position:absolute;
  12878. align-self:center;
  12879. padding:2px 2px 2px 2px;
  12880. box-sizing:border-box;
  12881. width:100%;
  12882. }
  12883. #u3095_text {
  12884. border-width:0px;
  12885. word-wrap:break-word;
  12886. text-transform:none;
  12887. }
  12888. #u3096_div {
  12889. border-width:0px;
  12890. position:absolute;
  12891. left:0px;
  12892. top:0px;
  12893. width:190px;
  12894. height:60px;
  12895. background:inherit;
  12896. background-color:rgba(255, 223, 37, 1);
  12897. border:none;
  12898. border-radius:0px;
  12899. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  12900. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  12901. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  12902. }
  12903. #u3096 {
  12904. border-width:0px;
  12905. position:absolute;
  12906. left:617px;
  12907. top:547px;
  12908. width:190px;
  12909. height:60px;
  12910. display:flex;
  12911. }
  12912. #u3096 .text {
  12913. position:absolute;
  12914. align-self:flex-start;
  12915. padding:10px 10px 10px 10px;
  12916. box-sizing:border-box;
  12917. width:100%;
  12918. }
  12919. #u3096_text {
  12920. border-width:0px;
  12921. word-wrap:break-word;
  12922. text-transform:none;
  12923. }
  12924. #u3097_img {
  12925. border-width:0px;
  12926. position:absolute;
  12927. left:-3px;
  12928. top:-13px;
  12929. width:117px;
  12930. height:31px;
  12931. }
  12932. #u3097 {
  12933. border-width:0px;
  12934. position:absolute;
  12935. left:515px;
  12936. top:560px;
  12937. width:101px;
  12938. height:5px;
  12939. display:flex;
  12940. -webkit-transform:rotate(10.283433254455293deg);
  12941. -moz-transform:rotate(10.283433254455293deg);
  12942. -ms-transform:rotate(10.283433254455293deg);
  12943. transform:rotate(10.283433254455293deg);
  12944. }
  12945. #u3097 .text {
  12946. position:absolute;
  12947. align-self:center;
  12948. padding:2px 2px 2px 2px;
  12949. box-sizing:border-box;
  12950. width:100%;
  12951. }
  12952. #u3097_text {
  12953. border-width:0px;
  12954. word-wrap:break-word;
  12955. text-transform:none;
  12956. visibility:hidden;
  12957. }
  12958. #u3098 {
  12959. border-width:0px;
  12960. position:absolute;
  12961. left:0px;
  12962. top:0px;
  12963. width:0px;
  12964. height:0px;
  12965. }
  12966. #u3099_div {
  12967. border-width:0px;
  12968. position:absolute;
  12969. left:0px;
  12970. top:0px;
  12971. width:278px;
  12972. height:32px;
  12973. background:inherit;
  12974. background-color:rgba(255, 255, 255, 1);
  12975. box-sizing:border-box;
  12976. border-width:1px;
  12977. border-style:solid;
  12978. border-color:rgba(220, 223, 230, 1);
  12979. border-radius:4px;
  12980. -moz-box-shadow:none;
  12981. -webkit-box-shadow:none;
  12982. box-shadow:none;
  12983. }
  12984. #u3099 {
  12985. border-width:0px;
  12986. position:absolute;
  12987. left:426px;
  12988. top:282px;
  12989. width:278px;
  12990. height:32px;
  12991. display:flex;
  12992. }
  12993. #u3099 .text {
  12994. position:absolute;
  12995. align-self:center;
  12996. padding:2px 2px 2px 2px;
  12997. box-sizing:border-box;
  12998. width:100%;
  12999. }
  13000. #u3099_div.mouseOver {
  13001. border-width:0px;
  13002. position:absolute;
  13003. left:0px;
  13004. top:0px;
  13005. width:278px;
  13006. height:32px;
  13007. background:inherit;
  13008. background-color:rgba(255, 255, 255, 1);
  13009. box-sizing:border-box;
  13010. border-width:1px;
  13011. border-style:solid;
  13012. border-color:rgba(192, 196, 204, 1);
  13013. border-radius:4px;
  13014. -moz-box-shadow:none;
  13015. -webkit-box-shadow:none;
  13016. box-shadow:none;
  13017. }
  13018. #u3099.mouseOver {
  13019. }
  13020. #u3099_div.selected {
  13021. border-width:0px;
  13022. position:absolute;
  13023. left:0px;
  13024. top:0px;
  13025. width:278px;
  13026. height:32px;
  13027. background:inherit;
  13028. background-color:rgba(255, 255, 255, 1);
  13029. box-sizing:border-box;
  13030. border-width:1px;
  13031. border-style:solid;
  13032. border-color:rgba(64, 158, 255, 1);
  13033. border-radius:4px;
  13034. -moz-box-shadow:none;
  13035. -webkit-box-shadow:none;
  13036. box-shadow:none;
  13037. }
  13038. #u3099.selected {
  13039. }
  13040. #u3099_div.mouseOver.selected {
  13041. border-width:0px;
  13042. position:absolute;
  13043. left:0px;
  13044. top:0px;
  13045. width:278px;
  13046. height:32px;
  13047. background:inherit;
  13048. background-color:rgba(255, 255, 255, 1);
  13049. box-sizing:border-box;
  13050. border-width:1px;
  13051. border-style:solid;
  13052. border-color:rgba(64, 158, 255, 1);
  13053. border-radius:4px;
  13054. -moz-box-shadow:none;
  13055. -webkit-box-shadow:none;
  13056. box-shadow:none;
  13057. }
  13058. #u3099.mouseOver.selected {
  13059. }
  13060. #u3099_text {
  13061. border-width:0px;
  13062. word-wrap:break-word;
  13063. text-transform:none;
  13064. visibility:hidden;
  13065. }
  13066. #u3100_input {
  13067. position:absolute;
  13068. left:0px;
  13069. top:0px;
  13070. width:265px;
  13071. height:30px;
  13072. padding:2px 2px 2px 2px;
  13073. font-family:"Arial Normal", "Arial", sans-serif;
  13074. font-weight:400;
  13075. font-style:normal;
  13076. font-size:12px;
  13077. letter-spacing:normal;
  13078. color:#606266;
  13079. vertical-align:none;
  13080. text-align:left;
  13081. text-transform:none;
  13082. background-color:transparent;
  13083. border-color:transparent;
  13084. }
  13085. #u3100_input.hint {
  13086. position:absolute;
  13087. left:0px;
  13088. top:0px;
  13089. width:265px;
  13090. height:30px;
  13091. padding:2px 2px 2px 2px;
  13092. font-family:"Arial Normal", "Arial", sans-serif;
  13093. font-weight:400;
  13094. font-style:normal;
  13095. font-size:12px;
  13096. letter-spacing:normal;
  13097. color:#C0C4CC;
  13098. vertical-align:none;
  13099. text-align:left;
  13100. text-transform:none;
  13101. background-color:transparent;
  13102. border-color:transparent;
  13103. }
  13104. #u3100_input.disabled {
  13105. position:absolute;
  13106. left:0px;
  13107. top:0px;
  13108. width:265px;
  13109. height:30px;
  13110. padding:2px 2px 2px 2px;
  13111. font-family:"Arial Normal", "Arial", sans-serif;
  13112. font-weight:400;
  13113. font-style:normal;
  13114. font-size:12px;
  13115. letter-spacing:normal;
  13116. color:#606266;
  13117. vertical-align:none;
  13118. text-align:left;
  13119. text-transform:none;
  13120. background-color:transparent;
  13121. border-color:transparent;
  13122. }
  13123. #u3100_input.hint.disabled {
  13124. position:absolute;
  13125. left:0px;
  13126. top:0px;
  13127. width:265px;
  13128. height:30px;
  13129. padding:2px 2px 2px 2px;
  13130. font-family:"Arial Normal", "Arial", sans-serif;
  13131. font-weight:400;
  13132. font-style:normal;
  13133. font-size:12px;
  13134. letter-spacing:normal;
  13135. color:#C0C4CC;
  13136. vertical-align:none;
  13137. text-align:left;
  13138. text-transform:none;
  13139. background-color:transparent;
  13140. border-color:transparent;
  13141. }
  13142. #u3100_div {
  13143. border-width:0px;
  13144. position:absolute;
  13145. left:0px;
  13146. top:0px;
  13147. width:265px;
  13148. height:30px;
  13149. background:inherit;
  13150. background-color:rgba(255, 255, 255, 1);
  13151. border:none;
  13152. border-radius:0px;
  13153. -moz-box-shadow:none;
  13154. -webkit-box-shadow:none;
  13155. box-shadow:none;
  13156. font-size:12px;
  13157. color:#606266;
  13158. }
  13159. #u3100 {
  13160. border-width:0px;
  13161. position:absolute;
  13162. left:433px;
  13163. top:283px;
  13164. width:265px;
  13165. height:30px;
  13166. display:flex;
  13167. font-size:12px;
  13168. color:#606266;
  13169. }
  13170. #u3100 .text {
  13171. position:absolute;
  13172. align-self:center;
  13173. padding:2px 2px 2px 2px;
  13174. box-sizing:border-box;
  13175. width:100%;
  13176. }
  13177. #u3100_div.hint {
  13178. border-width:0px;
  13179. position:absolute;
  13180. left:0px;
  13181. top:0px;
  13182. width:265px;
  13183. height:30px;
  13184. background:inherit;
  13185. background-color:rgba(255, 255, 255, 1);
  13186. border:none;
  13187. border-radius:0px;
  13188. -moz-box-shadow:none;
  13189. -webkit-box-shadow:none;
  13190. box-shadow:none;
  13191. font-size:12px;
  13192. color:#606266;
  13193. }
  13194. #u3100.hint {
  13195. }
  13196. #u3100_div.disabled {
  13197. border-width:0px;
  13198. position:absolute;
  13199. left:0px;
  13200. top:0px;
  13201. width:265px;
  13202. height:30px;
  13203. background:inherit;
  13204. background-color:rgba(240, 240, 240, 1);
  13205. border:none;
  13206. border-radius:0px;
  13207. -moz-box-shadow:none;
  13208. -webkit-box-shadow:none;
  13209. box-shadow:none;
  13210. font-size:12px;
  13211. color:#606266;
  13212. }
  13213. #u3100.disabled {
  13214. }
  13215. #u3100_div.hint.disabled {
  13216. border-width:0px;
  13217. position:absolute;
  13218. left:0px;
  13219. top:0px;
  13220. width:265px;
  13221. height:30px;
  13222. background:inherit;
  13223. background-color:rgba(240, 240, 240, 1);
  13224. border:none;
  13225. border-radius:0px;
  13226. -moz-box-shadow:none;
  13227. -webkit-box-shadow:none;
  13228. box-shadow:none;
  13229. font-size:12px;
  13230. color:#606266;
  13231. }
  13232. #u3100.hint.disabled {
  13233. }
  13234. #u3101_div {
  13235. border-width:0px;
  13236. position:absolute;
  13237. left:0px;
  13238. top:0px;
  13239. width:52px;
  13240. height:16px;
  13241. background:inherit;
  13242. background-color:rgba(255, 255, 255, 0);
  13243. border:none;
  13244. border-radius:0px;
  13245. -moz-box-shadow:none;
  13246. -webkit-box-shadow:none;
  13247. box-shadow:none;
  13248. }
  13249. #u3101 {
  13250. border-width:0px;
  13251. position:absolute;
  13252. left:324px;
  13253. top:287px;
  13254. width:52px;
  13255. height:16px;
  13256. display:flex;
  13257. }
  13258. #u3101 .text {
  13259. position:absolute;
  13260. align-self:flex-start;
  13261. padding:0px 0px 0px 0px;
  13262. box-sizing:border-box;
  13263. width:100%;
  13264. }
  13265. #u3101_text {
  13266. border-width:0px;
  13267. white-space:nowrap;
  13268. text-transform:none;
  13269. }
  13270. #u3102 {
  13271. border-width:0px;
  13272. position:absolute;
  13273. left:0px;
  13274. top:0px;
  13275. width:0px;
  13276. height:0px;
  13277. }
  13278. #u3103_div {
  13279. border-width:0px;
  13280. position:absolute;
  13281. left:0px;
  13282. top:0px;
  13283. width:108px;
  13284. height:16px;
  13285. background:inherit;
  13286. background-color:rgba(255, 255, 255, 0);
  13287. border:none;
  13288. border-radius:0px;
  13289. -moz-box-shadow:none;
  13290. -webkit-box-shadow:none;
  13291. box-shadow:none;
  13292. }
  13293. #u3103 {
  13294. border-width:0px;
  13295. position:absolute;
  13296. left:296px;
  13297. top:338px;
  13298. width:108px;
  13299. height:16px;
  13300. display:flex;
  13301. }
  13302. #u3103 .text {
  13303. position:absolute;
  13304. align-self:flex-start;
  13305. padding:0px 0px 0px 0px;
  13306. box-sizing:border-box;
  13307. width:100%;
  13308. }
  13309. #u3103_text {
  13310. border-width:0px;
  13311. white-space:nowrap;
  13312. text-transform:none;
  13313. }
  13314. #u3104 {
  13315. border-width:0px;
  13316. position:absolute;
  13317. left:0px;
  13318. top:0px;
  13319. width:0px;
  13320. height:0px;
  13321. }
  13322. #u3105_div {
  13323. border-width:0px;
  13324. position:absolute;
  13325. left:0px;
  13326. top:0px;
  13327. width:84px;
  13328. height:18px;
  13329. background:inherit;
  13330. background-color:rgba(255, 255, 255, 0);
  13331. border:none;
  13332. border-radius:0px;
  13333. -moz-box-shadow:none;
  13334. -webkit-box-shadow:none;
  13335. box-shadow:none;
  13336. font-family:"Microsoft YaHei UI", sans-serif;
  13337. font-weight:400;
  13338. font-style:normal;
  13339. color:#606266;
  13340. }
  13341. #u3105 {
  13342. border-width:0px;
  13343. position:absolute;
  13344. left:449px;
  13345. top:335px;
  13346. width:84px;
  13347. height:18px;
  13348. display:flex;
  13349. font-family:"Microsoft YaHei UI", sans-serif;
  13350. font-weight:400;
  13351. font-style:normal;
  13352. color:#606266;
  13353. }
  13354. #u3105 .text {
  13355. position:absolute;
  13356. align-self:flex-start;
  13357. padding:0px 0px 0px 0px;
  13358. box-sizing:border-box;
  13359. width:100%;
  13360. }
  13361. #u3105_div.selected {
  13362. border-width:0px;
  13363. position:absolute;
  13364. left:0px;
  13365. top:0px;
  13366. width:84px;
  13367. height:18px;
  13368. background:inherit;
  13369. background-color:rgba(255, 255, 255, 0);
  13370. border:none;
  13371. border-radius:0px;
  13372. -moz-box-shadow:none;
  13373. -webkit-box-shadow:none;
  13374. box-shadow:none;
  13375. font-family:"Microsoft YaHei UI", sans-serif;
  13376. font-weight:400;
  13377. font-style:normal;
  13378. color:#606266;
  13379. }
  13380. #u3105.selected {
  13381. }
  13382. #u3105_div.disabled {
  13383. border-width:0px;
  13384. position:absolute;
  13385. left:0px;
  13386. top:0px;
  13387. width:84px;
  13388. height:18px;
  13389. background:inherit;
  13390. background-color:rgba(255, 255, 255, 0);
  13391. border:none;
  13392. border-radius:0px;
  13393. -moz-box-shadow:none;
  13394. -webkit-box-shadow:none;
  13395. box-shadow:none;
  13396. font-family:"Microsoft YaHei UI", sans-serif;
  13397. font-weight:400;
  13398. font-style:normal;
  13399. color:#606266;
  13400. }
  13401. #u3105.disabled {
  13402. }
  13403. #u3105_div.selected.disabled {
  13404. border-width:0px;
  13405. position:absolute;
  13406. left:0px;
  13407. top:0px;
  13408. width:84px;
  13409. height:18px;
  13410. background:inherit;
  13411. background-color:rgba(255, 255, 255, 0);
  13412. border:none;
  13413. border-radius:0px;
  13414. -moz-box-shadow:none;
  13415. -webkit-box-shadow:none;
  13416. box-shadow:none;
  13417. font-family:"Microsoft YaHei UI", sans-serif;
  13418. font-weight:400;
  13419. font-style:normal;
  13420. color:#606266;
  13421. }
  13422. #u3105.selected.disabled {
  13423. }
  13424. #u3105_text {
  13425. border-width:0px;
  13426. white-space:nowrap;
  13427. text-transform:none;
  13428. }
  13429. #u3106_img {
  13430. border-width:0px;
  13431. position:absolute;
  13432. left:0px;
  13433. top:0px;
  13434. width:13px;
  13435. height:13px;
  13436. }
  13437. #u3106 {
  13438. border-width:0px;
  13439. position:absolute;
  13440. left:430px;
  13441. top:338px;
  13442. width:13px;
  13443. height:13px;
  13444. display:flex;
  13445. }
  13446. #u3106 .text {
  13447. position:absolute;
  13448. align-self:center;
  13449. padding:2px 2px 2px 2px;
  13450. box-sizing:border-box;
  13451. width:100%;
  13452. }
  13453. #u3106_text {
  13454. border-width:0px;
  13455. word-wrap:break-word;
  13456. text-transform:none;
  13457. visibility:hidden;
  13458. }
  13459. #u3107 {
  13460. border-width:0px;
  13461. position:absolute;
  13462. left:0px;
  13463. top:0px;
  13464. width:0px;
  13465. height:0px;
  13466. }
  13467. #u3108_div {
  13468. border-width:0px;
  13469. position:absolute;
  13470. left:0px;
  13471. top:0px;
  13472. width:42px;
  13473. height:18px;
  13474. background:inherit;
  13475. background-color:rgba(255, 255, 255, 0);
  13476. border:none;
  13477. border-radius:0px;
  13478. -moz-box-shadow:none;
  13479. -webkit-box-shadow:none;
  13480. box-shadow:none;
  13481. font-family:"Microsoft YaHei UI", sans-serif;
  13482. font-weight:400;
  13483. font-style:normal;
  13484. color:#606266;
  13485. }
  13486. #u3108 {
  13487. border-width:0px;
  13488. position:absolute;
  13489. left:570px;
  13490. top:335px;
  13491. width:42px;
  13492. height:18px;
  13493. display:flex;
  13494. font-family:"Microsoft YaHei UI", sans-serif;
  13495. font-weight:400;
  13496. font-style:normal;
  13497. color:#606266;
  13498. }
  13499. #u3108 .text {
  13500. position:absolute;
  13501. align-self:flex-start;
  13502. padding:0px 0px 0px 0px;
  13503. box-sizing:border-box;
  13504. width:100%;
  13505. }
  13506. #u3108_div.selected {
  13507. border-width:0px;
  13508. position:absolute;
  13509. left:0px;
  13510. top:0px;
  13511. width:42px;
  13512. height:18px;
  13513. background:inherit;
  13514. background-color:rgba(255, 255, 255, 0);
  13515. border:none;
  13516. border-radius:0px;
  13517. -moz-box-shadow:none;
  13518. -webkit-box-shadow:none;
  13519. box-shadow:none;
  13520. font-family:"Microsoft YaHei UI", sans-serif;
  13521. font-weight:400;
  13522. font-style:normal;
  13523. color:#606266;
  13524. }
  13525. #u3108.selected {
  13526. }
  13527. #u3108_div.disabled {
  13528. border-width:0px;
  13529. position:absolute;
  13530. left:0px;
  13531. top:0px;
  13532. width:42px;
  13533. height:18px;
  13534. background:inherit;
  13535. background-color:rgba(255, 255, 255, 0);
  13536. border:none;
  13537. border-radius:0px;
  13538. -moz-box-shadow:none;
  13539. -webkit-box-shadow:none;
  13540. box-shadow:none;
  13541. font-family:"Microsoft YaHei UI", sans-serif;
  13542. font-weight:400;
  13543. font-style:normal;
  13544. color:#606266;
  13545. }
  13546. #u3108.disabled {
  13547. }
  13548. #u3108_div.selected.disabled {
  13549. border-width:0px;
  13550. position:absolute;
  13551. left:0px;
  13552. top:0px;
  13553. width:42px;
  13554. height:18px;
  13555. background:inherit;
  13556. background-color:rgba(255, 255, 255, 0);
  13557. border:none;
  13558. border-radius:0px;
  13559. -moz-box-shadow:none;
  13560. -webkit-box-shadow:none;
  13561. box-shadow:none;
  13562. font-family:"Microsoft YaHei UI", sans-serif;
  13563. font-weight:400;
  13564. font-style:normal;
  13565. color:#606266;
  13566. }
  13567. #u3108.selected.disabled {
  13568. }
  13569. #u3108_text {
  13570. border-width:0px;
  13571. white-space:nowrap;
  13572. text-transform:none;
  13573. }
  13574. #u3109_img {
  13575. border-width:0px;
  13576. position:absolute;
  13577. left:0px;
  13578. top:0px;
  13579. width:13px;
  13580. height:13px;
  13581. }
  13582. #u3109 {
  13583. border-width:0px;
  13584. position:absolute;
  13585. left:551px;
  13586. top:338px;
  13587. width:13px;
  13588. height:13px;
  13589. display:flex;
  13590. }
  13591. #u3109 .text {
  13592. position:absolute;
  13593. align-self:center;
  13594. padding:2px 2px 2px 2px;
  13595. box-sizing:border-box;
  13596. width:100%;
  13597. }
  13598. #u3109_text {
  13599. border-width:0px;
  13600. word-wrap:break-word;
  13601. text-transform:none;
  13602. visibility:hidden;
  13603. }
  13604. #u3110_div {
  13605. border-width:0px;
  13606. position:absolute;
  13607. left:0px;
  13608. top:0px;
  13609. width:1413px;
  13610. height:562px;
  13611. background:inherit;
  13612. background-color:rgba(255, 255, 255, 1);
  13613. box-sizing:border-box;
  13614. border-width:1px;
  13615. border-style:solid;
  13616. border-color:rgba(121, 121, 121, 1);
  13617. border-radius:0px;
  13618. -moz-box-shadow:none;
  13619. -webkit-box-shadow:none;
  13620. box-shadow:none;
  13621. }
  13622. #u3110 {
  13623. border-width:0px;
  13624. position:absolute;
  13625. left:1696px;
  13626. top:275px;
  13627. width:1413px;
  13628. height:562px;
  13629. display:flex;
  13630. }
  13631. #u3110 .text {
  13632. position:absolute;
  13633. align-self:center;
  13634. padding:2px 2px 2px 2px;
  13635. box-sizing:border-box;
  13636. width:100%;
  13637. }
  13638. #u3110_text {
  13639. border-width:0px;
  13640. word-wrap:break-word;
  13641. text-transform:none;
  13642. visibility:hidden;
  13643. }
  13644. #u3111_div {
  13645. border-width:0px;
  13646. position:absolute;
  13647. left:0px;
  13648. top:0px;
  13649. width:64px;
  13650. height:37px;
  13651. background:inherit;
  13652. background-color:rgba(255, 255, 255, 0);
  13653. border:none;
  13654. border-radius:0px;
  13655. -moz-box-shadow:none;
  13656. -webkit-box-shadow:none;
  13657. box-shadow:none;
  13658. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13659. font-weight:700;
  13660. font-style:normal;
  13661. }
  13662. #u3111 {
  13663. border-width:0px;
  13664. position:absolute;
  13665. left:1765px;
  13666. top:321px;
  13667. width:64px;
  13668. height:37px;
  13669. display:flex;
  13670. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13671. font-weight:700;
  13672. font-style:normal;
  13673. }
  13674. #u3111 .text {
  13675. position:absolute;
  13676. align-self:flex-start;
  13677. padding:0px 0px 0px 0px;
  13678. box-sizing:border-box;
  13679. width:100%;
  13680. }
  13681. #u3111_text {
  13682. border-width:0px;
  13683. white-space:nowrap;
  13684. text-transform:none;
  13685. }
  13686. #u3112_div {
  13687. border-width:0px;
  13688. position:absolute;
  13689. left:0px;
  13690. top:0px;
  13691. width:64px;
  13692. height:37px;
  13693. background:inherit;
  13694. background-color:rgba(255, 255, 255, 0);
  13695. border:none;
  13696. border-radius:0px;
  13697. -moz-box-shadow:none;
  13698. -webkit-box-shadow:none;
  13699. box-shadow:none;
  13700. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13701. font-weight:700;
  13702. font-style:normal;
  13703. }
  13704. #u3112 {
  13705. border-width:0px;
  13706. position:absolute;
  13707. left:2564px;
  13708. top:340px;
  13709. width:64px;
  13710. height:37px;
  13711. display:flex;
  13712. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13713. font-weight:700;
  13714. font-style:normal;
  13715. }
  13716. #u3112 .text {
  13717. position:absolute;
  13718. align-self:flex-start;
  13719. padding:0px 0px 0px 0px;
  13720. box-sizing:border-box;
  13721. width:100%;
  13722. }
  13723. #u3112_text {
  13724. border-width:0px;
  13725. white-space:nowrap;
  13726. text-transform:none;
  13727. }
  13728. #u3113_img {
  13729. border-width:0px;
  13730. position:absolute;
  13731. left:0px;
  13732. top:0px;
  13733. width:737px;
  13734. height:394px;
  13735. }
  13736. #u3113 {
  13737. border-width:0px;
  13738. position:absolute;
  13739. left:1765px;
  13740. top:397px;
  13741. width:737px;
  13742. height:394px;
  13743. display:flex;
  13744. }
  13745. #u3113 .text {
  13746. position:absolute;
  13747. align-self:center;
  13748. padding:2px 2px 2px 2px;
  13749. box-sizing:border-box;
  13750. width:100%;
  13751. }
  13752. #u3113_text {
  13753. border-width:0px;
  13754. word-wrap:break-word;
  13755. text-transform:none;
  13756. visibility:hidden;
  13757. }
  13758. #u3114_div {
  13759. border-width:0px;
  13760. position:absolute;
  13761. left:0px;
  13762. top:0px;
  13763. width:147px;
  13764. height:15px;
  13765. background:inherit;
  13766. background-color:rgba(255, 255, 255, 0);
  13767. border:none;
  13768. border-radius:0px;
  13769. -moz-box-shadow:none;
  13770. -webkit-box-shadow:none;
  13771. box-shadow:none;
  13772. }
  13773. #u3114 {
  13774. border-width:0px;
  13775. position:absolute;
  13776. left:2293px;
  13777. top:332px;
  13778. width:147px;
  13779. height:15px;
  13780. display:flex;
  13781. }
  13782. #u3114 .text {
  13783. position:absolute;
  13784. align-self:flex-start;
  13785. padding:0px 0px 0px 0px;
  13786. box-sizing:border-box;
  13787. width:100%;
  13788. }
  13789. #u3114_text {
  13790. border-width:0px;
  13791. white-space:nowrap;
  13792. text-transform:none;
  13793. }
  13794. #u3115_div {
  13795. border-width:0px;
  13796. position:absolute;
  13797. left:0px;
  13798. top:0px;
  13799. width:341px;
  13800. height:273px;
  13801. background:inherit;
  13802. background-color:rgba(255, 255, 255, 0);
  13803. border:none;
  13804. border-radius:0px;
  13805. -moz-box-shadow:none;
  13806. -webkit-box-shadow:none;
  13807. box-shadow:none;
  13808. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13809. font-weight:700;
  13810. font-style:normal;
  13811. }
  13812. #u3115 {
  13813. border-width:0px;
  13814. position:absolute;
  13815. left:2564px;
  13816. top:397px;
  13817. width:341px;
  13818. height:273px;
  13819. display:flex;
  13820. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13821. font-weight:700;
  13822. font-style:normal;
  13823. }
  13824. #u3115 .text {
  13825. position:absolute;
  13826. align-self:flex-start;
  13827. padding:0px 0px 0px 0px;
  13828. box-sizing:border-box;
  13829. width:100%;
  13830. }
  13831. #u3115_text {
  13832. border-width:0px;
  13833. white-space:nowrap;
  13834. text-transform:none;
  13835. }
  13836. #u3116_div {
  13837. border-width:0px;
  13838. position:absolute;
  13839. left:0px;
  13840. top:0px;
  13841. width:57px;
  13842. height:37px;
  13843. background:inherit;
  13844. background-color:rgba(255, 255, 255, 0);
  13845. border:none;
  13846. border-radius:0px;
  13847. -moz-box-shadow:none;
  13848. -webkit-box-shadow:none;
  13849. box-shadow:none;
  13850. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13851. font-weight:700;
  13852. font-style:normal;
  13853. }
  13854. #u3116 {
  13855. border-width:0px;
  13856. position:absolute;
  13857. left:2565px;
  13858. top:722px;
  13859. width:57px;
  13860. height:37px;
  13861. display:flex;
  13862. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13863. font-weight:700;
  13864. font-style:normal;
  13865. }
  13866. #u3116 .text {
  13867. position:absolute;
  13868. align-self:flex-start;
  13869. padding:0px 0px 0px 0px;
  13870. box-sizing:border-box;
  13871. width:100%;
  13872. }
  13873. #u3116_text {
  13874. border-width:0px;
  13875. white-space:nowrap;
  13876. text-transform:none;
  13877. }
  13878. #u3117_div {
  13879. border-width:0px;
  13880. position:absolute;
  13881. left:0px;
  13882. top:0px;
  13883. width:427px;
  13884. height:45px;
  13885. background:inherit;
  13886. background-color:rgba(255, 255, 255, 0);
  13887. border:none;
  13888. border-radius:0px;
  13889. -moz-box-shadow:none;
  13890. -webkit-box-shadow:none;
  13891. box-shadow:none;
  13892. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13893. font-weight:700;
  13894. font-style:normal;
  13895. font-size:40px;
  13896. }
  13897. #u3117 {
  13898. border-width:0px;
  13899. position:absolute;
  13900. left:2629px;
  13901. top:714px;
  13902. width:427px;
  13903. height:45px;
  13904. display:flex;
  13905. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  13906. font-weight:700;
  13907. font-style:normal;
  13908. font-size:40px;
  13909. }
  13910. #u3117 .text {
  13911. position:absolute;
  13912. align-self:flex-start;
  13913. padding:0px 0px 0px 0px;
  13914. box-sizing:border-box;
  13915. width:100%;
  13916. }
  13917. #u3117_text {
  13918. border-width:0px;
  13919. white-space:nowrap;
  13920. text-transform:none;
  13921. }
  13922. #u3118_div {
  13923. border-width:0px;
  13924. position:absolute;
  13925. left:0px;
  13926. top:0px;
  13927. width:130px;
  13928. height:99px;
  13929. background:inherit;
  13930. background-color:rgba(255, 223, 37, 1);
  13931. border:none;
  13932. border-radius:0px;
  13933. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  13934. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  13935. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  13936. }
  13937. #u3118 {
  13938. border-width:0px;
  13939. position:absolute;
  13940. left:1378px;
  13941. top:506px;
  13942. width:130px;
  13943. height:99px;
  13944. display:flex;
  13945. }
  13946. #u3118 .text {
  13947. position:absolute;
  13948. align-self:flex-start;
  13949. padding:10px 10px 10px 10px;
  13950. box-sizing:border-box;
  13951. width:100%;
  13952. }
  13953. #u3118_text {
  13954. border-width:0px;
  13955. word-wrap:break-word;
  13956. text-transform:none;
  13957. }
  13958. #u3119_div {
  13959. border-width:0px;
  13960. position:absolute;
  13961. left:0px;
  13962. top:0px;
  13963. width:69px;
  13964. height:160px;
  13965. background:inherit;
  13966. background-color:rgba(255, 255, 255, 0);
  13967. box-sizing:border-box;
  13968. border-width:4px;
  13969. border-style:solid;
  13970. border-color:rgba(255, 77, 58, 1);
  13971. border-radius:0px;
  13972. -moz-box-shadow:none;
  13973. -webkit-box-shadow:none;
  13974. box-shadow:none;
  13975. }
  13976. #u3119 {
  13977. border-width:0px;
  13978. position:absolute;
  13979. left:932px;
  13980. top:735px;
  13981. width:69px;
  13982. height:160px;
  13983. display:flex;
  13984. }
  13985. #u3119 .text {
  13986. position:absolute;
  13987. align-self:center;
  13988. padding:2px 2px 2px 2px;
  13989. box-sizing:border-box;
  13990. width:100%;
  13991. }
  13992. #u3119_text {
  13993. border-width:0px;
  13994. word-wrap:break-word;
  13995. text-transform:none;
  13996. visibility:hidden;
  13997. }
  13998. #u3120 {
  13999. border-width:0px;
  14000. position:absolute;
  14001. left:967px;
  14002. top:735px;
  14003. width:0px;
  14004. height:0px;
  14005. }
  14006. #u3120_seg0 {
  14007. border-width:0px;
  14008. position:absolute;
  14009. left:-7px;
  14010. top:-186px;
  14011. width:14px;
  14012. height:186px;
  14013. }
  14014. #u3120_seg1 {
  14015. border-width:0px;
  14016. position:absolute;
  14017. left:-7px;
  14018. top:-186px;
  14019. width:418px;
  14020. height:14px;
  14021. }
  14022. #u3120_seg2 {
  14023. border-width:0px;
  14024. position:absolute;
  14025. left:386px;
  14026. top:-193px;
  14027. width:28px;
  14028. height:28px;
  14029. }
  14030. #u3120_text {
  14031. border-width:0px;
  14032. position:absolute;
  14033. left:66px;
  14034. top:-187px;
  14035. width:100px;
  14036. word-wrap:break-word;
  14037. text-transform:none;
  14038. visibility:hidden;
  14039. }
  14040. #u3121 {
  14041. border-width:0px;
  14042. position:absolute;
  14043. left:1508px;
  14044. top:556px;
  14045. width:0px;
  14046. height:0px;
  14047. }
  14048. #u3121_seg0 {
  14049. border-width:0px;
  14050. position:absolute;
  14051. left:0px;
  14052. top:-7px;
  14053. width:195px;
  14054. height:14px;
  14055. }
  14056. #u3121_seg1 {
  14057. border-width:0px;
  14058. position:absolute;
  14059. left:163px;
  14060. top:-14px;
  14061. width:28px;
  14062. height:28px;
  14063. }
  14064. #u3121_text {
  14065. border-width:0px;
  14066. position:absolute;
  14067. left:44px;
  14068. top:-8px;
  14069. width:100px;
  14070. word-wrap:break-word;
  14071. text-transform:none;
  14072. visibility:hidden;
  14073. }
  14074. #u3122_div {
  14075. border-width:0px;
  14076. position:absolute;
  14077. left:0px;
  14078. top:0px;
  14079. width:252px;
  14080. height:16px;
  14081. background:inherit;
  14082. background-color:rgba(255, 255, 255, 0);
  14083. border:none;
  14084. border-radius:0px;
  14085. -moz-box-shadow:none;
  14086. -webkit-box-shadow:none;
  14087. box-shadow:none;
  14088. color:#D9001B;
  14089. }
  14090. #u3122 {
  14091. border-width:0px;
  14092. position:absolute;
  14093. left:1028px;
  14094. top:743px;
  14095. width:252px;
  14096. height:16px;
  14097. display:flex;
  14098. color:#D9001B;
  14099. }
  14100. #u3122 .text {
  14101. position:absolute;
  14102. align-self:flex-start;
  14103. padding:0px 0px 0px 0px;
  14104. box-sizing:border-box;
  14105. width:100%;
  14106. }
  14107. #u3122_text {
  14108. border-width:0px;
  14109. white-space:nowrap;
  14110. text-transform:none;
  14111. }
  14112. #u3123_div {
  14113. border-width:0px;
  14114. position:absolute;
  14115. left:0px;
  14116. top:0px;
  14117. width:98px;
  14118. height:26px;
  14119. background:inherit;
  14120. background-color:rgba(30, 152, 215, 1);
  14121. border:none;
  14122. border-radius:5px;
  14123. -moz-box-shadow:none;
  14124. -webkit-box-shadow:none;
  14125. box-shadow:none;
  14126. }
  14127. #u3123 {
  14128. border-width:0px;
  14129. position:absolute;
  14130. left:327px;
  14131. top:733px;
  14132. width:98px;
  14133. height:26px;
  14134. display:flex;
  14135. }
  14136. #u3123 .text {
  14137. position:absolute;
  14138. align-self:center;
  14139. padding:2px 2px 2px 2px;
  14140. box-sizing:border-box;
  14141. width:100%;
  14142. }
  14143. #u3123_text {
  14144. border-width:0px;
  14145. word-wrap:break-word;
  14146. text-transform:none;
  14147. }