styles.css 161 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u27309_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u27309 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u27309 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u27309_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u27310_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u27310 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u27310 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u27310_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u27311 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u27312_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u27312 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u27312 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u27312_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u27313_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u27313 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u27313 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u27313_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u27314_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u27314 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u27314 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u27314_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u27315_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u27315 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u27315 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u27315_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u27316 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u27317_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u27317 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u27317 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u27317_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u27318_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u27318 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u27318 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u27318_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u27319 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u27320_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u27320 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u27320 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u27320_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u27321_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u27321 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u27321 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u27321_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u27322 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u27323_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u27323 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u27323 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u27323_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u27324_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u27324 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u27324 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u27324_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u27325 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u27326_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u27326 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u27326 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u27326_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u27327_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u27327 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u27327 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u27327_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u27328 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u27329_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u27329 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u27329 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u27329_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u27330_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u27330 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u27330 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u27330_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u27331 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u27332_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u27332 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u27332 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u27332_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u27333_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u27333 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u27333 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u27333_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u27334 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u27335_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u27335 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u27335 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u27335_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u27336_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u27336 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u27336 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u27336_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u27337 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u27338_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u27338 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u27338 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u27338_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u27339_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u27339 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u27339 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u27339_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u27340 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u27341_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u27341 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u27341 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u27341_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u27342_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u27342 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u27342 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u27342_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u27343 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u27344_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u27344 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u27344 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u27344_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u27345_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u27345 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u27345 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u27345_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u27346_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u27346_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u27346_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u27346 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u27346 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u27346_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u27346.disabled {
  1184. }
  1185. .u27346_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u27347_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u27347 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u27347 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u27347_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u27348_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u27348 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u27348 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u27348_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u27349_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u27349 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u27349 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u27349_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u27350 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u27351_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u27351 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u27351 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u27351_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u27352_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u27352 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u27352 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u27352_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u27353 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u27354_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u27354 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u27354 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u27354_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u27355_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u27355 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u27355 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u27355_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u27356 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u27357_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u27357 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u27357 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u27357_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u27358_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u27358 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u27358 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u27358_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u27359 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u27360_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u27360 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u27360 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u27360_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u27361_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u27361 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u27361 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u27361_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u27362 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u27363_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u27363 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u27363 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u27363_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u27364_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u27364 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u27364 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u27364_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u27365_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1259px;
  1720. height:1180px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1726. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1727. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1728. }
  1729. #u27365 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:330px;
  1733. top:50px;
  1734. width:1259px;
  1735. height:1180px;
  1736. display:flex;
  1737. }
  1738. #u27365 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u27365_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u27366_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:73px;
  1757. height:50px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 0);
  1760. border:none;
  1761. border-left:0px;
  1762. border-top:0px;
  1763. border-right:0px;
  1764. border-radius:0px;
  1765. border-bottom-right-radius:0px;
  1766. border-bottom-left-radius:0px;
  1767. -moz-box-shadow:none;
  1768. -webkit-box-shadow:none;
  1769. box-shadow:none;
  1770. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1771. font-weight:500;
  1772. font-style:normal;
  1773. font-size:18px;
  1774. }
  1775. #u27366 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:350px;
  1779. top:50px;
  1780. width:73px;
  1781. height:50px;
  1782. display:flex;
  1783. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1784. font-weight:500;
  1785. font-style:normal;
  1786. font-size:18px;
  1787. }
  1788. #u27366 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:0px 0px 0px 0px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u27366_text {
  1796. border-width:0px;
  1797. white-space:nowrap;
  1798. text-transform:none;
  1799. }
  1800. #u27367 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:350px;
  1804. top:191px;
  1805. width:1219px;
  1806. height:292px;
  1807. }
  1808. #u27368_img {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:38px;
  1814. height:38px;
  1815. }
  1816. #u27368 {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:38px;
  1822. height:38px;
  1823. display:flex;
  1824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:12px;
  1828. color:#FFFFFF;
  1829. }
  1830. #u27368 .text {
  1831. position:absolute;
  1832. align-self:center;
  1833. padding:2px 2px 2px 0px;
  1834. box-sizing:border-box;
  1835. width:100%;
  1836. }
  1837. #u27368_text {
  1838. border-width:0px;
  1839. word-wrap:break-word;
  1840. text-transform:none;
  1841. }
  1842. #u27369_img {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:71px;
  1848. height:38px;
  1849. }
  1850. #u27369 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:38px;
  1854. top:0px;
  1855. width:71px;
  1856. height:38px;
  1857. display:flex;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:12px;
  1862. color:#FFFFFF;
  1863. }
  1864. #u27369 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:2px 2px 2px 0px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u27369_text {
  1872. border-width:0px;
  1873. word-wrap:break-word;
  1874. text-transform:none;
  1875. }
  1876. #u27370_img {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:71px;
  1882. height:38px;
  1883. }
  1884. #u27370 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:109px;
  1888. top:0px;
  1889. width:71px;
  1890. height:38px;
  1891. display:flex;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. font-size:12px;
  1896. color:#FFFFFF;
  1897. }
  1898. #u27370 .text {
  1899. position:absolute;
  1900. align-self:center;
  1901. padding:2px 2px 2px 0px;
  1902. box-sizing:border-box;
  1903. width:100%;
  1904. }
  1905. #u27370_text {
  1906. border-width:0px;
  1907. word-wrap:break-word;
  1908. text-transform:none;
  1909. }
  1910. #u27371_img {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:71px;
  1916. height:38px;
  1917. }
  1918. #u27371 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:180px;
  1922. top:0px;
  1923. width:71px;
  1924. height:38px;
  1925. display:flex;
  1926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:12px;
  1930. color:#FFFFFF;
  1931. }
  1932. #u27371 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 2px 2px 0px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u27371_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. }
  1944. #u27372_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:71px;
  1950. height:38px;
  1951. }
  1952. #u27372 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:251px;
  1956. top:0px;
  1957. width:71px;
  1958. height:38px;
  1959. display:flex;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:12px;
  1964. color:#FFFFFF;
  1965. }
  1966. #u27372 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 0px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u27372_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. }
  1978. #u27373_img {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:71px;
  1984. height:38px;
  1985. }
  1986. #u27373 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:322px;
  1990. top:0px;
  1991. width:71px;
  1992. height:38px;
  1993. display:flex;
  1994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:12px;
  1998. color:#FFFFFF;
  1999. }
  2000. #u27373 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:2px 2px 2px 0px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u27373_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. }
  2012. #u27374_img {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:71px;
  2018. height:38px;
  2019. }
  2020. #u27374 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:393px;
  2024. top:0px;
  2025. width:71px;
  2026. height:38px;
  2027. display:flex;
  2028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2029. font-weight:400;
  2030. font-style:normal;
  2031. font-size:12px;
  2032. color:#FFFFFF;
  2033. }
  2034. #u27374 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:2px 2px 2px 0px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u27374_text {
  2042. border-width:0px;
  2043. word-wrap:break-word;
  2044. text-transform:none;
  2045. }
  2046. #u27375_img {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:71px;
  2052. height:38px;
  2053. }
  2054. #u27375 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:464px;
  2058. top:0px;
  2059. width:71px;
  2060. height:38px;
  2061. display:flex;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:12px;
  2066. color:#FFFFFF;
  2067. }
  2068. #u27375 .text {
  2069. position:absolute;
  2070. align-self:center;
  2071. padding:2px 2px 2px 0px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u27375_text {
  2076. border-width:0px;
  2077. word-wrap:break-word;
  2078. text-transform:none;
  2079. }
  2080. #u27376_img {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:0px;
  2084. top:0px;
  2085. width:81px;
  2086. height:38px;
  2087. }
  2088. #u27376 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:535px;
  2092. top:0px;
  2093. width:81px;
  2094. height:38px;
  2095. display:flex;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:12px;
  2100. color:#FFFFFF;
  2101. }
  2102. #u27376 .text {
  2103. position:absolute;
  2104. align-self:center;
  2105. padding:2px 2px 2px 0px;
  2106. box-sizing:border-box;
  2107. width:100%;
  2108. }
  2109. #u27376_text {
  2110. border-width:0px;
  2111. word-wrap:break-word;
  2112. text-transform:none;
  2113. }
  2114. #u27377_img {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:71px;
  2120. height:38px;
  2121. }
  2122. #u27377 {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:616px;
  2126. top:0px;
  2127. width:71px;
  2128. height:38px;
  2129. display:flex;
  2130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:12px;
  2134. color:#FFFFFF;
  2135. }
  2136. #u27377 .text {
  2137. position:absolute;
  2138. align-self:center;
  2139. padding:2px 2px 2px 0px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u27377_text {
  2144. border-width:0px;
  2145. word-wrap:break-word;
  2146. text-transform:none;
  2147. }
  2148. #u27378_img {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:0px;
  2152. top:0px;
  2153. width:71px;
  2154. height:38px;
  2155. }
  2156. #u27378 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:687px;
  2160. top:0px;
  2161. width:71px;
  2162. height:38px;
  2163. display:flex;
  2164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2165. font-weight:400;
  2166. font-style:normal;
  2167. font-size:12px;
  2168. color:#FFFFFF;
  2169. }
  2170. #u27378 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 2px 2px 0px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u27378_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. }
  2182. #u27379_img {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:71px;
  2188. height:38px;
  2189. }
  2190. #u27379 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:758px;
  2194. top:0px;
  2195. width:71px;
  2196. height:38px;
  2197. display:flex;
  2198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:12px;
  2202. color:#FFFFFF;
  2203. }
  2204. #u27379 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 2px 2px 0px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u27379_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. }
  2216. #u27380_img {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:71px;
  2222. height:38px;
  2223. }
  2224. #u27380 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:829px;
  2228. top:0px;
  2229. width:71px;
  2230. height:38px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:12px;
  2236. color:#FFFFFF;
  2237. }
  2238. #u27380 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 2px 2px 0px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u27380_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. }
  2250. #u27381_img {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:71px;
  2256. height:38px;
  2257. }
  2258. #u27381 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:900px;
  2262. top:0px;
  2263. width:71px;
  2264. height:38px;
  2265. display:flex;
  2266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:12px;
  2270. color:#FFFFFF;
  2271. }
  2272. #u27381 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 0px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u27381_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. }
  2284. #u27382_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:71px;
  2290. height:38px;
  2291. }
  2292. #u27382 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:971px;
  2296. top:0px;
  2297. width:71px;
  2298. height:38px;
  2299. display:flex;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. color:#FFFFFF;
  2305. }
  2306. #u27382 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:2px 2px 2px 0px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u27382_text {
  2314. border-width:0px;
  2315. word-wrap:break-word;
  2316. text-transform:none;
  2317. }
  2318. #u27383_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:71px;
  2324. height:38px;
  2325. }
  2326. #u27383 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:1042px;
  2330. top:0px;
  2331. width:71px;
  2332. height:38px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. color:#FFFFFF;
  2339. }
  2340. #u27383 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 0px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u27383_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. }
  2352. #u27384_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:106px;
  2358. height:38px;
  2359. }
  2360. #u27384 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:1113px;
  2364. top:0px;
  2365. width:106px;
  2366. height:38px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:12px;
  2372. color:#FFFFFF;
  2373. }
  2374. #u27384 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 2px 2px 0px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u27384_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. }
  2386. #u27385_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:38px;
  2392. height:38px;
  2393. }
  2394. #u27385 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:38px;
  2399. width:38px;
  2400. height:38px;
  2401. display:flex;
  2402. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:12px;
  2406. }
  2407. #u27385 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 2px 2px 0px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u27385_text {
  2415. border-width:0px;
  2416. word-wrap:break-word;
  2417. text-transform:none;
  2418. }
  2419. #u27386_img {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:71px;
  2425. height:38px;
  2426. }
  2427. #u27386 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:38px;
  2431. top:38px;
  2432. width:71px;
  2433. height:38px;
  2434. display:flex;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. }
  2440. #u27386 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 0px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u27386_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. visibility:hidden;
  2452. }
  2453. #u27387_img {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:71px;
  2459. height:38px;
  2460. }
  2461. #u27387 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:109px;
  2465. top:38px;
  2466. width:71px;
  2467. height:38px;
  2468. display:flex;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:12px;
  2473. }
  2474. #u27387 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:2px 2px 2px 0px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u27387_text {
  2482. border-width:0px;
  2483. word-wrap:break-word;
  2484. text-transform:none;
  2485. visibility:hidden;
  2486. }
  2487. #u27388_img {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:71px;
  2493. height:38px;
  2494. }
  2495. #u27388 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:180px;
  2499. top:38px;
  2500. width:71px;
  2501. height:38px;
  2502. display:flex;
  2503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:12px;
  2507. }
  2508. #u27388 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 2px 2px 0px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u27388_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. }
  2520. #u27389_img {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:71px;
  2526. height:38px;
  2527. }
  2528. #u27389 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:251px;
  2532. top:38px;
  2533. width:71px;
  2534. height:38px;
  2535. display:flex;
  2536. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:12px;
  2540. }
  2541. #u27389 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 0px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u27389_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. visibility:hidden;
  2553. }
  2554. #u27390_img {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:71px;
  2560. height:38px;
  2561. }
  2562. #u27390 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:322px;
  2566. top:38px;
  2567. width:71px;
  2568. height:38px;
  2569. display:flex;
  2570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:12px;
  2574. }
  2575. #u27390 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 0px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u27390_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. visibility:hidden;
  2587. }
  2588. #u27391_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:71px;
  2594. height:38px;
  2595. }
  2596. #u27391 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:393px;
  2600. top:38px;
  2601. width:71px;
  2602. height:38px;
  2603. display:flex;
  2604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. }
  2609. #u27391 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u27391_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u27392_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:71px;
  2628. height:38px;
  2629. }
  2630. #u27392 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:464px;
  2634. top:38px;
  2635. width:71px;
  2636. height:38px;
  2637. display:flex;
  2638. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. }
  2643. #u27392 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u27392_text {
  2651. border-width:0px;
  2652. word-wrap:break-word;
  2653. text-transform:none;
  2654. visibility:hidden;
  2655. }
  2656. #u27393_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:81px;
  2662. height:38px;
  2663. }
  2664. #u27393 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:535px;
  2668. top:38px;
  2669. width:81px;
  2670. height:38px;
  2671. display:flex;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:12px;
  2676. }
  2677. #u27393 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u27393_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. }
  2689. #u27394_img {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:71px;
  2695. height:38px;
  2696. }
  2697. #u27394 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:616px;
  2701. top:38px;
  2702. width:71px;
  2703. height:38px;
  2704. display:flex;
  2705. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:12px;
  2709. }
  2710. #u27394 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 0px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u27394_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u27395_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:71px;
  2729. height:38px;
  2730. }
  2731. #u27395 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:687px;
  2735. top:38px;
  2736. width:71px;
  2737. height:38px;
  2738. display:flex;
  2739. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:12px;
  2743. }
  2744. #u27395 .text {
  2745. position:absolute;
  2746. align-self:center;
  2747. padding:2px 2px 2px 0px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u27395_text {
  2752. border-width:0px;
  2753. word-wrap:break-word;
  2754. text-transform:none;
  2755. visibility:hidden;
  2756. }
  2757. #u27396_img {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:0px;
  2761. top:0px;
  2762. width:71px;
  2763. height:38px;
  2764. }
  2765. #u27396 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:758px;
  2769. top:38px;
  2770. width:71px;
  2771. height:38px;
  2772. display:flex;
  2773. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:12px;
  2777. }
  2778. #u27396 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u27396_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u27397_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:71px;
  2797. height:38px;
  2798. }
  2799. #u27397 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:829px;
  2803. top:38px;
  2804. width:71px;
  2805. height:38px;
  2806. display:flex;
  2807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. }
  2812. #u27397 .text {
  2813. position:absolute;
  2814. align-self:center;
  2815. padding:2px 2px 2px 0px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u27397_text {
  2820. border-width:0px;
  2821. word-wrap:break-word;
  2822. text-transform:none;
  2823. visibility:hidden;
  2824. }
  2825. #u27398_img {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:71px;
  2831. height:38px;
  2832. }
  2833. #u27398 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:900px;
  2837. top:38px;
  2838. width:71px;
  2839. height:38px;
  2840. display:flex;
  2841. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:12px;
  2845. }
  2846. #u27398 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 0px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u27398_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u27399_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:71px;
  2865. height:38px;
  2866. }
  2867. #u27399 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:971px;
  2871. top:38px;
  2872. width:71px;
  2873. height:38px;
  2874. display:flex;
  2875. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:12px;
  2879. }
  2880. #u27399 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 0px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u27399_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. visibility:hidden;
  2892. }
  2893. #u27400_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:71px;
  2899. height:38px;
  2900. }
  2901. #u27400 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:1042px;
  2905. top:38px;
  2906. width:71px;
  2907. height:38px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. color:#333333;
  2914. }
  2915. #u27400 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u27400_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. visibility:hidden;
  2927. }
  2928. #u27401_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:106px;
  2934. height:38px;
  2935. }
  2936. #u27401 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:1113px;
  2940. top:38px;
  2941. width:106px;
  2942. height:38px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:12px;
  2948. color:#1890FF;
  2949. }
  2950. #u27401 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 0px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u27401_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. }
  2962. #u27402_img {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:38px;
  2968. height:38px;
  2969. }
  2970. #u27402 {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:76px;
  2975. width:38px;
  2976. height:38px;
  2977. display:flex;
  2978. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2979. font-weight:400;
  2980. font-style:normal;
  2981. font-size:12px;
  2982. color:#606266;
  2983. }
  2984. #u27402 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 0px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u27402_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. }
  2996. #u27403_img {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:71px;
  3002. height:38px;
  3003. }
  3004. #u27403 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:38px;
  3008. top:76px;
  3009. width:71px;
  3010. height:38px;
  3011. display:flex;
  3012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. font-size:12px;
  3016. color:#606266;
  3017. }
  3018. #u27403 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 0px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u27403_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u27404_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:71px;
  3037. height:38px;
  3038. }
  3039. #u27404 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:109px;
  3043. top:76px;
  3044. width:71px;
  3045. height:38px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. color:#606266;
  3052. }
  3053. #u27404 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u27404_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u27405_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:71px;
  3072. height:38px;
  3073. }
  3074. #u27405 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:180px;
  3078. top:76px;
  3079. width:71px;
  3080. height:38px;
  3081. display:flex;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. color:#606266;
  3087. }
  3088. #u27405 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u27405_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. }
  3100. #u27406_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:71px;
  3106. height:38px;
  3107. }
  3108. #u27406 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:251px;
  3112. top:76px;
  3113. width:71px;
  3114. height:38px;
  3115. display:flex;
  3116. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:12px;
  3120. color:#606266;
  3121. }
  3122. #u27406 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u27406_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u27407_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:71px;
  3141. height:38px;
  3142. }
  3143. #u27407 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:322px;
  3147. top:76px;
  3148. width:71px;
  3149. height:38px;
  3150. display:flex;
  3151. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:12px;
  3155. color:#606266;
  3156. }
  3157. #u27407 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u27407_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u27408_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:71px;
  3176. height:38px;
  3177. }
  3178. #u27408 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:393px;
  3182. top:76px;
  3183. width:71px;
  3184. height:38px;
  3185. display:flex;
  3186. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:12px;
  3190. color:#606266;
  3191. }
  3192. #u27408 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u27408_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u27409_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:71px;
  3211. height:38px;
  3212. }
  3213. #u27409 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:464px;
  3217. top:76px;
  3218. width:71px;
  3219. height:38px;
  3220. display:flex;
  3221. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:12px;
  3225. color:#606266;
  3226. }
  3227. #u27409 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u27409_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u27410_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:81px;
  3246. height:38px;
  3247. }
  3248. #u27410 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:535px;
  3252. top:76px;
  3253. width:81px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. color:#606266;
  3261. }
  3262. #u27410 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u27410_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u27411_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:71px;
  3281. height:38px;
  3282. }
  3283. #u27411 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:616px;
  3287. top:76px;
  3288. width:71px;
  3289. height:38px;
  3290. display:flex;
  3291. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3292. font-weight:400;
  3293. font-style:normal;
  3294. font-size:12px;
  3295. color:#606266;
  3296. }
  3297. #u27411 .text {
  3298. position:absolute;
  3299. align-self:center;
  3300. padding:2px 2px 2px 0px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u27411_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. visibility:hidden;
  3309. }
  3310. #u27412_img {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:71px;
  3316. height:38px;
  3317. }
  3318. #u27412 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:687px;
  3322. top:76px;
  3323. width:71px;
  3324. height:38px;
  3325. display:flex;
  3326. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:12px;
  3330. color:#606266;
  3331. }
  3332. #u27412 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:2px 2px 2px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u27412_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u27413_img {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:71px;
  3351. height:38px;
  3352. }
  3353. #u27413 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:758px;
  3357. top:76px;
  3358. width:71px;
  3359. height:38px;
  3360. display:flex;
  3361. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. color:#606266;
  3366. }
  3367. #u27413 .text {
  3368. position:absolute;
  3369. align-self:center;
  3370. padding:2px 2px 2px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u27413_text {
  3375. border-width:0px;
  3376. word-wrap:break-word;
  3377. text-transform:none;
  3378. visibility:hidden;
  3379. }
  3380. #u27414_img {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:71px;
  3386. height:38px;
  3387. }
  3388. #u27414 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:829px;
  3392. top:76px;
  3393. width:71px;
  3394. height:38px;
  3395. display:flex;
  3396. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:12px;
  3400. color:#606266;
  3401. }
  3402. #u27414 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 0px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u27414_text {
  3410. border-width:0px;
  3411. word-wrap:break-word;
  3412. text-transform:none;
  3413. visibility:hidden;
  3414. }
  3415. #u27415_img {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:71px;
  3421. height:38px;
  3422. }
  3423. #u27415 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:900px;
  3427. top:76px;
  3428. width:71px;
  3429. height:38px;
  3430. display:flex;
  3431. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. color:#606266;
  3436. }
  3437. #u27415 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u27415_text {
  3445. border-width:0px;
  3446. word-wrap:break-word;
  3447. text-transform:none;
  3448. visibility:hidden;
  3449. }
  3450. #u27416_img {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:71px;
  3456. height:38px;
  3457. }
  3458. #u27416 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:971px;
  3462. top:76px;
  3463. width:71px;
  3464. height:38px;
  3465. display:flex;
  3466. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:12px;
  3470. color:#606266;
  3471. }
  3472. #u27416 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u27416_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u27417_img {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:71px;
  3491. height:38px;
  3492. }
  3493. #u27417 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:1042px;
  3497. top:76px;
  3498. width:71px;
  3499. height:38px;
  3500. display:flex;
  3501. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:12px;
  3505. color:#606266;
  3506. }
  3507. #u27417 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 0px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u27417_text {
  3515. border-width:0px;
  3516. word-wrap:break-word;
  3517. text-transform:none;
  3518. visibility:hidden;
  3519. }
  3520. #u27418_img {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:106px;
  3526. height:38px;
  3527. }
  3528. #u27418 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:1113px;
  3532. top:76px;
  3533. width:106px;
  3534. height:38px;
  3535. display:flex;
  3536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:12px;
  3540. }
  3541. #u27418 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u27418_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. }
  3553. #u27419_img {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:38px;
  3559. height:38px;
  3560. }
  3561. #u27419 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:114px;
  3566. width:38px;
  3567. height:38px;
  3568. display:flex;
  3569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:12px;
  3573. color:#606266;
  3574. }
  3575. #u27419 .text {
  3576. position:absolute;
  3577. align-self:center;
  3578. padding:2px 2px 2px 0px;
  3579. box-sizing:border-box;
  3580. width:100%;
  3581. }
  3582. #u27419_text {
  3583. border-width:0px;
  3584. word-wrap:break-word;
  3585. text-transform:none;
  3586. }
  3587. #u27420_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:71px;
  3593. height:38px;
  3594. }
  3595. #u27420 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:38px;
  3599. top:114px;
  3600. width:71px;
  3601. height:38px;
  3602. display:flex;
  3603. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:12px;
  3607. color:#606266;
  3608. }
  3609. #u27420 .text {
  3610. position:absolute;
  3611. align-self:center;
  3612. padding:2px 2px 2px 0px;
  3613. box-sizing:border-box;
  3614. width:100%;
  3615. }
  3616. #u27420_text {
  3617. border-width:0px;
  3618. word-wrap:break-word;
  3619. text-transform:none;
  3620. visibility:hidden;
  3621. }
  3622. #u27421_img {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:71px;
  3628. height:38px;
  3629. }
  3630. #u27421 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:109px;
  3634. top:114px;
  3635. width:71px;
  3636. height:38px;
  3637. display:flex;
  3638. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:12px;
  3642. color:#606266;
  3643. }
  3644. #u27421 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 2px 2px 0px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u27421_text {
  3652. border-width:0px;
  3653. word-wrap:break-word;
  3654. text-transform:none;
  3655. visibility:hidden;
  3656. }
  3657. #u27422_img {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:71px;
  3663. height:38px;
  3664. }
  3665. #u27422 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:180px;
  3669. top:114px;
  3670. width:71px;
  3671. height:38px;
  3672. display:flex;
  3673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:12px;
  3677. color:#606266;
  3678. }
  3679. #u27422 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:2px 2px 2px 0px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u27422_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. }
  3691. #u27423_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:71px;
  3697. height:38px;
  3698. }
  3699. #u27423 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:251px;
  3703. top:114px;
  3704. width:71px;
  3705. height:38px;
  3706. display:flex;
  3707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:12px;
  3711. color:#606266;
  3712. }
  3713. #u27423 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 0px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u27423_text {
  3721. border-width:0px;
  3722. word-wrap:break-word;
  3723. text-transform:none;
  3724. visibility:hidden;
  3725. }
  3726. #u27424_img {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:71px;
  3732. height:38px;
  3733. }
  3734. #u27424 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:322px;
  3738. top:114px;
  3739. width:71px;
  3740. height:38px;
  3741. display:flex;
  3742. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:12px;
  3746. color:#606266;
  3747. }
  3748. #u27424 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 0px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u27424_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u27425_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:71px;
  3767. height:38px;
  3768. }
  3769. #u27425 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:393px;
  3773. top:114px;
  3774. width:71px;
  3775. height:38px;
  3776. display:flex;
  3777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:12px;
  3781. color:#606266;
  3782. }
  3783. #u27425 .text {
  3784. position:absolute;
  3785. align-self:center;
  3786. padding:2px 2px 2px 0px;
  3787. box-sizing:border-box;
  3788. width:100%;
  3789. }
  3790. #u27425_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. visibility:hidden;
  3795. }
  3796. #u27426_img {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:71px;
  3802. height:38px;
  3803. }
  3804. #u27426 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:464px;
  3808. top:114px;
  3809. width:71px;
  3810. height:38px;
  3811. display:flex;
  3812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:12px;
  3816. color:#606266;
  3817. }
  3818. #u27426 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u27426_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u27427_img {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:81px;
  3837. height:38px;
  3838. }
  3839. #u27427 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:535px;
  3843. top:114px;
  3844. width:81px;
  3845. height:38px;
  3846. display:flex;
  3847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:12px;
  3851. color:#606266;
  3852. }
  3853. #u27427 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:2px 2px 2px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u27427_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. visibility:hidden;
  3865. }
  3866. #u27428_img {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:71px;
  3872. height:38px;
  3873. }
  3874. #u27428 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:616px;
  3878. top:114px;
  3879. width:71px;
  3880. height:38px;
  3881. display:flex;
  3882. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3883. font-weight:400;
  3884. font-style:normal;
  3885. font-size:12px;
  3886. color:#606266;
  3887. }
  3888. #u27428 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 2px 2px 0px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u27428_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. visibility:hidden;
  3900. }
  3901. #u27429_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:71px;
  3907. height:38px;
  3908. }
  3909. #u27429 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:687px;
  3913. top:114px;
  3914. width:71px;
  3915. height:38px;
  3916. display:flex;
  3917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:12px;
  3921. color:#606266;
  3922. }
  3923. #u27429 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 0px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u27429_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u27430_img {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:71px;
  3942. height:38px;
  3943. }
  3944. #u27430 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:758px;
  3948. top:114px;
  3949. width:71px;
  3950. height:38px;
  3951. display:flex;
  3952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:12px;
  3956. color:#606266;
  3957. }
  3958. #u27430 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:2px 2px 2px 0px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u27430_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u27431_img {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:71px;
  3977. height:38px;
  3978. }
  3979. #u27431 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:829px;
  3983. top:114px;
  3984. width:71px;
  3985. height:38px;
  3986. display:flex;
  3987. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:12px;
  3991. color:#606266;
  3992. }
  3993. #u27431 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 0px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u27431_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u27432_img {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:71px;
  4012. height:38px;
  4013. }
  4014. #u27432 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:900px;
  4018. top:114px;
  4019. width:71px;
  4020. height:38px;
  4021. display:flex;
  4022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:12px;
  4026. color:#606266;
  4027. }
  4028. #u27432 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 0px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u27432_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u27433_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:71px;
  4047. height:38px;
  4048. }
  4049. #u27433 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:971px;
  4053. top:114px;
  4054. width:71px;
  4055. height:38px;
  4056. display:flex;
  4057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. color:#606266;
  4062. }
  4063. #u27433 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u27433_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u27434_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:71px;
  4082. height:38px;
  4083. }
  4084. #u27434 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:1042px;
  4088. top:114px;
  4089. width:71px;
  4090. height:38px;
  4091. display:flex;
  4092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:12px;
  4096. color:#606266;
  4097. }
  4098. #u27434 .text {
  4099. position:absolute;
  4100. align-self:center;
  4101. padding:2px 2px 2px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u27434_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. visibility:hidden;
  4110. }
  4111. #u27435_img {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:106px;
  4117. height:38px;
  4118. }
  4119. #u27435 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:1113px;
  4123. top:114px;
  4124. width:106px;
  4125. height:38px;
  4126. display:flex;
  4127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4128. font-weight:400;
  4129. font-style:normal;
  4130. font-size:12px;
  4131. }
  4132. #u27435 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 0px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u27435_text {
  4140. border-width:0px;
  4141. word-wrap:break-word;
  4142. text-transform:none;
  4143. }
  4144. #u27436_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:38px;
  4150. height:35px;
  4151. }
  4152. #u27436 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:152px;
  4157. width:38px;
  4158. height:35px;
  4159. display:flex;
  4160. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:12px;
  4164. color:#606266;
  4165. }
  4166. #u27436 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 0px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u27436_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. }
  4178. #u27437_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:71px;
  4184. height:35px;
  4185. }
  4186. #u27437 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:38px;
  4190. top:152px;
  4191. width:71px;
  4192. height:35px;
  4193. display:flex;
  4194. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:12px;
  4198. color:#606266;
  4199. }
  4200. #u27437 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u27437_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u27438_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:71px;
  4219. height:35px;
  4220. }
  4221. #u27438 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:109px;
  4225. top:152px;
  4226. width:71px;
  4227. height:35px;
  4228. display:flex;
  4229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. color:#606266;
  4234. }
  4235. #u27438 .text {
  4236. position:absolute;
  4237. align-self:center;
  4238. padding:2px 2px 2px 0px;
  4239. box-sizing:border-box;
  4240. width:100%;
  4241. }
  4242. #u27438_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. visibility:hidden;
  4247. }
  4248. #u27439_img {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:71px;
  4254. height:35px;
  4255. }
  4256. #u27439 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:180px;
  4260. top:152px;
  4261. width:71px;
  4262. height:35px;
  4263. display:flex;
  4264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:12px;
  4268. color:#606266;
  4269. }
  4270. #u27439 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 2px 2px 0px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u27439_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. visibility:hidden;
  4282. }
  4283. #u27440_img {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:71px;
  4289. height:35px;
  4290. }
  4291. #u27440 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:251px;
  4295. top:152px;
  4296. width:71px;
  4297. height:35px;
  4298. display:flex;
  4299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:12px;
  4303. color:#606266;
  4304. }
  4305. #u27440 .text {
  4306. position:absolute;
  4307. align-self:center;
  4308. padding:2px 2px 2px 0px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u27440_text {
  4313. border-width:0px;
  4314. word-wrap:break-word;
  4315. text-transform:none;
  4316. visibility:hidden;
  4317. }
  4318. #u27441_img {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:71px;
  4324. height:35px;
  4325. }
  4326. #u27441 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:322px;
  4330. top:152px;
  4331. width:71px;
  4332. height:35px;
  4333. display:flex;
  4334. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:12px;
  4338. color:#606266;
  4339. }
  4340. #u27441 .text {
  4341. position:absolute;
  4342. align-self:center;
  4343. padding:2px 2px 2px 0px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u27441_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. visibility:hidden;
  4352. }
  4353. #u27442_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:71px;
  4359. height:35px;
  4360. }
  4361. #u27442 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:393px;
  4365. top:152px;
  4366. width:71px;
  4367. height:35px;
  4368. display:flex;
  4369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4370. font-weight:400;
  4371. font-style:normal;
  4372. font-size:12px;
  4373. color:#606266;
  4374. }
  4375. #u27442 .text {
  4376. position:absolute;
  4377. align-self:center;
  4378. padding:2px 2px 2px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u27442_text {
  4383. border-width:0px;
  4384. word-wrap:break-word;
  4385. text-transform:none;
  4386. visibility:hidden;
  4387. }
  4388. #u27443_img {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:71px;
  4394. height:35px;
  4395. }
  4396. #u27443 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:464px;
  4400. top:152px;
  4401. width:71px;
  4402. height:35px;
  4403. display:flex;
  4404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4405. font-weight:400;
  4406. font-style:normal;
  4407. font-size:12px;
  4408. color:#606266;
  4409. }
  4410. #u27443 .text {
  4411. position:absolute;
  4412. align-self:center;
  4413. padding:2px 2px 2px 0px;
  4414. box-sizing:border-box;
  4415. width:100%;
  4416. }
  4417. #u27443_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. visibility:hidden;
  4422. }
  4423. #u27444_img {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:81px;
  4429. height:35px;
  4430. }
  4431. #u27444 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:535px;
  4435. top:152px;
  4436. width:81px;
  4437. height:35px;
  4438. display:flex;
  4439. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:12px;
  4443. color:#606266;
  4444. }
  4445. #u27444 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 0px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u27444_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u27445_img {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:71px;
  4464. height:35px;
  4465. }
  4466. #u27445 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:616px;
  4470. top:152px;
  4471. width:71px;
  4472. height:35px;
  4473. display:flex;
  4474. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4475. font-weight:400;
  4476. font-style:normal;
  4477. font-size:12px;
  4478. color:#606266;
  4479. }
  4480. #u27445 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 0px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u27445_text {
  4488. border-width:0px;
  4489. word-wrap:break-word;
  4490. text-transform:none;
  4491. visibility:hidden;
  4492. }
  4493. #u27446_img {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:71px;
  4499. height:35px;
  4500. }
  4501. #u27446 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:687px;
  4505. top:152px;
  4506. width:71px;
  4507. height:35px;
  4508. display:flex;
  4509. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:12px;
  4513. color:#606266;
  4514. }
  4515. #u27446 .text {
  4516. position:absolute;
  4517. align-self:center;
  4518. padding:2px 2px 2px 0px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u27446_text {
  4523. border-width:0px;
  4524. word-wrap:break-word;
  4525. text-transform:none;
  4526. visibility:hidden;
  4527. }
  4528. #u27447_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:71px;
  4534. height:35px;
  4535. }
  4536. #u27447 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:758px;
  4540. top:152px;
  4541. width:71px;
  4542. height:35px;
  4543. display:flex;
  4544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:12px;
  4548. color:#606266;
  4549. }
  4550. #u27447 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 0px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u27447_text {
  4558. border-width:0px;
  4559. word-wrap:break-word;
  4560. text-transform:none;
  4561. visibility:hidden;
  4562. }
  4563. #u27448_img {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:71px;
  4569. height:35px;
  4570. }
  4571. #u27448 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:829px;
  4575. top:152px;
  4576. width:71px;
  4577. height:35px;
  4578. display:flex;
  4579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4580. font-weight:400;
  4581. font-style:normal;
  4582. font-size:12px;
  4583. color:#606266;
  4584. }
  4585. #u27448 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 2px 2px 0px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u27448_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. visibility:hidden;
  4597. }
  4598. #u27449_img {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:71px;
  4604. height:35px;
  4605. }
  4606. #u27449 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:900px;
  4610. top:152px;
  4611. width:71px;
  4612. height:35px;
  4613. display:flex;
  4614. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:12px;
  4618. color:#606266;
  4619. }
  4620. #u27449 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:2px 2px 2px 0px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u27449_text {
  4628. border-width:0px;
  4629. word-wrap:break-word;
  4630. text-transform:none;
  4631. visibility:hidden;
  4632. }
  4633. #u27450_img {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:0px;
  4637. top:0px;
  4638. width:71px;
  4639. height:35px;
  4640. }
  4641. #u27450 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:971px;
  4645. top:152px;
  4646. width:71px;
  4647. height:35px;
  4648. display:flex;
  4649. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:12px;
  4653. color:#606266;
  4654. }
  4655. #u27450 .text {
  4656. position:absolute;
  4657. align-self:center;
  4658. padding:2px 2px 2px 0px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u27450_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. visibility:hidden;
  4667. }
  4668. #u27451_img {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:71px;
  4674. height:35px;
  4675. }
  4676. #u27451 {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:1042px;
  4680. top:152px;
  4681. width:71px;
  4682. height:35px;
  4683. display:flex;
  4684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:12px;
  4688. color:#606266;
  4689. }
  4690. #u27451 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:2px 2px 2px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u27451_text {
  4698. border-width:0px;
  4699. word-wrap:break-word;
  4700. text-transform:none;
  4701. visibility:hidden;
  4702. }
  4703. #u27452_img {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:106px;
  4709. height:35px;
  4710. }
  4711. #u27452 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:1113px;
  4715. top:152px;
  4716. width:106px;
  4717. height:35px;
  4718. display:flex;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:12px;
  4723. color:#02A7F0;
  4724. }
  4725. #u27452 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:2px 2px 2px 0px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u27452_text {
  4733. border-width:0px;
  4734. word-wrap:break-word;
  4735. text-transform:none;
  4736. visibility:hidden;
  4737. }
  4738. #u27453_img {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:38px;
  4744. height:35px;
  4745. }
  4746. #u27453 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:0px;
  4750. top:187px;
  4751. width:38px;
  4752. height:35px;
  4753. display:flex;
  4754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:12px;
  4758. color:#606266;
  4759. }
  4760. #u27453 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 0px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u27453_text {
  4768. border-width:0px;
  4769. word-wrap:break-word;
  4770. text-transform:none;
  4771. visibility:hidden;
  4772. }
  4773. #u27454_img {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:71px;
  4779. height:35px;
  4780. }
  4781. #u27454 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:38px;
  4785. top:187px;
  4786. width:71px;
  4787. height:35px;
  4788. display:flex;
  4789. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4790. font-weight:400;
  4791. font-style:normal;
  4792. font-size:12px;
  4793. color:#606266;
  4794. }
  4795. #u27454 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 0px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u27454_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u27455_img {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:71px;
  4814. height:35px;
  4815. }
  4816. #u27455 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:109px;
  4820. top:187px;
  4821. width:71px;
  4822. height:35px;
  4823. display:flex;
  4824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:12px;
  4828. color:#606266;
  4829. }
  4830. #u27455 .text {
  4831. position:absolute;
  4832. align-self:center;
  4833. padding:2px 2px 2px 0px;
  4834. box-sizing:border-box;
  4835. width:100%;
  4836. }
  4837. #u27455_text {
  4838. border-width:0px;
  4839. word-wrap:break-word;
  4840. text-transform:none;
  4841. visibility:hidden;
  4842. }
  4843. #u27456_img {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:71px;
  4849. height:35px;
  4850. }
  4851. #u27456 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:180px;
  4855. top:187px;
  4856. width:71px;
  4857. height:35px;
  4858. display:flex;
  4859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4860. font-weight:400;
  4861. font-style:normal;
  4862. font-size:12px;
  4863. color:#606266;
  4864. }
  4865. #u27456 .text {
  4866. position:absolute;
  4867. align-self:center;
  4868. padding:2px 2px 2px 0px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u27456_text {
  4873. border-width:0px;
  4874. word-wrap:break-word;
  4875. text-transform:none;
  4876. visibility:hidden;
  4877. }
  4878. #u27457_img {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:71px;
  4884. height:35px;
  4885. }
  4886. #u27457 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:251px;
  4890. top:187px;
  4891. width:71px;
  4892. height:35px;
  4893. display:flex;
  4894. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4895. font-weight:400;
  4896. font-style:normal;
  4897. font-size:12px;
  4898. color:#606266;
  4899. }
  4900. #u27457 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 0px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u27457_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u27458_img {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:71px;
  4919. height:35px;
  4920. }
  4921. #u27458 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:322px;
  4925. top:187px;
  4926. width:71px;
  4927. height:35px;
  4928. display:flex;
  4929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:12px;
  4933. color:#606266;
  4934. }
  4935. #u27458 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:2px 2px 2px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u27458_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. visibility:hidden;
  4947. }
  4948. #u27459_img {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:71px;
  4954. height:35px;
  4955. }
  4956. #u27459 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:393px;
  4960. top:187px;
  4961. width:71px;
  4962. height:35px;
  4963. display:flex;
  4964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. font-size:12px;
  4968. color:#606266;
  4969. }
  4970. #u27459 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 0px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u27459_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. visibility:hidden;
  4982. }
  4983. #u27460_img {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:71px;
  4989. height:35px;
  4990. }
  4991. #u27460 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:464px;
  4995. top:187px;
  4996. width:71px;
  4997. height:35px;
  4998. display:flex;
  4999. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5000. font-weight:400;
  5001. font-style:normal;
  5002. font-size:12px;
  5003. color:#606266;
  5004. }
  5005. #u27460 .text {
  5006. position:absolute;
  5007. align-self:center;
  5008. padding:2px 2px 2px 0px;
  5009. box-sizing:border-box;
  5010. width:100%;
  5011. }
  5012. #u27460_text {
  5013. border-width:0px;
  5014. word-wrap:break-word;
  5015. text-transform:none;
  5016. visibility:hidden;
  5017. }
  5018. #u27461_img {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:81px;
  5024. height:35px;
  5025. }
  5026. #u27461 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:535px;
  5030. top:187px;
  5031. width:81px;
  5032. height:35px;
  5033. display:flex;
  5034. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:12px;
  5038. color:#606266;
  5039. }
  5040. #u27461 .text {
  5041. position:absolute;
  5042. align-self:center;
  5043. padding:2px 2px 2px 0px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u27461_text {
  5048. border-width:0px;
  5049. word-wrap:break-word;
  5050. text-transform:none;
  5051. visibility:hidden;
  5052. }
  5053. #u27462_img {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:71px;
  5059. height:35px;
  5060. }
  5061. #u27462 {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:616px;
  5065. top:187px;
  5066. width:71px;
  5067. height:35px;
  5068. display:flex;
  5069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5070. font-weight:400;
  5071. font-style:normal;
  5072. font-size:12px;
  5073. color:#606266;
  5074. }
  5075. #u27462 .text {
  5076. position:absolute;
  5077. align-self:center;
  5078. padding:2px 2px 2px 0px;
  5079. box-sizing:border-box;
  5080. width:100%;
  5081. }
  5082. #u27462_text {
  5083. border-width:0px;
  5084. word-wrap:break-word;
  5085. text-transform:none;
  5086. visibility:hidden;
  5087. }
  5088. #u27463_img {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:71px;
  5094. height:35px;
  5095. }
  5096. #u27463 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:687px;
  5100. top:187px;
  5101. width:71px;
  5102. height:35px;
  5103. display:flex;
  5104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:12px;
  5108. color:#606266;
  5109. }
  5110. #u27463 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:2px 2px 2px 0px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u27463_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. visibility:hidden;
  5122. }
  5123. #u27464_img {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:71px;
  5129. height:35px;
  5130. }
  5131. #u27464 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:758px;
  5135. top:187px;
  5136. width:71px;
  5137. height:35px;
  5138. display:flex;
  5139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5140. font-weight:400;
  5141. font-style:normal;
  5142. font-size:12px;
  5143. color:#606266;
  5144. }
  5145. #u27464 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 0px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u27464_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. visibility:hidden;
  5157. }
  5158. #u27465_img {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:71px;
  5164. height:35px;
  5165. }
  5166. #u27465 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:829px;
  5170. top:187px;
  5171. width:71px;
  5172. height:35px;
  5173. display:flex;
  5174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5175. font-weight:400;
  5176. font-style:normal;
  5177. font-size:12px;
  5178. color:#606266;
  5179. }
  5180. #u27465 .text {
  5181. position:absolute;
  5182. align-self:center;
  5183. padding:2px 2px 2px 0px;
  5184. box-sizing:border-box;
  5185. width:100%;
  5186. }
  5187. #u27465_text {
  5188. border-width:0px;
  5189. word-wrap:break-word;
  5190. text-transform:none;
  5191. visibility:hidden;
  5192. }
  5193. #u27466_img {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:71px;
  5199. height:35px;
  5200. }
  5201. #u27466 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:900px;
  5205. top:187px;
  5206. width:71px;
  5207. height:35px;
  5208. display:flex;
  5209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:12px;
  5213. color:#606266;
  5214. }
  5215. #u27466 .text {
  5216. position:absolute;
  5217. align-self:center;
  5218. padding:2px 2px 2px 0px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u27466_text {
  5223. border-width:0px;
  5224. word-wrap:break-word;
  5225. text-transform:none;
  5226. visibility:hidden;
  5227. }
  5228. #u27467_img {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:71px;
  5234. height:35px;
  5235. }
  5236. #u27467 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:971px;
  5240. top:187px;
  5241. width:71px;
  5242. height:35px;
  5243. display:flex;
  5244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:12px;
  5248. color:#606266;
  5249. }
  5250. #u27467 .text {
  5251. position:absolute;
  5252. align-self:center;
  5253. padding:2px 2px 2px 0px;
  5254. box-sizing:border-box;
  5255. width:100%;
  5256. }
  5257. #u27467_text {
  5258. border-width:0px;
  5259. word-wrap:break-word;
  5260. text-transform:none;
  5261. visibility:hidden;
  5262. }
  5263. #u27468_img {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:71px;
  5269. height:35px;
  5270. }
  5271. #u27468 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:1042px;
  5275. top:187px;
  5276. width:71px;
  5277. height:35px;
  5278. display:flex;
  5279. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:12px;
  5283. color:#606266;
  5284. }
  5285. #u27468 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:2px 2px 2px 0px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u27468_text {
  5293. border-width:0px;
  5294. word-wrap:break-word;
  5295. text-transform:none;
  5296. visibility:hidden;
  5297. }
  5298. #u27469_img {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:106px;
  5304. height:35px;
  5305. }
  5306. #u27469 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:1113px;
  5310. top:187px;
  5311. width:106px;
  5312. height:35px;
  5313. display:flex;
  5314. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. font-size:12px;
  5318. color:#606266;
  5319. }
  5320. #u27469 .text {
  5321. position:absolute;
  5322. align-self:center;
  5323. padding:2px 2px 2px 0px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u27469_text {
  5328. border-width:0px;
  5329. word-wrap:break-word;
  5330. text-transform:none;
  5331. visibility:hidden;
  5332. }
  5333. #u27470_img {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:38px;
  5339. height:38px;
  5340. }
  5341. #u27470 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:222px;
  5346. width:38px;
  5347. height:38px;
  5348. display:flex;
  5349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:12px;
  5353. color:#606266;
  5354. }
  5355. #u27470 .text {
  5356. position:absolute;
  5357. align-self:center;
  5358. padding:2px 2px 2px 0px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u27470_text {
  5363. border-width:0px;
  5364. word-wrap:break-word;
  5365. text-transform:none;
  5366. visibility:hidden;
  5367. }
  5368. #u27471_img {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:71px;
  5374. height:38px;
  5375. }
  5376. #u27471 {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:38px;
  5380. top:222px;
  5381. width:71px;
  5382. height:38px;
  5383. display:flex;
  5384. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5385. font-weight:400;
  5386. font-style:normal;
  5387. font-size:12px;
  5388. color:#606266;
  5389. }
  5390. #u27471 .text {
  5391. position:absolute;
  5392. align-self:center;
  5393. padding:2px 2px 2px 0px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u27471_text {
  5398. border-width:0px;
  5399. word-wrap:break-word;
  5400. text-transform:none;
  5401. visibility:hidden;
  5402. }
  5403. #u27472_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:71px;
  5409. height:38px;
  5410. }
  5411. #u27472 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:109px;
  5415. top:222px;
  5416. width:71px;
  5417. height:38px;
  5418. display:flex;
  5419. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:12px;
  5423. color:#606266;
  5424. }
  5425. #u27472 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:2px 2px 2px 0px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u27472_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. visibility:hidden;
  5437. }
  5438. #u27473_img {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:71px;
  5444. height:38px;
  5445. }
  5446. #u27473 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:180px;
  5450. top:222px;
  5451. width:71px;
  5452. height:38px;
  5453. display:flex;
  5454. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. font-size:12px;
  5458. color:#606266;
  5459. }
  5460. #u27473 .text {
  5461. position:absolute;
  5462. align-self:center;
  5463. padding:2px 2px 2px 0px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u27473_text {
  5468. border-width:0px;
  5469. word-wrap:break-word;
  5470. text-transform:none;
  5471. visibility:hidden;
  5472. }
  5473. #u27474_img {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:71px;
  5479. height:38px;
  5480. }
  5481. #u27474 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:251px;
  5485. top:222px;
  5486. width:71px;
  5487. height:38px;
  5488. display:flex;
  5489. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:12px;
  5493. color:#606266;
  5494. }
  5495. #u27474 .text {
  5496. position:absolute;
  5497. align-self:center;
  5498. padding:2px 2px 2px 0px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u27474_text {
  5503. border-width:0px;
  5504. word-wrap:break-word;
  5505. text-transform:none;
  5506. visibility:hidden;
  5507. }
  5508. #u27475_img {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:71px;
  5514. height:38px;
  5515. }
  5516. #u27475 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:322px;
  5520. top:222px;
  5521. width:71px;
  5522. height:38px;
  5523. display:flex;
  5524. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. font-size:12px;
  5528. color:#606266;
  5529. }
  5530. #u27475 .text {
  5531. position:absolute;
  5532. align-self:center;
  5533. padding:2px 2px 2px 0px;
  5534. box-sizing:border-box;
  5535. width:100%;
  5536. }
  5537. #u27475_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. visibility:hidden;
  5542. }
  5543. #u27476_img {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:71px;
  5549. height:38px;
  5550. }
  5551. #u27476 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:393px;
  5555. top:222px;
  5556. width:71px;
  5557. height:38px;
  5558. display:flex;
  5559. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:12px;
  5563. color:#606266;
  5564. }
  5565. #u27476 .text {
  5566. position:absolute;
  5567. align-self:center;
  5568. padding:2px 2px 2px 0px;
  5569. box-sizing:border-box;
  5570. width:100%;
  5571. }
  5572. #u27476_text {
  5573. border-width:0px;
  5574. word-wrap:break-word;
  5575. text-transform:none;
  5576. visibility:hidden;
  5577. }
  5578. #u27477_img {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:71px;
  5584. height:38px;
  5585. }
  5586. #u27477 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:464px;
  5590. top:222px;
  5591. width:71px;
  5592. height:38px;
  5593. display:flex;
  5594. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:12px;
  5598. color:#606266;
  5599. }
  5600. #u27477 .text {
  5601. position:absolute;
  5602. align-self:center;
  5603. padding:2px 2px 2px 0px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u27477_text {
  5608. border-width:0px;
  5609. word-wrap:break-word;
  5610. text-transform:none;
  5611. visibility:hidden;
  5612. }
  5613. #u27478_img {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:81px;
  5619. height:38px;
  5620. }
  5621. #u27478 {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:535px;
  5625. top:222px;
  5626. width:81px;
  5627. height:38px;
  5628. display:flex;
  5629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5630. font-weight:400;
  5631. font-style:normal;
  5632. font-size:12px;
  5633. color:#606266;
  5634. }
  5635. #u27478 .text {
  5636. position:absolute;
  5637. align-self:center;
  5638. padding:2px 2px 2px 0px;
  5639. box-sizing:border-box;
  5640. width:100%;
  5641. }
  5642. #u27478_text {
  5643. border-width:0px;
  5644. word-wrap:break-word;
  5645. text-transform:none;
  5646. visibility:hidden;
  5647. }
  5648. #u27479_img {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:71px;
  5654. height:38px;
  5655. }
  5656. #u27479 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:616px;
  5660. top:222px;
  5661. width:71px;
  5662. height:38px;
  5663. display:flex;
  5664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:12px;
  5668. color:#606266;
  5669. }
  5670. #u27479 .text {
  5671. position:absolute;
  5672. align-self:center;
  5673. padding:2px 2px 2px 0px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u27479_text {
  5678. border-width:0px;
  5679. word-wrap:break-word;
  5680. text-transform:none;
  5681. visibility:hidden;
  5682. }
  5683. #u27480_img {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:71px;
  5689. height:38px;
  5690. }
  5691. #u27480 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:687px;
  5695. top:222px;
  5696. width:71px;
  5697. height:38px;
  5698. display:flex;
  5699. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:12px;
  5703. color:#606266;
  5704. }
  5705. #u27480 .text {
  5706. position:absolute;
  5707. align-self:center;
  5708. padding:2px 2px 2px 0px;
  5709. box-sizing:border-box;
  5710. width:100%;
  5711. }
  5712. #u27480_text {
  5713. border-width:0px;
  5714. word-wrap:break-word;
  5715. text-transform:none;
  5716. visibility:hidden;
  5717. }
  5718. #u27481_img {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:71px;
  5724. height:38px;
  5725. }
  5726. #u27481 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:758px;
  5730. top:222px;
  5731. width:71px;
  5732. height:38px;
  5733. display:flex;
  5734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:12px;
  5738. color:#606266;
  5739. }
  5740. #u27481 .text {
  5741. position:absolute;
  5742. align-self:center;
  5743. padding:2px 2px 2px 0px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u27481_text {
  5748. border-width:0px;
  5749. word-wrap:break-word;
  5750. text-transform:none;
  5751. visibility:hidden;
  5752. }
  5753. #u27482_img {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:71px;
  5759. height:38px;
  5760. }
  5761. #u27482 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:829px;
  5765. top:222px;
  5766. width:71px;
  5767. height:38px;
  5768. display:flex;
  5769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:12px;
  5773. color:#606266;
  5774. }
  5775. #u27482 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:2px 2px 2px 0px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u27482_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u27483_img {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:71px;
  5794. height:38px;
  5795. }
  5796. #u27483 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:900px;
  5800. top:222px;
  5801. width:71px;
  5802. height:38px;
  5803. display:flex;
  5804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5805. font-weight:400;
  5806. font-style:normal;
  5807. font-size:12px;
  5808. color:#606266;
  5809. }
  5810. #u27483 .text {
  5811. position:absolute;
  5812. align-self:center;
  5813. padding:2px 2px 2px 0px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u27483_text {
  5818. border-width:0px;
  5819. word-wrap:break-word;
  5820. text-transform:none;
  5821. visibility:hidden;
  5822. }
  5823. #u27484_img {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:71px;
  5829. height:38px;
  5830. }
  5831. #u27484 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:971px;
  5835. top:222px;
  5836. width:71px;
  5837. height:38px;
  5838. display:flex;
  5839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:12px;
  5843. color:#606266;
  5844. }
  5845. #u27484 .text {
  5846. position:absolute;
  5847. align-self:center;
  5848. padding:2px 2px 2px 0px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u27484_text {
  5853. border-width:0px;
  5854. word-wrap:break-word;
  5855. text-transform:none;
  5856. visibility:hidden;
  5857. }
  5858. #u27485_img {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:71px;
  5864. height:38px;
  5865. }
  5866. #u27485 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:1042px;
  5870. top:222px;
  5871. width:71px;
  5872. height:38px;
  5873. display:flex;
  5874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:12px;
  5878. color:#606266;
  5879. }
  5880. #u27485 .text {
  5881. position:absolute;
  5882. align-self:center;
  5883. padding:2px 2px 2px 0px;
  5884. box-sizing:border-box;
  5885. width:100%;
  5886. }
  5887. #u27485_text {
  5888. border-width:0px;
  5889. word-wrap:break-word;
  5890. text-transform:none;
  5891. visibility:hidden;
  5892. }
  5893. #u27486_img {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:106px;
  5899. height:38px;
  5900. }
  5901. #u27486 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:1113px;
  5905. top:222px;
  5906. width:106px;
  5907. height:38px;
  5908. display:flex;
  5909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:12px;
  5913. color:#606266;
  5914. }
  5915. #u27486 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 0px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u27486_text {
  5923. border-width:0px;
  5924. word-wrap:break-word;
  5925. text-transform:none;
  5926. visibility:hidden;
  5927. }
  5928. #u27487_img {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:38px;
  5934. height:32px;
  5935. }
  5936. #u27487 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:260px;
  5941. width:38px;
  5942. height:32px;
  5943. display:flex;
  5944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:12px;
  5948. color:#606266;
  5949. }
  5950. #u27487 .text {
  5951. position:absolute;
  5952. align-self:center;
  5953. padding:2px 2px 2px 0px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u27487_text {
  5958. border-width:0px;
  5959. word-wrap:break-word;
  5960. text-transform:none;
  5961. visibility:hidden;
  5962. }
  5963. #u27488_img {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:0px;
  5967. top:0px;
  5968. width:71px;
  5969. height:32px;
  5970. }
  5971. #u27488 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:38px;
  5975. top:260px;
  5976. width:71px;
  5977. height:32px;
  5978. display:flex;
  5979. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:12px;
  5983. color:#606266;
  5984. }
  5985. #u27488 .text {
  5986. position:absolute;
  5987. align-self:center;
  5988. padding:2px 2px 2px 0px;
  5989. box-sizing:border-box;
  5990. width:100%;
  5991. }
  5992. #u27488_text {
  5993. border-width:0px;
  5994. word-wrap:break-word;
  5995. text-transform:none;
  5996. visibility:hidden;
  5997. }
  5998. #u27489_img {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:71px;
  6004. height:32px;
  6005. }
  6006. #u27489 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:109px;
  6010. top:260px;
  6011. width:71px;
  6012. height:32px;
  6013. display:flex;
  6014. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:12px;
  6018. color:#606266;
  6019. }
  6020. #u27489 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:2px 2px 2px 0px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u27489_text {
  6028. border-width:0px;
  6029. word-wrap:break-word;
  6030. text-transform:none;
  6031. visibility:hidden;
  6032. }
  6033. #u27490_img {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:71px;
  6039. height:32px;
  6040. }
  6041. #u27490 {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:180px;
  6045. top:260px;
  6046. width:71px;
  6047. height:32px;
  6048. display:flex;
  6049. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:12px;
  6053. color:#606266;
  6054. }
  6055. #u27490 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:2px 2px 2px 0px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u27490_text {
  6063. border-width:0px;
  6064. word-wrap:break-word;
  6065. text-transform:none;
  6066. visibility:hidden;
  6067. }
  6068. #u27491_img {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:71px;
  6074. height:32px;
  6075. }
  6076. #u27491 {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:251px;
  6080. top:260px;
  6081. width:71px;
  6082. height:32px;
  6083. display:flex;
  6084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:12px;
  6088. color:#606266;
  6089. }
  6090. #u27491 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:2px 2px 2px 0px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u27491_text {
  6098. border-width:0px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. visibility:hidden;
  6102. }
  6103. #u27492_img {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:71px;
  6109. height:32px;
  6110. }
  6111. #u27492 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:322px;
  6115. top:260px;
  6116. width:71px;
  6117. height:32px;
  6118. display:flex;
  6119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:12px;
  6123. color:#606266;
  6124. }
  6125. #u27492 .text {
  6126. position:absolute;
  6127. align-self:center;
  6128. padding:2px 2px 2px 0px;
  6129. box-sizing:border-box;
  6130. width:100%;
  6131. }
  6132. #u27492_text {
  6133. border-width:0px;
  6134. word-wrap:break-word;
  6135. text-transform:none;
  6136. visibility:hidden;
  6137. }
  6138. #u27493_img {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:71px;
  6144. height:32px;
  6145. }
  6146. #u27493 {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:393px;
  6150. top:260px;
  6151. width:71px;
  6152. height:32px;
  6153. display:flex;
  6154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6155. font-weight:400;
  6156. font-style:normal;
  6157. font-size:12px;
  6158. color:#606266;
  6159. }
  6160. #u27493 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 0px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u27493_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. visibility:hidden;
  6172. }
  6173. #u27494_img {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:71px;
  6179. height:32px;
  6180. }
  6181. #u27494 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:464px;
  6185. top:260px;
  6186. width:71px;
  6187. height:32px;
  6188. display:flex;
  6189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:12px;
  6193. color:#606266;
  6194. }
  6195. #u27494 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 0px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u27494_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u27495_img {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:81px;
  6214. height:32px;
  6215. }
  6216. #u27495 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:535px;
  6220. top:260px;
  6221. width:81px;
  6222. height:32px;
  6223. display:flex;
  6224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:12px;
  6228. color:#606266;
  6229. }
  6230. #u27495 .text {
  6231. position:absolute;
  6232. align-self:center;
  6233. padding:2px 2px 2px 0px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u27495_text {
  6238. border-width:0px;
  6239. word-wrap:break-word;
  6240. text-transform:none;
  6241. visibility:hidden;
  6242. }
  6243. #u27496_img {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:71px;
  6249. height:32px;
  6250. }
  6251. #u27496 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:616px;
  6255. top:260px;
  6256. width:71px;
  6257. height:32px;
  6258. display:flex;
  6259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:12px;
  6263. color:#606266;
  6264. }
  6265. #u27496 .text {
  6266. position:absolute;
  6267. align-self:center;
  6268. padding:2px 2px 2px 0px;
  6269. box-sizing:border-box;
  6270. width:100%;
  6271. }
  6272. #u27496_text {
  6273. border-width:0px;
  6274. word-wrap:break-word;
  6275. text-transform:none;
  6276. visibility:hidden;
  6277. }
  6278. #u27497_img {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:71px;
  6284. height:32px;
  6285. }
  6286. #u27497 {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:687px;
  6290. top:260px;
  6291. width:71px;
  6292. height:32px;
  6293. display:flex;
  6294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. font-size:12px;
  6298. color:#606266;
  6299. }
  6300. #u27497 .text {
  6301. position:absolute;
  6302. align-self:center;
  6303. padding:2px 2px 2px 0px;
  6304. box-sizing:border-box;
  6305. width:100%;
  6306. }
  6307. #u27497_text {
  6308. border-width:0px;
  6309. word-wrap:break-word;
  6310. text-transform:none;
  6311. visibility:hidden;
  6312. }
  6313. #u27498_img {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:71px;
  6319. height:32px;
  6320. }
  6321. #u27498 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:758px;
  6325. top:260px;
  6326. width:71px;
  6327. height:32px;
  6328. display:flex;
  6329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:12px;
  6333. color:#606266;
  6334. }
  6335. #u27498 .text {
  6336. position:absolute;
  6337. align-self:center;
  6338. padding:2px 2px 2px 0px;
  6339. box-sizing:border-box;
  6340. width:100%;
  6341. }
  6342. #u27498_text {
  6343. border-width:0px;
  6344. word-wrap:break-word;
  6345. text-transform:none;
  6346. visibility:hidden;
  6347. }
  6348. #u27499_img {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:71px;
  6354. height:32px;
  6355. }
  6356. #u27499 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:829px;
  6360. top:260px;
  6361. width:71px;
  6362. height:32px;
  6363. display:flex;
  6364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6365. font-weight:400;
  6366. font-style:normal;
  6367. font-size:12px;
  6368. color:#606266;
  6369. }
  6370. #u27499 .text {
  6371. position:absolute;
  6372. align-self:center;
  6373. padding:2px 2px 2px 0px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u27499_text {
  6378. border-width:0px;
  6379. word-wrap:break-word;
  6380. text-transform:none;
  6381. visibility:hidden;
  6382. }
  6383. #u27500_img {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:71px;
  6389. height:32px;
  6390. }
  6391. #u27500 {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:900px;
  6395. top:260px;
  6396. width:71px;
  6397. height:32px;
  6398. display:flex;
  6399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6400. font-weight:400;
  6401. font-style:normal;
  6402. font-size:12px;
  6403. color:#606266;
  6404. }
  6405. #u27500 .text {
  6406. position:absolute;
  6407. align-self:center;
  6408. padding:2px 2px 2px 0px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u27500_text {
  6413. border-width:0px;
  6414. word-wrap:break-word;
  6415. text-transform:none;
  6416. visibility:hidden;
  6417. }
  6418. #u27501_img {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:71px;
  6424. height:32px;
  6425. }
  6426. #u27501 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:971px;
  6430. top:260px;
  6431. width:71px;
  6432. height:32px;
  6433. display:flex;
  6434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:12px;
  6438. color:#606266;
  6439. }
  6440. #u27501 .text {
  6441. position:absolute;
  6442. align-self:center;
  6443. padding:2px 2px 2px 0px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u27501_text {
  6448. border-width:0px;
  6449. word-wrap:break-word;
  6450. text-transform:none;
  6451. visibility:hidden;
  6452. }
  6453. #u27502_img {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:0px;
  6457. top:0px;
  6458. width:71px;
  6459. height:32px;
  6460. }
  6461. #u27502 {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:1042px;
  6465. top:260px;
  6466. width:71px;
  6467. height:32px;
  6468. display:flex;
  6469. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6470. font-weight:400;
  6471. font-style:normal;
  6472. font-size:12px;
  6473. color:#606266;
  6474. }
  6475. #u27502 .text {
  6476. position:absolute;
  6477. align-self:center;
  6478. padding:2px 2px 2px 0px;
  6479. box-sizing:border-box;
  6480. width:100%;
  6481. }
  6482. #u27502_text {
  6483. border-width:0px;
  6484. word-wrap:break-word;
  6485. text-transform:none;
  6486. visibility:hidden;
  6487. }
  6488. #u27503_img {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:106px;
  6494. height:32px;
  6495. }
  6496. #u27503 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:1113px;
  6500. top:260px;
  6501. width:106px;
  6502. height:32px;
  6503. display:flex;
  6504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:12px;
  6508. color:#606266;
  6509. }
  6510. #u27503 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:2px 2px 2px 0px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u27503_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. visibility:hidden;
  6522. }
  6523. #u27504 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:0px;
  6527. top:0px;
  6528. width:0px;
  6529. height:0px;
  6530. }
  6531. #u27505_div {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:140px;
  6537. height:30px;
  6538. background:inherit;
  6539. background-color:rgba(255, 255, 255, 1);
  6540. box-sizing:border-box;
  6541. border-width:1px;
  6542. border-style:solid;
  6543. border-color:rgba(215, 215, 215, 1);
  6544. border-radius:4px;
  6545. -moz-box-shadow:none;
  6546. -webkit-box-shadow:none;
  6547. box-shadow:none;
  6548. font-size:11px;
  6549. }
  6550. #u27505 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:951px;
  6554. top:100px;
  6555. width:140px;
  6556. height:30px;
  6557. display:flex;
  6558. font-size:11px;
  6559. }
  6560. #u27505 .text {
  6561. position:absolute;
  6562. align-self:center;
  6563. padding:2px 2px 2px 2px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u27505_text {
  6568. border-width:0px;
  6569. word-wrap:break-word;
  6570. text-transform:none;
  6571. visibility:hidden;
  6572. }
  6573. #u27506_input {
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:120px;
  6578. height:23px;
  6579. padding:2px 2px 2px 2px;
  6580. font-family:'ArialMT', 'Arial', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. font-size:11px;
  6584. letter-spacing:normal;
  6585. color:#AAAAAA;
  6586. vertical-align:none;
  6587. text-align:left;
  6588. text-transform:none;
  6589. background-color:transparent;
  6590. border-color:transparent;
  6591. }
  6592. #u27506_input.disabled {
  6593. position:absolute;
  6594. left:0px;
  6595. top:0px;
  6596. width:120px;
  6597. height:23px;
  6598. padding:2px 2px 2px 2px;
  6599. font-family:'ArialMT', 'Arial', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:11px;
  6603. letter-spacing:normal;
  6604. color:#AAAAAA;
  6605. vertical-align:none;
  6606. text-align:left;
  6607. text-transform:none;
  6608. background-color:transparent;
  6609. border-color:transparent;
  6610. }
  6611. #u27506_div {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:0px;
  6615. top:0px;
  6616. width:120px;
  6617. height:23px;
  6618. background:inherit;
  6619. background-color:rgba(255, 255, 255, 1);
  6620. border:none;
  6621. border-radius:0px;
  6622. -moz-box-shadow:none;
  6623. -webkit-box-shadow:none;
  6624. box-shadow:none;
  6625. font-size:11px;
  6626. color:#AAAAAA;
  6627. }
  6628. #u27506 {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:958px;
  6632. top:102px;
  6633. width:120px;
  6634. height:23px;
  6635. display:flex;
  6636. font-size:11px;
  6637. color:#AAAAAA;
  6638. }
  6639. #u27506 .text {
  6640. position:absolute;
  6641. align-self:flex-start;
  6642. padding:2px 2px 2px 2px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u27506_div.disabled {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:120px;
  6652. height:23px;
  6653. background:inherit;
  6654. background-color:rgba(240, 240, 240, 1);
  6655. border:none;
  6656. border-radius:0px;
  6657. -moz-box-shadow:none;
  6658. -webkit-box-shadow:none;
  6659. box-shadow:none;
  6660. font-size:11px;
  6661. color:#AAAAAA;
  6662. }
  6663. #u27506.disabled {
  6664. }
  6665. .u27506_input_option {
  6666. font-size:11px;
  6667. }
  6668. #u27507 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u27508_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:59px;
  6682. height:30px;
  6683. background:inherit;
  6684. background-color:rgba(0, 153, 255, 1);
  6685. box-sizing:border-box;
  6686. border-width:1px;
  6687. border-style:solid;
  6688. border-color:rgba(0, 153, 255, 1);
  6689. border-radius:4px;
  6690. -moz-box-shadow:none;
  6691. -webkit-box-shadow:none;
  6692. box-shadow:none;
  6693. font-family:'Microsoft YaHei', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:14px;
  6697. color:#FFFFFF;
  6698. }
  6699. #u27508 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:501px;
  6703. top:141px;
  6704. width:59px;
  6705. height:30px;
  6706. display:flex;
  6707. font-family:'Microsoft YaHei', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:14px;
  6711. color:#FFFFFF;
  6712. }
  6713. #u27508 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:5px 15px 5px 15px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u27508_text {
  6721. border-width:0px;
  6722. white-space:nowrap;
  6723. text-transform:none;
  6724. }
  6725. #u27509_div {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:55px;
  6731. height:30px;
  6732. background:inherit;
  6733. background-color:rgba(255, 255, 255, 1);
  6734. box-sizing:border-box;
  6735. border-width:1px;
  6736. border-style:solid;
  6737. border-color:rgba(170, 170, 170, 1);
  6738. border-radius:4px;
  6739. -moz-box-shadow:none;
  6740. -webkit-box-shadow:none;
  6741. box-shadow:none;
  6742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:12px;
  6746. color:#555555;
  6747. }
  6748. #u27509 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:570px;
  6752. top:141px;
  6753. width:55px;
  6754. height:30px;
  6755. display:flex;
  6756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6757. font-weight:400;
  6758. font-style:normal;
  6759. font-size:12px;
  6760. color:#555555;
  6761. }
  6762. #u27509 .text {
  6763. position:absolute;
  6764. align-self:center;
  6765. padding:5px 15px 5px 15px;
  6766. box-sizing:border-box;
  6767. width:100%;
  6768. }
  6769. #u27509_text {
  6770. border-width:0px;
  6771. white-space:nowrap;
  6772. text-transform:none;
  6773. }
  6774. #u27510 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:0px;
  6780. height:0px;
  6781. }
  6782. #u27511_div {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:0px;
  6787. width:140px;
  6788. height:30px;
  6789. background:inherit;
  6790. background-color:rgba(255, 255, 255, 1);
  6791. box-sizing:border-box;
  6792. border-width:1px;
  6793. border-style:solid;
  6794. border-color:rgba(215, 215, 215, 1);
  6795. border-radius:4px;
  6796. -moz-box-shadow:none;
  6797. -webkit-box-shadow:none;
  6798. box-shadow:none;
  6799. font-size:11px;
  6800. }
  6801. #u27511 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:1101px;
  6805. top:101px;
  6806. width:140px;
  6807. height:30px;
  6808. display:flex;
  6809. font-size:11px;
  6810. }
  6811. #u27511 .text {
  6812. position:absolute;
  6813. align-self:center;
  6814. padding:2px 2px 2px 2px;
  6815. box-sizing:border-box;
  6816. width:100%;
  6817. }
  6818. #u27511_text {
  6819. border-width:0px;
  6820. word-wrap:break-word;
  6821. text-transform:none;
  6822. visibility:hidden;
  6823. }
  6824. #u27512_input {
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:123px;
  6829. height:23px;
  6830. padding:2px 2px 2px 2px;
  6831. font-family:'ArialMT', 'Arial', sans-serif;
  6832. font-weight:400;
  6833. font-style:normal;
  6834. font-size:11px;
  6835. letter-spacing:normal;
  6836. color:#AAAAAA;
  6837. vertical-align:none;
  6838. text-align:left;
  6839. text-transform:none;
  6840. background-color:transparent;
  6841. border-color:transparent;
  6842. }
  6843. #u27512_input.disabled {
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:123px;
  6848. height:23px;
  6849. padding:2px 2px 2px 2px;
  6850. font-family:'ArialMT', 'Arial', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:11px;
  6854. letter-spacing:normal;
  6855. color:#AAAAAA;
  6856. vertical-align:none;
  6857. text-align:left;
  6858. text-transform:none;
  6859. background-color:transparent;
  6860. border-color:transparent;
  6861. }
  6862. #u27512_div {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:123px;
  6868. height:23px;
  6869. background:inherit;
  6870. background-color:rgba(255, 255, 255, 1);
  6871. border:none;
  6872. border-radius:0px;
  6873. -moz-box-shadow:none;
  6874. -webkit-box-shadow:none;
  6875. box-shadow:none;
  6876. font-size:11px;
  6877. color:#AAAAAA;
  6878. }
  6879. #u27512 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:1107px;
  6883. top:103px;
  6884. width:123px;
  6885. height:23px;
  6886. display:flex;
  6887. font-size:11px;
  6888. color:#AAAAAA;
  6889. }
  6890. #u27512 .text {
  6891. position:absolute;
  6892. align-self:flex-start;
  6893. padding:2px 2px 2px 2px;
  6894. box-sizing:border-box;
  6895. width:100%;
  6896. }
  6897. #u27512_div.disabled {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:123px;
  6903. height:23px;
  6904. background:inherit;
  6905. background-color:rgba(240, 240, 240, 1);
  6906. border:none;
  6907. border-radius:0px;
  6908. -moz-box-shadow:none;
  6909. -webkit-box-shadow:none;
  6910. box-shadow:none;
  6911. font-size:11px;
  6912. color:#AAAAAA;
  6913. }
  6914. #u27512.disabled {
  6915. }
  6916. .u27512_input_option {
  6917. font-size:11px;
  6918. }
  6919. #u27513 {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:0px;
  6925. height:0px;
  6926. }
  6927. #u27514_div {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:140px;
  6933. height:30px;
  6934. background:inherit;
  6935. background-color:rgba(255, 255, 255, 1);
  6936. box-sizing:border-box;
  6937. border-width:1px;
  6938. border-style:solid;
  6939. border-color:rgba(201, 201, 201, 1);
  6940. border-radius:4px;
  6941. -moz-box-shadow:none;
  6942. -webkit-box-shadow:none;
  6943. box-shadow:none;
  6944. font-family:'Microsoft YaHei', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:14px;
  6948. color:#CCCCCC;
  6949. text-align:left;
  6950. }
  6951. #u27514 {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:501px;
  6955. top:101px;
  6956. width:140px;
  6957. height:30px;
  6958. display:flex;
  6959. font-family:'Microsoft YaHei', sans-serif;
  6960. font-weight:400;
  6961. font-style:normal;
  6962. font-size:14px;
  6963. color:#CCCCCC;
  6964. text-align:left;
  6965. }
  6966. #u27514 .text {
  6967. position:absolute;
  6968. align-self:center;
  6969. padding:2px 8px 2px 8px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u27514_text {
  6974. border-width:0px;
  6975. word-wrap:break-word;
  6976. text-transform:none;
  6977. visibility:hidden;
  6978. }
  6979. #u27515_input {
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:127px;
  6984. height:25px;
  6985. padding:2px 2px 2px 2px;
  6986. font-family:'Microsoft YaHei', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:10px;
  6990. letter-spacing:normal;
  6991. color:#000000;
  6992. vertical-align:none;
  6993. text-align:left;
  6994. text-transform:none;
  6995. background-color:transparent;
  6996. border-color:transparent;
  6997. }
  6998. #u27515_input.disabled {
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:127px;
  7003. height:25px;
  7004. padding:2px 2px 2px 2px;
  7005. font-family:'Microsoft YaHei', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:10px;
  7009. letter-spacing:normal;
  7010. color:#000000;
  7011. vertical-align:none;
  7012. text-align:left;
  7013. text-transform:none;
  7014. background-color:transparent;
  7015. border-color:transparent;
  7016. }
  7017. #u27515_div {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:127px;
  7023. height:25px;
  7024. background:inherit;
  7025. background-color:rgba(255, 255, 255, 1);
  7026. border:none;
  7027. border-radius:0px;
  7028. -moz-box-shadow:none;
  7029. -webkit-box-shadow:none;
  7030. box-shadow:none;
  7031. font-family:'Microsoft YaHei', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:10px;
  7035. }
  7036. #u27515 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:509px;
  7040. top:102px;
  7041. width:127px;
  7042. height:25px;
  7043. display:flex;
  7044. font-family:'Microsoft YaHei', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:10px;
  7048. }
  7049. #u27515 .text {
  7050. position:absolute;
  7051. align-self:center;
  7052. padding:2px 2px 2px 2px;
  7053. box-sizing:border-box;
  7054. width:100%;
  7055. }
  7056. #u27515_div.disabled {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:127px;
  7062. height:25px;
  7063. background:inherit;
  7064. background-color:rgba(240, 240, 240, 1);
  7065. border:none;
  7066. border-radius:0px;
  7067. -moz-box-shadow:none;
  7068. -webkit-box-shadow:none;
  7069. box-shadow:none;
  7070. font-family:'Microsoft YaHei', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:10px;
  7074. }
  7075. #u27515.disabled {
  7076. }
  7077. #u27516 {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:0px;
  7083. height:0px;
  7084. }
  7085. #u27517_div {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:140px;
  7091. height:30px;
  7092. background:inherit;
  7093. background-color:rgba(255, 255, 255, 1);
  7094. box-sizing:border-box;
  7095. border-width:1px;
  7096. border-style:solid;
  7097. border-color:rgba(201, 201, 201, 1);
  7098. border-radius:4px;
  7099. -moz-box-shadow:none;
  7100. -webkit-box-shadow:none;
  7101. box-shadow:none;
  7102. font-family:'Microsoft YaHei', sans-serif;
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:14px;
  7106. color:#CCCCCC;
  7107. text-align:left;
  7108. }
  7109. #u27517 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:651px;
  7113. top:101px;
  7114. width:140px;
  7115. height:30px;
  7116. display:flex;
  7117. font-family:'Microsoft YaHei', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:14px;
  7121. color:#CCCCCC;
  7122. text-align:left;
  7123. }
  7124. #u27517 .text {
  7125. position:absolute;
  7126. align-self:center;
  7127. padding:2px 8px 2px 8px;
  7128. box-sizing:border-box;
  7129. width:100%;
  7130. }
  7131. #u27517_text {
  7132. border-width:0px;
  7133. word-wrap:break-word;
  7134. text-transform:none;
  7135. visibility:hidden;
  7136. }
  7137. #u27518_input {
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:127px;
  7142. height:25px;
  7143. padding:2px 2px 2px 2px;
  7144. font-family:'Microsoft YaHei', sans-serif;
  7145. font-weight:400;
  7146. font-style:normal;
  7147. font-size:10px;
  7148. letter-spacing:normal;
  7149. color:#000000;
  7150. vertical-align:none;
  7151. text-align:left;
  7152. text-transform:none;
  7153. background-color:transparent;
  7154. border-color:transparent;
  7155. }
  7156. #u27518_input.disabled {
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:127px;
  7161. height:25px;
  7162. padding:2px 2px 2px 2px;
  7163. font-family:'Microsoft YaHei', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. font-size:10px;
  7167. letter-spacing:normal;
  7168. color:#000000;
  7169. vertical-align:none;
  7170. text-align:left;
  7171. text-transform:none;
  7172. background-color:transparent;
  7173. border-color:transparent;
  7174. }
  7175. #u27518_div {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:127px;
  7181. height:25px;
  7182. background:inherit;
  7183. background-color:rgba(255, 255, 255, 1);
  7184. border:none;
  7185. border-radius:0px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-family:'Microsoft YaHei', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:10px;
  7193. }
  7194. #u27518 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:659px;
  7198. top:102px;
  7199. width:127px;
  7200. height:25px;
  7201. display:flex;
  7202. font-family:'Microsoft YaHei', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:10px;
  7206. }
  7207. #u27518 .text {
  7208. position:absolute;
  7209. align-self:center;
  7210. padding:2px 2px 2px 2px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u27518_div.disabled {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:127px;
  7220. height:25px;
  7221. background:inherit;
  7222. background-color:rgba(240, 240, 240, 1);
  7223. border:none;
  7224. border-radius:0px;
  7225. -moz-box-shadow:none;
  7226. -webkit-box-shadow:none;
  7227. box-shadow:none;
  7228. font-family:'Microsoft YaHei', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:10px;
  7232. }
  7233. #u27518.disabled {
  7234. }
  7235. #u27519 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:0px;
  7241. height:0px;
  7242. }
  7243. #u27520_div {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:140px;
  7249. height:30px;
  7250. background:inherit;
  7251. background-color:rgba(255, 255, 255, 1);
  7252. box-sizing:border-box;
  7253. border-width:1px;
  7254. border-style:solid;
  7255. border-color:rgba(215, 215, 215, 1);
  7256. border-radius:4px;
  7257. -moz-box-shadow:none;
  7258. -webkit-box-shadow:none;
  7259. box-shadow:none;
  7260. font-size:11px;
  7261. }
  7262. #u27520 {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:801px;
  7266. top:101px;
  7267. width:140px;
  7268. height:30px;
  7269. display:flex;
  7270. font-size:11px;
  7271. }
  7272. #u27520 .text {
  7273. position:absolute;
  7274. align-self:center;
  7275. padding:2px 2px 2px 2px;
  7276. box-sizing:border-box;
  7277. width:100%;
  7278. }
  7279. #u27520_text {
  7280. border-width:0px;
  7281. word-wrap:break-word;
  7282. text-transform:none;
  7283. visibility:hidden;
  7284. }
  7285. #u27521_input {
  7286. position:absolute;
  7287. left:0px;
  7288. top:0px;
  7289. width:120px;
  7290. height:23px;
  7291. padding:2px 2px 2px 2px;
  7292. font-family:'ArialMT', 'Arial', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:11px;
  7296. letter-spacing:normal;
  7297. color:#AAAAAA;
  7298. vertical-align:none;
  7299. text-align:left;
  7300. text-transform:none;
  7301. background-color:transparent;
  7302. border-color:transparent;
  7303. }
  7304. #u27521_input.disabled {
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:120px;
  7309. height:23px;
  7310. padding:2px 2px 2px 2px;
  7311. font-family:'ArialMT', 'Arial', sans-serif;
  7312. font-weight:400;
  7313. font-style:normal;
  7314. font-size:11px;
  7315. letter-spacing:normal;
  7316. color:#AAAAAA;
  7317. vertical-align:none;
  7318. text-align:left;
  7319. text-transform:none;
  7320. background-color:transparent;
  7321. border-color:transparent;
  7322. }
  7323. #u27521_div {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:0px;
  7327. top:0px;
  7328. width:120px;
  7329. height:23px;
  7330. background:inherit;
  7331. background-color:rgba(255, 255, 255, 1);
  7332. border:none;
  7333. border-radius:0px;
  7334. -moz-box-shadow:none;
  7335. -webkit-box-shadow:none;
  7336. box-shadow:none;
  7337. font-size:11px;
  7338. color:#AAAAAA;
  7339. }
  7340. #u27521 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:808px;
  7344. top:103px;
  7345. width:120px;
  7346. height:23px;
  7347. display:flex;
  7348. font-size:11px;
  7349. color:#AAAAAA;
  7350. }
  7351. #u27521 .text {
  7352. position:absolute;
  7353. align-self:flex-start;
  7354. padding:2px 2px 2px 2px;
  7355. box-sizing:border-box;
  7356. width:100%;
  7357. }
  7358. #u27521_div.disabled {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:120px;
  7364. height:23px;
  7365. background:inherit;
  7366. background-color:rgba(240, 240, 240, 1);
  7367. border:none;
  7368. border-radius:0px;
  7369. -moz-box-shadow:none;
  7370. -webkit-box-shadow:none;
  7371. box-shadow:none;
  7372. font-size:11px;
  7373. color:#AAAAAA;
  7374. }
  7375. #u27521.disabled {
  7376. }
  7377. .u27521_input_option {
  7378. font-size:11px;
  7379. }
  7380. #u27522 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:0px;
  7384. top:0px;
  7385. width:0px;
  7386. height:0px;
  7387. }
  7388. #u27523_div {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:0px;
  7392. top:0px;
  7393. width:140px;
  7394. height:30px;
  7395. background:inherit;
  7396. background-color:rgba(255, 255, 255, 1);
  7397. box-sizing:border-box;
  7398. border-width:1px;
  7399. border-style:solid;
  7400. border-color:rgba(215, 215, 215, 1);
  7401. border-radius:4px;
  7402. -moz-box-shadow:none;
  7403. -webkit-box-shadow:none;
  7404. box-shadow:none;
  7405. font-size:11px;
  7406. }
  7407. #u27523 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:350px;
  7411. top:101px;
  7412. width:140px;
  7413. height:30px;
  7414. display:flex;
  7415. font-size:11px;
  7416. }
  7417. #u27523 .text {
  7418. position:absolute;
  7419. align-self:center;
  7420. padding:2px 2px 2px 2px;
  7421. box-sizing:border-box;
  7422. width:100%;
  7423. }
  7424. #u27523_text {
  7425. border-width:0px;
  7426. word-wrap:break-word;
  7427. text-transform:none;
  7428. visibility:hidden;
  7429. }
  7430. #u27524_input {
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:120px;
  7435. height:23px;
  7436. padding:2px 2px 2px 2px;
  7437. font-family:'ArialMT', 'Arial', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:11px;
  7441. letter-spacing:normal;
  7442. color:#AAAAAA;
  7443. vertical-align:none;
  7444. text-align:left;
  7445. text-transform:none;
  7446. background-color:transparent;
  7447. border-color:transparent;
  7448. }
  7449. #u27524_input.disabled {
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:120px;
  7454. height:23px;
  7455. padding:2px 2px 2px 2px;
  7456. font-family:'ArialMT', 'Arial', sans-serif;
  7457. font-weight:400;
  7458. font-style:normal;
  7459. font-size:11px;
  7460. letter-spacing:normal;
  7461. color:#AAAAAA;
  7462. vertical-align:none;
  7463. text-align:left;
  7464. text-transform:none;
  7465. background-color:transparent;
  7466. border-color:transparent;
  7467. }
  7468. #u27524_div {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:0px;
  7472. top:0px;
  7473. width:120px;
  7474. height:23px;
  7475. background:inherit;
  7476. background-color:rgba(255, 255, 255, 1);
  7477. border:none;
  7478. border-radius:0px;
  7479. -moz-box-shadow:none;
  7480. -webkit-box-shadow:none;
  7481. box-shadow:none;
  7482. font-size:11px;
  7483. color:#AAAAAA;
  7484. }
  7485. #u27524 {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:357px;
  7489. top:103px;
  7490. width:120px;
  7491. height:23px;
  7492. display:flex;
  7493. font-size:11px;
  7494. color:#AAAAAA;
  7495. }
  7496. #u27524 .text {
  7497. position:absolute;
  7498. align-self:flex-start;
  7499. padding:2px 2px 2px 2px;
  7500. box-sizing:border-box;
  7501. width:100%;
  7502. }
  7503. #u27524_div.disabled {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:120px;
  7509. height:23px;
  7510. background:inherit;
  7511. background-color:rgba(240, 240, 240, 1);
  7512. border:none;
  7513. border-radius:0px;
  7514. -moz-box-shadow:none;
  7515. -webkit-box-shadow:none;
  7516. box-shadow:none;
  7517. font-size:11px;
  7518. color:#AAAAAA;
  7519. }
  7520. #u27524.disabled {
  7521. }
  7522. .u27524_input_option {
  7523. font-size:11px;
  7524. }
  7525. #u27525 {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:0px;
  7531. height:0px;
  7532. }
  7533. #u27526_div {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:140px;
  7539. height:30px;
  7540. background:inherit;
  7541. background-color:rgba(255, 255, 255, 1);
  7542. box-sizing:border-box;
  7543. border-width:1px;
  7544. border-style:solid;
  7545. border-color:rgba(215, 215, 215, 1);
  7546. border-radius:4px;
  7547. -moz-box-shadow:none;
  7548. -webkit-box-shadow:none;
  7549. box-shadow:none;
  7550. font-size:11px;
  7551. }
  7552. #u27526 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:1251px;
  7556. top:101px;
  7557. width:140px;
  7558. height:30px;
  7559. display:flex;
  7560. font-size:11px;
  7561. }
  7562. #u27526 .text {
  7563. position:absolute;
  7564. align-self:center;
  7565. padding:2px 2px 2px 2px;
  7566. box-sizing:border-box;
  7567. width:100%;
  7568. }
  7569. #u27526_text {
  7570. border-width:0px;
  7571. word-wrap:break-word;
  7572. text-transform:none;
  7573. visibility:hidden;
  7574. }
  7575. #u27527_input {
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:120px;
  7580. height:23px;
  7581. padding:2px 2px 2px 2px;
  7582. font-family:'ArialMT', 'Arial', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:11px;
  7586. letter-spacing:normal;
  7587. color:#AAAAAA;
  7588. vertical-align:none;
  7589. text-align:left;
  7590. text-transform:none;
  7591. background-color:transparent;
  7592. border-color:transparent;
  7593. }
  7594. #u27527_input.disabled {
  7595. position:absolute;
  7596. left:0px;
  7597. top:0px;
  7598. width:120px;
  7599. height:23px;
  7600. padding:2px 2px 2px 2px;
  7601. font-family:'ArialMT', 'Arial', sans-serif;
  7602. font-weight:400;
  7603. font-style:normal;
  7604. font-size:11px;
  7605. letter-spacing:normal;
  7606. color:#AAAAAA;
  7607. vertical-align:none;
  7608. text-align:left;
  7609. text-transform:none;
  7610. background-color:transparent;
  7611. border-color:transparent;
  7612. }
  7613. #u27527_div {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:0px;
  7617. top:0px;
  7618. width:120px;
  7619. height:23px;
  7620. background:inherit;
  7621. background-color:rgba(255, 255, 255, 1);
  7622. border:none;
  7623. border-radius:0px;
  7624. -moz-box-shadow:none;
  7625. -webkit-box-shadow:none;
  7626. box-shadow:none;
  7627. font-size:11px;
  7628. color:#AAAAAA;
  7629. }
  7630. #u27527 {
  7631. border-width:0px;
  7632. position:absolute;
  7633. left:1258px;
  7634. top:103px;
  7635. width:120px;
  7636. height:23px;
  7637. display:flex;
  7638. font-size:11px;
  7639. color:#AAAAAA;
  7640. }
  7641. #u27527 .text {
  7642. position:absolute;
  7643. align-self:flex-start;
  7644. padding:2px 2px 2px 2px;
  7645. box-sizing:border-box;
  7646. width:100%;
  7647. }
  7648. #u27527_div.disabled {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:120px;
  7654. height:23px;
  7655. background:inherit;
  7656. background-color:rgba(240, 240, 240, 1);
  7657. border:none;
  7658. border-radius:0px;
  7659. -moz-box-shadow:none;
  7660. -webkit-box-shadow:none;
  7661. box-shadow:none;
  7662. font-size:11px;
  7663. color:#AAAAAA;
  7664. }
  7665. #u27527.disabled {
  7666. }
  7667. .u27527_input_option {
  7668. font-size:11px;
  7669. }
  7670. #u27528 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:0px;
  7676. height:0px;
  7677. }
  7678. #u27529_div {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:0px;
  7682. top:0px;
  7683. width:140px;
  7684. height:30px;
  7685. background:inherit;
  7686. background-color:rgba(255, 255, 255, 1);
  7687. box-sizing:border-box;
  7688. border-width:1px;
  7689. border-style:solid;
  7690. border-color:rgba(215, 215, 215, 1);
  7691. border-radius:4px;
  7692. -moz-box-shadow:none;
  7693. -webkit-box-shadow:none;
  7694. box-shadow:none;
  7695. font-size:11px;
  7696. }
  7697. #u27529 {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:1401px;
  7701. top:101px;
  7702. width:140px;
  7703. height:30px;
  7704. display:flex;
  7705. font-size:11px;
  7706. }
  7707. #u27529 .text {
  7708. position:absolute;
  7709. align-self:center;
  7710. padding:2px 2px 2px 2px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u27529_text {
  7715. border-width:0px;
  7716. word-wrap:break-word;
  7717. text-transform:none;
  7718. visibility:hidden;
  7719. }
  7720. #u27530_input {
  7721. position:absolute;
  7722. left:0px;
  7723. top:0px;
  7724. width:120px;
  7725. height:23px;
  7726. padding:2px 2px 2px 2px;
  7727. font-family:'ArialMT', 'Arial', sans-serif;
  7728. font-weight:400;
  7729. font-style:normal;
  7730. font-size:11px;
  7731. letter-spacing:normal;
  7732. color:#AAAAAA;
  7733. vertical-align:none;
  7734. text-align:left;
  7735. text-transform:none;
  7736. background-color:transparent;
  7737. border-color:transparent;
  7738. }
  7739. #u27530_input.disabled {
  7740. position:absolute;
  7741. left:0px;
  7742. top:0px;
  7743. width:120px;
  7744. height:23px;
  7745. padding:2px 2px 2px 2px;
  7746. font-family:'ArialMT', 'Arial', sans-serif;
  7747. font-weight:400;
  7748. font-style:normal;
  7749. font-size:11px;
  7750. letter-spacing:normal;
  7751. color:#AAAAAA;
  7752. vertical-align:none;
  7753. text-align:left;
  7754. text-transform:none;
  7755. background-color:transparent;
  7756. border-color:transparent;
  7757. }
  7758. #u27530_div {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:0px;
  7762. top:0px;
  7763. width:120px;
  7764. height:23px;
  7765. background:inherit;
  7766. background-color:rgba(255, 255, 255, 1);
  7767. border:none;
  7768. border-radius:0px;
  7769. -moz-box-shadow:none;
  7770. -webkit-box-shadow:none;
  7771. box-shadow:none;
  7772. font-size:11px;
  7773. color:#AAAAAA;
  7774. }
  7775. #u27530 {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:1408px;
  7779. top:103px;
  7780. width:120px;
  7781. height:23px;
  7782. display:flex;
  7783. font-size:11px;
  7784. color:#AAAAAA;
  7785. }
  7786. #u27530 .text {
  7787. position:absolute;
  7788. align-self:flex-start;
  7789. padding:2px 2px 2px 2px;
  7790. box-sizing:border-box;
  7791. width:100%;
  7792. }
  7793. #u27530_div.disabled {
  7794. border-width:0px;
  7795. position:absolute;
  7796. left:0px;
  7797. top:0px;
  7798. width:120px;
  7799. height:23px;
  7800. background:inherit;
  7801. background-color:rgba(240, 240, 240, 1);
  7802. border:none;
  7803. border-radius:0px;
  7804. -moz-box-shadow:none;
  7805. -webkit-box-shadow:none;
  7806. box-shadow:none;
  7807. font-size:11px;
  7808. color:#AAAAAA;
  7809. }
  7810. #u27530.disabled {
  7811. }
  7812. .u27530_input_option {
  7813. font-size:11px;
  7814. }
  7815. #u27531 {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:0px;
  7821. height:0px;
  7822. }
  7823. #u27532_div {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:140px;
  7829. height:30px;
  7830. background:inherit;
  7831. background-color:rgba(255, 255, 255, 1);
  7832. box-sizing:border-box;
  7833. border-width:1px;
  7834. border-style:solid;
  7835. border-color:rgba(215, 215, 215, 1);
  7836. border-radius:4px;
  7837. -moz-box-shadow:none;
  7838. -webkit-box-shadow:none;
  7839. box-shadow:none;
  7840. font-size:11px;
  7841. }
  7842. #u27532 {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:350px;
  7846. top:141px;
  7847. width:140px;
  7848. height:30px;
  7849. display:flex;
  7850. font-size:11px;
  7851. }
  7852. #u27532 .text {
  7853. position:absolute;
  7854. align-self:center;
  7855. padding:2px 2px 2px 2px;
  7856. box-sizing:border-box;
  7857. width:100%;
  7858. }
  7859. #u27532_text {
  7860. border-width:0px;
  7861. word-wrap:break-word;
  7862. text-transform:none;
  7863. visibility:hidden;
  7864. }
  7865. #u27533_input {
  7866. position:absolute;
  7867. left:0px;
  7868. top:0px;
  7869. width:120px;
  7870. height:23px;
  7871. padding:2px 2px 2px 2px;
  7872. font-family:'ArialMT', 'Arial', sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:11px;
  7876. letter-spacing:normal;
  7877. color:#AAAAAA;
  7878. vertical-align:none;
  7879. text-align:left;
  7880. text-transform:none;
  7881. background-color:transparent;
  7882. border-color:transparent;
  7883. }
  7884. #u27533_input.disabled {
  7885. position:absolute;
  7886. left:0px;
  7887. top:0px;
  7888. width:120px;
  7889. height:23px;
  7890. padding:2px 2px 2px 2px;
  7891. font-family:'ArialMT', 'Arial', sans-serif;
  7892. font-weight:400;
  7893. font-style:normal;
  7894. font-size:11px;
  7895. letter-spacing:normal;
  7896. color:#AAAAAA;
  7897. vertical-align:none;
  7898. text-align:left;
  7899. text-transform:none;
  7900. background-color:transparent;
  7901. border-color:transparent;
  7902. }
  7903. #u27533_div {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:0px;
  7907. top:0px;
  7908. width:120px;
  7909. height:23px;
  7910. background:inherit;
  7911. background-color:rgba(255, 255, 255, 1);
  7912. border:none;
  7913. border-radius:0px;
  7914. -moz-box-shadow:none;
  7915. -webkit-box-shadow:none;
  7916. box-shadow:none;
  7917. font-size:11px;
  7918. color:#AAAAAA;
  7919. }
  7920. #u27533 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:357px;
  7924. top:143px;
  7925. width:120px;
  7926. height:23px;
  7927. display:flex;
  7928. font-size:11px;
  7929. color:#AAAAAA;
  7930. }
  7931. #u27533 .text {
  7932. position:absolute;
  7933. align-self:flex-start;
  7934. padding:2px 2px 2px 2px;
  7935. box-sizing:border-box;
  7936. width:100%;
  7937. }
  7938. #u27533_div.disabled {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:0px;
  7942. top:0px;
  7943. width:120px;
  7944. height:23px;
  7945. background:inherit;
  7946. background-color:rgba(240, 240, 240, 1);
  7947. border:none;
  7948. border-radius:0px;
  7949. -moz-box-shadow:none;
  7950. -webkit-box-shadow:none;
  7951. box-shadow:none;
  7952. font-size:11px;
  7953. color:#AAAAAA;
  7954. }
  7955. #u27533.disabled {
  7956. }
  7957. .u27533_input_option {
  7958. font-size:11px;
  7959. }
  7960. #u27534 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:0px;
  7966. height:0px;
  7967. }
  7968. #u27535_div {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:0px;
  7972. top:0px;
  7973. width:200px;
  7974. height:1180px;
  7975. background:inherit;
  7976. background-color:rgba(255, 255, 255, 1);
  7977. border:none;
  7978. border-radius:0px;
  7979. -moz-box-shadow:none;
  7980. -webkit-box-shadow:none;
  7981. box-shadow:none;
  7982. }
  7983. #u27535 {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:120px;
  7987. top:50px;
  7988. width:200px;
  7989. height:1180px;
  7990. display:flex;
  7991. }
  7992. #u27535 .text {
  7993. position:absolute;
  7994. align-self:center;
  7995. padding:2px 2px 2px 2px;
  7996. box-sizing:border-box;
  7997. width:100%;
  7998. }
  7999. #u27535_text {
  8000. border-width:0px;
  8001. word-wrap:break-word;
  8002. text-transform:none;
  8003. visibility:hidden;
  8004. }
  8005. #u27536_div {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:200px;
  8011. height:60px;
  8012. background:inherit;
  8013. background-color:rgba(224, 231, 247, 1);
  8014. border:none;
  8015. border-radius:0px;
  8016. -moz-box-shadow:none;
  8017. -webkit-box-shadow:none;
  8018. box-shadow:none;
  8019. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8020. font-weight:500;
  8021. font-style:normal;
  8022. font-size:18px;
  8023. }
  8024. #u27536 {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:120px;
  8028. top:50px;
  8029. width:200px;
  8030. height:60px;
  8031. display:flex;
  8032. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8033. font-weight:500;
  8034. font-style:normal;
  8035. font-size:18px;
  8036. }
  8037. #u27536 .text {
  8038. position:absolute;
  8039. align-self:center;
  8040. padding:0px 0px 0px 20px;
  8041. box-sizing:border-box;
  8042. width:100%;
  8043. }
  8044. #u27536_text {
  8045. border-width:0px;
  8046. word-wrap:break-word;
  8047. text-transform:none;
  8048. }
  8049. #u27537_div {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:65px;
  8055. height:22px;
  8056. background:inherit;
  8057. background-color:rgba(255, 255, 255, 0);
  8058. border:none;
  8059. border-radius:0px;
  8060. -moz-box-shadow:none;
  8061. -webkit-box-shadow:none;
  8062. box-shadow:none;
  8063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8064. font-weight:400;
  8065. font-style:normal;
  8066. font-size:16px;
  8067. }
  8068. #u27537 {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:147px;
  8072. top:130px;
  8073. width:65px;
  8074. height:22px;
  8075. display:flex;
  8076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8077. font-weight:400;
  8078. font-style:normal;
  8079. font-size:16px;
  8080. }
  8081. #u27537 .text {
  8082. position:absolute;
  8083. align-self:flex-start;
  8084. padding:0px 0px 0px 0px;
  8085. box-sizing:border-box;
  8086. width:100%;
  8087. }
  8088. #u27537_text {
  8089. border-width:0px;
  8090. white-space:nowrap;
  8091. text-transform:none;
  8092. }
  8093. #u27538_div {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:0px;
  8097. top:0px;
  8098. width:65px;
  8099. height:22px;
  8100. background:inherit;
  8101. background-color:rgba(255, 255, 255, 0);
  8102. border:none;
  8103. border-radius:0px;
  8104. -moz-box-shadow:none;
  8105. -webkit-box-shadow:none;
  8106. box-shadow:none;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:16px;
  8111. }
  8112. #u27538 {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:147px;
  8116. top:229px;
  8117. width:65px;
  8118. height:22px;
  8119. display:flex;
  8120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:16px;
  8124. }
  8125. #u27538 .text {
  8126. position:absolute;
  8127. align-self:flex-start;
  8128. padding:0px 0px 0px 0px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u27538_text {
  8133. border-width:0px;
  8134. white-space:nowrap;
  8135. text-transform:none;
  8136. }
  8137. #u27539_div {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:65px;
  8143. height:22px;
  8144. background:inherit;
  8145. background-color:rgba(255, 255, 255, 0);
  8146. border:none;
  8147. border-radius:0px;
  8148. -moz-box-shadow:none;
  8149. -webkit-box-shadow:none;
  8150. box-shadow:none;
  8151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8152. font-weight:400;
  8153. font-style:normal;
  8154. font-size:16px;
  8155. }
  8156. #u27539 {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:147px;
  8160. top:271px;
  8161. width:65px;
  8162. height:22px;
  8163. display:flex;
  8164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8165. font-weight:400;
  8166. font-style:normal;
  8167. font-size:16px;
  8168. }
  8169. #u27539 .text {
  8170. position:absolute;
  8171. align-self:flex-start;
  8172. padding:0px 0px 0px 0px;
  8173. box-sizing:border-box;
  8174. width:100%;
  8175. }
  8176. #u27539_text {
  8177. border-width:0px;
  8178. white-space:nowrap;
  8179. text-transform:none;
  8180. }
  8181. #u27540_div {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:65px;
  8187. height:22px;
  8188. background:inherit;
  8189. background-color:rgba(255, 255, 255, 0);
  8190. border:none;
  8191. border-radius:0px;
  8192. -moz-box-shadow:none;
  8193. -webkit-box-shadow:none;
  8194. box-shadow:none;
  8195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8196. font-weight:400;
  8197. font-style:normal;
  8198. font-size:16px;
  8199. }
  8200. #u27540 {
  8201. border-width:0px;
  8202. position:absolute;
  8203. left:147px;
  8204. top:313px;
  8205. width:65px;
  8206. height:22px;
  8207. display:flex;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:16px;
  8212. }
  8213. #u27540 .text {
  8214. position:absolute;
  8215. align-self:flex-start;
  8216. padding:0px 0px 0px 0px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u27540_text {
  8221. border-width:0px;
  8222. white-space:nowrap;
  8223. text-transform:none;
  8224. }
  8225. #u27541_div {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:65px;
  8231. height:22px;
  8232. background:inherit;
  8233. background-color:rgba(255, 255, 255, 0);
  8234. border:none;
  8235. border-radius:0px;
  8236. -moz-box-shadow:none;
  8237. -webkit-box-shadow:none;
  8238. box-shadow:none;
  8239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. font-size:16px;
  8243. }
  8244. #u27541 {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:147px;
  8248. top:949px;
  8249. width:65px;
  8250. height:22px;
  8251. display:flex;
  8252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:16px;
  8256. }
  8257. #u27541 .text {
  8258. position:absolute;
  8259. align-self:flex-start;
  8260. padding:0px 0px 0px 0px;
  8261. box-sizing:border-box;
  8262. width:100%;
  8263. }
  8264. #u27541_text {
  8265. border-width:0px;
  8266. white-space:nowrap;
  8267. text-transform:none;
  8268. }
  8269. #u27542_div {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:65px;
  8275. height:22px;
  8276. background:inherit;
  8277. background-color:rgba(255, 255, 255, 0);
  8278. border:none;
  8279. border-radius:0px;
  8280. -moz-box-shadow:none;
  8281. -webkit-box-shadow:none;
  8282. box-shadow:none;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:16px;
  8287. }
  8288. #u27542 {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:147px;
  8292. top:991px;
  8293. width:65px;
  8294. height:22px;
  8295. display:flex;
  8296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:16px;
  8300. }
  8301. #u27542 .text {
  8302. position:absolute;
  8303. align-self:flex-start;
  8304. padding:0px 0px 0px 0px;
  8305. box-sizing:border-box;
  8306. width:100%;
  8307. }
  8308. #u27542_text {
  8309. border-width:0px;
  8310. white-space:nowrap;
  8311. text-transform:none;
  8312. }
  8313. #u27543_div {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:0px;
  8317. top:0px;
  8318. width:49px;
  8319. height:17px;
  8320. background:inherit;
  8321. background-color:rgba(255, 255, 255, 0);
  8322. border:none;
  8323. border-radius:0px;
  8324. -moz-box-shadow:none;
  8325. -webkit-box-shadow:none;
  8326. box-shadow:none;
  8327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8328. font-weight:400;
  8329. font-style:normal;
  8330. font-size:12px;
  8331. color:#AAAAAA;
  8332. }
  8333. #u27543 {
  8334. border-width:0px;
  8335. position:absolute;
  8336. left:147px;
  8337. top:192px;
  8338. width:49px;
  8339. height:17px;
  8340. display:flex;
  8341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8342. font-weight:400;
  8343. font-style:normal;
  8344. font-size:12px;
  8345. color:#AAAAAA;
  8346. }
  8347. #u27543 .text {
  8348. position:absolute;
  8349. align-self:flex-start;
  8350. padding:0px 0px 0px 0px;
  8351. box-sizing:border-box;
  8352. width:100%;
  8353. }
  8354. #u27543_text {
  8355. border-width:0px;
  8356. white-space:nowrap;
  8357. text-transform:none;
  8358. }
  8359. #u27544_img {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:0px;
  8364. width:201px;
  8365. height:2px;
  8366. }
  8367. #u27544 {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:121px;
  8371. top:891px;
  8372. width:200px;
  8373. height:1px;
  8374. display:flex;
  8375. }
  8376. #u27544 .text {
  8377. position:absolute;
  8378. align-self:center;
  8379. padding:2px 2px 2px 2px;
  8380. box-sizing:border-box;
  8381. width:100%;
  8382. }
  8383. #u27544_text {
  8384. border-width:0px;
  8385. word-wrap:break-word;
  8386. text-transform:none;
  8387. visibility:hidden;
  8388. }
  8389. #u27545_div {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:49px;
  8395. height:17px;
  8396. background:inherit;
  8397. background-color:rgba(255, 255, 255, 0);
  8398. border:none;
  8399. border-radius:0px;
  8400. -moz-box-shadow:none;
  8401. -webkit-box-shadow:none;
  8402. box-shadow:none;
  8403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8404. font-weight:400;
  8405. font-style:normal;
  8406. font-size:12px;
  8407. color:#AAAAAA;
  8408. }
  8409. #u27545 {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:147px;
  8413. top:912px;
  8414. width:49px;
  8415. height:17px;
  8416. display:flex;
  8417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8418. font-weight:400;
  8419. font-style:normal;
  8420. font-size:12px;
  8421. color:#AAAAAA;
  8422. }
  8423. #u27545 .text {
  8424. position:absolute;
  8425. align-self:flex-start;
  8426. padding:0px 0px 0px 0px;
  8427. box-sizing:border-box;
  8428. width:100%;
  8429. }
  8430. #u27545_text {
  8431. border-width:0px;
  8432. white-space:nowrap;
  8433. text-transform:none;
  8434. }
  8435. #u27546_img {
  8436. border-width:0px;
  8437. position:absolute;
  8438. left:0px;
  8439. top:0px;
  8440. width:201px;
  8441. height:2px;
  8442. }
  8443. #u27546 {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:121px;
  8447. top:171px;
  8448. width:200px;
  8449. height:1px;
  8450. display:flex;
  8451. }
  8452. #u27546 .text {
  8453. position:absolute;
  8454. align-self:center;
  8455. padding:2px 2px 2px 2px;
  8456. box-sizing:border-box;
  8457. width:100%;
  8458. }
  8459. #u27546_text {
  8460. border-width:0px;
  8461. word-wrap:break-word;
  8462. text-transform:none;
  8463. visibility:hidden;
  8464. }
  8465. #u27547_div {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:0px;
  8469. top:0px;
  8470. width:81px;
  8471. height:22px;
  8472. background:inherit;
  8473. background-color:rgba(255, 255, 255, 0);
  8474. border:none;
  8475. border-radius:0px;
  8476. -moz-box-shadow:none;
  8477. -webkit-box-shadow:none;
  8478. box-shadow:none;
  8479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8480. font-weight:400;
  8481. font-style:normal;
  8482. font-size:16px;
  8483. }
  8484. #u27547 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:147px;
  8488. top:355px;
  8489. width:81px;
  8490. height:22px;
  8491. display:flex;
  8492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8493. font-weight:400;
  8494. font-style:normal;
  8495. font-size:16px;
  8496. }
  8497. #u27547 .text {
  8498. position:absolute;
  8499. align-self:flex-start;
  8500. padding:0px 0px 0px 0px;
  8501. box-sizing:border-box;
  8502. width:100%;
  8503. }
  8504. #u27547_text {
  8505. border-width:0px;
  8506. white-space:nowrap;
  8507. text-transform:none;
  8508. }
  8509. #u27548_div {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:0px;
  8513. top:0px;
  8514. width:81px;
  8515. height:22px;
  8516. background:inherit;
  8517. background-color:rgba(255, 255, 255, 0);
  8518. border:none;
  8519. border-radius:0px;
  8520. -moz-box-shadow:none;
  8521. -webkit-box-shadow:none;
  8522. box-shadow:none;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:16px;
  8527. }
  8528. #u27548 {
  8529. border-width:0px;
  8530. position:absolute;
  8531. left:147px;
  8532. top:397px;
  8533. width:81px;
  8534. height:22px;
  8535. display:flex;
  8536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8537. font-weight:400;
  8538. font-style:normal;
  8539. font-size:16px;
  8540. }
  8541. #u27548 .text {
  8542. position:absolute;
  8543. align-self:flex-start;
  8544. padding:0px 0px 0px 0px;
  8545. box-sizing:border-box;
  8546. width:100%;
  8547. }
  8548. #u27548_text {
  8549. border-width:0px;
  8550. white-space:nowrap;
  8551. text-transform:none;
  8552. }
  8553. #u27549_div {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:0px;
  8557. top:0px;
  8558. width:81px;
  8559. height:22px;
  8560. background:inherit;
  8561. background-color:rgba(255, 255, 255, 0);
  8562. border:none;
  8563. border-radius:0px;
  8564. -moz-box-shadow:none;
  8565. -webkit-box-shadow:none;
  8566. box-shadow:none;
  8567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8568. font-weight:400;
  8569. font-style:normal;
  8570. font-size:16px;
  8571. }
  8572. #u27549 {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:147px;
  8576. top:439px;
  8577. width:81px;
  8578. height:22px;
  8579. display:flex;
  8580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8581. font-weight:400;
  8582. font-style:normal;
  8583. font-size:16px;
  8584. }
  8585. #u27549 .text {
  8586. position:absolute;
  8587. align-self:flex-start;
  8588. padding:0px 0px 0px 0px;
  8589. box-sizing:border-box;
  8590. width:100%;
  8591. }
  8592. #u27549_text {
  8593. border-width:0px;
  8594. white-space:nowrap;
  8595. text-transform:none;
  8596. }
  8597. #u27550_div {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:0px;
  8601. top:0px;
  8602. width:65px;
  8603. height:22px;
  8604. background:inherit;
  8605. background-color:rgba(255, 255, 255, 0);
  8606. border:none;
  8607. border-radius:0px;
  8608. -moz-box-shadow:none;
  8609. -webkit-box-shadow:none;
  8610. box-shadow:none;
  8611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8612. font-weight:400;
  8613. font-style:normal;
  8614. font-size:16px;
  8615. }
  8616. #u27550 {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:146px;
  8620. top:539px;
  8621. width:65px;
  8622. height:22px;
  8623. display:flex;
  8624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8625. font-weight:400;
  8626. font-style:normal;
  8627. font-size:16px;
  8628. }
  8629. #u27550 .text {
  8630. position:absolute;
  8631. align-self:flex-start;
  8632. padding:0px 0px 0px 0px;
  8633. box-sizing:border-box;
  8634. width:100%;
  8635. }
  8636. #u27550_text {
  8637. border-width:0px;
  8638. white-space:nowrap;
  8639. text-transform:none;
  8640. }
  8641. #u27551_div {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:0px;
  8645. top:0px;
  8646. width:65px;
  8647. height:22px;
  8648. background:inherit;
  8649. background-color:rgba(255, 255, 255, 0);
  8650. border:none;
  8651. border-radius:0px;
  8652. -moz-box-shadow:none;
  8653. -webkit-box-shadow:none;
  8654. box-shadow:none;
  8655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8656. font-weight:400;
  8657. font-style:normal;
  8658. font-size:16px;
  8659. }
  8660. #u27551 {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:146px;
  8664. top:581px;
  8665. width:65px;
  8666. height:22px;
  8667. display:flex;
  8668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8669. font-weight:400;
  8670. font-style:normal;
  8671. font-size:16px;
  8672. }
  8673. #u27551 .text {
  8674. position:absolute;
  8675. align-self:flex-start;
  8676. padding:0px 0px 0px 0px;
  8677. box-sizing:border-box;
  8678. width:100%;
  8679. }
  8680. #u27551_text {
  8681. border-width:0px;
  8682. white-space:nowrap;
  8683. text-transform:none;
  8684. }
  8685. #u27552_div {
  8686. border-width:0px;
  8687. position:absolute;
  8688. left:0px;
  8689. top:0px;
  8690. width:65px;
  8691. height:22px;
  8692. background:inherit;
  8693. background-color:rgba(255, 255, 255, 0);
  8694. border:none;
  8695. border-radius:0px;
  8696. -moz-box-shadow:none;
  8697. -webkit-box-shadow:none;
  8698. box-shadow:none;
  8699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8700. font-weight:400;
  8701. font-style:normal;
  8702. font-size:16px;
  8703. }
  8704. #u27552 {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:146px;
  8708. top:623px;
  8709. width:65px;
  8710. height:22px;
  8711. display:flex;
  8712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8713. font-weight:400;
  8714. font-style:normal;
  8715. font-size:16px;
  8716. }
  8717. #u27552 .text {
  8718. position:absolute;
  8719. align-self:flex-start;
  8720. padding:0px 0px 0px 0px;
  8721. box-sizing:border-box;
  8722. width:100%;
  8723. }
  8724. #u27552_text {
  8725. border-width:0px;
  8726. white-space:nowrap;
  8727. text-transform:none;
  8728. }
  8729. #u27553_div {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:0px;
  8733. top:0px;
  8734. width:49px;
  8735. height:17px;
  8736. background:inherit;
  8737. background-color:rgba(255, 255, 255, 0);
  8738. border:none;
  8739. border-radius:0px;
  8740. -moz-box-shadow:none;
  8741. -webkit-box-shadow:none;
  8742. box-shadow:none;
  8743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8744. font-weight:400;
  8745. font-style:normal;
  8746. font-size:12px;
  8747. color:#AAAAAA;
  8748. }
  8749. #u27553 {
  8750. border-width:0px;
  8751. position:absolute;
  8752. left:146px;
  8753. top:502px;
  8754. width:49px;
  8755. height:17px;
  8756. display:flex;
  8757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8758. font-weight:400;
  8759. font-style:normal;
  8760. font-size:12px;
  8761. color:#AAAAAA;
  8762. }
  8763. #u27553 .text {
  8764. position:absolute;
  8765. align-self:flex-start;
  8766. padding:0px 0px 0px 0px;
  8767. box-sizing:border-box;
  8768. width:100%;
  8769. }
  8770. #u27553_text {
  8771. border-width:0px;
  8772. white-space:nowrap;
  8773. text-transform:none;
  8774. }
  8775. #u27554_img {
  8776. border-width:0px;
  8777. position:absolute;
  8778. left:0px;
  8779. top:0px;
  8780. width:201px;
  8781. height:2px;
  8782. }
  8783. #u27554 {
  8784. border-width:0px;
  8785. position:absolute;
  8786. left:120px;
  8787. top:481px;
  8788. width:200px;
  8789. height:1px;
  8790. display:flex;
  8791. }
  8792. #u27554 .text {
  8793. position:absolute;
  8794. align-self:center;
  8795. padding:2px 2px 2px 2px;
  8796. box-sizing:border-box;
  8797. width:100%;
  8798. }
  8799. #u27554_text {
  8800. border-width:0px;
  8801. word-wrap:break-word;
  8802. text-transform:none;
  8803. visibility:hidden;
  8804. }
  8805. #u27555_div {
  8806. border-width:0px;
  8807. position:absolute;
  8808. left:0px;
  8809. top:0px;
  8810. width:65px;
  8811. height:22px;
  8812. background:inherit;
  8813. background-color:rgba(255, 255, 255, 0);
  8814. border:none;
  8815. border-radius:0px;
  8816. -moz-box-shadow:none;
  8817. -webkit-box-shadow:none;
  8818. box-shadow:none;
  8819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8820. font-weight:400;
  8821. font-style:normal;
  8822. font-size:16px;
  8823. }
  8824. #u27555 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:146px;
  8828. top:763px;
  8829. width:65px;
  8830. height:22px;
  8831. display:flex;
  8832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:16px;
  8836. }
  8837. #u27555 .text {
  8838. position:absolute;
  8839. align-self:flex-start;
  8840. padding:0px 0px 0px 0px;
  8841. box-sizing:border-box;
  8842. width:100%;
  8843. }
  8844. #u27555_text {
  8845. border-width:0px;
  8846. white-space:nowrap;
  8847. text-transform:none;
  8848. }
  8849. #u27556_div {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:0px;
  8853. top:0px;
  8854. width:65px;
  8855. height:22px;
  8856. background:inherit;
  8857. background-color:rgba(255, 255, 255, 0);
  8858. border:none;
  8859. border-radius:0px;
  8860. -moz-box-shadow:none;
  8861. -webkit-box-shadow:none;
  8862. box-shadow:none;
  8863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8864. font-weight:400;
  8865. font-style:normal;
  8866. font-size:16px;
  8867. }
  8868. #u27556 {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:146px;
  8872. top:805px;
  8873. width:65px;
  8874. height:22px;
  8875. display:flex;
  8876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8877. font-weight:400;
  8878. font-style:normal;
  8879. font-size:16px;
  8880. }
  8881. #u27556 .text {
  8882. position:absolute;
  8883. align-self:flex-start;
  8884. padding:0px 0px 0px 0px;
  8885. box-sizing:border-box;
  8886. width:100%;
  8887. }
  8888. #u27556_text {
  8889. border-width:0px;
  8890. white-space:nowrap;
  8891. text-transform:none;
  8892. }
  8893. #u27557_div {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:65px;
  8899. height:22px;
  8900. background:inherit;
  8901. background-color:rgba(255, 255, 255, 0);
  8902. border:none;
  8903. border-radius:0px;
  8904. -moz-box-shadow:none;
  8905. -webkit-box-shadow:none;
  8906. box-shadow:none;
  8907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8908. font-weight:400;
  8909. font-style:normal;
  8910. font-size:16px;
  8911. }
  8912. #u27557 {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:146px;
  8916. top:847px;
  8917. width:65px;
  8918. height:22px;
  8919. display:flex;
  8920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8921. font-weight:400;
  8922. font-style:normal;
  8923. font-size:16px;
  8924. }
  8925. #u27557 .text {
  8926. position:absolute;
  8927. align-self:flex-start;
  8928. padding:0px 0px 0px 0px;
  8929. box-sizing:border-box;
  8930. width:100%;
  8931. }
  8932. #u27557_text {
  8933. border-width:0px;
  8934. white-space:nowrap;
  8935. text-transform:none;
  8936. }
  8937. #u27558_div {
  8938. border-width:0px;
  8939. position:absolute;
  8940. left:0px;
  8941. top:0px;
  8942. width:49px;
  8943. height:17px;
  8944. background:inherit;
  8945. background-color:rgba(255, 255, 255, 0);
  8946. border:none;
  8947. border-radius:0px;
  8948. -moz-box-shadow:none;
  8949. -webkit-box-shadow:none;
  8950. box-shadow:none;
  8951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8952. font-weight:400;
  8953. font-style:normal;
  8954. font-size:12px;
  8955. color:#AAAAAA;
  8956. }
  8957. #u27558 {
  8958. border-width:0px;
  8959. position:absolute;
  8960. left:146px;
  8961. top:726px;
  8962. width:49px;
  8963. height:17px;
  8964. display:flex;
  8965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:12px;
  8969. color:#AAAAAA;
  8970. }
  8971. #u27558 .text {
  8972. position:absolute;
  8973. align-self:flex-start;
  8974. padding:0px 0px 0px 0px;
  8975. box-sizing:border-box;
  8976. width:100%;
  8977. }
  8978. #u27558_text {
  8979. border-width:0px;
  8980. white-space:nowrap;
  8981. text-transform:none;
  8982. }
  8983. #u27559_img {
  8984. border-width:0px;
  8985. position:absolute;
  8986. left:0px;
  8987. top:0px;
  8988. width:201px;
  8989. height:2px;
  8990. }
  8991. #u27559 {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:120px;
  8995. top:705px;
  8996. width:200px;
  8997. height:1px;
  8998. display:flex;
  8999. }
  9000. #u27559 .text {
  9001. position:absolute;
  9002. align-self:center;
  9003. padding:2px 2px 2px 2px;
  9004. box-sizing:border-box;
  9005. width:100%;
  9006. }
  9007. #u27559_text {
  9008. border-width:0px;
  9009. word-wrap:break-word;
  9010. text-transform:none;
  9011. visibility:hidden;
  9012. }
  9013. #u27560_div {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:65px;
  9019. height:22px;
  9020. background:inherit;
  9021. background-color:rgba(255, 255, 255, 0);
  9022. border:none;
  9023. border-radius:0px;
  9024. -moz-box-shadow:none;
  9025. -webkit-box-shadow:none;
  9026. box-shadow:none;
  9027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9028. font-weight:400;
  9029. font-style:normal;
  9030. font-size:16px;
  9031. }
  9032. #u27560 {
  9033. border-width:0px;
  9034. position:absolute;
  9035. left:146px;
  9036. top:665px;
  9037. width:65px;
  9038. height:22px;
  9039. display:flex;
  9040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9041. font-weight:400;
  9042. font-style:normal;
  9043. font-size:16px;
  9044. }
  9045. #u27560 .text {
  9046. position:absolute;
  9047. align-self:flex-start;
  9048. padding:0px 0px 0px 0px;
  9049. box-sizing:border-box;
  9050. width:100%;
  9051. }
  9052. #u27560_text {
  9053. border-width:0px;
  9054. white-space:nowrap;
  9055. text-transform:none;
  9056. }
  9057. #u27561_div {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:0px;
  9061. top:0px;
  9062. width:65px;
  9063. height:22px;
  9064. background:inherit;
  9065. background-color:rgba(255, 255, 255, 0);
  9066. border:none;
  9067. border-radius:0px;
  9068. -moz-box-shadow:none;
  9069. -webkit-box-shadow:none;
  9070. box-shadow:none;
  9071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9072. font-weight:400;
  9073. font-style:normal;
  9074. font-size:16px;
  9075. }
  9076. #u27561 {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:147px;
  9080. top:1091px;
  9081. width:65px;
  9082. height:22px;
  9083. display:flex;
  9084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9085. font-weight:400;
  9086. font-style:normal;
  9087. font-size:16px;
  9088. }
  9089. #u27561 .text {
  9090. position:absolute;
  9091. align-self:flex-start;
  9092. padding:0px 0px 0px 0px;
  9093. box-sizing:border-box;
  9094. width:100%;
  9095. }
  9096. #u27561_text {
  9097. border-width:0px;
  9098. white-space:nowrap;
  9099. text-transform:none;
  9100. }
  9101. #u27562_div {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:0px;
  9105. top:0px;
  9106. width:65px;
  9107. height:22px;
  9108. background:inherit;
  9109. background-color:rgba(255, 255, 255, 0);
  9110. border:none;
  9111. border-radius:0px;
  9112. -moz-box-shadow:none;
  9113. -webkit-box-shadow:none;
  9114. box-shadow:none;
  9115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9116. font-weight:400;
  9117. font-style:normal;
  9118. font-size:16px;
  9119. }
  9120. #u27562 {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:147px;
  9124. top:1133px;
  9125. width:65px;
  9126. height:22px;
  9127. display:flex;
  9128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9129. font-weight:400;
  9130. font-style:normal;
  9131. font-size:16px;
  9132. }
  9133. #u27562 .text {
  9134. position:absolute;
  9135. align-self:flex-start;
  9136. padding:0px 0px 0px 0px;
  9137. box-sizing:border-box;
  9138. width:100%;
  9139. }
  9140. #u27562_text {
  9141. border-width:0px;
  9142. white-space:nowrap;
  9143. text-transform:none;
  9144. }
  9145. #u27563_img {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:0px;
  9149. top:0px;
  9150. width:201px;
  9151. height:2px;
  9152. }
  9153. #u27563 {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:121px;
  9157. top:1033px;
  9158. width:200px;
  9159. height:1px;
  9160. display:flex;
  9161. }
  9162. #u27563 .text {
  9163. position:absolute;
  9164. align-self:center;
  9165. padding:2px 2px 2px 2px;
  9166. box-sizing:border-box;
  9167. width:100%;
  9168. }
  9169. #u27563_text {
  9170. border-width:0px;
  9171. word-wrap:break-word;
  9172. text-transform:none;
  9173. visibility:hidden;
  9174. }
  9175. #u27564_div {
  9176. border-width:0px;
  9177. position:absolute;
  9178. left:0px;
  9179. top:0px;
  9180. width:49px;
  9181. height:17px;
  9182. background:inherit;
  9183. background-color:rgba(255, 255, 255, 0);
  9184. border:none;
  9185. border-radius:0px;
  9186. -moz-box-shadow:none;
  9187. -webkit-box-shadow:none;
  9188. box-shadow:none;
  9189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9190. font-weight:400;
  9191. font-style:normal;
  9192. font-size:12px;
  9193. color:#AAAAAA;
  9194. }
  9195. #u27564 {
  9196. border-width:0px;
  9197. position:absolute;
  9198. left:147px;
  9199. top:1054px;
  9200. width:49px;
  9201. height:17px;
  9202. display:flex;
  9203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9204. font-weight:400;
  9205. font-style:normal;
  9206. font-size:12px;
  9207. color:#AAAAAA;
  9208. }
  9209. #u27564 .text {
  9210. position:absolute;
  9211. align-self:flex-start;
  9212. padding:0px 0px 0px 0px;
  9213. box-sizing:border-box;
  9214. width:100%;
  9215. }
  9216. #u27564_text {
  9217. border-width:0px;
  9218. white-space:nowrap;
  9219. text-transform:none;
  9220. }