styles.css 260 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2620px;
  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. #u12738 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u12739_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1196px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u12739 {
  52. border-width:0px;
  53. position:absolute;
  54. left:1620px;
  55. top:47px;
  56. width:1000px;
  57. height:1196px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u12739 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u12739_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u12740_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:137px;
  88. height:35px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. filter:drop-shadow(none);
  98. transition:none;
  99. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  100. font-weight:500;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u12740 {
  105. border-width:0px;
  106. position:absolute;
  107. left:1640px;
  108. top:65px;
  109. width:137px;
  110. height:35px;
  111. display:flex;
  112. transition:none;
  113. transform-origin:50% 50%;
  114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  115. font-weight:500;
  116. font-style:normal;
  117. font-size:18px;
  118. }
  119. #u12740 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u12740_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u12741 {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:0px;
  137. height:0px;
  138. }
  139. #u12742_div {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:40px;
  145. height:40px;
  146. background:inherit;
  147. background-color:rgba(255, 255, 255, 0);
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. filter:drop-shadow(none);
  155. transition:none;
  156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  157. font-weight:500;
  158. font-style:normal;
  159. font-size:18px;
  160. text-align:center;
  161. }
  162. #u12742 {
  163. border-width:0px;
  164. position:absolute;
  165. left:2580px;
  166. top:47px;
  167. width:40px;
  168. height:40px;
  169. display:flex;
  170. transition:none;
  171. transform-origin:50% 50%;
  172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  173. font-weight:500;
  174. font-style:normal;
  175. font-size:18px;
  176. text-align:center;
  177. }
  178. #u12742 .text {
  179. position:absolute;
  180. align-self:center;
  181. padding:5px 10px 5px 0px;
  182. box-sizing:border-box;
  183. width:100%;
  184. }
  185. #u12742_text {
  186. border-width:0px;
  187. word-wrap:break-word;
  188. text-transform:none;
  189. }
  190. #u12743 {
  191. border-width:0px;
  192. position:absolute;
  193. left:2568px;
  194. top:63px;
  195. width:13px;
  196. height:13px;
  197. display:flex;
  198. transition:none;
  199. }
  200. #u12743 .text {
  201. position:absolute;
  202. align-self:center;
  203. padding:2px 2px 2px 2px;
  204. box-sizing:border-box;
  205. width:100%;
  206. }
  207. #u12743_img {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:13px;
  213. height:13px;
  214. }
  215. #u12743_text {
  216. border-width:0px;
  217. word-wrap:break-word;
  218. text-transform:none;
  219. visibility:hidden;
  220. }
  221. #u12744 {
  222. border-width:0px;
  223. position:absolute;
  224. left:0px;
  225. top:0px;
  226. width:0px;
  227. height:0px;
  228. }
  229. #u12745_div {
  230. border-width:0px;
  231. position:absolute;
  232. left:0px;
  233. top:0px;
  234. width:1000px;
  235. height:50px;
  236. background:inherit;
  237. background-color:rgba(255, 255, 255, 1);
  238. box-sizing:border-box;
  239. border-width:1px;
  240. border-style:solid;
  241. border-color:rgba(215, 215, 215, 1);
  242. border-radius:0px;
  243. filter:drop-shadow(none);
  244. transition:none;
  245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  246. font-weight:400;
  247. font-style:normal;
  248. font-size:14px;
  249. color:#AAAAAA;
  250. text-align:center;
  251. line-height:30px;
  252. }
  253. #u12745 {
  254. border-width:0px;
  255. position:absolute;
  256. left:1620px;
  257. top:1193px;
  258. width:1000px;
  259. height:50px;
  260. display:flex;
  261. transition:none;
  262. transform-origin:50% 50%;
  263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  264. font-weight:400;
  265. font-style:normal;
  266. font-size:14px;
  267. color:#AAAAAA;
  268. text-align:center;
  269. line-height:30px;
  270. }
  271. #u12745 .text {
  272. position:absolute;
  273. align-self:center;
  274. padding:5px 10px 5px 10px;
  275. box-sizing:border-box;
  276. width:100%;
  277. }
  278. #u12745_text {
  279. border-width:0px;
  280. word-wrap:break-word;
  281. text-transform:none;
  282. visibility:hidden;
  283. }
  284. #u12746_div {
  285. border-width:0px;
  286. position:absolute;
  287. left:0px;
  288. top:0px;
  289. width:80px;
  290. height:30px;
  291. background:inherit;
  292. background-color:rgba(255, 255, 255, 1);
  293. box-sizing:border-box;
  294. border-width:1px;
  295. border-style:solid;
  296. border-color:rgba(121, 121, 121, 1);
  297. border-radius:4px;
  298. filter:drop-shadow(none);
  299. transition:none;
  300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  301. font-weight:400;
  302. font-style:normal;
  303. font-size:14px;
  304. }
  305. #u12746 {
  306. border-width:0px;
  307. position:absolute;
  308. left:2520px;
  309. top:1203px;
  310. width:80px;
  311. height:30px;
  312. display:flex;
  313. transition:none;
  314. transform-origin:50% 50%;
  315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  316. font-weight:400;
  317. font-style:normal;
  318. font-size:14px;
  319. }
  320. #u12746 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:2px 2px 2px 2px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u12746_text {
  328. border-width:0px;
  329. word-wrap:break-word;
  330. text-transform:none;
  331. }
  332. #u12747 {
  333. border-width:0px;
  334. position:absolute;
  335. left:1640px;
  336. top:170px;
  337. width:960px;
  338. height:213px;
  339. }
  340. #u12748 {
  341. border-width:0px;
  342. position:absolute;
  343. left:0px;
  344. top:0px;
  345. width:59px;
  346. height:30px;
  347. display:flex;
  348. transition:none;
  349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  350. font-weight:400;
  351. font-style:normal;
  352. color:#FFFFFF;
  353. }
  354. #u12748 .text {
  355. position:absolute;
  356. align-self:center;
  357. padding:2px 2px 2px 2px;
  358. box-sizing:border-box;
  359. width:100%;
  360. }
  361. #u12748_img {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:59px;
  367. height:30px;
  368. }
  369. #u12748_text {
  370. border-width:0px;
  371. word-wrap:break-word;
  372. text-transform:none;
  373. }
  374. #u12749 {
  375. border-width:0px;
  376. position:absolute;
  377. left:59px;
  378. top:0px;
  379. width:113px;
  380. height:30px;
  381. display:flex;
  382. transition:none;
  383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  384. font-weight:400;
  385. font-style:normal;
  386. color:#FFFFFF;
  387. }
  388. #u12749 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u12749_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:113px;
  401. height:30px;
  402. }
  403. #u12749_text {
  404. border-width:0px;
  405. word-wrap:break-word;
  406. text-transform:none;
  407. }
  408. #u12750 {
  409. border-width:0px;
  410. position:absolute;
  411. left:171px;
  412. top:0px;
  413. width:113px;
  414. height:30px;
  415. display:flex;
  416. transition:none;
  417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  418. font-weight:400;
  419. font-style:normal;
  420. color:#FFFFFF;
  421. }
  422. #u12750 .text {
  423. position:absolute;
  424. align-self:center;
  425. padding:2px 2px 2px 2px;
  426. box-sizing:border-box;
  427. width:100%;
  428. }
  429. #u12750_img {
  430. border-width:0px;
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:113px;
  435. height:30px;
  436. }
  437. #u12750_text {
  438. border-width:0px;
  439. word-wrap:break-word;
  440. text-transform:none;
  441. }
  442. #u12751 {
  443. border-width:0px;
  444. position:absolute;
  445. left:284px;
  446. top:0px;
  447. width:113px;
  448. height:30px;
  449. display:flex;
  450. transition:none;
  451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  452. font-weight:400;
  453. font-style:normal;
  454. color:#FFFFFF;
  455. }
  456. #u12751 .text {
  457. position:absolute;
  458. align-self:center;
  459. padding:2px 2px 2px 2px;
  460. box-sizing:border-box;
  461. width:100%;
  462. }
  463. #u12751_img {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:113px;
  469. height:30px;
  470. }
  471. #u12751_text {
  472. border-width:0px;
  473. word-wrap:break-word;
  474. text-transform:none;
  475. }
  476. #u12752 {
  477. border-width:0px;
  478. position:absolute;
  479. left:396px;
  480. top:0px;
  481. width:113px;
  482. height:30px;
  483. display:flex;
  484. transition:none;
  485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  486. font-weight:400;
  487. font-style:normal;
  488. color:#FFFFFF;
  489. }
  490. #u12752 .text {
  491. position:absolute;
  492. align-self:center;
  493. padding:2px 2px 2px 2px;
  494. box-sizing:border-box;
  495. width:100%;
  496. }
  497. #u12752_img {
  498. border-width:0px;
  499. position:absolute;
  500. left:0px;
  501. top:0px;
  502. width:113px;
  503. height:30px;
  504. }
  505. #u12752_text {
  506. border-width:0px;
  507. word-wrap:break-word;
  508. text-transform:none;
  509. }
  510. #u12753 {
  511. border-width:0px;
  512. position:absolute;
  513. left:509px;
  514. top:0px;
  515. width:113px;
  516. height:30px;
  517. display:flex;
  518. transition:none;
  519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  520. font-weight:400;
  521. font-style:normal;
  522. color:#FFFFFF;
  523. }
  524. #u12753 .text {
  525. position:absolute;
  526. align-self:center;
  527. padding:2px 2px 2px 2px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u12753_img {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:113px;
  537. height:30px;
  538. }
  539. #u12753_text {
  540. border-width:0px;
  541. word-wrap:break-word;
  542. text-transform:none;
  543. }
  544. #u12754 {
  545. border-width:0px;
  546. position:absolute;
  547. left:622px;
  548. top:0px;
  549. width:113px;
  550. height:30px;
  551. display:flex;
  552. transition:none;
  553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  554. font-weight:400;
  555. font-style:normal;
  556. color:#FFFFFF;
  557. }
  558. #u12754 .text {
  559. position:absolute;
  560. align-self:center;
  561. padding:2px 2px 2px 2px;
  562. box-sizing:border-box;
  563. width:100%;
  564. }
  565. #u12754_img {
  566. border-width:0px;
  567. position:absolute;
  568. left:0px;
  569. top:0px;
  570. width:113px;
  571. height:30px;
  572. }
  573. #u12754_text {
  574. border-width:0px;
  575. word-wrap:break-word;
  576. text-transform:none;
  577. }
  578. #u12755 {
  579. border-width:0px;
  580. position:absolute;
  581. left:734px;
  582. top:0px;
  583. width:113px;
  584. height:30px;
  585. display:flex;
  586. transition:none;
  587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  588. font-weight:400;
  589. font-style:normal;
  590. color:#FFFFFF;
  591. }
  592. #u12755 .text {
  593. position:absolute;
  594. align-self:center;
  595. padding:2px 2px 2px 2px;
  596. box-sizing:border-box;
  597. width:100%;
  598. }
  599. #u12755_img {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:113px;
  605. height:30px;
  606. }
  607. #u12755_text {
  608. border-width:0px;
  609. word-wrap:break-word;
  610. text-transform:none;
  611. }
  612. #u12756 {
  613. border-width:0px;
  614. position:absolute;
  615. left:847px;
  616. top:0px;
  617. width:113px;
  618. height:30px;
  619. display:flex;
  620. transition:none;
  621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  622. font-weight:400;
  623. font-style:normal;
  624. color:#FFFFFF;
  625. }
  626. #u12756 .text {
  627. position:absolute;
  628. align-self:center;
  629. padding:2px 2px 2px 2px;
  630. box-sizing:border-box;
  631. width:100%;
  632. }
  633. #u12756_img {
  634. border-width:0px;
  635. position:absolute;
  636. left:0px;
  637. top:0px;
  638. width:113px;
  639. height:30px;
  640. }
  641. #u12756_text {
  642. border-width:0px;
  643. word-wrap:break-word;
  644. text-transform:none;
  645. }
  646. #u12757 {
  647. border-width:0px;
  648. position:absolute;
  649. left:0px;
  650. top:30px;
  651. width:59px;
  652. height:40px;
  653. display:flex;
  654. transition:none;
  655. }
  656. #u12757 .text {
  657. position:absolute;
  658. align-self:center;
  659. padding:2px 2px 2px 2px;
  660. box-sizing:border-box;
  661. width:100%;
  662. }
  663. #u12757_img {
  664. border-width:0px;
  665. position:absolute;
  666. left:0px;
  667. top:0px;
  668. width:59px;
  669. height:40px;
  670. }
  671. #u12757_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. }
  676. #u12758 {
  677. border-width:0px;
  678. position:absolute;
  679. left:59px;
  680. top:30px;
  681. width:113px;
  682. height:40px;
  683. display:flex;
  684. transition:none;
  685. }
  686. #u12758 .text {
  687. position:absolute;
  688. align-self:center;
  689. padding:2px 2px 2px 2px;
  690. box-sizing:border-box;
  691. width:100%;
  692. }
  693. #u12758_img {
  694. border-width:0px;
  695. position:absolute;
  696. left:0px;
  697. top:0px;
  698. width:113px;
  699. height:40px;
  700. }
  701. #u12758_text {
  702. border-width:0px;
  703. word-wrap:break-word;
  704. text-transform:none;
  705. }
  706. #u12759 {
  707. border-width:0px;
  708. position:absolute;
  709. left:171px;
  710. top:30px;
  711. width:113px;
  712. height:40px;
  713. display:flex;
  714. transition:none;
  715. }
  716. #u12759 .text {
  717. position:absolute;
  718. align-self:center;
  719. padding:2px 2px 2px 2px;
  720. box-sizing:border-box;
  721. width:100%;
  722. }
  723. #u12759_img {
  724. border-width:0px;
  725. position:absolute;
  726. left:0px;
  727. top:0px;
  728. width:113px;
  729. height:40px;
  730. }
  731. #u12759_text {
  732. border-width:0px;
  733. word-wrap:break-word;
  734. text-transform:none;
  735. }
  736. #u12760 {
  737. border-width:0px;
  738. position:absolute;
  739. left:284px;
  740. top:30px;
  741. width:113px;
  742. height:40px;
  743. display:flex;
  744. transition:none;
  745. }
  746. #u12760 .text {
  747. position:absolute;
  748. align-self:center;
  749. padding:2px 2px 2px 2px;
  750. box-sizing:border-box;
  751. width:100%;
  752. }
  753. #u12760_img {
  754. border-width:0px;
  755. position:absolute;
  756. left:0px;
  757. top:0px;
  758. width:113px;
  759. height:40px;
  760. }
  761. #u12760_text {
  762. border-width:0px;
  763. word-wrap:break-word;
  764. text-transform:none;
  765. }
  766. #u12761 {
  767. border-width:0px;
  768. position:absolute;
  769. left:396px;
  770. top:30px;
  771. width:113px;
  772. height:40px;
  773. display:flex;
  774. transition:none;
  775. }
  776. #u12761 .text {
  777. position:absolute;
  778. align-self:center;
  779. padding:2px 2px 2px 2px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u12761_img {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:113px;
  789. height:40px;
  790. }
  791. #u12761_text {
  792. border-width:0px;
  793. word-wrap:break-word;
  794. text-transform:none;
  795. visibility:hidden;
  796. }
  797. #u12762 {
  798. border-width:0px;
  799. position:absolute;
  800. left:509px;
  801. top:30px;
  802. width:113px;
  803. height:40px;
  804. display:flex;
  805. transition:none;
  806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  807. font-weight:400;
  808. font-style:normal;
  809. }
  810. #u12762 .text {
  811. position:absolute;
  812. align-self:center;
  813. padding:2px 2px 2px 2px;
  814. box-sizing:border-box;
  815. width:100%;
  816. }
  817. #u12762_img {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:113px;
  823. height:40px;
  824. }
  825. #u12762_text {
  826. border-width:0px;
  827. word-wrap:break-word;
  828. text-transform:none;
  829. }
  830. #u12763 {
  831. border-width:0px;
  832. position:absolute;
  833. left:622px;
  834. top:30px;
  835. width:113px;
  836. height:40px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u12763 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u12763_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:113px;
  853. height:40px;
  854. }
  855. #u12763_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. }
  860. #u12764 {
  861. border-width:0px;
  862. position:absolute;
  863. left:734px;
  864. top:30px;
  865. width:113px;
  866. height:40px;
  867. display:flex;
  868. transition:none;
  869. }
  870. #u12764 .text {
  871. position:absolute;
  872. align-self:center;
  873. padding:2px 2px 2px 2px;
  874. box-sizing:border-box;
  875. width:100%;
  876. }
  877. #u12764_img {
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:113px;
  883. height:40px;
  884. }
  885. #u12764_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. }
  890. #u12765 {
  891. border-width:0px;
  892. position:absolute;
  893. left:847px;
  894. top:30px;
  895. width:113px;
  896. height:40px;
  897. display:flex;
  898. transition:none;
  899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  900. font-weight:400;
  901. font-style:normal;
  902. color:#298FFF;
  903. }
  904. #u12765 .text {
  905. position:absolute;
  906. align-self:center;
  907. padding:2px 2px 2px 2px;
  908. box-sizing:border-box;
  909. width:100%;
  910. }
  911. #u12765_img {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:113px;
  917. height:40px;
  918. }
  919. #u12765_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. }
  924. #u12766 {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:70px;
  929. width:59px;
  930. height:30px;
  931. display:flex;
  932. transition:none;
  933. }
  934. #u12766 .text {
  935. position:absolute;
  936. align-self:center;
  937. padding:2px 2px 2px 2px;
  938. box-sizing:border-box;
  939. width:100%;
  940. }
  941. #u12766_img {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:59px;
  947. height:30px;
  948. }
  949. #u12766_text {
  950. border-width:0px;
  951. word-wrap:break-word;
  952. text-transform:none;
  953. }
  954. #u12767 {
  955. border-width:0px;
  956. position:absolute;
  957. left:59px;
  958. top:70px;
  959. width:113px;
  960. height:30px;
  961. display:flex;
  962. transition:none;
  963. }
  964. #u12767 .text {
  965. position:absolute;
  966. align-self:center;
  967. padding:2px 2px 2px 2px;
  968. box-sizing:border-box;
  969. width:100%;
  970. }
  971. #u12767_img {
  972. border-width:0px;
  973. position:absolute;
  974. left:0px;
  975. top:0px;
  976. width:113px;
  977. height:30px;
  978. }
  979. #u12767_text {
  980. border-width:0px;
  981. word-wrap:break-word;
  982. text-transform:none;
  983. visibility:hidden;
  984. }
  985. #u12768 {
  986. border-width:0px;
  987. position:absolute;
  988. left:171px;
  989. top:70px;
  990. width:113px;
  991. height:30px;
  992. display:flex;
  993. transition:none;
  994. }
  995. #u12768 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u12768_img {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:113px;
  1008. height:30px;
  1009. }
  1010. #u12768_text {
  1011. border-width:0px;
  1012. word-wrap:break-word;
  1013. text-transform:none;
  1014. visibility:hidden;
  1015. }
  1016. #u12769 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:284px;
  1020. top:70px;
  1021. width:113px;
  1022. height:30px;
  1023. display:flex;
  1024. transition:none;
  1025. }
  1026. #u12769 .text {
  1027. position:absolute;
  1028. align-self:center;
  1029. padding:2px 2px 2px 2px;
  1030. box-sizing:border-box;
  1031. width:100%;
  1032. }
  1033. #u12769_img {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:113px;
  1039. height:30px;
  1040. }
  1041. #u12769_text {
  1042. border-width:0px;
  1043. word-wrap:break-word;
  1044. text-transform:none;
  1045. visibility:hidden;
  1046. }
  1047. #u12770 {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:396px;
  1051. top:70px;
  1052. width:113px;
  1053. height:30px;
  1054. display:flex;
  1055. transition:none;
  1056. }
  1057. #u12770 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u12770_img {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:0px;
  1068. top:0px;
  1069. width:113px;
  1070. height:30px;
  1071. }
  1072. #u12770_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u12771 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:509px;
  1082. top:70px;
  1083. width:113px;
  1084. height:30px;
  1085. display:flex;
  1086. transition:none;
  1087. }
  1088. #u12771 .text {
  1089. position:absolute;
  1090. align-self:center;
  1091. padding:2px 2px 2px 2px;
  1092. box-sizing:border-box;
  1093. width:100%;
  1094. }
  1095. #u12771_img {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:113px;
  1101. height:30px;
  1102. }
  1103. #u12771_text {
  1104. border-width:0px;
  1105. word-wrap:break-word;
  1106. text-transform:none;
  1107. visibility:hidden;
  1108. }
  1109. #u12772 {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:622px;
  1113. top:70px;
  1114. width:113px;
  1115. height:30px;
  1116. display:flex;
  1117. transition:none;
  1118. }
  1119. #u12772 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 2px 2px 2px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u12772_img {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:113px;
  1132. height:30px;
  1133. }
  1134. #u12772_text {
  1135. border-width:0px;
  1136. word-wrap:break-word;
  1137. text-transform:none;
  1138. visibility:hidden;
  1139. }
  1140. #u12773 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:734px;
  1144. top:70px;
  1145. width:113px;
  1146. height:30px;
  1147. display:flex;
  1148. transition:none;
  1149. }
  1150. #u12773 .text {
  1151. position:absolute;
  1152. align-self:center;
  1153. padding:2px 2px 2px 2px;
  1154. box-sizing:border-box;
  1155. width:100%;
  1156. }
  1157. #u12773_img {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:0px;
  1161. top:0px;
  1162. width:113px;
  1163. height:30px;
  1164. }
  1165. #u12773_text {
  1166. border-width:0px;
  1167. word-wrap:break-word;
  1168. text-transform:none;
  1169. visibility:hidden;
  1170. }
  1171. #u12774 {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:847px;
  1175. top:70px;
  1176. width:113px;
  1177. height:30px;
  1178. display:flex;
  1179. transition:none;
  1180. }
  1181. #u12774 .text {
  1182. position:absolute;
  1183. align-self:center;
  1184. padding:2px 2px 2px 2px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u12774_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:113px;
  1194. height:30px;
  1195. }
  1196. #u12774_text {
  1197. border-width:0px;
  1198. word-wrap:break-word;
  1199. text-transform:none;
  1200. visibility:hidden;
  1201. }
  1202. #u12775 {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:0px;
  1206. top:100px;
  1207. width:59px;
  1208. height:30px;
  1209. display:flex;
  1210. transition:none;
  1211. }
  1212. #u12775 .text {
  1213. position:absolute;
  1214. align-self:center;
  1215. padding:2px 2px 2px 2px;
  1216. box-sizing:border-box;
  1217. width:100%;
  1218. }
  1219. #u12775_img {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:0px;
  1223. top:0px;
  1224. width:59px;
  1225. height:30px;
  1226. }
  1227. #u12775_text {
  1228. border-width:0px;
  1229. word-wrap:break-word;
  1230. text-transform:none;
  1231. }
  1232. #u12776 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:59px;
  1236. top:100px;
  1237. width:113px;
  1238. height:30px;
  1239. display:flex;
  1240. transition:none;
  1241. }
  1242. #u12776 .text {
  1243. position:absolute;
  1244. align-self:center;
  1245. padding:2px 2px 2px 2px;
  1246. box-sizing:border-box;
  1247. width:100%;
  1248. }
  1249. #u12776_img {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:0px;
  1253. top:0px;
  1254. width:113px;
  1255. height:30px;
  1256. }
  1257. #u12776_text {
  1258. border-width:0px;
  1259. word-wrap:break-word;
  1260. text-transform:none;
  1261. visibility:hidden;
  1262. }
  1263. #u12777 {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:171px;
  1267. top:100px;
  1268. width:113px;
  1269. height:30px;
  1270. display:flex;
  1271. transition:none;
  1272. }
  1273. #u12777 .text {
  1274. position:absolute;
  1275. align-self:center;
  1276. padding:2px 2px 2px 2px;
  1277. box-sizing:border-box;
  1278. width:100%;
  1279. }
  1280. #u12777_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:113px;
  1286. height:30px;
  1287. }
  1288. #u12777_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u12778 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:284px;
  1298. top:100px;
  1299. width:113px;
  1300. height:30px;
  1301. display:flex;
  1302. transition:none;
  1303. }
  1304. #u12778 .text {
  1305. position:absolute;
  1306. align-self:center;
  1307. padding:2px 2px 2px 2px;
  1308. box-sizing:border-box;
  1309. width:100%;
  1310. }
  1311. #u12778_img {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:113px;
  1317. height:30px;
  1318. }
  1319. #u12778_text {
  1320. border-width:0px;
  1321. word-wrap:break-word;
  1322. text-transform:none;
  1323. visibility:hidden;
  1324. }
  1325. #u12779 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:396px;
  1329. top:100px;
  1330. width:113px;
  1331. height:30px;
  1332. display:flex;
  1333. transition:none;
  1334. }
  1335. #u12779 .text {
  1336. position:absolute;
  1337. align-self:center;
  1338. padding:2px 2px 2px 2px;
  1339. box-sizing:border-box;
  1340. width:100%;
  1341. }
  1342. #u12779_img {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:113px;
  1348. height:30px;
  1349. }
  1350. #u12779_text {
  1351. border-width:0px;
  1352. word-wrap:break-word;
  1353. text-transform:none;
  1354. visibility:hidden;
  1355. }
  1356. #u12780 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:509px;
  1360. top:100px;
  1361. width:113px;
  1362. height:30px;
  1363. display:flex;
  1364. transition:none;
  1365. }
  1366. #u12780 .text {
  1367. position:absolute;
  1368. align-self:center;
  1369. padding:2px 2px 2px 2px;
  1370. box-sizing:border-box;
  1371. width:100%;
  1372. }
  1373. #u12780_img {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:0px;
  1377. top:0px;
  1378. width:113px;
  1379. height:30px;
  1380. }
  1381. #u12780_text {
  1382. border-width:0px;
  1383. word-wrap:break-word;
  1384. text-transform:none;
  1385. visibility:hidden;
  1386. }
  1387. #u12781 {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:622px;
  1391. top:100px;
  1392. width:113px;
  1393. height:30px;
  1394. display:flex;
  1395. transition:none;
  1396. }
  1397. #u12781 .text {
  1398. position:absolute;
  1399. align-self:center;
  1400. padding:2px 2px 2px 2px;
  1401. box-sizing:border-box;
  1402. width:100%;
  1403. }
  1404. #u12781_img {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:113px;
  1410. height:30px;
  1411. }
  1412. #u12781_text {
  1413. border-width:0px;
  1414. word-wrap:break-word;
  1415. text-transform:none;
  1416. visibility:hidden;
  1417. }
  1418. #u12782 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:734px;
  1422. top:100px;
  1423. width:113px;
  1424. height:30px;
  1425. display:flex;
  1426. transition:none;
  1427. }
  1428. #u12782 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:2px 2px 2px 2px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u12782_img {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:113px;
  1441. height:30px;
  1442. }
  1443. #u12782_text {
  1444. border-width:0px;
  1445. word-wrap:break-word;
  1446. text-transform:none;
  1447. visibility:hidden;
  1448. }
  1449. #u12783 {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:847px;
  1453. top:100px;
  1454. width:113px;
  1455. height:30px;
  1456. display:flex;
  1457. transition:none;
  1458. }
  1459. #u12783 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 2px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u12783_img {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:113px;
  1472. height:30px;
  1473. }
  1474. #u12783_text {
  1475. border-width:0px;
  1476. word-wrap:break-word;
  1477. text-transform:none;
  1478. visibility:hidden;
  1479. }
  1480. #u12784 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:0px;
  1484. top:130px;
  1485. width:59px;
  1486. height:30px;
  1487. display:flex;
  1488. transition:none;
  1489. }
  1490. #u12784 .text {
  1491. position:absolute;
  1492. align-self:center;
  1493. padding:2px 2px 2px 2px;
  1494. box-sizing:border-box;
  1495. width:100%;
  1496. }
  1497. #u12784_img {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:59px;
  1503. height:30px;
  1504. }
  1505. #u12784_text {
  1506. border-width:0px;
  1507. word-wrap:break-word;
  1508. text-transform:none;
  1509. }
  1510. #u12785 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:59px;
  1514. top:130px;
  1515. width:113px;
  1516. height:30px;
  1517. display:flex;
  1518. transition:none;
  1519. }
  1520. #u12785 .text {
  1521. position:absolute;
  1522. align-self:center;
  1523. padding:2px 2px 2px 2px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u12785_img {
  1528. border-width:0px;
  1529. position:absolute;
  1530. left:0px;
  1531. top:0px;
  1532. width:113px;
  1533. height:30px;
  1534. }
  1535. #u12785_text {
  1536. border-width:0px;
  1537. word-wrap:break-word;
  1538. text-transform:none;
  1539. visibility:hidden;
  1540. }
  1541. #u12786 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:171px;
  1545. top:130px;
  1546. width:113px;
  1547. height:30px;
  1548. display:flex;
  1549. transition:none;
  1550. }
  1551. #u12786 .text {
  1552. position:absolute;
  1553. align-self:center;
  1554. padding:2px 2px 2px 2px;
  1555. box-sizing:border-box;
  1556. width:100%;
  1557. }
  1558. #u12786_img {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:113px;
  1564. height:30px;
  1565. }
  1566. #u12786_text {
  1567. border-width:0px;
  1568. word-wrap:break-word;
  1569. text-transform:none;
  1570. visibility:hidden;
  1571. }
  1572. #u12787 {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:284px;
  1576. top:130px;
  1577. width:113px;
  1578. height:30px;
  1579. display:flex;
  1580. transition:none;
  1581. }
  1582. #u12787 .text {
  1583. position:absolute;
  1584. align-self:center;
  1585. padding:2px 2px 2px 2px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u12787_img {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:0px;
  1593. top:0px;
  1594. width:113px;
  1595. height:30px;
  1596. }
  1597. #u12787_text {
  1598. border-width:0px;
  1599. word-wrap:break-word;
  1600. text-transform:none;
  1601. visibility:hidden;
  1602. }
  1603. #u12788 {
  1604. border-width:0px;
  1605. position:absolute;
  1606. left:396px;
  1607. top:130px;
  1608. width:113px;
  1609. height:30px;
  1610. display:flex;
  1611. transition:none;
  1612. }
  1613. #u12788 .text {
  1614. position:absolute;
  1615. align-self:center;
  1616. padding:2px 2px 2px 2px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u12788_img {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:113px;
  1626. height:30px;
  1627. }
  1628. #u12788_text {
  1629. border-width:0px;
  1630. word-wrap:break-word;
  1631. text-transform:none;
  1632. visibility:hidden;
  1633. }
  1634. #u12789 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:509px;
  1638. top:130px;
  1639. width:113px;
  1640. height:30px;
  1641. display:flex;
  1642. transition:none;
  1643. }
  1644. #u12789 .text {
  1645. position:absolute;
  1646. align-self:center;
  1647. padding:2px 2px 2px 2px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u12789_img {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:0px;
  1655. top:0px;
  1656. width:113px;
  1657. height:30px;
  1658. }
  1659. #u12789_text {
  1660. border-width:0px;
  1661. word-wrap:break-word;
  1662. text-transform:none;
  1663. visibility:hidden;
  1664. }
  1665. #u12790 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:622px;
  1669. top:130px;
  1670. width:113px;
  1671. height:30px;
  1672. display:flex;
  1673. transition:none;
  1674. }
  1675. #u12790 .text {
  1676. position:absolute;
  1677. align-self:center;
  1678. padding:2px 2px 2px 2px;
  1679. box-sizing:border-box;
  1680. width:100%;
  1681. }
  1682. #u12790_img {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:113px;
  1688. height:30px;
  1689. }
  1690. #u12790_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. visibility:hidden;
  1695. }
  1696. #u12791 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:734px;
  1700. top:130px;
  1701. width:113px;
  1702. height:30px;
  1703. display:flex;
  1704. transition:none;
  1705. }
  1706. #u12791 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:2px 2px 2px 2px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u12791_img {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:113px;
  1719. height:30px;
  1720. }
  1721. #u12791_text {
  1722. border-width:0px;
  1723. word-wrap:break-word;
  1724. text-transform:none;
  1725. visibility:hidden;
  1726. }
  1727. #u12792 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:847px;
  1731. top:130px;
  1732. width:113px;
  1733. height:30px;
  1734. display:flex;
  1735. transition:none;
  1736. }
  1737. #u12792 .text {
  1738. position:absolute;
  1739. align-self:center;
  1740. padding:2px 2px 2px 2px;
  1741. box-sizing:border-box;
  1742. width:100%;
  1743. }
  1744. #u12792_img {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:113px;
  1750. height:30px;
  1751. }
  1752. #u12792_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. visibility:hidden;
  1757. }
  1758. #u12793 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:160px;
  1763. width:59px;
  1764. height:30px;
  1765. display:flex;
  1766. transition:none;
  1767. }
  1768. #u12793 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:2px 2px 2px 2px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u12793_img {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:59px;
  1781. height:30px;
  1782. }
  1783. #u12793_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u12794 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:59px;
  1792. top:160px;
  1793. width:113px;
  1794. height:30px;
  1795. display:flex;
  1796. transition:none;
  1797. }
  1798. #u12794 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:2px 2px 2px 2px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u12794_img {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:113px;
  1811. height:30px;
  1812. }
  1813. #u12794_text {
  1814. border-width:0px;
  1815. word-wrap:break-word;
  1816. text-transform:none;
  1817. visibility:hidden;
  1818. }
  1819. #u12795 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:171px;
  1823. top:160px;
  1824. width:113px;
  1825. height:30px;
  1826. display:flex;
  1827. transition:none;
  1828. }
  1829. #u12795 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:2px 2px 2px 2px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u12795_img {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:113px;
  1842. height:30px;
  1843. }
  1844. #u12795_text {
  1845. border-width:0px;
  1846. word-wrap:break-word;
  1847. text-transform:none;
  1848. visibility:hidden;
  1849. }
  1850. #u12796 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:284px;
  1854. top:160px;
  1855. width:113px;
  1856. height:30px;
  1857. display:flex;
  1858. transition:none;
  1859. }
  1860. #u12796 .text {
  1861. position:absolute;
  1862. align-self:center;
  1863. padding:2px 2px 2px 2px;
  1864. box-sizing:border-box;
  1865. width:100%;
  1866. }
  1867. #u12796_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:113px;
  1873. height:30px;
  1874. }
  1875. #u12796_text {
  1876. border-width:0px;
  1877. word-wrap:break-word;
  1878. text-transform:none;
  1879. visibility:hidden;
  1880. }
  1881. #u12797 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:396px;
  1885. top:160px;
  1886. width:113px;
  1887. height:30px;
  1888. display:flex;
  1889. transition:none;
  1890. }
  1891. #u12797 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 2px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u12797_img {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:113px;
  1904. height:30px;
  1905. }
  1906. #u12797_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. visibility:hidden;
  1911. }
  1912. #u12798 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:509px;
  1916. top:160px;
  1917. width:113px;
  1918. height:30px;
  1919. display:flex;
  1920. transition:none;
  1921. }
  1922. #u12798 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:2px 2px 2px 2px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u12798_img {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:113px;
  1935. height:30px;
  1936. }
  1937. #u12798_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. visibility:hidden;
  1942. }
  1943. #u12799 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:622px;
  1947. top:160px;
  1948. width:113px;
  1949. height:30px;
  1950. display:flex;
  1951. transition:none;
  1952. }
  1953. #u12799 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 2px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u12799_img {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:113px;
  1966. height:30px;
  1967. }
  1968. #u12799_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. visibility:hidden;
  1973. }
  1974. #u12800 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:734px;
  1978. top:160px;
  1979. width:113px;
  1980. height:30px;
  1981. display:flex;
  1982. transition:none;
  1983. }
  1984. #u12800 .text {
  1985. position:absolute;
  1986. align-self:center;
  1987. padding:2px 2px 2px 2px;
  1988. box-sizing:border-box;
  1989. width:100%;
  1990. }
  1991. #u12800_img {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:113px;
  1997. height:30px;
  1998. }
  1999. #u12800_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u12801 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:847px;
  2009. top:160px;
  2010. width:113px;
  2011. height:30px;
  2012. display:flex;
  2013. transition:none;
  2014. }
  2015. #u12801 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 2px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u12801_img {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:113px;
  2028. height:30px;
  2029. }
  2030. #u12801_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. visibility:hidden;
  2035. }
  2036. #u12802 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:190px;
  2041. width:59px;
  2042. height:23px;
  2043. display:flex;
  2044. transition:none;
  2045. }
  2046. #u12802 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u12802_img {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:59px;
  2059. height:23px;
  2060. }
  2061. #u12802_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. }
  2066. #u12803 {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:59px;
  2070. top:190px;
  2071. width:113px;
  2072. height:23px;
  2073. display:flex;
  2074. transition:none;
  2075. }
  2076. #u12803 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 2px 2px 2px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u12803_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:113px;
  2089. height:23px;
  2090. }
  2091. #u12803_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. visibility:hidden;
  2096. }
  2097. #u12804 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:171px;
  2101. top:190px;
  2102. width:113px;
  2103. height:23px;
  2104. display:flex;
  2105. transition:none;
  2106. }
  2107. #u12804 .text {
  2108. position:absolute;
  2109. align-self:center;
  2110. padding:2px 2px 2px 2px;
  2111. box-sizing:border-box;
  2112. width:100%;
  2113. }
  2114. #u12804_img {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:113px;
  2120. height:23px;
  2121. }
  2122. #u12804_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u12805 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:284px;
  2132. top:190px;
  2133. width:113px;
  2134. height:23px;
  2135. display:flex;
  2136. transition:none;
  2137. }
  2138. #u12805 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 2px 2px 2px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u12805_img {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:113px;
  2151. height:23px;
  2152. }
  2153. #u12805_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. visibility:hidden;
  2158. }
  2159. #u12806 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:396px;
  2163. top:190px;
  2164. width:113px;
  2165. height:23px;
  2166. display:flex;
  2167. transition:none;
  2168. }
  2169. #u12806 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 2px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u12806_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:113px;
  2182. height:23px;
  2183. }
  2184. #u12806_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u12807 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:509px;
  2194. top:190px;
  2195. width:113px;
  2196. height:23px;
  2197. display:flex;
  2198. transition:none;
  2199. }
  2200. #u12807 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 2px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u12807_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:113px;
  2213. height:23px;
  2214. }
  2215. #u12807_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. visibility:hidden;
  2220. }
  2221. #u12808 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:622px;
  2225. top:190px;
  2226. width:113px;
  2227. height:23px;
  2228. display:flex;
  2229. transition:none;
  2230. }
  2231. #u12808 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 2px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u12808_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:113px;
  2244. height:23px;
  2245. }
  2246. #u12808_text {
  2247. border-width:0px;
  2248. word-wrap:break-word;
  2249. text-transform:none;
  2250. visibility:hidden;
  2251. }
  2252. #u12809 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:734px;
  2256. top:190px;
  2257. width:113px;
  2258. height:23px;
  2259. display:flex;
  2260. transition:none;
  2261. }
  2262. #u12809 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u12809_img {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:113px;
  2275. height:23px;
  2276. }
  2277. #u12809_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. visibility:hidden;
  2282. }
  2283. #u12810 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:847px;
  2287. top:190px;
  2288. width:113px;
  2289. height:23px;
  2290. display:flex;
  2291. transition:none;
  2292. }
  2293. #u12810 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 2px 2px 2px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u12810_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:113px;
  2306. height:23px;
  2307. }
  2308. #u12810_text {
  2309. border-width:0px;
  2310. word-wrap:break-word;
  2311. text-transform:none;
  2312. visibility:hidden;
  2313. }
  2314. #u12811 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:0px;
  2320. height:0px;
  2321. }
  2322. #u12812_div {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:120px;
  2328. height:30px;
  2329. background:inherit;
  2330. background-color:rgba(255, 255, 255, 1);
  2331. box-sizing:border-box;
  2332. border-width:1px;
  2333. border-style:solid;
  2334. border-color:rgba(201, 201, 201, 1);
  2335. border-radius:4px;
  2336. filter:drop-shadow(none);
  2337. transition:none;
  2338. font-family:"Microsoft YaHei", sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:14px;
  2342. color:#CCCCCC;
  2343. text-align:left;
  2344. }
  2345. #u12812 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:2160px;
  2349. top:120px;
  2350. width:120px;
  2351. height:30px;
  2352. display:flex;
  2353. transition:none;
  2354. transform-origin:50% 50%;
  2355. font-family:"Microsoft YaHei", sans-serif;
  2356. font-weight:400;
  2357. font-style:normal;
  2358. font-size:14px;
  2359. color:#CCCCCC;
  2360. text-align:left;
  2361. }
  2362. #u12812 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 8px 2px 8px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u12812_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u12813_input {
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:109px;
  2380. height:25px;
  2381. padding:2px 2px 2px 2px;
  2382. font-family:"Microsoft YaHei", sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:10px;
  2386. letter-spacing:normal;
  2387. color:#000000;
  2388. vertical-align:none;
  2389. text-align:left;
  2390. text-transform:none;
  2391. background-color:transparent;
  2392. border-color:transparent;
  2393. }
  2394. #u12813_input.hint {
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:109px;
  2399. height:25px;
  2400. padding:2px 2px 2px 2px;
  2401. font-family:"Microsoft YaHei", sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:12px;
  2405. letter-spacing:normal;
  2406. color:#AAAAAA;
  2407. vertical-align:none;
  2408. text-align:left;
  2409. text-transform:none;
  2410. background-color:transparent;
  2411. border-color:transparent;
  2412. }
  2413. #u12813_input.disabled {
  2414. position:absolute;
  2415. left:0px;
  2416. top:0px;
  2417. width:109px;
  2418. height:25px;
  2419. padding:2px 2px 2px 2px;
  2420. font-family:"Microsoft YaHei", sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:10px;
  2424. letter-spacing:normal;
  2425. color:#000000;
  2426. vertical-align:none;
  2427. text-align:left;
  2428. text-transform:none;
  2429. background-color:transparent;
  2430. border-color:transparent;
  2431. }
  2432. #u12813_input.hint.disabled {
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:109px;
  2437. height:25px;
  2438. padding:2px 2px 2px 2px;
  2439. font-family:"Microsoft YaHei", sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:12px;
  2443. letter-spacing:normal;
  2444. color:#AAAAAA;
  2445. vertical-align:none;
  2446. text-align:left;
  2447. text-transform:none;
  2448. background-color:transparent;
  2449. border-color:transparent;
  2450. }
  2451. #u12813_div {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:109px;
  2457. height:25px;
  2458. background:inherit;
  2459. background-color:rgba(255, 255, 255, 1);
  2460. border-radius:0px;
  2461. filter:drop-shadow(none);
  2462. transition:none;
  2463. font-family:"Microsoft YaHei", sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:10px;
  2467. }
  2468. #u12813 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:2167px;
  2472. top:121px;
  2473. width:109px;
  2474. height:25px;
  2475. display:flex;
  2476. transition:none;
  2477. transform-origin:50% 50%;
  2478. font-family:"Microsoft YaHei", sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:10px;
  2482. }
  2483. #u12813 .text {
  2484. position:absolute;
  2485. align-self:center;
  2486. padding:2px 2px 2px 2px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u12813_div.hint {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:109px;
  2496. height:25px;
  2497. background:inherit;
  2498. background-color:rgba(255, 255, 255, 1);
  2499. border-radius:0px;
  2500. filter:drop-shadow(none);
  2501. transition:none;
  2502. font-family:"Microsoft YaHei", sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:10px;
  2506. }
  2507. #u12813.hint {
  2508. }
  2509. #u12813_div.disabled {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:109px;
  2515. height:25px;
  2516. background:inherit;
  2517. background-color:rgba(240, 240, 240, 1);
  2518. border-radius:0px;
  2519. filter:drop-shadow(none);
  2520. transition:none;
  2521. font-family:"Microsoft YaHei", sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:10px;
  2525. }
  2526. #u12813.disabled {
  2527. }
  2528. #u12813_div.hint.disabled {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:109px;
  2534. height:25px;
  2535. background:inherit;
  2536. background-color:rgba(240, 240, 240, 1);
  2537. border-radius:0px;
  2538. filter:drop-shadow(none);
  2539. transition:none;
  2540. font-family:"Microsoft YaHei", sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:10px;
  2544. }
  2545. #u12813.hint.disabled {
  2546. }
  2547. #u12814 {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:0px;
  2553. height:0px;
  2554. }
  2555. #u12815_div {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:120px;
  2561. height:30px;
  2562. background:inherit;
  2563. background-color:rgba(255, 255, 255, 1);
  2564. box-sizing:border-box;
  2565. border-width:1px;
  2566. border-style:solid;
  2567. border-color:rgba(201, 201, 201, 1);
  2568. border-radius:4px;
  2569. filter:drop-shadow(none);
  2570. transition:none;
  2571. font-family:"Microsoft YaHei", sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:14px;
  2575. color:#CCCCCC;
  2576. text-align:left;
  2577. }
  2578. #u12815 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:2290px;
  2582. top:120px;
  2583. width:120px;
  2584. height:30px;
  2585. display:flex;
  2586. transition:none;
  2587. transform-origin:50% 50%;
  2588. font-family:"Microsoft YaHei", sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. color:#CCCCCC;
  2593. text-align:left;
  2594. }
  2595. #u12815 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 8px 2px 8px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u12815_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. visibility:hidden;
  2607. }
  2608. #u12816_input {
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:109px;
  2613. height:25px;
  2614. padding:2px 2px 2px 2px;
  2615. font-family:"Microsoft YaHei", sans-serif;
  2616. font-weight:400;
  2617. font-style:normal;
  2618. font-size:10px;
  2619. letter-spacing:normal;
  2620. color:#000000;
  2621. vertical-align:none;
  2622. text-align:left;
  2623. text-transform:none;
  2624. background-color:transparent;
  2625. border-color:transparent;
  2626. }
  2627. #u12816_input.hint {
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:109px;
  2632. height:25px;
  2633. padding:2px 2px 2px 2px;
  2634. font-family:"Microsoft YaHei", sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:12px;
  2638. letter-spacing:normal;
  2639. color:#AAAAAA;
  2640. vertical-align:none;
  2641. text-align:left;
  2642. text-transform:none;
  2643. background-color:transparent;
  2644. border-color:transparent;
  2645. }
  2646. #u12816_input.disabled {
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:109px;
  2651. height:25px;
  2652. padding:2px 2px 2px 2px;
  2653. font-family:"Microsoft YaHei", sans-serif;
  2654. font-weight:400;
  2655. font-style:normal;
  2656. font-size:10px;
  2657. letter-spacing:normal;
  2658. color:#000000;
  2659. vertical-align:none;
  2660. text-align:left;
  2661. text-transform:none;
  2662. background-color:transparent;
  2663. border-color:transparent;
  2664. }
  2665. #u12816_input.hint.disabled {
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:109px;
  2670. height:25px;
  2671. padding:2px 2px 2px 2px;
  2672. font-family:"Microsoft YaHei", sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:12px;
  2676. letter-spacing:normal;
  2677. color:#AAAAAA;
  2678. vertical-align:none;
  2679. text-align:left;
  2680. text-transform:none;
  2681. background-color:transparent;
  2682. border-color:transparent;
  2683. }
  2684. #u12816_div {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:109px;
  2690. height:25px;
  2691. background:inherit;
  2692. background-color:rgba(255, 255, 255, 1);
  2693. border-radius:0px;
  2694. filter:drop-shadow(none);
  2695. transition:none;
  2696. font-family:"Microsoft YaHei", sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:10px;
  2700. }
  2701. #u12816 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:2297px;
  2705. top:121px;
  2706. width:109px;
  2707. height:25px;
  2708. display:flex;
  2709. transition:none;
  2710. transform-origin:50% 50%;
  2711. font-family:"Microsoft YaHei", sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:10px;
  2715. }
  2716. #u12816 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 2px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u12816_div.hint {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:109px;
  2729. height:25px;
  2730. background:inherit;
  2731. background-color:rgba(255, 255, 255, 1);
  2732. border-radius:0px;
  2733. filter:drop-shadow(none);
  2734. transition:none;
  2735. font-family:"Microsoft YaHei", sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. font-size:10px;
  2739. }
  2740. #u12816.hint {
  2741. }
  2742. #u12816_div.disabled {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:109px;
  2748. height:25px;
  2749. background:inherit;
  2750. background-color:rgba(240, 240, 240, 1);
  2751. border-radius:0px;
  2752. filter:drop-shadow(none);
  2753. transition:none;
  2754. font-family:"Microsoft YaHei", sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:10px;
  2758. }
  2759. #u12816.disabled {
  2760. }
  2761. #u12816_div.hint.disabled {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:0px;
  2765. top:0px;
  2766. width:109px;
  2767. height:25px;
  2768. background:inherit;
  2769. background-color:rgba(240, 240, 240, 1);
  2770. border-radius:0px;
  2771. filter:drop-shadow(none);
  2772. transition:none;
  2773. font-family:"Microsoft YaHei", sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:10px;
  2777. }
  2778. #u12816.hint.disabled {
  2779. }
  2780. #u12817 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:0px;
  2786. height:0px;
  2787. }
  2788. #u12818_div {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:60px;
  2794. height:30px;
  2795. background:inherit;
  2796. background-color:rgba(24, 144, 255, 1);
  2797. border-radius:4px;
  2798. filter:drop-shadow(none);
  2799. transition:none;
  2800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2801. font-weight:400;
  2802. font-style:normal;
  2803. font-size:14px;
  2804. color:#FFFFFF;
  2805. }
  2806. #u12818 {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:2420px;
  2810. top:120px;
  2811. width:60px;
  2812. height:30px;
  2813. display:flex;
  2814. transition:none;
  2815. transform-origin:50% 50%;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:14px;
  2820. color:#FFFFFF;
  2821. }
  2822. #u12818 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u12818_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. }
  2834. #u12819_div {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:60px;
  2840. height:30px;
  2841. background:inherit;
  2842. background-color:rgba(255, 255, 255, 1);
  2843. box-sizing:border-box;
  2844. border-width:1px;
  2845. border-style:solid;
  2846. border-color:rgba(170, 170, 170, 1);
  2847. border-radius:4px;
  2848. filter:drop-shadow(none);
  2849. transition:none;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:14px;
  2854. }
  2855. #u12819 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:2490px;
  2859. top:120px;
  2860. width:60px;
  2861. height:30px;
  2862. display:flex;
  2863. transition:none;
  2864. transform-origin:50% 50%;
  2865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:14px;
  2869. }
  2870. #u12819 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 2px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u12819_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. }
  2882. #u12820 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:0px;
  2888. height:0px;
  2889. }
  2890. #u12821_div {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:120px;
  2896. height:30px;
  2897. background:inherit;
  2898. background-color:rgba(255, 255, 255, 1);
  2899. box-sizing:border-box;
  2900. border-width:1px;
  2901. border-style:solid;
  2902. border-color:rgba(215, 215, 215, 1);
  2903. border-radius:4px;
  2904. filter:drop-shadow(none);
  2905. transition:none;
  2906. font-size:14px;
  2907. }
  2908. #u12821 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:1900px;
  2912. top:120px;
  2913. width:120px;
  2914. height:30px;
  2915. display:flex;
  2916. transition:none;
  2917. transform-origin:50% 50%;
  2918. font-size:14px;
  2919. }
  2920. #u12821 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 2px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u12821_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u12822_input {
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:115px;
  2938. height:23px;
  2939. padding:2px 2px 2px 2px;
  2940. font-family:'ArialMT', 'Arial', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:14px;
  2944. letter-spacing:normal;
  2945. color:#AAAAAA;
  2946. vertical-align:none;
  2947. text-align:left;
  2948. text-transform:none;
  2949. background-color:transparent;
  2950. border-color:transparent;
  2951. }
  2952. #u12822_input.disabled {
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:115px;
  2957. height:23px;
  2958. padding:2px 2px 2px 2px;
  2959. font-family:'ArialMT', 'Arial', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. font-size:14px;
  2963. letter-spacing:normal;
  2964. color:#AAAAAA;
  2965. vertical-align:none;
  2966. text-align:left;
  2967. text-transform:none;
  2968. background-color:transparent;
  2969. border-color:transparent;
  2970. }
  2971. #u12822_div {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:115px;
  2977. height:23px;
  2978. background:inherit;
  2979. background-color:rgba(255, 255, 255, 1);
  2980. border-radius:0px;
  2981. filter:drop-shadow(none);
  2982. transition:none;
  2983. font-size:14px;
  2984. color:#AAAAAA;
  2985. }
  2986. #u12822 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:1903px;
  2990. top:122px;
  2991. width:115px;
  2992. height:23px;
  2993. display:flex;
  2994. transition:none;
  2995. transform-origin:50% 50%;
  2996. font-size:14px;
  2997. color:#AAAAAA;
  2998. }
  2999. #u12822 .text {
  3000. position:absolute;
  3001. align-self:flex-start;
  3002. padding:2px 2px 2px 2px;
  3003. box-sizing:border-box;
  3004. width:100%;
  3005. }
  3006. #u12822_div.disabled {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:115px;
  3012. height:23px;
  3013. background:inherit;
  3014. background-color:rgba(240, 240, 240, 1);
  3015. border-radius:0px;
  3016. filter:drop-shadow(none);
  3017. transition:none;
  3018. font-size:14px;
  3019. color:#AAAAAA;
  3020. }
  3021. #u12822.disabled {
  3022. }
  3023. .u12822_input_option {
  3024. font-size:14px;
  3025. }
  3026. #u12823 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:0px;
  3032. height:0px;
  3033. }
  3034. #u12824_div {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:120px;
  3040. height:30px;
  3041. background:inherit;
  3042. background-color:rgba(255, 255, 255, 1);
  3043. box-sizing:border-box;
  3044. border-width:1px;
  3045. border-style:solid;
  3046. border-color:rgba(215, 215, 215, 1);
  3047. border-radius:4px;
  3048. filter:drop-shadow(none);
  3049. transition:none;
  3050. font-size:14px;
  3051. }
  3052. #u12824 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:1770px;
  3056. top:120px;
  3057. width:120px;
  3058. height:30px;
  3059. display:flex;
  3060. transition:none;
  3061. transform-origin:50% 50%;
  3062. font-size:14px;
  3063. }
  3064. #u12824 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 2px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u12824_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u12825_input {
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:115px;
  3082. height:23px;
  3083. padding:2px 2px 2px 2px;
  3084. font-family:'ArialMT', 'Arial', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. letter-spacing:normal;
  3089. color:#AAAAAA;
  3090. vertical-align:none;
  3091. text-align:left;
  3092. text-transform:none;
  3093. background-color:transparent;
  3094. border-color:transparent;
  3095. }
  3096. #u12825_input.disabled {
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:115px;
  3101. height:23px;
  3102. padding:2px 2px 2px 2px;
  3103. font-family:'ArialMT', 'Arial', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:14px;
  3107. letter-spacing:normal;
  3108. color:#AAAAAA;
  3109. vertical-align:none;
  3110. text-align:left;
  3111. text-transform:none;
  3112. background-color:transparent;
  3113. border-color:transparent;
  3114. }
  3115. #u12825_div {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:115px;
  3121. height:23px;
  3122. background:inherit;
  3123. background-color:rgba(255, 255, 255, 1);
  3124. border-radius:0px;
  3125. filter:drop-shadow(none);
  3126. transition:none;
  3127. font-size:14px;
  3128. color:#AAAAAA;
  3129. }
  3130. #u12825 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:1773px;
  3134. top:122px;
  3135. width:115px;
  3136. height:23px;
  3137. display:flex;
  3138. transition:none;
  3139. transform-origin:50% 50%;
  3140. font-size:14px;
  3141. color:#AAAAAA;
  3142. }
  3143. #u12825 .text {
  3144. position:absolute;
  3145. align-self:flex-start;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u12825_div.disabled {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:115px;
  3156. height:23px;
  3157. background:inherit;
  3158. background-color:rgba(240, 240, 240, 1);
  3159. border-radius:0px;
  3160. filter:drop-shadow(none);
  3161. transition:none;
  3162. font-size:14px;
  3163. color:#AAAAAA;
  3164. }
  3165. #u12825.disabled {
  3166. }
  3167. .u12825_input_option {
  3168. font-size:14px;
  3169. }
  3170. #u12826 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:0px;
  3176. height:0px;
  3177. }
  3178. #u12827_div {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:120px;
  3184. height:30px;
  3185. background:inherit;
  3186. background-color:rgba(255, 255, 255, 1);
  3187. box-sizing:border-box;
  3188. border-width:1px;
  3189. border-style:solid;
  3190. border-color:rgba(215, 215, 215, 1);
  3191. border-radius:4px;
  3192. filter:drop-shadow(none);
  3193. transition:none;
  3194. font-size:14px;
  3195. }
  3196. #u12827 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:1640px;
  3200. top:120px;
  3201. width:120px;
  3202. height:30px;
  3203. display:flex;
  3204. transition:none;
  3205. transform-origin:50% 50%;
  3206. font-size:14px;
  3207. }
  3208. #u12827 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 2px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u12827_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u12828_input {
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:115px;
  3226. height:23px;
  3227. padding:2px 2px 2px 2px;
  3228. font-family:'ArialMT', 'Arial', sans-serif;
  3229. font-weight:400;
  3230. font-style:normal;
  3231. font-size:14px;
  3232. letter-spacing:normal;
  3233. color:#AAAAAA;
  3234. vertical-align:none;
  3235. text-align:left;
  3236. text-transform:none;
  3237. background-color:transparent;
  3238. border-color:transparent;
  3239. }
  3240. #u12828_input.disabled {
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:115px;
  3245. height:23px;
  3246. padding:2px 2px 2px 2px;
  3247. font-family:'ArialMT', 'Arial', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:14px;
  3251. letter-spacing:normal;
  3252. color:#AAAAAA;
  3253. vertical-align:none;
  3254. text-align:left;
  3255. text-transform:none;
  3256. background-color:transparent;
  3257. border-color:transparent;
  3258. }
  3259. #u12828_div {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:115px;
  3265. height:23px;
  3266. background:inherit;
  3267. background-color:rgba(255, 255, 255, 1);
  3268. border-radius:0px;
  3269. filter:drop-shadow(none);
  3270. transition:none;
  3271. font-size:14px;
  3272. color:#AAAAAA;
  3273. }
  3274. #u12828 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:1643px;
  3278. top:122px;
  3279. width:115px;
  3280. height:23px;
  3281. display:flex;
  3282. transition:none;
  3283. transform-origin:50% 50%;
  3284. font-size:14px;
  3285. color:#AAAAAA;
  3286. }
  3287. #u12828 .text {
  3288. position:absolute;
  3289. align-self:flex-start;
  3290. padding:2px 2px 2px 2px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u12828_div.disabled {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:115px;
  3300. height:23px;
  3301. background:inherit;
  3302. background-color:rgba(240, 240, 240, 1);
  3303. border-radius:0px;
  3304. filter:drop-shadow(none);
  3305. transition:none;
  3306. font-size:14px;
  3307. color:#AAAAAA;
  3308. }
  3309. #u12828.disabled {
  3310. }
  3311. .u12828_input_option {
  3312. font-size:14px;
  3313. }
  3314. #u12829 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:0px;
  3320. height:0px;
  3321. }
  3322. #u12830_div {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:120px;
  3328. height:30px;
  3329. background:inherit;
  3330. background-color:rgba(255, 255, 255, 1);
  3331. box-sizing:border-box;
  3332. border-width:1px;
  3333. border-style:solid;
  3334. border-color:rgba(201, 201, 201, 1);
  3335. border-radius:4px;
  3336. filter:drop-shadow(none);
  3337. transition:none;
  3338. font-family:"Microsoft YaHei", sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:14px;
  3342. color:#CCCCCC;
  3343. text-align:left;
  3344. }
  3345. #u12830 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:2030px;
  3349. top:120px;
  3350. width:120px;
  3351. height:30px;
  3352. display:flex;
  3353. transition:none;
  3354. transform-origin:50% 50%;
  3355. font-family:"Microsoft YaHei", sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:14px;
  3359. color:#CCCCCC;
  3360. text-align:left;
  3361. }
  3362. #u12830 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 8px 2px 8px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u12830_text {
  3370. border-width:0px;
  3371. word-wrap:break-word;
  3372. text-transform:none;
  3373. visibility:hidden;
  3374. }
  3375. #u12831_input {
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:109px;
  3380. height:25px;
  3381. padding:2px 2px 2px 2px;
  3382. font-family:"Microsoft YaHei", sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:10px;
  3386. letter-spacing:normal;
  3387. color:#000000;
  3388. vertical-align:none;
  3389. text-align:left;
  3390. text-transform:none;
  3391. background-color:transparent;
  3392. border-color:transparent;
  3393. }
  3394. #u12831_input.hint {
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:109px;
  3399. height:25px;
  3400. padding:2px 2px 2px 2px;
  3401. font-family:"Microsoft YaHei", sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:12px;
  3405. letter-spacing:normal;
  3406. color:#AAAAAA;
  3407. vertical-align:none;
  3408. text-align:left;
  3409. text-transform:none;
  3410. background-color:transparent;
  3411. border-color:transparent;
  3412. }
  3413. #u12831_input.disabled {
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:109px;
  3418. height:25px;
  3419. padding:2px 2px 2px 2px;
  3420. font-family:"Microsoft YaHei", sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:10px;
  3424. letter-spacing:normal;
  3425. color:#000000;
  3426. vertical-align:none;
  3427. text-align:left;
  3428. text-transform:none;
  3429. background-color:transparent;
  3430. border-color:transparent;
  3431. }
  3432. #u12831_input.hint.disabled {
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:109px;
  3437. height:25px;
  3438. padding:2px 2px 2px 2px;
  3439. font-family:"Microsoft YaHei", sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. letter-spacing:normal;
  3444. color:#AAAAAA;
  3445. vertical-align:none;
  3446. text-align:left;
  3447. text-transform:none;
  3448. background-color:transparent;
  3449. border-color:transparent;
  3450. }
  3451. #u12831_div {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:109px;
  3457. height:25px;
  3458. background:inherit;
  3459. background-color:rgba(255, 255, 255, 1);
  3460. border-radius:0px;
  3461. filter:drop-shadow(none);
  3462. transition:none;
  3463. font-family:"Microsoft YaHei", sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:10px;
  3467. }
  3468. #u12831 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:2037px;
  3472. top:121px;
  3473. width:109px;
  3474. height:25px;
  3475. display:flex;
  3476. transition:none;
  3477. transform-origin:50% 50%;
  3478. font-family:"Microsoft YaHei", sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:10px;
  3482. }
  3483. #u12831 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 2px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u12831_div.hint {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:109px;
  3496. height:25px;
  3497. background:inherit;
  3498. background-color:rgba(255, 255, 255, 1);
  3499. border-radius:0px;
  3500. filter:drop-shadow(none);
  3501. transition:none;
  3502. font-family:"Microsoft YaHei", sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:10px;
  3506. }
  3507. #u12831.hint {
  3508. }
  3509. #u12831_div.disabled {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:109px;
  3515. height:25px;
  3516. background:inherit;
  3517. background-color:rgba(240, 240, 240, 1);
  3518. border-radius:0px;
  3519. filter:drop-shadow(none);
  3520. transition:none;
  3521. font-family:"Microsoft YaHei", sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:10px;
  3525. }
  3526. #u12831.disabled {
  3527. }
  3528. #u12831_div.hint.disabled {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:109px;
  3534. height:25px;
  3535. background:inherit;
  3536. background-color:rgba(240, 240, 240, 1);
  3537. border-radius:0px;
  3538. filter:drop-shadow(none);
  3539. transition:none;
  3540. font-family:"Microsoft YaHei", sans-serif;
  3541. font-weight:400;
  3542. font-style:normal;
  3543. font-size:10px;
  3544. }
  3545. #u12831.hint.disabled {
  3546. }
  3547. #u12832 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:1600px;
  3553. height:1250px;
  3554. }
  3555. #u12833_div {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:1480px;
  3561. height:1200px;
  3562. background:inherit;
  3563. background-color:rgba(242, 242, 242, 1);
  3564. border-radius:0px;
  3565. filter:drop-shadow(none);
  3566. transition:none;
  3567. }
  3568. #u12833 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:120px;
  3572. top:50px;
  3573. width:1480px;
  3574. height:1200px;
  3575. display:flex;
  3576. transition:none;
  3577. transform-origin:50% 50%;
  3578. }
  3579. #u12833 .text {
  3580. position:absolute;
  3581. align-self:center;
  3582. padding:2px 2px 2px 2px;
  3583. box-sizing:border-box;
  3584. width:100%;
  3585. }
  3586. #u12833_text {
  3587. border-width:0px;
  3588. word-wrap:break-word;
  3589. text-transform:none;
  3590. visibility:hidden;
  3591. }
  3592. #u12834_div {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:129px;
  3598. height:22px;
  3599. background:inherit;
  3600. background-color:rgba(255, 255, 255, 0);
  3601. border-radius:0px;
  3602. filter:drop-shadow(none);
  3603. transition:none;
  3604. font-size:16px;
  3605. color:#FFFFFF;
  3606. }
  3607. #u12834 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:49px;
  3611. top:14px;
  3612. width:129px;
  3613. height:22px;
  3614. display:flex;
  3615. transition:none;
  3616. transform-origin:50% 50%;
  3617. font-size:16px;
  3618. color:#FFFFFF;
  3619. }
  3620. #u12834 .text {
  3621. position:absolute;
  3622. align-self:flex-start;
  3623. padding:0px 0px 0px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u12834_text {
  3628. border-width:0px;
  3629. white-space:nowrap;
  3630. text-transform:none;
  3631. }
  3632. #u12835_div {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:1600px;
  3638. height:50px;
  3639. background:inherit;
  3640. background-color:rgba(30, 42, 68, 1);
  3641. border-radius:0px;
  3642. filter:drop-shadow(none);
  3643. transition:none;
  3644. color:#AFB3B6;
  3645. }
  3646. #u12835 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:1600px;
  3652. height:50px;
  3653. display:flex;
  3654. transition:none;
  3655. transform-origin:50% 50%;
  3656. color:#AFB3B6;
  3657. }
  3658. #u12835 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u12835_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u12836 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:0px;
  3677. height:0px;
  3678. }
  3679. #u12837 {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:19px;
  3683. top:10px;
  3684. width:31px;
  3685. height:31px;
  3686. display:flex;
  3687. transition:none;
  3688. }
  3689. #u12837 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:2px 2px 2px 2px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u12837_img {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:31px;
  3702. height:31px;
  3703. }
  3704. #u12837_text {
  3705. border-width:0px;
  3706. word-wrap:break-word;
  3707. text-transform:none;
  3708. }
  3709. #u12838_div {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:161px;
  3715. height:22px;
  3716. background:inherit;
  3717. background-color:rgba(255, 255, 255, 0);
  3718. border-radius:0px;
  3719. filter:drop-shadow(none);
  3720. transition:none;
  3721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. font-size:16px;
  3725. color:#FFFFFF;
  3726. }
  3727. #u12838 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:62px;
  3731. top:14px;
  3732. width:161px;
  3733. height:22px;
  3734. display:flex;
  3735. transition:none;
  3736. transform-origin:50% 50%;
  3737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3738. font-weight:400;
  3739. font-style:normal;
  3740. font-size:16px;
  3741. color:#FFFFFF;
  3742. }
  3743. #u12838 .text {
  3744. position:absolute;
  3745. align-self:flex-start;
  3746. padding:0px 0px 0px 0px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u12838_text {
  3751. border-width:0px;
  3752. white-space:nowrap;
  3753. text-transform:none;
  3754. }
  3755. #u12839_div {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:120px;
  3761. height:1200px;
  3762. background:inherit;
  3763. background-color:rgba(30, 42, 68, 1);
  3764. border-radius:0px;
  3765. filter:drop-shadow(none);
  3766. transition:none;
  3767. color:#AFB3B6;
  3768. }
  3769. #u12839 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:47px;
  3774. width:120px;
  3775. height:1200px;
  3776. display:flex;
  3777. transition:none;
  3778. transform-origin:50% 50%;
  3779. color:#AFB3B6;
  3780. }
  3781. #u12839 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 2px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u12839_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. visibility:hidden;
  3793. }
  3794. #u12840 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:0px;
  3800. height:0px;
  3801. }
  3802. #u12841_div {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:33px;
  3808. height:22px;
  3809. background:inherit;
  3810. background-color:rgba(255, 255, 255, 0);
  3811. border-radius:0px;
  3812. filter:drop-shadow(none);
  3813. transition:none;
  3814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:16px;
  3818. color:#FFFFFF;
  3819. }
  3820. #u12841 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:39px;
  3824. top:171px;
  3825. width:33px;
  3826. height:22px;
  3827. display:flex;
  3828. transition:none;
  3829. transform-origin:50% 50%;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:16px;
  3834. color:#FFFFFF;
  3835. }
  3836. #u12841 .text {
  3837. position:absolute;
  3838. align-self:flex-start;
  3839. padding:0px 0px 0px 0px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u12841_text {
  3844. border-width:0px;
  3845. white-space:nowrap;
  3846. text-transform:none;
  3847. }
  3848. #u12842 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:20px;
  3852. top:175px;
  3853. width:14px;
  3854. height:14px;
  3855. display:flex;
  3856. transition:none;
  3857. }
  3858. #u12842 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:2px 2px 2px 2px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u12842_img {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:14px;
  3871. height:14px;
  3872. }
  3873. #u12842_text {
  3874. border-width:0px;
  3875. word-wrap:break-word;
  3876. text-transform:none;
  3877. visibility:hidden;
  3878. }
  3879. #u12843 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:0px;
  3885. height:0px;
  3886. }
  3887. #u12844_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:33px;
  3893. height:22px;
  3894. background:inherit;
  3895. background-color:rgba(255, 255, 255, 0);
  3896. border-radius:0px;
  3897. filter:drop-shadow(none);
  3898. transition:none;
  3899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3900. font-weight:400;
  3901. font-style:normal;
  3902. font-size:16px;
  3903. color:#FFFFFF;
  3904. }
  3905. #u12844 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:39px;
  3909. top:381px;
  3910. width:33px;
  3911. height:22px;
  3912. display:flex;
  3913. transition:none;
  3914. transform-origin:50% 50%;
  3915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:16px;
  3919. color:#FFFFFF;
  3920. }
  3921. #u12844 .text {
  3922. position:absolute;
  3923. align-self:flex-start;
  3924. padding:0px 0px 0px 0px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u12844_text {
  3929. border-width:0px;
  3930. white-space:nowrap;
  3931. text-transform:none;
  3932. }
  3933. #u12845 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:20px;
  3937. top:385px;
  3938. width:14px;
  3939. height:14px;
  3940. display:flex;
  3941. transition:none;
  3942. }
  3943. #u12845 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:2px 2px 2px 2px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u12845_img {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:14px;
  3956. height:14px;
  3957. }
  3958. #u12845_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u12846 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:0px;
  3970. height:0px;
  3971. }
  3972. #u12847_div {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:49px;
  3978. height:22px;
  3979. background:inherit;
  3980. background-color:rgba(255, 255, 255, 0);
  3981. border-radius:0px;
  3982. filter:drop-shadow(none);
  3983. transition:none;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:16px;
  3988. color:#FFFFFF;
  3989. }
  3990. #u12847 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:39px;
  3994. top:133px;
  3995. width:49px;
  3996. height:22px;
  3997. display:flex;
  3998. transition:none;
  3999. transform-origin:50% 50%;
  4000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:16px;
  4004. color:#FFFFFF;
  4005. }
  4006. #u12847 .text {
  4007. position:absolute;
  4008. align-self:flex-start;
  4009. padding:0px 0px 0px 0px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u12847_text {
  4014. border-width:0px;
  4015. white-space:nowrap;
  4016. text-transform:none;
  4017. }
  4018. #u12848 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:20px;
  4022. top:137px;
  4023. width:14px;
  4024. height:14px;
  4025. display:flex;
  4026. transition:none;
  4027. }
  4028. #u12848 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 2px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u12848_img {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:14px;
  4041. height:14px;
  4042. }
  4043. #u12848_text {
  4044. border-width:0px;
  4045. word-wrap:break-word;
  4046. text-transform:none;
  4047. visibility:hidden;
  4048. }
  4049. #u12849 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:0px;
  4055. height:0px;
  4056. }
  4057. #u12850_div {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:33px;
  4063. height:22px;
  4064. background:inherit;
  4065. background-color:rgba(255, 255, 255, 0);
  4066. border-radius:0px;
  4067. filter:drop-shadow(none);
  4068. transition:none;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:16px;
  4073. color:#FFFFFF;
  4074. }
  4075. #u12850 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:39px;
  4079. top:423px;
  4080. width:33px;
  4081. height:22px;
  4082. display:flex;
  4083. transition:none;
  4084. transform-origin:50% 50%;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:16px;
  4089. color:#FFFFFF;
  4090. }
  4091. #u12850 .text {
  4092. position:absolute;
  4093. align-self:flex-start;
  4094. padding:0px 0px 0px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u12850_text {
  4099. border-width:0px;
  4100. white-space:nowrap;
  4101. text-transform:none;
  4102. }
  4103. #u12851 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:20px;
  4107. top:427px;
  4108. width:14px;
  4109. height:14px;
  4110. display:flex;
  4111. transition:none;
  4112. }
  4113. #u12851 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 2px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u12851_img {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:14px;
  4126. height:14px;
  4127. }
  4128. #u12851_text {
  4129. border-width:0px;
  4130. word-wrap:break-word;
  4131. text-transform:none;
  4132. visibility:hidden;
  4133. }
  4134. #u12852 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:0px;
  4140. height:0px;
  4141. }
  4142. #u12853_div {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:33px;
  4148. height:22px;
  4149. background:inherit;
  4150. background-color:rgba(255, 255, 255, 0);
  4151. border-radius:0px;
  4152. filter:drop-shadow(none);
  4153. transition:none;
  4154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:16px;
  4158. color:#FFFFFF;
  4159. }
  4160. #u12853 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:39px;
  4164. top:297px;
  4165. width:33px;
  4166. height:22px;
  4167. display:flex;
  4168. transition:none;
  4169. transform-origin:50% 50%;
  4170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4171. font-weight:400;
  4172. font-style:normal;
  4173. font-size:16px;
  4174. color:#FFFFFF;
  4175. }
  4176. #u12853 .text {
  4177. position:absolute;
  4178. align-self:flex-start;
  4179. padding:0px 0px 0px 0px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u12853_text {
  4184. border-width:0px;
  4185. white-space:nowrap;
  4186. text-transform:none;
  4187. }
  4188. #u12854 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:20px;
  4192. top:301px;
  4193. width:14px;
  4194. height:14px;
  4195. display:flex;
  4196. transition:none;
  4197. }
  4198. #u12854 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 2px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u12854_img {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:14px;
  4211. height:14px;
  4212. }
  4213. #u12854_text {
  4214. border-width:0px;
  4215. word-wrap:break-word;
  4216. text-transform:none;
  4217. visibility:hidden;
  4218. }
  4219. #u12855 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:0px;
  4225. height:0px;
  4226. }
  4227. #u12856_div {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:33px;
  4233. height:22px;
  4234. background:inherit;
  4235. background-color:rgba(255, 255, 255, 0);
  4236. border-radius:0px;
  4237. filter:drop-shadow(none);
  4238. transition:none;
  4239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:16px;
  4243. color:#FFFFFF;
  4244. }
  4245. #u12856 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:39px;
  4249. top:213px;
  4250. width:33px;
  4251. height:22px;
  4252. display:flex;
  4253. transition:none;
  4254. transform-origin:50% 50%;
  4255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:16px;
  4259. color:#FFFFFF;
  4260. }
  4261. #u12856 .text {
  4262. position:absolute;
  4263. align-self:flex-start;
  4264. padding:0px 0px 0px 0px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u12856_text {
  4269. border-width:0px;
  4270. white-space:nowrap;
  4271. text-transform:none;
  4272. }
  4273. #u12857 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:20px;
  4277. top:217px;
  4278. width:14px;
  4279. height:14px;
  4280. display:flex;
  4281. transition:none;
  4282. }
  4283. #u12857 .text {
  4284. position:absolute;
  4285. align-self:center;
  4286. padding:2px 2px 2px 2px;
  4287. box-sizing:border-box;
  4288. width:100%;
  4289. }
  4290. #u12857_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:14px;
  4296. height:14px;
  4297. }
  4298. #u12857_text {
  4299. border-width:0px;
  4300. word-wrap:break-word;
  4301. text-transform:none;
  4302. visibility:hidden;
  4303. }
  4304. #u12858 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:0px;
  4310. height:0px;
  4311. }
  4312. #u12859_div {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:0px;
  4316. top:0px;
  4317. width:33px;
  4318. height:22px;
  4319. background:inherit;
  4320. background-color:rgba(255, 255, 255, 0);
  4321. border-radius:0px;
  4322. filter:drop-shadow(none);
  4323. transition:none;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:16px;
  4328. color:#FFFFFF;
  4329. }
  4330. #u12859 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:39px;
  4334. top:339px;
  4335. width:33px;
  4336. height:22px;
  4337. display:flex;
  4338. transition:none;
  4339. transform-origin:50% 50%;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:16px;
  4344. color:#FFFFFF;
  4345. }
  4346. #u12859 .text {
  4347. position:absolute;
  4348. align-self:flex-start;
  4349. padding:0px 0px 0px 0px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u12859_text {
  4354. border-width:0px;
  4355. white-space:nowrap;
  4356. text-transform:none;
  4357. }
  4358. #u12860 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:20px;
  4362. top:343px;
  4363. width:14px;
  4364. height:14px;
  4365. display:flex;
  4366. transition:none;
  4367. }
  4368. #u12860 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 2px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u12860_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:14px;
  4381. height:14px;
  4382. }
  4383. #u12860_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. visibility:hidden;
  4388. }
  4389. #u12861 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:0px;
  4395. height:0px;
  4396. }
  4397. #u12862_div {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:0px;
  4401. top:0px;
  4402. width:33px;
  4403. height:22px;
  4404. background:inherit;
  4405. background-color:rgba(255, 255, 255, 0);
  4406. border-radius:0px;
  4407. filter:drop-shadow(none);
  4408. transition:none;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:16px;
  4413. color:#FFFFFF;
  4414. }
  4415. #u12862 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:39px;
  4419. top:465px;
  4420. width:33px;
  4421. height:22px;
  4422. display:flex;
  4423. transition:none;
  4424. transform-origin:50% 50%;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:16px;
  4429. color:#FFFFFF;
  4430. }
  4431. #u12862 .text {
  4432. position:absolute;
  4433. align-self:flex-start;
  4434. padding:0px 0px 0px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u12862_text {
  4439. border-width:0px;
  4440. white-space:nowrap;
  4441. text-transform:none;
  4442. }
  4443. #u12863 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:20px;
  4447. top:469px;
  4448. width:14px;
  4449. height:14px;
  4450. display:flex;
  4451. transition:none;
  4452. }
  4453. #u12863 .text {
  4454. position:absolute;
  4455. align-self:center;
  4456. padding:2px 2px 2px 2px;
  4457. box-sizing:border-box;
  4458. width:100%;
  4459. }
  4460. #u12863_img {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:14px;
  4466. height:14px;
  4467. }
  4468. #u12863_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u12864 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:0px;
  4480. height:0px;
  4481. }
  4482. #u12865_div {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:29px;
  4488. height:20px;
  4489. background:inherit;
  4490. background-color:rgba(255, 255, 255, 0);
  4491. border-radius:25px;
  4492. filter:drop-shadow(none);
  4493. transition:none;
  4494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. color:#FFFFFF;
  4498. }
  4499. #u12865 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:52px;
  4503. top:1145px;
  4504. width:29px;
  4505. height:20px;
  4506. display:flex;
  4507. transition:none;
  4508. transform-origin:50% 50%;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. color:#FFFFFF;
  4513. }
  4514. #u12865 .text {
  4515. position:absolute;
  4516. align-self:center;
  4517. padding:0px 0px 0px 0px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u12865_text {
  4522. border-width:0px;
  4523. white-space:nowrap;
  4524. text-transform:none;
  4525. }
  4526. #u12866 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:20px;
  4530. top:1144px;
  4531. width:22px;
  4532. height:22px;
  4533. display:flex;
  4534. transition:none;
  4535. }
  4536. #u12866 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 2px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u12866_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:22px;
  4549. height:22px;
  4550. }
  4551. #u12866_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. visibility:hidden;
  4556. }
  4557. #u12867 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:0px;
  4563. height:0px;
  4564. }
  4565. #u12868_div {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:29px;
  4571. height:20px;
  4572. background:inherit;
  4573. background-color:rgba(255, 255, 255, 0);
  4574. border-radius:25px;
  4575. filter:drop-shadow(none);
  4576. transition:none;
  4577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. color:#FFFFFF;
  4581. }
  4582. #u12868 {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:52px;
  4586. top:1187px;
  4587. width:29px;
  4588. height:20px;
  4589. display:flex;
  4590. transition:none;
  4591. transform-origin:50% 50%;
  4592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. color:#FFFFFF;
  4596. }
  4597. #u12868 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:0px 0px 0px 0px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u12868_text {
  4605. border-width:0px;
  4606. white-space:nowrap;
  4607. text-transform:none;
  4608. }
  4609. #u12869 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:20px;
  4613. top:1186px;
  4614. width:22px;
  4615. height:22px;
  4616. display:flex;
  4617. transition:none;
  4618. }
  4619. #u12869 .text {
  4620. position:absolute;
  4621. align-self:center;
  4622. padding:2px 2px 2px 2px;
  4623. box-sizing:border-box;
  4624. width:100%;
  4625. }
  4626. #u12869_img {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:22px;
  4632. height:22px;
  4633. }
  4634. #u12869_text {
  4635. border-width:0px;
  4636. word-wrap:break-word;
  4637. text-transform:none;
  4638. visibility:hidden;
  4639. }
  4640. #u12870 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:0px;
  4646. height:0px;
  4647. }
  4648. #u12871_div {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:33px;
  4654. height:22px;
  4655. background:inherit;
  4656. background-color:rgba(255, 255, 255, 0);
  4657. border-radius:0px;
  4658. filter:drop-shadow(none);
  4659. transition:none;
  4660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:16px;
  4664. color:#FFFFFF;
  4665. }
  4666. #u12871 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:39px;
  4670. top:255px;
  4671. width:33px;
  4672. height:22px;
  4673. display:flex;
  4674. transition:none;
  4675. transform-origin:50% 50%;
  4676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:16px;
  4680. color:#FFFFFF;
  4681. }
  4682. #u12871 .text {
  4683. position:absolute;
  4684. align-self:flex-start;
  4685. padding:0px 0px 0px 0px;
  4686. box-sizing:border-box;
  4687. width:100%;
  4688. }
  4689. #u12871_text {
  4690. border-width:0px;
  4691. white-space:nowrap;
  4692. text-transform:none;
  4693. }
  4694. #u12872 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:20px;
  4698. top:259px;
  4699. width:14px;
  4700. height:14px;
  4701. display:flex;
  4702. transition:none;
  4703. }
  4704. #u12872 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 2px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u12872_img {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:14px;
  4717. height:14px;
  4718. }
  4719. #u12872_text {
  4720. border-width:0px;
  4721. word-wrap:break-word;
  4722. text-transform:none;
  4723. visibility:hidden;
  4724. }
  4725. #u12873 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:0px;
  4731. height:0px;
  4732. }
  4733. #u12874_input {
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:214px;
  4738. height:27px;
  4739. padding:2px 2px 2px 2px;
  4740. font-family:'ArialMT', 'Arial', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:14px;
  4744. letter-spacing:normal;
  4745. color:#FFFFFF;
  4746. vertical-align:none;
  4747. text-align:left;
  4748. text-transform:none;
  4749. background-color:transparent;
  4750. border-color:transparent;
  4751. }
  4752. #u12874_input.disabled {
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:214px;
  4757. height:27px;
  4758. padding:2px 2px 2px 2px;
  4759. font-family:'ArialMT', 'Arial', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:14px;
  4763. letter-spacing:normal;
  4764. color:#FFFFFF;
  4765. vertical-align:none;
  4766. text-align:left;
  4767. text-transform:none;
  4768. background-color:transparent;
  4769. border-color:transparent;
  4770. }
  4771. #u12874_div {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:214px;
  4777. height:27px;
  4778. background:inherit;
  4779. background-color:rgba(255, 255, 255, 0);
  4780. border-radius:0px;
  4781. filter:drop-shadow(none);
  4782. transition:none;
  4783. font-size:14px;
  4784. color:#FFFFFF;
  4785. }
  4786. #u12874 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:1221px;
  4790. top:11px;
  4791. width:214px;
  4792. height:27px;
  4793. display:flex;
  4794. transition:none;
  4795. transform-origin:50% 50%;
  4796. font-size:14px;
  4797. color:#FFFFFF;
  4798. }
  4799. #u12874 .text {
  4800. position:absolute;
  4801. align-self:flex-start;
  4802. padding:2px 2px 2px 2px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u12874_div.disabled {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:214px;
  4812. height:27px;
  4813. background:inherit;
  4814. background-color:rgba(240, 240, 240, 1);
  4815. border-radius:0px;
  4816. filter:drop-shadow(none);
  4817. transition:none;
  4818. font-size:14px;
  4819. color:#FFFFFF;
  4820. }
  4821. #u12874.disabled {
  4822. }
  4823. .u12874_input_option {
  4824. font-size:14px;
  4825. }
  4826. #u12875 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:1194px;
  4830. top:14px;
  4831. width:22px;
  4832. height:22px;
  4833. display:flex;
  4834. transition:none;
  4835. }
  4836. #u12875 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 2px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u12875_img {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:22px;
  4849. height:22px;
  4850. }
  4851. #u12875_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u12876_div {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:100px;
  4863. height:24px;
  4864. background:inherit;
  4865. background-color:rgba(242, 242, 242, 0.2);
  4866. border-radius:25px;
  4867. filter:drop-shadow(none);
  4868. transition:none;
  4869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. color:#FFFFFF;
  4873. text-align:center;
  4874. }
  4875. #u12876 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:1480px;
  4879. top:13px;
  4880. width:100px;
  4881. height:24px;
  4882. display:flex;
  4883. transition:none;
  4884. transform-origin:50% 50%;
  4885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. color:#FFFFFF;
  4889. text-align:center;
  4890. }
  4891. #u12876 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:0px 0px 0px 0px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u12876_text {
  4899. border-width:0px;
  4900. word-wrap:break-word;
  4901. text-transform:none;
  4902. }
  4903. #u12877 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:1452px;
  4907. top:19px;
  4908. width:1px;
  4909. height:11px;
  4910. display:flex;
  4911. transition:none;
  4912. }
  4913. #u12877 .text {
  4914. position:absolute;
  4915. align-self:center;
  4916. padding:2px 2px 2px 2px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u12877_img {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:2px;
  4926. height:12px;
  4927. }
  4928. #u12877_text {
  4929. border-width:0px;
  4930. word-wrap:break-word;
  4931. text-transform:none;
  4932. visibility:hidden;
  4933. }
  4934. #u12878 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:0px;
  4940. height:0px;
  4941. }
  4942. #u12879_div {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:29px;
  4948. height:20px;
  4949. background:inherit;
  4950. background-color:rgba(255, 255, 255, 0);
  4951. border-radius:25px;
  4952. filter:drop-shadow(none);
  4953. transition:none;
  4954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. color:#FFFFFF;
  4958. }
  4959. #u12879 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:52px;
  4963. top:1082px;
  4964. width:29px;
  4965. height:20px;
  4966. display:flex;
  4967. transition:none;
  4968. transform-origin:50% 50%;
  4969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4970. font-weight:400;
  4971. font-style:normal;
  4972. color:#FFFFFF;
  4973. }
  4974. #u12879 .text {
  4975. position:absolute;
  4976. align-self:center;
  4977. padding:0px 0px 0px 0px;
  4978. box-sizing:border-box;
  4979. width:100%;
  4980. }
  4981. #u12879_text {
  4982. border-width:0px;
  4983. white-space:nowrap;
  4984. text-transform:none;
  4985. }
  4986. #u12880 {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:20px;
  4990. top:1081px;
  4991. width:22px;
  4992. height:22px;
  4993. display:flex;
  4994. transition:none;
  4995. }
  4996. #u12880 .text {
  4997. position:absolute;
  4998. align-self:center;
  4999. padding:2px 2px 2px 2px;
  5000. box-sizing:border-box;
  5001. width:100%;
  5002. }
  5003. #u12880_img {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:22px;
  5009. height:22px;
  5010. }
  5011. #u12880_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. visibility:hidden;
  5016. }
  5017. #u12881 {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:20px;
  5021. top:1123px;
  5022. width:68px;
  5023. height:1px;
  5024. display:flex;
  5025. transition:none;
  5026. }
  5027. #u12881 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 2px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u12881_img {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:69px;
  5040. height:2px;
  5041. }
  5042. #u12881_text {
  5043. border-width:0px;
  5044. word-wrap:break-word;
  5045. text-transform:none;
  5046. visibility:hidden;
  5047. }
  5048. #u12882 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:20px;
  5052. top:1061px;
  5053. width:68px;
  5054. height:1px;
  5055. display:flex;
  5056. transition:none;
  5057. }
  5058. #u12882 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:2px 2px 2px 2px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u12882_img {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:69px;
  5071. height:2px;
  5072. }
  5073. #u12882_text {
  5074. border-width:0px;
  5075. word-wrap:break-word;
  5076. text-transform:none;
  5077. visibility:hidden;
  5078. }
  5079. #u12883 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:20px;
  5083. top:112px;
  5084. width:56px;
  5085. height:1px;
  5086. display:flex;
  5087. transition:none;
  5088. }
  5089. #u12883 .text {
  5090. position:absolute;
  5091. align-self:center;
  5092. padding:2px 2px 2px 2px;
  5093. box-sizing:border-box;
  5094. width:100%;
  5095. }
  5096. #u12883_img {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:57px;
  5102. height:2px;
  5103. }
  5104. #u12883_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u12884 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:0px;
  5116. height:0px;
  5117. }
  5118. #u12885_div {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:33px;
  5124. height:22px;
  5125. background:inherit;
  5126. background-color:rgba(255, 255, 255, 0);
  5127. border-radius:0px;
  5128. filter:drop-shadow(none);
  5129. transition:none;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:16px;
  5134. color:#FFFFFF;
  5135. }
  5136. #u12885 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:43px;
  5140. top:71px;
  5141. width:33px;
  5142. height:22px;
  5143. display:flex;
  5144. transition:none;
  5145. transform-origin:50% 50%;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:16px;
  5150. color:#FFFFFF;
  5151. }
  5152. #u12885 .text {
  5153. position:absolute;
  5154. align-self:flex-start;
  5155. padding:0px 0px 0px 0px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u12885_text {
  5160. border-width:0px;
  5161. white-space:nowrap;
  5162. text-transform:none;
  5163. }
  5164. #u12886 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:20px;
  5168. top:75px;
  5169. width:18px;
  5170. height:14px;
  5171. display:flex;
  5172. transition:none;
  5173. }
  5174. #u12886 .text {
  5175. position:absolute;
  5176. align-self:center;
  5177. padding:2px 2px 2px 2px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u12886_img {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:18px;
  5187. height:14px;
  5188. }
  5189. #u12886_text {
  5190. border-width:0px;
  5191. word-wrap:break-word;
  5192. text-transform:none;
  5193. visibility:hidden;
  5194. }
  5195. #u12887_div {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:1259px;
  5201. height:1180px;
  5202. background:inherit;
  5203. background-color:rgba(255, 255, 255, 1);
  5204. border-radius:0px;
  5205. filter:drop-shadow(none);
  5206. transition:none;
  5207. }
  5208. #u12887 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:330px;
  5212. top:50px;
  5213. width:1259px;
  5214. height:1180px;
  5215. display:flex;
  5216. transition:none;
  5217. transform-origin:50% 50%;
  5218. }
  5219. #u12887 .text {
  5220. position:absolute;
  5221. align-self:center;
  5222. padding:2px 2px 2px 2px;
  5223. box-sizing:border-box;
  5224. width:100%;
  5225. }
  5226. #u12887_text {
  5227. border-width:0px;
  5228. word-wrap:break-word;
  5229. text-transform:none;
  5230. visibility:hidden;
  5231. }
  5232. #u12888 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:563px;
  5236. top:332px;
  5237. width:1008px;
  5238. height:318px;
  5239. }
  5240. #u12889 {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:91px;
  5246. height:34px;
  5247. display:flex;
  5248. transition:none;
  5249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:12px;
  5253. color:#FFFFFF;
  5254. }
  5255. #u12889 .text {
  5256. position:absolute;
  5257. align-self:center;
  5258. padding:2px 2px 2px 0px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u12889_img {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:91px;
  5268. height:34px;
  5269. }
  5270. #u12889_text {
  5271. border-width:0px;
  5272. word-wrap:break-word;
  5273. text-transform:none;
  5274. }
  5275. #u12890 {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:91px;
  5279. top:0px;
  5280. width:91px;
  5281. height:34px;
  5282. display:flex;
  5283. transition:none;
  5284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5285. font-weight:400;
  5286. font-style:normal;
  5287. font-size:12px;
  5288. color:#FFFFFF;
  5289. }
  5290. #u12890 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:2px 2px 2px 0px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u12890_img {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:91px;
  5303. height:34px;
  5304. }
  5305. #u12890_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. }
  5310. #u12891 {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:182px;
  5314. top:0px;
  5315. width:76px;
  5316. height:34px;
  5317. display:flex;
  5318. transition:none;
  5319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:12px;
  5323. color:#FFFFFF;
  5324. }
  5325. #u12891 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:2px 2px 2px 0px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u12891_img {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:76px;
  5338. height:34px;
  5339. }
  5340. #u12891_text {
  5341. border-width:0px;
  5342. word-wrap:break-word;
  5343. text-transform:none;
  5344. }
  5345. #u12892 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:258px;
  5349. top:0px;
  5350. width:92px;
  5351. height:34px;
  5352. display:flex;
  5353. transition:none;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:12px;
  5358. color:#FFFFFF;
  5359. }
  5360. #u12892 .text {
  5361. position:absolute;
  5362. align-self:center;
  5363. padding:2px 2px 2px 0px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u12892_img {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:92px;
  5373. height:34px;
  5374. }
  5375. #u12892_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. }
  5380. #u12893 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:350px;
  5384. top:0px;
  5385. width:88px;
  5386. height:34px;
  5387. display:flex;
  5388. transition:none;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:12px;
  5393. color:#FFFFFF;
  5394. }
  5395. #u12893 .text {
  5396. position:absolute;
  5397. align-self:center;
  5398. padding:2px 2px 2px 0px;
  5399. box-sizing:border-box;
  5400. width:100%;
  5401. }
  5402. #u12893_img {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:88px;
  5408. height:34px;
  5409. }
  5410. #u12893_text {
  5411. border-width:0px;
  5412. word-wrap:break-word;
  5413. text-transform:none;
  5414. }
  5415. #u12894 {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:438px;
  5419. top:0px;
  5420. width:88px;
  5421. height:34px;
  5422. display:flex;
  5423. transition:none;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:12px;
  5428. color:#FFFFFF;
  5429. }
  5430. #u12894 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 0px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u12894_img {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:88px;
  5443. height:34px;
  5444. }
  5445. #u12894_text {
  5446. border-width:0px;
  5447. word-wrap:break-word;
  5448. text-transform:none;
  5449. }
  5450. #u12895 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:526px;
  5454. top:0px;
  5455. width:92px;
  5456. height:34px;
  5457. display:flex;
  5458. transition:none;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:12px;
  5463. color:#FFFFFF;
  5464. }
  5465. #u12895 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 0px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u12895_img {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:92px;
  5478. height:34px;
  5479. }
  5480. #u12895_text {
  5481. border-width:0px;
  5482. word-wrap:break-word;
  5483. text-transform:none;
  5484. }
  5485. #u12896 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:618px;
  5489. top:0px;
  5490. width:88px;
  5491. height:34px;
  5492. display:flex;
  5493. transition:none;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:12px;
  5498. color:#FFFFFF;
  5499. }
  5500. #u12896 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 0px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u12896_img {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:88px;
  5513. height:34px;
  5514. }
  5515. #u12896_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. }
  5520. #u12897 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:706px;
  5524. top:0px;
  5525. width:88px;
  5526. height:34px;
  5527. display:flex;
  5528. transition:none;
  5529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5530. font-weight:400;
  5531. font-style:normal;
  5532. font-size:12px;
  5533. color:#FFFFFF;
  5534. }
  5535. #u12897 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:2px 2px 2px 0px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u12897_img {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:88px;
  5548. height:34px;
  5549. }
  5550. #u12897_text {
  5551. border-width:0px;
  5552. word-wrap:break-word;
  5553. text-transform:none;
  5554. }
  5555. #u12898 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:794px;
  5559. top:0px;
  5560. width:88px;
  5561. height:34px;
  5562. display:flex;
  5563. transition:none;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:12px;
  5568. color:#FFFFFF;
  5569. }
  5570. #u12898 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 2px 2px 0px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u12898_img {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:88px;
  5583. height:34px;
  5584. }
  5585. #u12898_text {
  5586. border-width:0px;
  5587. word-wrap:break-word;
  5588. text-transform:none;
  5589. }
  5590. #u12899 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:882px;
  5594. top:0px;
  5595. width:126px;
  5596. height:34px;
  5597. display:flex;
  5598. transition:none;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:12px;
  5603. color:#FFFFFF;
  5604. }
  5605. #u12899 .text {
  5606. position:absolute;
  5607. align-self:center;
  5608. padding:2px 2px 2px 0px;
  5609. box-sizing:border-box;
  5610. width:100%;
  5611. }
  5612. #u12899_img {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:126px;
  5618. height:34px;
  5619. }
  5620. #u12899_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. }
  5625. #u12900 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:34px;
  5630. width:91px;
  5631. height:44px;
  5632. display:flex;
  5633. transition:none;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:12px;
  5638. color:#333333;
  5639. line-height:40px;
  5640. }
  5641. #u12900 .text {
  5642. position:absolute;
  5643. align-self:center;
  5644. padding:2px 2px 2px 0px;
  5645. box-sizing:border-box;
  5646. width:100%;
  5647. }
  5648. #u12900_img {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:91px;
  5654. height:44px;
  5655. }
  5656. #u12900_text {
  5657. border-width:0px;
  5658. word-wrap:break-word;
  5659. text-transform:none;
  5660. visibility:hidden;
  5661. }
  5662. #u12901 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:91px;
  5666. top:34px;
  5667. width:91px;
  5668. height:44px;
  5669. display:flex;
  5670. transition:none;
  5671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:12px;
  5675. color:#333333;
  5676. line-height:40px;
  5677. }
  5678. #u12901 .text {
  5679. position:absolute;
  5680. align-self:center;
  5681. padding:2px 2px 2px 0px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u12901_img {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:91px;
  5691. height:44px;
  5692. }
  5693. #u12901_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u12902 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:182px;
  5703. top:34px;
  5704. width:76px;
  5705. height:44px;
  5706. display:flex;
  5707. transition:none;
  5708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5709. font-weight:400;
  5710. font-style:normal;
  5711. font-size:12px;
  5712. color:#333333;
  5713. line-height:40px;
  5714. }
  5715. #u12902 .text {
  5716. position:absolute;
  5717. align-self:center;
  5718. padding:2px 2px 2px 0px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u12902_img {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:76px;
  5728. height:44px;
  5729. }
  5730. #u12902_text {
  5731. border-width:0px;
  5732. word-wrap:break-word;
  5733. text-transform:none;
  5734. visibility:hidden;
  5735. }
  5736. #u12903 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:258px;
  5740. top:34px;
  5741. width:92px;
  5742. height:44px;
  5743. display:flex;
  5744. transition:none;
  5745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:12px;
  5749. color:#333333;
  5750. line-height:40px;
  5751. }
  5752. #u12903 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:2px 2px 2px 0px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u12903_img {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:92px;
  5765. height:44px;
  5766. }
  5767. #u12903_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u12904 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:350px;
  5777. top:34px;
  5778. width:88px;
  5779. height:44px;
  5780. display:flex;
  5781. transition:none;
  5782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:12px;
  5786. color:#333333;
  5787. line-height:40px;
  5788. }
  5789. #u12904 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:2px 2px 2px 0px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u12904_img {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:88px;
  5802. height:44px;
  5803. }
  5804. #u12904_text {
  5805. border-width:0px;
  5806. word-wrap:break-word;
  5807. text-transform:none;
  5808. }
  5809. #u12905 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:438px;
  5813. top:34px;
  5814. width:88px;
  5815. height:44px;
  5816. display:flex;
  5817. transition:none;
  5818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5819. font-weight:400;
  5820. font-style:normal;
  5821. font-size:12px;
  5822. color:#333333;
  5823. line-height:40px;
  5824. }
  5825. #u12905 .text {
  5826. position:absolute;
  5827. align-self:center;
  5828. padding:2px 2px 2px 0px;
  5829. box-sizing:border-box;
  5830. width:100%;
  5831. }
  5832. #u12905_img {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:88px;
  5838. height:44px;
  5839. }
  5840. #u12905_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u12906 {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:526px;
  5850. top:34px;
  5851. width:92px;
  5852. height:44px;
  5853. display:flex;
  5854. transition:none;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:12px;
  5859. color:#333333;
  5860. line-height:40px;
  5861. }
  5862. #u12906 .text {
  5863. position:absolute;
  5864. align-self:center;
  5865. padding:2px 2px 2px 0px;
  5866. box-sizing:border-box;
  5867. width:100%;
  5868. }
  5869. #u12906_img {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:92px;
  5875. height:44px;
  5876. }
  5877. #u12906_text {
  5878. border-width:0px;
  5879. word-wrap:break-word;
  5880. text-transform:none;
  5881. visibility:hidden;
  5882. }
  5883. #u12907 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:618px;
  5887. top:34px;
  5888. width:88px;
  5889. height:44px;
  5890. display:flex;
  5891. transition:none;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:12px;
  5896. color:#333333;
  5897. line-height:40px;
  5898. }
  5899. #u12907 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 0px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u12907_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:88px;
  5912. height:44px;
  5913. }
  5914. #u12907_text {
  5915. border-width:0px;
  5916. word-wrap:break-word;
  5917. text-transform:none;
  5918. visibility:hidden;
  5919. }
  5920. #u12908 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:706px;
  5924. top:34px;
  5925. width:88px;
  5926. height:44px;
  5927. display:flex;
  5928. transition:none;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:12px;
  5933. color:#333333;
  5934. line-height:40px;
  5935. }
  5936. #u12908 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:2px 2px 2px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u12908_img {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:88px;
  5949. height:44px;
  5950. }
  5951. #u12908_text {
  5952. border-width:0px;
  5953. word-wrap:break-word;
  5954. text-transform:none;
  5955. visibility:hidden;
  5956. }
  5957. #u12909 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:794px;
  5961. top:34px;
  5962. width:88px;
  5963. height:44px;
  5964. display:flex;
  5965. transition:none;
  5966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. font-size:12px;
  5970. color:#333333;
  5971. line-height:40px;
  5972. }
  5973. #u12909 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 0px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u12909_img {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:88px;
  5986. height:44px;
  5987. }
  5988. #u12909_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. visibility:hidden;
  5993. }
  5994. #u12910 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:882px;
  5998. top:34px;
  5999. width:126px;
  6000. height:44px;
  6001. display:flex;
  6002. transition:none;
  6003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6004. font-weight:400;
  6005. font-style:normal;
  6006. font-size:12px;
  6007. color:#298FFF;
  6008. line-height:35px;
  6009. }
  6010. #u12910 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 0px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u12910_img {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:126px;
  6023. height:44px;
  6024. }
  6025. #u12910_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. }
  6030. #u12911 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:78px;
  6035. width:91px;
  6036. height:44px;
  6037. display:flex;
  6038. transition:none;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. color:#333333;
  6044. line-height:40px;
  6045. }
  6046. #u12911 .text {
  6047. position:absolute;
  6048. align-self:center;
  6049. padding:2px 2px 2px 0px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u12911_img {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:0px;
  6057. top:0px;
  6058. width:91px;
  6059. height:44px;
  6060. }
  6061. #u12911_text {
  6062. border-width:0px;
  6063. word-wrap:break-word;
  6064. text-transform:none;
  6065. visibility:hidden;
  6066. }
  6067. #u12912 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:91px;
  6071. top:78px;
  6072. width:91px;
  6073. height:44px;
  6074. display:flex;
  6075. transition:none;
  6076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6077. font-weight:400;
  6078. font-style:normal;
  6079. font-size:12px;
  6080. color:#333333;
  6081. line-height:40px;
  6082. }
  6083. #u12912 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:2px 2px 2px 0px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u12912_img {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:91px;
  6096. height:44px;
  6097. }
  6098. #u12912_text {
  6099. border-width:0px;
  6100. word-wrap:break-word;
  6101. text-transform:none;
  6102. visibility:hidden;
  6103. }
  6104. #u12913 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:182px;
  6108. top:78px;
  6109. width:76px;
  6110. height:44px;
  6111. display:flex;
  6112. transition:none;
  6113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. font-size:12px;
  6117. color:#333333;
  6118. line-height:40px;
  6119. }
  6120. #u12913 .text {
  6121. position:absolute;
  6122. align-self:center;
  6123. padding:2px 2px 2px 0px;
  6124. box-sizing:border-box;
  6125. width:100%;
  6126. }
  6127. #u12913_img {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:76px;
  6133. height:44px;
  6134. }
  6135. #u12913_text {
  6136. border-width:0px;
  6137. word-wrap:break-word;
  6138. text-transform:none;
  6139. visibility:hidden;
  6140. }
  6141. #u12914 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:258px;
  6145. top:78px;
  6146. width:92px;
  6147. height:44px;
  6148. display:flex;
  6149. transition:none;
  6150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:12px;
  6154. color:#333333;
  6155. line-height:40px;
  6156. }
  6157. #u12914 .text {
  6158. position:absolute;
  6159. align-self:center;
  6160. padding:2px 2px 2px 0px;
  6161. box-sizing:border-box;
  6162. width:100%;
  6163. }
  6164. #u12914_img {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:92px;
  6170. height:44px;
  6171. }
  6172. #u12914_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. visibility:hidden;
  6177. }
  6178. #u12915 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:350px;
  6182. top:78px;
  6183. width:88px;
  6184. height:44px;
  6185. display:flex;
  6186. transition:none;
  6187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:12px;
  6191. color:#333333;
  6192. line-height:40px;
  6193. }
  6194. #u12915 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 0px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u12915_img {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:88px;
  6207. height:44px;
  6208. }
  6209. #u12915_text {
  6210. border-width:0px;
  6211. word-wrap:break-word;
  6212. text-transform:none;
  6213. }
  6214. #u12916 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:438px;
  6218. top:78px;
  6219. width:88px;
  6220. height:44px;
  6221. display:flex;
  6222. transition:none;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:12px;
  6227. color:#333333;
  6228. line-height:40px;
  6229. }
  6230. #u12916 .text {
  6231. position:absolute;
  6232. align-self:center;
  6233. padding:2px 2px 2px 0px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u12916_img {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:88px;
  6243. height:44px;
  6244. }
  6245. #u12916_text {
  6246. border-width:0px;
  6247. word-wrap:break-word;
  6248. text-transform:none;
  6249. visibility:hidden;
  6250. }
  6251. #u12917 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:526px;
  6255. top:78px;
  6256. width:92px;
  6257. height:44px;
  6258. display:flex;
  6259. transition:none;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:12px;
  6264. color:#333333;
  6265. line-height:40px;
  6266. }
  6267. #u12917 .text {
  6268. position:absolute;
  6269. align-self:center;
  6270. padding:2px 2px 2px 0px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u12917_img {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:92px;
  6280. height:44px;
  6281. }
  6282. #u12917_text {
  6283. border-width:0px;
  6284. word-wrap:break-word;
  6285. text-transform:none;
  6286. visibility:hidden;
  6287. }
  6288. #u12918 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:618px;
  6292. top:78px;
  6293. width:88px;
  6294. height:44px;
  6295. display:flex;
  6296. transition:none;
  6297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:12px;
  6301. color:#333333;
  6302. line-height:40px;
  6303. }
  6304. #u12918 .text {
  6305. position:absolute;
  6306. align-self:center;
  6307. padding:2px 2px 2px 0px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u12918_img {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:0px;
  6315. top:0px;
  6316. width:88px;
  6317. height:44px;
  6318. }
  6319. #u12918_text {
  6320. border-width:0px;
  6321. word-wrap:break-word;
  6322. text-transform:none;
  6323. visibility:hidden;
  6324. }
  6325. #u12919 {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:706px;
  6329. top:78px;
  6330. width:88px;
  6331. height:44px;
  6332. display:flex;
  6333. transition:none;
  6334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:12px;
  6338. color:#333333;
  6339. line-height:40px;
  6340. }
  6341. #u12919 .text {
  6342. position:absolute;
  6343. align-self:center;
  6344. padding:2px 2px 2px 0px;
  6345. box-sizing:border-box;
  6346. width:100%;
  6347. }
  6348. #u12919_img {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:88px;
  6354. height:44px;
  6355. }
  6356. #u12919_text {
  6357. border-width:0px;
  6358. word-wrap:break-word;
  6359. text-transform:none;
  6360. visibility:hidden;
  6361. }
  6362. #u12920 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:794px;
  6366. top:78px;
  6367. width:88px;
  6368. height:44px;
  6369. display:flex;
  6370. transition:none;
  6371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:12px;
  6375. color:#333333;
  6376. line-height:40px;
  6377. }
  6378. #u12920 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:2px 2px 2px 0px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u12920_img {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:88px;
  6391. height:44px;
  6392. }
  6393. #u12920_text {
  6394. border-width:0px;
  6395. word-wrap:break-word;
  6396. text-transform:none;
  6397. visibility:hidden;
  6398. }
  6399. #u12921 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:882px;
  6403. top:78px;
  6404. width:126px;
  6405. height:44px;
  6406. display:flex;
  6407. transition:none;
  6408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6409. font-weight:400;
  6410. font-style:normal;
  6411. font-size:12px;
  6412. color:#1890FF;
  6413. }
  6414. #u12921 .text {
  6415. position:absolute;
  6416. align-self:center;
  6417. padding:2px 2px 2px 0px;
  6418. box-sizing:border-box;
  6419. width:100%;
  6420. }
  6421. #u12921_img {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:0px;
  6425. top:0px;
  6426. width:126px;
  6427. height:44px;
  6428. }
  6429. #u12921_text {
  6430. border-width:0px;
  6431. word-wrap:break-word;
  6432. text-transform:none;
  6433. visibility:hidden;
  6434. }
  6435. #u12922 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:122px;
  6440. width:91px;
  6441. height:44px;
  6442. display:flex;
  6443. transition:none;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:12px;
  6448. color:#333333;
  6449. line-height:40px;
  6450. }
  6451. #u12922 .text {
  6452. position:absolute;
  6453. align-self:center;
  6454. padding:2px 2px 2px 0px;
  6455. box-sizing:border-box;
  6456. width:100%;
  6457. }
  6458. #u12922_img {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:91px;
  6464. height:44px;
  6465. }
  6466. #u12922_text {
  6467. border-width:0px;
  6468. word-wrap:break-word;
  6469. text-transform:none;
  6470. visibility:hidden;
  6471. }
  6472. #u12923 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:91px;
  6476. top:122px;
  6477. width:91px;
  6478. height:44px;
  6479. display:flex;
  6480. transition:none;
  6481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6482. font-weight:400;
  6483. font-style:normal;
  6484. font-size:12px;
  6485. color:#333333;
  6486. line-height:40px;
  6487. }
  6488. #u12923 .text {
  6489. position:absolute;
  6490. align-self:center;
  6491. padding:2px 2px 2px 0px;
  6492. box-sizing:border-box;
  6493. width:100%;
  6494. }
  6495. #u12923_img {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:91px;
  6501. height:44px;
  6502. }
  6503. #u12923_text {
  6504. border-width:0px;
  6505. word-wrap:break-word;
  6506. text-transform:none;
  6507. visibility:hidden;
  6508. }
  6509. #u12924 {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:182px;
  6513. top:122px;
  6514. width:76px;
  6515. height:44px;
  6516. display:flex;
  6517. transition:none;
  6518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:12px;
  6522. color:#333333;
  6523. line-height:40px;
  6524. }
  6525. #u12924 .text {
  6526. position:absolute;
  6527. align-self:center;
  6528. padding:2px 2px 2px 0px;
  6529. box-sizing:border-box;
  6530. width:100%;
  6531. }
  6532. #u12924_img {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:76px;
  6538. height:44px;
  6539. }
  6540. #u12924_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u12925 {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:258px;
  6550. top:122px;
  6551. width:92px;
  6552. height:44px;
  6553. display:flex;
  6554. transition:none;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:12px;
  6559. color:#333333;
  6560. line-height:40px;
  6561. }
  6562. #u12925 .text {
  6563. position:absolute;
  6564. align-self:center;
  6565. padding:2px 2px 2px 0px;
  6566. box-sizing:border-box;
  6567. width:100%;
  6568. }
  6569. #u12925_img {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:0px;
  6573. top:0px;
  6574. width:92px;
  6575. height:44px;
  6576. }
  6577. #u12925_text {
  6578. border-width:0px;
  6579. word-wrap:break-word;
  6580. text-transform:none;
  6581. visibility:hidden;
  6582. }
  6583. #u12926 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:350px;
  6587. top:122px;
  6588. width:88px;
  6589. height:44px;
  6590. display:flex;
  6591. transition:none;
  6592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:12px;
  6596. color:#333333;
  6597. line-height:40px;
  6598. }
  6599. #u12926 .text {
  6600. position:absolute;
  6601. align-self:center;
  6602. padding:2px 2px 2px 0px;
  6603. box-sizing:border-box;
  6604. width:100%;
  6605. }
  6606. #u12926_img {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:88px;
  6612. height:44px;
  6613. }
  6614. #u12926_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. }
  6619. #u12927 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:438px;
  6623. top:122px;
  6624. width:88px;
  6625. height:44px;
  6626. display:flex;
  6627. transition:none;
  6628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:12px;
  6632. color:#333333;
  6633. line-height:40px;
  6634. }
  6635. #u12927 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:2px 2px 2px 0px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u12927_img {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:88px;
  6648. height:44px;
  6649. }
  6650. #u12927_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. visibility:hidden;
  6655. }
  6656. #u12928 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:526px;
  6660. top:122px;
  6661. width:92px;
  6662. height:44px;
  6663. display:flex;
  6664. transition:none;
  6665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:12px;
  6669. color:#333333;
  6670. line-height:40px;
  6671. }
  6672. #u12928 .text {
  6673. position:absolute;
  6674. align-self:center;
  6675. padding:2px 2px 2px 0px;
  6676. box-sizing:border-box;
  6677. width:100%;
  6678. }
  6679. #u12928_img {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:92px;
  6685. height:44px;
  6686. }
  6687. #u12928_text {
  6688. border-width:0px;
  6689. word-wrap:break-word;
  6690. text-transform:none;
  6691. visibility:hidden;
  6692. }
  6693. #u12929 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:618px;
  6697. top:122px;
  6698. width:88px;
  6699. height:44px;
  6700. display:flex;
  6701. transition:none;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:12px;
  6706. color:#333333;
  6707. line-height:40px;
  6708. }
  6709. #u12929 .text {
  6710. position:absolute;
  6711. align-self:center;
  6712. padding:2px 2px 2px 0px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u12929_img {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:88px;
  6722. height:44px;
  6723. }
  6724. #u12929_text {
  6725. border-width:0px;
  6726. word-wrap:break-word;
  6727. text-transform:none;
  6728. visibility:hidden;
  6729. }
  6730. #u12930 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:706px;
  6734. top:122px;
  6735. width:88px;
  6736. height:44px;
  6737. display:flex;
  6738. transition:none;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. color:#333333;
  6744. line-height:40px;
  6745. }
  6746. #u12930 .text {
  6747. position:absolute;
  6748. align-self:center;
  6749. padding:2px 2px 2px 0px;
  6750. box-sizing:border-box;
  6751. width:100%;
  6752. }
  6753. #u12930_img {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:88px;
  6759. height:44px;
  6760. }
  6761. #u12930_text {
  6762. border-width:0px;
  6763. word-wrap:break-word;
  6764. text-transform:none;
  6765. visibility:hidden;
  6766. }
  6767. #u12931 {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:794px;
  6771. top:122px;
  6772. width:88px;
  6773. height:44px;
  6774. display:flex;
  6775. transition:none;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:12px;
  6780. color:#333333;
  6781. line-height:40px;
  6782. }
  6783. #u12931 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 0px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u12931_img {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:88px;
  6796. height:44px;
  6797. }
  6798. #u12931_text {
  6799. border-width:0px;
  6800. word-wrap:break-word;
  6801. text-transform:none;
  6802. visibility:hidden;
  6803. }
  6804. #u12932 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:882px;
  6808. top:122px;
  6809. width:126px;
  6810. height:44px;
  6811. display:flex;
  6812. transition:none;
  6813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:12px;
  6817. color:#1890FF;
  6818. }
  6819. #u12932 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:2px 2px 2px 0px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u12932_img {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:126px;
  6832. height:44px;
  6833. }
  6834. #u12932_text {
  6835. border-width:0px;
  6836. word-wrap:break-word;
  6837. text-transform:none;
  6838. visibility:hidden;
  6839. }
  6840. #u12933 {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:0px;
  6844. top:166px;
  6845. width:91px;
  6846. height:38px;
  6847. display:flex;
  6848. transition:none;
  6849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:12px;
  6853. color:#606266;
  6854. }
  6855. #u12933 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:2px 2px 2px 0px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u12933_img {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:91px;
  6868. height:38px;
  6869. }
  6870. #u12933_text {
  6871. border-width:0px;
  6872. word-wrap:break-word;
  6873. text-transform:none;
  6874. visibility:hidden;
  6875. }
  6876. #u12934 {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:91px;
  6880. top:166px;
  6881. width:91px;
  6882. height:38px;
  6883. display:flex;
  6884. transition:none;
  6885. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:12px;
  6889. color:#606266;
  6890. }
  6891. #u12934 .text {
  6892. position:absolute;
  6893. align-self:center;
  6894. padding:2px 2px 2px 0px;
  6895. box-sizing:border-box;
  6896. width:100%;
  6897. }
  6898. #u12934_img {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:91px;
  6904. height:38px;
  6905. }
  6906. #u12934_text {
  6907. border-width:0px;
  6908. word-wrap:break-word;
  6909. text-transform:none;
  6910. visibility:hidden;
  6911. }
  6912. #u12935 {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:182px;
  6916. top:166px;
  6917. width:76px;
  6918. height:38px;
  6919. display:flex;
  6920. transition:none;
  6921. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6922. font-weight:400;
  6923. font-style:normal;
  6924. font-size:12px;
  6925. color:#606266;
  6926. }
  6927. #u12935 .text {
  6928. position:absolute;
  6929. align-self:center;
  6930. padding:2px 2px 2px 0px;
  6931. box-sizing:border-box;
  6932. width:100%;
  6933. }
  6934. #u12935_img {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:76px;
  6940. height:38px;
  6941. }
  6942. #u12935_text {
  6943. border-width:0px;
  6944. word-wrap:break-word;
  6945. text-transform:none;
  6946. visibility:hidden;
  6947. }
  6948. #u12936 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:258px;
  6952. top:166px;
  6953. width:92px;
  6954. height:38px;
  6955. display:flex;
  6956. transition:none;
  6957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:12px;
  6961. color:#606266;
  6962. }
  6963. #u12936 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:2px 2px 2px 0px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u12936_img {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:92px;
  6976. height:38px;
  6977. }
  6978. #u12936_text {
  6979. border-width:0px;
  6980. word-wrap:break-word;
  6981. text-transform:none;
  6982. visibility:hidden;
  6983. }
  6984. #u12937 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:350px;
  6988. top:166px;
  6989. width:88px;
  6990. height:38px;
  6991. display:flex;
  6992. transition:none;
  6993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6994. font-weight:400;
  6995. font-style:normal;
  6996. font-size:12px;
  6997. color:#606266;
  6998. }
  6999. #u12937 .text {
  7000. position:absolute;
  7001. align-self:center;
  7002. padding:2px 2px 2px 0px;
  7003. box-sizing:border-box;
  7004. width:100%;
  7005. }
  7006. #u12937_img {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:88px;
  7012. height:38px;
  7013. }
  7014. #u12937_text {
  7015. border-width:0px;
  7016. word-wrap:break-word;
  7017. text-transform:none;
  7018. }
  7019. #u12938 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:438px;
  7023. top:166px;
  7024. width:88px;
  7025. height:38px;
  7026. display:flex;
  7027. transition:none;
  7028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7029. font-weight:400;
  7030. font-style:normal;
  7031. font-size:12px;
  7032. color:#606266;
  7033. }
  7034. #u12938 .text {
  7035. position:absolute;
  7036. align-self:center;
  7037. padding:2px 2px 2px 0px;
  7038. box-sizing:border-box;
  7039. width:100%;
  7040. }
  7041. #u12938_img {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:0px;
  7045. top:0px;
  7046. width:88px;
  7047. height:38px;
  7048. }
  7049. #u12938_text {
  7050. border-width:0px;
  7051. word-wrap:break-word;
  7052. text-transform:none;
  7053. visibility:hidden;
  7054. }
  7055. #u12939 {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:526px;
  7059. top:166px;
  7060. width:92px;
  7061. height:38px;
  7062. display:flex;
  7063. transition:none;
  7064. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7065. font-weight:400;
  7066. font-style:normal;
  7067. font-size:12px;
  7068. color:#606266;
  7069. }
  7070. #u12939 .text {
  7071. position:absolute;
  7072. align-self:center;
  7073. padding:2px 2px 2px 0px;
  7074. box-sizing:border-box;
  7075. width:100%;
  7076. }
  7077. #u12939_img {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:92px;
  7083. height:38px;
  7084. }
  7085. #u12939_text {
  7086. border-width:0px;
  7087. word-wrap:break-word;
  7088. text-transform:none;
  7089. visibility:hidden;
  7090. }
  7091. #u12940 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:618px;
  7095. top:166px;
  7096. width:88px;
  7097. height:38px;
  7098. display:flex;
  7099. transition:none;
  7100. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:12px;
  7104. color:#606266;
  7105. }
  7106. #u12940 .text {
  7107. position:absolute;
  7108. align-self:center;
  7109. padding:2px 2px 2px 0px;
  7110. box-sizing:border-box;
  7111. width:100%;
  7112. }
  7113. #u12940_img {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:88px;
  7119. height:38px;
  7120. }
  7121. #u12940_text {
  7122. border-width:0px;
  7123. word-wrap:break-word;
  7124. text-transform:none;
  7125. visibility:hidden;
  7126. }
  7127. #u12941 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:706px;
  7131. top:166px;
  7132. width:88px;
  7133. height:38px;
  7134. display:flex;
  7135. transition:none;
  7136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:12px;
  7140. color:#606266;
  7141. }
  7142. #u12941 .text {
  7143. position:absolute;
  7144. align-self:center;
  7145. padding:2px 2px 2px 0px;
  7146. box-sizing:border-box;
  7147. width:100%;
  7148. }
  7149. #u12941_img {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:0px;
  7153. top:0px;
  7154. width:88px;
  7155. height:38px;
  7156. }
  7157. #u12941_text {
  7158. border-width:0px;
  7159. word-wrap:break-word;
  7160. text-transform:none;
  7161. visibility:hidden;
  7162. }
  7163. #u12942 {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:794px;
  7167. top:166px;
  7168. width:88px;
  7169. height:38px;
  7170. display:flex;
  7171. transition:none;
  7172. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7173. font-weight:400;
  7174. font-style:normal;
  7175. font-size:12px;
  7176. color:#606266;
  7177. }
  7178. #u12942 .text {
  7179. position:absolute;
  7180. align-self:center;
  7181. padding:2px 2px 2px 0px;
  7182. box-sizing:border-box;
  7183. width:100%;
  7184. }
  7185. #u12942_img {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:0px;
  7190. width:88px;
  7191. height:38px;
  7192. }
  7193. #u12942_text {
  7194. border-width:0px;
  7195. word-wrap:break-word;
  7196. text-transform:none;
  7197. visibility:hidden;
  7198. }
  7199. #u12943 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:882px;
  7203. top:166px;
  7204. width:126px;
  7205. height:38px;
  7206. display:flex;
  7207. transition:none;
  7208. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7209. font-weight:400;
  7210. font-style:normal;
  7211. font-size:12px;
  7212. color:#606266;
  7213. }
  7214. #u12943 .text {
  7215. position:absolute;
  7216. align-self:center;
  7217. padding:2px 2px 2px 0px;
  7218. box-sizing:border-box;
  7219. width:100%;
  7220. }
  7221. #u12943_img {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:126px;
  7227. height:38px;
  7228. }
  7229. #u12943_text {
  7230. border-width:0px;
  7231. word-wrap:break-word;
  7232. text-transform:none;
  7233. visibility:hidden;
  7234. }
  7235. #u12944 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:204px;
  7240. width:91px;
  7241. height:38px;
  7242. display:flex;
  7243. transition:none;
  7244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7245. font-weight:400;
  7246. font-style:normal;
  7247. font-size:12px;
  7248. color:#606266;
  7249. }
  7250. #u12944 .text {
  7251. position:absolute;
  7252. align-self:center;
  7253. padding:2px 2px 2px 0px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u12944_img {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:91px;
  7263. height:38px;
  7264. }
  7265. #u12944_text {
  7266. border-width:0px;
  7267. word-wrap:break-word;
  7268. text-transform:none;
  7269. visibility:hidden;
  7270. }
  7271. #u12945 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:91px;
  7275. top:204px;
  7276. width:91px;
  7277. height:38px;
  7278. display:flex;
  7279. transition:none;
  7280. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. font-size:12px;
  7284. color:#606266;
  7285. }
  7286. #u12945 .text {
  7287. position:absolute;
  7288. align-self:center;
  7289. padding:2px 2px 2px 0px;
  7290. box-sizing:border-box;
  7291. width:100%;
  7292. }
  7293. #u12945_img {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:91px;
  7299. height:38px;
  7300. }
  7301. #u12945_text {
  7302. border-width:0px;
  7303. word-wrap:break-word;
  7304. text-transform:none;
  7305. visibility:hidden;
  7306. }
  7307. #u12946 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:182px;
  7311. top:204px;
  7312. width:76px;
  7313. height:38px;
  7314. display:flex;
  7315. transition:none;
  7316. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. font-size:12px;
  7320. color:#606266;
  7321. }
  7322. #u12946 .text {
  7323. position:absolute;
  7324. align-self:center;
  7325. padding:2px 2px 2px 0px;
  7326. box-sizing:border-box;
  7327. width:100%;
  7328. }
  7329. #u12946_img {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:76px;
  7335. height:38px;
  7336. }
  7337. #u12946_text {
  7338. border-width:0px;
  7339. word-wrap:break-word;
  7340. text-transform:none;
  7341. visibility:hidden;
  7342. }
  7343. #u12947 {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:258px;
  7347. top:204px;
  7348. width:92px;
  7349. height:38px;
  7350. display:flex;
  7351. transition:none;
  7352. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7353. font-weight:400;
  7354. font-style:normal;
  7355. font-size:12px;
  7356. color:#606266;
  7357. }
  7358. #u12947 .text {
  7359. position:absolute;
  7360. align-self:center;
  7361. padding:2px 2px 2px 0px;
  7362. box-sizing:border-box;
  7363. width:100%;
  7364. }
  7365. #u12947_img {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:0px;
  7369. top:0px;
  7370. width:92px;
  7371. height:38px;
  7372. }
  7373. #u12947_text {
  7374. border-width:0px;
  7375. word-wrap:break-word;
  7376. text-transform:none;
  7377. visibility:hidden;
  7378. }
  7379. #u12948 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:350px;
  7383. top:204px;
  7384. width:88px;
  7385. height:38px;
  7386. display:flex;
  7387. transition:none;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:12px;
  7392. color:#606266;
  7393. }
  7394. #u12948 .text {
  7395. position:absolute;
  7396. align-self:center;
  7397. padding:2px 2px 2px 0px;
  7398. box-sizing:border-box;
  7399. width:100%;
  7400. }
  7401. #u12948_img {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:88px;
  7407. height:38px;
  7408. }
  7409. #u12948_text {
  7410. border-width:0px;
  7411. word-wrap:break-word;
  7412. text-transform:none;
  7413. visibility:hidden;
  7414. }
  7415. #u12949 {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:438px;
  7419. top:204px;
  7420. width:88px;
  7421. height:38px;
  7422. display:flex;
  7423. transition:none;
  7424. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:12px;
  7428. color:#606266;
  7429. }
  7430. #u12949 .text {
  7431. position:absolute;
  7432. align-self:center;
  7433. padding:2px 2px 2px 0px;
  7434. box-sizing:border-box;
  7435. width:100%;
  7436. }
  7437. #u12949_img {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:88px;
  7443. height:38px;
  7444. }
  7445. #u12949_text {
  7446. border-width:0px;
  7447. word-wrap:break-word;
  7448. text-transform:none;
  7449. visibility:hidden;
  7450. }
  7451. #u12950 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:526px;
  7455. top:204px;
  7456. width:92px;
  7457. height:38px;
  7458. display:flex;
  7459. transition:none;
  7460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7461. font-weight:400;
  7462. font-style:normal;
  7463. font-size:12px;
  7464. color:#606266;
  7465. }
  7466. #u12950 .text {
  7467. position:absolute;
  7468. align-self:center;
  7469. padding:2px 2px 2px 0px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u12950_img {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:92px;
  7479. height:38px;
  7480. }
  7481. #u12950_text {
  7482. border-width:0px;
  7483. word-wrap:break-word;
  7484. text-transform:none;
  7485. visibility:hidden;
  7486. }
  7487. #u12951 {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:618px;
  7491. top:204px;
  7492. width:88px;
  7493. height:38px;
  7494. display:flex;
  7495. transition:none;
  7496. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:12px;
  7500. color:#606266;
  7501. }
  7502. #u12951 .text {
  7503. position:absolute;
  7504. align-self:center;
  7505. padding:2px 2px 2px 0px;
  7506. box-sizing:border-box;
  7507. width:100%;
  7508. }
  7509. #u12951_img {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:0px;
  7513. top:0px;
  7514. width:88px;
  7515. height:38px;
  7516. }
  7517. #u12951_text {
  7518. border-width:0px;
  7519. word-wrap:break-word;
  7520. text-transform:none;
  7521. visibility:hidden;
  7522. }
  7523. #u12952 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:706px;
  7527. top:204px;
  7528. width:88px;
  7529. height:38px;
  7530. display:flex;
  7531. transition:none;
  7532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:12px;
  7536. color:#606266;
  7537. }
  7538. #u12952 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:2px 2px 2px 0px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u12952_img {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:0px;
  7549. top:0px;
  7550. width:88px;
  7551. height:38px;
  7552. }
  7553. #u12952_text {
  7554. border-width:0px;
  7555. word-wrap:break-word;
  7556. text-transform:none;
  7557. visibility:hidden;
  7558. }
  7559. #u12953 {
  7560. border-width:0px;
  7561. position:absolute;
  7562. left:794px;
  7563. top:204px;
  7564. width:88px;
  7565. height:38px;
  7566. display:flex;
  7567. transition:none;
  7568. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:12px;
  7572. color:#606266;
  7573. }
  7574. #u12953 .text {
  7575. position:absolute;
  7576. align-self:center;
  7577. padding:2px 2px 2px 0px;
  7578. box-sizing:border-box;
  7579. width:100%;
  7580. }
  7581. #u12953_img {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:88px;
  7587. height:38px;
  7588. }
  7589. #u12953_text {
  7590. border-width:0px;
  7591. word-wrap:break-word;
  7592. text-transform:none;
  7593. visibility:hidden;
  7594. }
  7595. #u12954 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:882px;
  7599. top:204px;
  7600. width:126px;
  7601. height:38px;
  7602. display:flex;
  7603. transition:none;
  7604. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:12px;
  7608. color:#606266;
  7609. }
  7610. #u12954 .text {
  7611. position:absolute;
  7612. align-self:center;
  7613. padding:2px 2px 2px 0px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u12954_img {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:126px;
  7623. height:38px;
  7624. }
  7625. #u12954_text {
  7626. border-width:0px;
  7627. word-wrap:break-word;
  7628. text-transform:none;
  7629. visibility:hidden;
  7630. }
  7631. #u12955 {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:0px;
  7635. top:242px;
  7636. width:91px;
  7637. height:38px;
  7638. display:flex;
  7639. transition:none;
  7640. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:12px;
  7644. color:#606266;
  7645. }
  7646. #u12955 .text {
  7647. position:absolute;
  7648. align-self:center;
  7649. padding:2px 2px 2px 0px;
  7650. box-sizing:border-box;
  7651. width:100%;
  7652. }
  7653. #u12955_img {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:0px;
  7657. top:0px;
  7658. width:91px;
  7659. height:38px;
  7660. }
  7661. #u12955_text {
  7662. border-width:0px;
  7663. word-wrap:break-word;
  7664. text-transform:none;
  7665. visibility:hidden;
  7666. }
  7667. #u12956 {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:91px;
  7671. top:242px;
  7672. width:91px;
  7673. height:38px;
  7674. display:flex;
  7675. transition:none;
  7676. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7677. font-weight:400;
  7678. font-style:normal;
  7679. font-size:12px;
  7680. color:#606266;
  7681. }
  7682. #u12956 .text {
  7683. position:absolute;
  7684. align-self:center;
  7685. padding:2px 2px 2px 0px;
  7686. box-sizing:border-box;
  7687. width:100%;
  7688. }
  7689. #u12956_img {
  7690. border-width:0px;
  7691. position:absolute;
  7692. left:0px;
  7693. top:0px;
  7694. width:91px;
  7695. height:38px;
  7696. }
  7697. #u12956_text {
  7698. border-width:0px;
  7699. word-wrap:break-word;
  7700. text-transform:none;
  7701. visibility:hidden;
  7702. }
  7703. #u12957 {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:182px;
  7707. top:242px;
  7708. width:76px;
  7709. height:38px;
  7710. display:flex;
  7711. transition:none;
  7712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7713. font-weight:400;
  7714. font-style:normal;
  7715. font-size:12px;
  7716. color:#606266;
  7717. }
  7718. #u12957 .text {
  7719. position:absolute;
  7720. align-self:center;
  7721. padding:2px 2px 2px 0px;
  7722. box-sizing:border-box;
  7723. width:100%;
  7724. }
  7725. #u12957_img {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:76px;
  7731. height:38px;
  7732. }
  7733. #u12957_text {
  7734. border-width:0px;
  7735. word-wrap:break-word;
  7736. text-transform:none;
  7737. visibility:hidden;
  7738. }
  7739. #u12958 {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:258px;
  7743. top:242px;
  7744. width:92px;
  7745. height:38px;
  7746. display:flex;
  7747. transition:none;
  7748. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:12px;
  7752. color:#606266;
  7753. }
  7754. #u12958 .text {
  7755. position:absolute;
  7756. align-self:center;
  7757. padding:2px 2px 2px 0px;
  7758. box-sizing:border-box;
  7759. width:100%;
  7760. }
  7761. #u12958_img {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:92px;
  7767. height:38px;
  7768. }
  7769. #u12958_text {
  7770. border-width:0px;
  7771. word-wrap:break-word;
  7772. text-transform:none;
  7773. visibility:hidden;
  7774. }
  7775. #u12959 {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:350px;
  7779. top:242px;
  7780. width:88px;
  7781. height:38px;
  7782. display:flex;
  7783. transition:none;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:12px;
  7788. color:#606266;
  7789. }
  7790. #u12959 .text {
  7791. position:absolute;
  7792. align-self:center;
  7793. padding:2px 2px 2px 0px;
  7794. box-sizing:border-box;
  7795. width:100%;
  7796. }
  7797. #u12959_img {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:88px;
  7803. height:38px;
  7804. }
  7805. #u12959_text {
  7806. border-width:0px;
  7807. word-wrap:break-word;
  7808. text-transform:none;
  7809. visibility:hidden;
  7810. }
  7811. #u12960 {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:438px;
  7815. top:242px;
  7816. width:88px;
  7817. height:38px;
  7818. display:flex;
  7819. transition:none;
  7820. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:12px;
  7824. color:#606266;
  7825. }
  7826. #u12960 .text {
  7827. position:absolute;
  7828. align-self:center;
  7829. padding:2px 2px 2px 0px;
  7830. box-sizing:border-box;
  7831. width:100%;
  7832. }
  7833. #u12960_img {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:0px;
  7837. top:0px;
  7838. width:88px;
  7839. height:38px;
  7840. }
  7841. #u12960_text {
  7842. border-width:0px;
  7843. word-wrap:break-word;
  7844. text-transform:none;
  7845. visibility:hidden;
  7846. }
  7847. #u12961 {
  7848. border-width:0px;
  7849. position:absolute;
  7850. left:526px;
  7851. top:242px;
  7852. width:92px;
  7853. height:38px;
  7854. display:flex;
  7855. transition:none;
  7856. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7857. font-weight:400;
  7858. font-style:normal;
  7859. font-size:12px;
  7860. color:#606266;
  7861. }
  7862. #u12961 .text {
  7863. position:absolute;
  7864. align-self:center;
  7865. padding:2px 2px 2px 0px;
  7866. box-sizing:border-box;
  7867. width:100%;
  7868. }
  7869. #u12961_img {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:0px;
  7873. top:0px;
  7874. width:92px;
  7875. height:38px;
  7876. }
  7877. #u12961_text {
  7878. border-width:0px;
  7879. word-wrap:break-word;
  7880. text-transform:none;
  7881. visibility:hidden;
  7882. }
  7883. #u12962 {
  7884. border-width:0px;
  7885. position:absolute;
  7886. left:618px;
  7887. top:242px;
  7888. width:88px;
  7889. height:38px;
  7890. display:flex;
  7891. transition:none;
  7892. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7893. font-weight:400;
  7894. font-style:normal;
  7895. font-size:12px;
  7896. color:#606266;
  7897. }
  7898. #u12962 .text {
  7899. position:absolute;
  7900. align-self:center;
  7901. padding:2px 2px 2px 0px;
  7902. box-sizing:border-box;
  7903. width:100%;
  7904. }
  7905. #u12962_img {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:88px;
  7911. height:38px;
  7912. }
  7913. #u12962_text {
  7914. border-width:0px;
  7915. word-wrap:break-word;
  7916. text-transform:none;
  7917. visibility:hidden;
  7918. }
  7919. #u12963 {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:706px;
  7923. top:242px;
  7924. width:88px;
  7925. height:38px;
  7926. display:flex;
  7927. transition:none;
  7928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:12px;
  7932. color:#606266;
  7933. }
  7934. #u12963 .text {
  7935. position:absolute;
  7936. align-self:center;
  7937. padding:2px 2px 2px 0px;
  7938. box-sizing:border-box;
  7939. width:100%;
  7940. }
  7941. #u12963_img {
  7942. border-width:0px;
  7943. position:absolute;
  7944. left:0px;
  7945. top:0px;
  7946. width:88px;
  7947. height:38px;
  7948. }
  7949. #u12963_text {
  7950. border-width:0px;
  7951. word-wrap:break-word;
  7952. text-transform:none;
  7953. visibility:hidden;
  7954. }
  7955. #u12964 {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:794px;
  7959. top:242px;
  7960. width:88px;
  7961. height:38px;
  7962. display:flex;
  7963. transition:none;
  7964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7965. font-weight:400;
  7966. font-style:normal;
  7967. font-size:12px;
  7968. color:#606266;
  7969. }
  7970. #u12964 .text {
  7971. position:absolute;
  7972. align-self:center;
  7973. padding:2px 2px 2px 0px;
  7974. box-sizing:border-box;
  7975. width:100%;
  7976. }
  7977. #u12964_img {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:88px;
  7983. height:38px;
  7984. }
  7985. #u12964_text {
  7986. border-width:0px;
  7987. word-wrap:break-word;
  7988. text-transform:none;
  7989. visibility:hidden;
  7990. }
  7991. #u12965 {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:882px;
  7995. top:242px;
  7996. width:126px;
  7997. height:38px;
  7998. display:flex;
  7999. transition:none;
  8000. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:12px;
  8004. color:#606266;
  8005. }
  8006. #u12965 .text {
  8007. position:absolute;
  8008. align-self:center;
  8009. padding:2px 2px 2px 0px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u12965_img {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:126px;
  8019. height:38px;
  8020. }
  8021. #u12965_text {
  8022. border-width:0px;
  8023. word-wrap:break-word;
  8024. text-transform:none;
  8025. visibility:hidden;
  8026. }
  8027. #u12966 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:280px;
  8032. width:91px;
  8033. height:38px;
  8034. display:flex;
  8035. transition:none;
  8036. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:12px;
  8040. color:#606266;
  8041. }
  8042. #u12966 .text {
  8043. position:absolute;
  8044. align-self:center;
  8045. padding:2px 2px 2px 0px;
  8046. box-sizing:border-box;
  8047. width:100%;
  8048. }
  8049. #u12966_img {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:91px;
  8055. height:38px;
  8056. }
  8057. #u12966_text {
  8058. border-width:0px;
  8059. word-wrap:break-word;
  8060. text-transform:none;
  8061. visibility:hidden;
  8062. }
  8063. #u12967 {
  8064. border-width:0px;
  8065. position:absolute;
  8066. left:91px;
  8067. top:280px;
  8068. width:91px;
  8069. height:38px;
  8070. display:flex;
  8071. transition:none;
  8072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:12px;
  8076. color:#606266;
  8077. }
  8078. #u12967 .text {
  8079. position:absolute;
  8080. align-self:center;
  8081. padding:2px 2px 2px 0px;
  8082. box-sizing:border-box;
  8083. width:100%;
  8084. }
  8085. #u12967_img {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:0px;
  8089. top:0px;
  8090. width:91px;
  8091. height:38px;
  8092. }
  8093. #u12967_text {
  8094. border-width:0px;
  8095. word-wrap:break-word;
  8096. text-transform:none;
  8097. visibility:hidden;
  8098. }
  8099. #u12968 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:182px;
  8103. top:280px;
  8104. width:76px;
  8105. height:38px;
  8106. display:flex;
  8107. transition:none;
  8108. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8109. font-weight:400;
  8110. font-style:normal;
  8111. font-size:12px;
  8112. color:#606266;
  8113. }
  8114. #u12968 .text {
  8115. position:absolute;
  8116. align-self:center;
  8117. padding:2px 2px 2px 0px;
  8118. box-sizing:border-box;
  8119. width:100%;
  8120. }
  8121. #u12968_img {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:0px;
  8125. top:0px;
  8126. width:76px;
  8127. height:38px;
  8128. }
  8129. #u12968_text {
  8130. border-width:0px;
  8131. word-wrap:break-word;
  8132. text-transform:none;
  8133. visibility:hidden;
  8134. }
  8135. #u12969 {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:258px;
  8139. top:280px;
  8140. width:92px;
  8141. height:38px;
  8142. display:flex;
  8143. transition:none;
  8144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:12px;
  8148. color:#606266;
  8149. }
  8150. #u12969 .text {
  8151. position:absolute;
  8152. align-self:center;
  8153. padding:2px 2px 2px 0px;
  8154. box-sizing:border-box;
  8155. width:100%;
  8156. }
  8157. #u12969_img {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:92px;
  8163. height:38px;
  8164. }
  8165. #u12969_text {
  8166. border-width:0px;
  8167. word-wrap:break-word;
  8168. text-transform:none;
  8169. visibility:hidden;
  8170. }
  8171. #u12970 {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:350px;
  8175. top:280px;
  8176. width:88px;
  8177. height:38px;
  8178. display:flex;
  8179. transition:none;
  8180. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8181. font-weight:400;
  8182. font-style:normal;
  8183. font-size:12px;
  8184. color:#606266;
  8185. }
  8186. #u12970 .text {
  8187. position:absolute;
  8188. align-self:center;
  8189. padding:2px 2px 2px 0px;
  8190. box-sizing:border-box;
  8191. width:100%;
  8192. }
  8193. #u12970_img {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:0px;
  8197. top:0px;
  8198. width:88px;
  8199. height:38px;
  8200. }
  8201. #u12970_text {
  8202. border-width:0px;
  8203. word-wrap:break-word;
  8204. text-transform:none;
  8205. visibility:hidden;
  8206. }
  8207. #u12971 {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:438px;
  8211. top:280px;
  8212. width:88px;
  8213. height:38px;
  8214. display:flex;
  8215. transition:none;
  8216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:12px;
  8220. color:#606266;
  8221. }
  8222. #u12971 .text {
  8223. position:absolute;
  8224. align-self:center;
  8225. padding:2px 2px 2px 0px;
  8226. box-sizing:border-box;
  8227. width:100%;
  8228. }
  8229. #u12971_img {
  8230. border-width:0px;
  8231. position:absolute;
  8232. left:0px;
  8233. top:0px;
  8234. width:88px;
  8235. height:38px;
  8236. }
  8237. #u12971_text {
  8238. border-width:0px;
  8239. word-wrap:break-word;
  8240. text-transform:none;
  8241. visibility:hidden;
  8242. }
  8243. #u12972 {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:526px;
  8247. top:280px;
  8248. width:92px;
  8249. height:38px;
  8250. display:flex;
  8251. transition:none;
  8252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:12px;
  8256. color:#606266;
  8257. }
  8258. #u12972 .text {
  8259. position:absolute;
  8260. align-self:center;
  8261. padding:2px 2px 2px 0px;
  8262. box-sizing:border-box;
  8263. width:100%;
  8264. }
  8265. #u12972_img {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:0px;
  8269. top:0px;
  8270. width:92px;
  8271. height:38px;
  8272. }
  8273. #u12972_text {
  8274. border-width:0px;
  8275. word-wrap:break-word;
  8276. text-transform:none;
  8277. visibility:hidden;
  8278. }
  8279. #u12973 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:618px;
  8283. top:280px;
  8284. width:88px;
  8285. height:38px;
  8286. display:flex;
  8287. transition:none;
  8288. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8289. font-weight:400;
  8290. font-style:normal;
  8291. font-size:12px;
  8292. color:#606266;
  8293. }
  8294. #u12973 .text {
  8295. position:absolute;
  8296. align-self:center;
  8297. padding:2px 2px 2px 0px;
  8298. box-sizing:border-box;
  8299. width:100%;
  8300. }
  8301. #u12973_img {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:88px;
  8307. height:38px;
  8308. }
  8309. #u12973_text {
  8310. border-width:0px;
  8311. word-wrap:break-word;
  8312. text-transform:none;
  8313. visibility:hidden;
  8314. }
  8315. #u12974 {
  8316. border-width:0px;
  8317. position:absolute;
  8318. left:706px;
  8319. top:280px;
  8320. width:88px;
  8321. height:38px;
  8322. display:flex;
  8323. transition:none;
  8324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8325. font-weight:400;
  8326. font-style:normal;
  8327. font-size:12px;
  8328. color:#606266;
  8329. }
  8330. #u12974 .text {
  8331. position:absolute;
  8332. align-self:center;
  8333. padding:2px 2px 2px 0px;
  8334. box-sizing:border-box;
  8335. width:100%;
  8336. }
  8337. #u12974_img {
  8338. border-width:0px;
  8339. position:absolute;
  8340. left:0px;
  8341. top:0px;
  8342. width:88px;
  8343. height:38px;
  8344. }
  8345. #u12974_text {
  8346. border-width:0px;
  8347. word-wrap:break-word;
  8348. text-transform:none;
  8349. visibility:hidden;
  8350. }
  8351. #u12975 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:794px;
  8355. top:280px;
  8356. width:88px;
  8357. height:38px;
  8358. display:flex;
  8359. transition:none;
  8360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8361. font-weight:400;
  8362. font-style:normal;
  8363. font-size:12px;
  8364. color:#606266;
  8365. }
  8366. #u12975 .text {
  8367. position:absolute;
  8368. align-self:center;
  8369. padding:2px 2px 2px 0px;
  8370. box-sizing:border-box;
  8371. width:100%;
  8372. }
  8373. #u12975_img {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:0px;
  8377. top:0px;
  8378. width:88px;
  8379. height:38px;
  8380. }
  8381. #u12975_text {
  8382. border-width:0px;
  8383. word-wrap:break-word;
  8384. text-transform:none;
  8385. visibility:hidden;
  8386. }
  8387. #u12976 {
  8388. border-width:0px;
  8389. position:absolute;
  8390. left:882px;
  8391. top:280px;
  8392. width:126px;
  8393. height:38px;
  8394. display:flex;
  8395. transition:none;
  8396. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8397. font-weight:400;
  8398. font-style:normal;
  8399. font-size:12px;
  8400. color:#606266;
  8401. }
  8402. #u12976 .text {
  8403. position:absolute;
  8404. align-self:center;
  8405. padding:2px 2px 2px 0px;
  8406. box-sizing:border-box;
  8407. width:100%;
  8408. }
  8409. #u12976_img {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:0px;
  8413. top:0px;
  8414. width:126px;
  8415. height:38px;
  8416. }
  8417. #u12976_text {
  8418. border-width:0px;
  8419. word-wrap:break-word;
  8420. text-transform:none;
  8421. visibility:hidden;
  8422. }
  8423. #u12977_div {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:0px;
  8427. top:0px;
  8428. width:73px;
  8429. height:50px;
  8430. background:inherit;
  8431. background-color:rgba(255, 255, 255, 0);
  8432. border-left:0px;
  8433. border-top:0px;
  8434. border-right:0px;
  8435. border-radius:0px;
  8436. border-bottom-right-radius:0px;
  8437. border-bottom-left-radius:0px;
  8438. filter:drop-shadow(none);
  8439. transition:none;
  8440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8441. font-weight:400;
  8442. font-style:normal;
  8443. font-size:18px;
  8444. }
  8445. #u12977 {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:350px;
  8449. top:50px;
  8450. width:73px;
  8451. height:50px;
  8452. display:flex;
  8453. transition:none;
  8454. transform-origin:50% 50%;
  8455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8456. font-weight:400;
  8457. font-style:normal;
  8458. font-size:18px;
  8459. }
  8460. #u12977 .text {
  8461. position:absolute;
  8462. align-self:center;
  8463. padding:0px 0px 0px 0px;
  8464. box-sizing:border-box;
  8465. width:100%;
  8466. }
  8467. #u12977_text {
  8468. border-width:0px;
  8469. white-space:nowrap;
  8470. text-transform:none;
  8471. }
  8472. #u12978 {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:0px;
  8476. top:0px;
  8477. width:0px;
  8478. height:0px;
  8479. }
  8480. #u12979_div {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:0px;
  8484. top:0px;
  8485. width:140px;
  8486. height:30px;
  8487. background:inherit;
  8488. background-color:rgba(255, 255, 255, 1);
  8489. box-sizing:border-box;
  8490. border-width:1px;
  8491. border-style:solid;
  8492. border-color:rgba(215, 215, 215, 1);
  8493. border-radius:4px;
  8494. filter:drop-shadow(none);
  8495. transition:none;
  8496. font-size:14px;
  8497. }
  8498. #u12979 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:861px;
  8502. top:239px;
  8503. width:140px;
  8504. height:30px;
  8505. display:flex;
  8506. transition:none;
  8507. transform-origin:50% 50%;
  8508. font-size:14px;
  8509. }
  8510. #u12979 .text {
  8511. position:absolute;
  8512. align-self:center;
  8513. padding:2px 2px 2px 2px;
  8514. box-sizing:border-box;
  8515. width:100%;
  8516. }
  8517. #u12979_text {
  8518. border-width:0px;
  8519. word-wrap:break-word;
  8520. text-transform:none;
  8521. visibility:hidden;
  8522. }
  8523. #u12980_input {
  8524. position:absolute;
  8525. left:0px;
  8526. top:0px;
  8527. width:134px;
  8528. height:23px;
  8529. padding:2px 2px 2px 2px;
  8530. font-family:'ArialMT', 'Arial', sans-serif;
  8531. font-weight:400;
  8532. font-style:normal;
  8533. font-size:14px;
  8534. letter-spacing:normal;
  8535. color:#AAAAAA;
  8536. vertical-align:none;
  8537. text-align:left;
  8538. text-transform:none;
  8539. background-color:transparent;
  8540. border-color:transparent;
  8541. }
  8542. #u12980_input.disabled {
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:134px;
  8547. height:23px;
  8548. padding:2px 2px 2px 2px;
  8549. font-family:'ArialMT', 'Arial', sans-serif;
  8550. font-weight:400;
  8551. font-style:normal;
  8552. font-size:14px;
  8553. letter-spacing:normal;
  8554. color:#AAAAAA;
  8555. vertical-align:none;
  8556. text-align:left;
  8557. text-transform:none;
  8558. background-color:transparent;
  8559. border-color:transparent;
  8560. }
  8561. #u12980_div {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:0px;
  8565. top:0px;
  8566. width:134px;
  8567. height:23px;
  8568. background:inherit;
  8569. background-color:rgba(255, 255, 255, 1);
  8570. border-radius:0px;
  8571. filter:drop-shadow(none);
  8572. transition:none;
  8573. font-size:14px;
  8574. color:#AAAAAA;
  8575. }
  8576. #u12980 {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:865px;
  8580. top:241px;
  8581. width:134px;
  8582. height:23px;
  8583. display:flex;
  8584. transition:none;
  8585. transform-origin:50% 50%;
  8586. font-size:14px;
  8587. color:#AAAAAA;
  8588. }
  8589. #u12980 .text {
  8590. position:absolute;
  8591. align-self:flex-start;
  8592. padding:2px 2px 2px 2px;
  8593. box-sizing:border-box;
  8594. width:100%;
  8595. }
  8596. #u12980_div.disabled {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:0px;
  8600. top:0px;
  8601. width:134px;
  8602. height:23px;
  8603. background:inherit;
  8604. background-color:rgba(240, 240, 240, 1);
  8605. border-radius:0px;
  8606. filter:drop-shadow(none);
  8607. transition:none;
  8608. font-size:14px;
  8609. color:#AAAAAA;
  8610. }
  8611. #u12980.disabled {
  8612. }
  8613. .u12980_input_option {
  8614. font-size:14px;
  8615. }
  8616. #u12981 {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:0px;
  8622. height:0px;
  8623. }
  8624. #u12982_div {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:0px;
  8628. top:0px;
  8629. width:140px;
  8630. height:30px;
  8631. background:inherit;
  8632. background-color:rgba(255, 255, 255, 1);
  8633. box-sizing:border-box;
  8634. border-width:1px;
  8635. border-style:solid;
  8636. border-color:rgba(201, 201, 201, 1);
  8637. border-radius:4px;
  8638. filter:drop-shadow(none);
  8639. transition:none;
  8640. font-family:"Microsoft YaHei", sans-serif;
  8641. font-weight:400;
  8642. font-style:normal;
  8643. font-size:14px;
  8644. color:#CCCCCC;
  8645. text-align:left;
  8646. }
  8647. #u12982 {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:563px;
  8651. top:239px;
  8652. width:140px;
  8653. height:30px;
  8654. display:flex;
  8655. transition:none;
  8656. transform-origin:50% 50%;
  8657. font-family:"Microsoft YaHei", sans-serif;
  8658. font-weight:400;
  8659. font-style:normal;
  8660. font-size:14px;
  8661. color:#CCCCCC;
  8662. text-align:left;
  8663. }
  8664. #u12982 .text {
  8665. position:absolute;
  8666. align-self:center;
  8667. padding:2px 8px 2px 8px;
  8668. box-sizing:border-box;
  8669. width:100%;
  8670. }
  8671. #u12982_text {
  8672. border-width:0px;
  8673. word-wrap:break-word;
  8674. text-transform:none;
  8675. visibility:hidden;
  8676. }
  8677. #u12983_input {
  8678. position:absolute;
  8679. left:0px;
  8680. top:0px;
  8681. width:127px;
  8682. height:25px;
  8683. padding:2px 2px 2px 2px;
  8684. font-family:"Microsoft YaHei", sans-serif;
  8685. font-weight:400;
  8686. font-style:normal;
  8687. font-size:10px;
  8688. letter-spacing:normal;
  8689. color:#000000;
  8690. vertical-align:none;
  8691. text-align:left;
  8692. text-transform:none;
  8693. background-color:transparent;
  8694. border-color:transparent;
  8695. }
  8696. #u12983_input.hint {
  8697. position:absolute;
  8698. left:0px;
  8699. top:0px;
  8700. width:127px;
  8701. height:25px;
  8702. padding:2px 2px 2px 2px;
  8703. font-family:"Microsoft YaHei", sans-serif;
  8704. font-weight:400;
  8705. font-style:normal;
  8706. font-size:12px;
  8707. letter-spacing:normal;
  8708. color:#AAAAAA;
  8709. vertical-align:none;
  8710. text-align:left;
  8711. text-transform:none;
  8712. background-color:transparent;
  8713. border-color:transparent;
  8714. }
  8715. #u12983_input.disabled {
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:127px;
  8720. height:25px;
  8721. padding:2px 2px 2px 2px;
  8722. font-family:"Microsoft YaHei", sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:10px;
  8726. letter-spacing:normal;
  8727. color:#000000;
  8728. vertical-align:none;
  8729. text-align:left;
  8730. text-transform:none;
  8731. background-color:transparent;
  8732. border-color:transparent;
  8733. }
  8734. #u12983_input.hint.disabled {
  8735. position:absolute;
  8736. left:0px;
  8737. top:0px;
  8738. width:127px;
  8739. height:25px;
  8740. padding:2px 2px 2px 2px;
  8741. font-family:"Microsoft YaHei", sans-serif;
  8742. font-weight:400;
  8743. font-style:normal;
  8744. font-size:12px;
  8745. letter-spacing:normal;
  8746. color:#AAAAAA;
  8747. vertical-align:none;
  8748. text-align:left;
  8749. text-transform:none;
  8750. background-color:transparent;
  8751. border-color:transparent;
  8752. }
  8753. #u12983_div {
  8754. border-width:0px;
  8755. position:absolute;
  8756. left:0px;
  8757. top:0px;
  8758. width:127px;
  8759. height:25px;
  8760. background:inherit;
  8761. background-color:rgba(255, 255, 255, 1);
  8762. border-radius:0px;
  8763. filter:drop-shadow(none);
  8764. transition:none;
  8765. font-family:"Microsoft YaHei", sans-serif;
  8766. font-weight:400;
  8767. font-style:normal;
  8768. font-size:10px;
  8769. }
  8770. #u12983 {
  8771. border-width:0px;
  8772. position:absolute;
  8773. left:571px;
  8774. top:240px;
  8775. width:127px;
  8776. height:25px;
  8777. display:flex;
  8778. transition:none;
  8779. transform-origin:50% 50%;
  8780. font-family:"Microsoft YaHei", sans-serif;
  8781. font-weight:400;
  8782. font-style:normal;
  8783. font-size:10px;
  8784. }
  8785. #u12983 .text {
  8786. position:absolute;
  8787. align-self:center;
  8788. padding:2px 2px 2px 2px;
  8789. box-sizing:border-box;
  8790. width:100%;
  8791. }
  8792. #u12983_div.hint {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:127px;
  8798. height:25px;
  8799. background:inherit;
  8800. background-color:rgba(255, 255, 255, 1);
  8801. border-radius:0px;
  8802. filter:drop-shadow(none);
  8803. transition:none;
  8804. font-family:"Microsoft YaHei", sans-serif;
  8805. font-weight:400;
  8806. font-style:normal;
  8807. font-size:10px;
  8808. }
  8809. #u12983.hint {
  8810. }
  8811. #u12983_div.disabled {
  8812. border-width:0px;
  8813. position:absolute;
  8814. left:0px;
  8815. top:0px;
  8816. width:127px;
  8817. height:25px;
  8818. background:inherit;
  8819. background-color:rgba(240, 240, 240, 1);
  8820. border-radius:0px;
  8821. filter:drop-shadow(none);
  8822. transition:none;
  8823. font-family:"Microsoft YaHei", sans-serif;
  8824. font-weight:400;
  8825. font-style:normal;
  8826. font-size:10px;
  8827. }
  8828. #u12983.disabled {
  8829. }
  8830. #u12983_div.hint.disabled {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:0px;
  8834. top:0px;
  8835. width:127px;
  8836. height:25px;
  8837. background:inherit;
  8838. background-color:rgba(240, 240, 240, 1);
  8839. border-radius:0px;
  8840. filter:drop-shadow(none);
  8841. transition:none;
  8842. font-family:"Microsoft YaHei", sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:10px;
  8846. }
  8847. #u12983.hint.disabled {
  8848. }
  8849. #u12984 {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:0px;
  8853. top:0px;
  8854. width:0px;
  8855. height:0px;
  8856. }
  8857. #u12985_div {
  8858. border-width:0px;
  8859. position:absolute;
  8860. left:0px;
  8861. top:0px;
  8862. width:140px;
  8863. height:30px;
  8864. background:inherit;
  8865. background-color:rgba(255, 255, 255, 1);
  8866. box-sizing:border-box;
  8867. border-width:1px;
  8868. border-style:solid;
  8869. border-color:rgba(201, 201, 201, 1);
  8870. border-radius:4px;
  8871. filter:drop-shadow(none);
  8872. transition:none;
  8873. font-family:"Microsoft YaHei", sans-serif;
  8874. font-weight:400;
  8875. font-style:normal;
  8876. font-size:14px;
  8877. color:#CCCCCC;
  8878. text-align:left;
  8879. }
  8880. #u12985 {
  8881. border-width:0px;
  8882. position:absolute;
  8883. left:713px;
  8884. top:239px;
  8885. width:140px;
  8886. height:30px;
  8887. display:flex;
  8888. transition:none;
  8889. transform-origin:50% 50%;
  8890. font-family:"Microsoft YaHei", sans-serif;
  8891. font-weight:400;
  8892. font-style:normal;
  8893. font-size:14px;
  8894. color:#CCCCCC;
  8895. text-align:left;
  8896. }
  8897. #u12985 .text {
  8898. position:absolute;
  8899. align-self:center;
  8900. padding:2px 8px 2px 8px;
  8901. box-sizing:border-box;
  8902. width:100%;
  8903. }
  8904. #u12985_text {
  8905. border-width:0px;
  8906. word-wrap:break-word;
  8907. text-transform:none;
  8908. visibility:hidden;
  8909. }
  8910. #u12986_input {
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:127px;
  8915. height:25px;
  8916. padding:2px 2px 2px 2px;
  8917. font-family:"Microsoft YaHei", sans-serif;
  8918. font-weight:400;
  8919. font-style:normal;
  8920. font-size:10px;
  8921. letter-spacing:normal;
  8922. color:#000000;
  8923. vertical-align:none;
  8924. text-align:left;
  8925. text-transform:none;
  8926. background-color:transparent;
  8927. border-color:transparent;
  8928. }
  8929. #u12986_input.hint {
  8930. position:absolute;
  8931. left:0px;
  8932. top:0px;
  8933. width:127px;
  8934. height:25px;
  8935. padding:2px 2px 2px 2px;
  8936. font-family:"Microsoft YaHei", sans-serif;
  8937. font-weight:400;
  8938. font-style:normal;
  8939. font-size:12px;
  8940. letter-spacing:normal;
  8941. color:#AAAAAA;
  8942. vertical-align:none;
  8943. text-align:left;
  8944. text-transform:none;
  8945. background-color:transparent;
  8946. border-color:transparent;
  8947. }
  8948. #u12986_input.disabled {
  8949. position:absolute;
  8950. left:0px;
  8951. top:0px;
  8952. width:127px;
  8953. height:25px;
  8954. padding:2px 2px 2px 2px;
  8955. font-family:"Microsoft YaHei", sans-serif;
  8956. font-weight:400;
  8957. font-style:normal;
  8958. font-size:10px;
  8959. letter-spacing:normal;
  8960. color:#000000;
  8961. vertical-align:none;
  8962. text-align:left;
  8963. text-transform:none;
  8964. background-color:transparent;
  8965. border-color:transparent;
  8966. }
  8967. #u12986_input.hint.disabled {
  8968. position:absolute;
  8969. left:0px;
  8970. top:0px;
  8971. width:127px;
  8972. height:25px;
  8973. padding:2px 2px 2px 2px;
  8974. font-family:"Microsoft YaHei", sans-serif;
  8975. font-weight:400;
  8976. font-style:normal;
  8977. font-size:12px;
  8978. letter-spacing:normal;
  8979. color:#AAAAAA;
  8980. vertical-align:none;
  8981. text-align:left;
  8982. text-transform:none;
  8983. background-color:transparent;
  8984. border-color:transparent;
  8985. }
  8986. #u12986_div {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:0px;
  8990. top:0px;
  8991. width:127px;
  8992. height:25px;
  8993. background:inherit;
  8994. background-color:rgba(255, 255, 255, 1);
  8995. border-radius:0px;
  8996. filter:drop-shadow(none);
  8997. transition:none;
  8998. font-family:"Microsoft YaHei", sans-serif;
  8999. font-weight:400;
  9000. font-style:normal;
  9001. font-size:10px;
  9002. }
  9003. #u12986 {
  9004. border-width:0px;
  9005. position:absolute;
  9006. left:721px;
  9007. top:240px;
  9008. width:127px;
  9009. height:25px;
  9010. display:flex;
  9011. transition:none;
  9012. transform-origin:50% 50%;
  9013. font-family:"Microsoft YaHei", sans-serif;
  9014. font-weight:400;
  9015. font-style:normal;
  9016. font-size:10px;
  9017. }
  9018. #u12986 .text {
  9019. position:absolute;
  9020. align-self:center;
  9021. padding:2px 2px 2px 2px;
  9022. box-sizing:border-box;
  9023. width:100%;
  9024. }
  9025. #u12986_div.hint {
  9026. border-width:0px;
  9027. position:absolute;
  9028. left:0px;
  9029. top:0px;
  9030. width:127px;
  9031. height:25px;
  9032. background:inherit;
  9033. background-color:rgba(255, 255, 255, 1);
  9034. border-radius:0px;
  9035. filter:drop-shadow(none);
  9036. transition:none;
  9037. font-family:"Microsoft YaHei", sans-serif;
  9038. font-weight:400;
  9039. font-style:normal;
  9040. font-size:10px;
  9041. }
  9042. #u12986.hint {
  9043. }
  9044. #u12986_div.disabled {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:0px;
  9048. top:0px;
  9049. width:127px;
  9050. height:25px;
  9051. background:inherit;
  9052. background-color:rgba(240, 240, 240, 1);
  9053. border-radius:0px;
  9054. filter:drop-shadow(none);
  9055. transition:none;
  9056. font-family:"Microsoft YaHei", sans-serif;
  9057. font-weight:400;
  9058. font-style:normal;
  9059. font-size:10px;
  9060. }
  9061. #u12986.disabled {
  9062. }
  9063. #u12986_div.hint.disabled {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:127px;
  9069. height:25px;
  9070. background:inherit;
  9071. background-color:rgba(240, 240, 240, 1);
  9072. border-radius:0px;
  9073. filter:drop-shadow(none);
  9074. transition:none;
  9075. font-family:"Microsoft YaHei", sans-serif;
  9076. font-weight:400;
  9077. font-style:normal;
  9078. font-size:10px;
  9079. }
  9080. #u12986.hint.disabled {
  9081. }
  9082. #u12987 {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:0px;
  9088. height:0px;
  9089. }
  9090. #u12988 {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:350px;
  9094. top:241px;
  9095. width:137px;
  9096. height:500px;
  9097. transition:none;
  9098. }
  9099. #u12988_children {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:0px;
  9103. top:0px;
  9104. width:0px;
  9105. height:0px;
  9106. }
  9107. #u12989 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:106px;
  9113. height:20px;
  9114. transition:none;
  9115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9116. font-weight:400;
  9117. font-style:normal;
  9118. }
  9119. #u12990 {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:6px;
  9123. top:6px;
  9124. width:9px;
  9125. height:9px;
  9126. display:flex;
  9127. transition:none;
  9128. }
  9129. #u12990 .text {
  9130. position:absolute;
  9131. align-self:center;
  9132. padding:2px 2px 2px 2px;
  9133. box-sizing:border-box;
  9134. width:100%;
  9135. }
  9136. #u12990_img {
  9137. border-width:0px;
  9138. position:absolute;
  9139. left:0px;
  9140. top:0px;
  9141. width:9px;
  9142. height:9px;
  9143. }
  9144. #u12990_img.selected {
  9145. }
  9146. #u12990.selected {
  9147. }
  9148. #u12990_text {
  9149. border-width:0px;
  9150. word-wrap:break-word;
  9151. text-transform:none;
  9152. visibility:hidden;
  9153. }
  9154. #u12991_div {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:0px;
  9158. top:0px;
  9159. width:84px;
  9160. height:20px;
  9161. background:inherit;
  9162. background-color:rgba(255, 255, 255, 0);
  9163. border-radius:0px;
  9164. filter:drop-shadow(none);
  9165. transition:none;
  9166. }
  9167. #u12991 {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:22px;
  9171. top:0px;
  9172. width:84px;
  9173. height:20px;
  9174. display:flex;
  9175. transition:none;
  9176. transform-origin:50% 50%;
  9177. }
  9178. #u12991 .text {
  9179. position:absolute;
  9180. align-self:center;
  9181. padding:2px 2px 2px 3px;
  9182. box-sizing:border-box;
  9183. width:100%;
  9184. }
  9185. #u12991_text {
  9186. border-width:0px;
  9187. white-space:nowrap;
  9188. text-transform:none;
  9189. }
  9190. #u12989_children {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:0px;
  9194. top:0px;
  9195. width:0px;
  9196. height:0px;
  9197. }
  9198. #u12992 {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:20px;
  9202. top:20px;
  9203. width:59px;
  9204. height:20px;
  9205. transition:none;
  9206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9207. font-weight:400;
  9208. font-style:normal;
  9209. }
  9210. #u12993 {
  9211. border-width:0px;
  9212. position:absolute;
  9213. left:6px;
  9214. top:6px;
  9215. width:9px;
  9216. height:9px;
  9217. display:flex;
  9218. transition:none;
  9219. }
  9220. #u12993 .text {
  9221. position:absolute;
  9222. align-self:center;
  9223. padding:2px 2px 2px 2px;
  9224. box-sizing:border-box;
  9225. width:100%;
  9226. }
  9227. #u12993_img {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:0px;
  9231. top:0px;
  9232. width:9px;
  9233. height:9px;
  9234. }
  9235. #u12993_img.selected {
  9236. }
  9237. #u12993.selected {
  9238. }
  9239. #u12993_text {
  9240. border-width:0px;
  9241. word-wrap:break-word;
  9242. text-transform:none;
  9243. visibility:hidden;
  9244. }
  9245. #u12994_div {
  9246. border-width:0px;
  9247. position:absolute;
  9248. left:0px;
  9249. top:0px;
  9250. width:37px;
  9251. height:20px;
  9252. background:inherit;
  9253. background-color:rgba(255, 255, 255, 0);
  9254. border-radius:0px;
  9255. filter:drop-shadow(none);
  9256. transition:none;
  9257. }
  9258. #u12994 {
  9259. border-width:0px;
  9260. position:absolute;
  9261. left:22px;
  9262. top:0px;
  9263. width:37px;
  9264. height:20px;
  9265. display:flex;
  9266. transition:none;
  9267. transform-origin:50% 50%;
  9268. }
  9269. #u12994 .text {
  9270. position:absolute;
  9271. align-self:center;
  9272. padding:2px 2px 2px 3px;
  9273. box-sizing:border-box;
  9274. width:100%;
  9275. }
  9276. #u12994_text {
  9277. border-width:0px;
  9278. white-space:nowrap;
  9279. text-transform:none;
  9280. }
  9281. #u12992_children {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:0px;
  9287. height:0px;
  9288. }
  9289. #u12995 {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:20px;
  9293. top:20px;
  9294. width:67px;
  9295. height:20px;
  9296. transition:none;
  9297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9298. font-weight:400;
  9299. font-style:normal;
  9300. }
  9301. #u12996 {
  9302. border-width:0px;
  9303. position:absolute;
  9304. left:6px;
  9305. top:6px;
  9306. width:9px;
  9307. height:9px;
  9308. display:flex;
  9309. transition:none;
  9310. }
  9311. #u12996 .text {
  9312. position:absolute;
  9313. align-self:center;
  9314. padding:2px 2px 2px 2px;
  9315. box-sizing:border-box;
  9316. width:100%;
  9317. }
  9318. #u12996_img {
  9319. border-width:0px;
  9320. position:absolute;
  9321. left:0px;
  9322. top:0px;
  9323. width:9px;
  9324. height:9px;
  9325. }
  9326. #u12996_img.selected {
  9327. }
  9328. #u12996.selected {
  9329. }
  9330. #u12996_text {
  9331. border-width:0px;
  9332. word-wrap:break-word;
  9333. text-transform:none;
  9334. visibility:hidden;
  9335. }
  9336. #u12997_div {
  9337. border-width:0px;
  9338. position:absolute;
  9339. left:0px;
  9340. top:0px;
  9341. width:45px;
  9342. height:20px;
  9343. background:inherit;
  9344. background-color:rgba(255, 255, 255, 0);
  9345. border-radius:0px;
  9346. filter:drop-shadow(none);
  9347. transition:none;
  9348. }
  9349. #u12997 {
  9350. border-width:0px;
  9351. position:absolute;
  9352. left:22px;
  9353. top:0px;
  9354. width:45px;
  9355. height:20px;
  9356. display:flex;
  9357. transition:none;
  9358. transform-origin:50% 50%;
  9359. }
  9360. #u12997 .text {
  9361. position:absolute;
  9362. align-self:center;
  9363. padding:2px 2px 2px 3px;
  9364. box-sizing:border-box;
  9365. width:100%;
  9366. }
  9367. #u12997_text {
  9368. border-width:0px;
  9369. white-space:nowrap;
  9370. text-transform:none;
  9371. }
  9372. #u12995_children {
  9373. border-width:0px;
  9374. position:absolute;
  9375. left:0px;
  9376. top:0px;
  9377. width:0px;
  9378. height:0px;
  9379. }
  9380. #u12998 {
  9381. border-width:0px;
  9382. position:absolute;
  9383. left:20px;
  9384. top:20px;
  9385. width:59px;
  9386. height:20px;
  9387. transition:none;
  9388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9389. font-weight:400;
  9390. font-style:normal;
  9391. }
  9392. #u12999_div {
  9393. border-width:0px;
  9394. position:absolute;
  9395. left:0px;
  9396. top:0px;
  9397. width:37px;
  9398. height:20px;
  9399. background:inherit;
  9400. background-color:rgba(255, 255, 255, 0);
  9401. border-radius:0px;
  9402. filter:drop-shadow(none);
  9403. transition:none;
  9404. }
  9405. #u12999 {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:22px;
  9409. top:0px;
  9410. width:37px;
  9411. height:20px;
  9412. display:flex;
  9413. transition:none;
  9414. transform-origin:50% 50%;
  9415. }
  9416. #u12999 .text {
  9417. position:absolute;
  9418. align-self:center;
  9419. padding:2px 2px 2px 3px;
  9420. box-sizing:border-box;
  9421. width:100%;
  9422. }
  9423. #u12999_text {
  9424. border-width:0px;
  9425. white-space:nowrap;
  9426. text-transform:none;
  9427. }
  9428. #u13000 {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:20px;
  9432. top:40px;
  9433. width:62px;
  9434. height:20px;
  9435. transition:none;
  9436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9437. font-weight:400;
  9438. font-style:normal;
  9439. color:#1890FF;
  9440. }
  9441. #u13001_div {
  9442. border-width:0px;
  9443. position:absolute;
  9444. left:0px;
  9445. top:0px;
  9446. width:40px;
  9447. height:20px;
  9448. background:inherit;
  9449. background-color:rgba(255, 255, 255, 0);
  9450. border-radius:0px;
  9451. filter:drop-shadow(none);
  9452. transition:none;
  9453. }
  9454. #u13001 {
  9455. border-width:0px;
  9456. position:absolute;
  9457. left:22px;
  9458. top:0px;
  9459. width:40px;
  9460. height:20px;
  9461. display:flex;
  9462. transition:none;
  9463. transform-origin:50% 50%;
  9464. }
  9465. #u13001 .text {
  9466. position:absolute;
  9467. align-self:center;
  9468. padding:2px 2px 2px 3px;
  9469. box-sizing:border-box;
  9470. width:100%;
  9471. }
  9472. #u13001_text {
  9473. border-width:0px;
  9474. white-space:nowrap;
  9475. text-transform:none;
  9476. }
  9477. #u13002 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:20px;
  9481. top:60px;
  9482. width:62px;
  9483. height:20px;
  9484. transition:none;
  9485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9486. font-weight:400;
  9487. font-style:normal;
  9488. }
  9489. #u13003_div {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:0px;
  9493. top:0px;
  9494. width:40px;
  9495. height:20px;
  9496. background:inherit;
  9497. background-color:rgba(255, 255, 255, 0);
  9498. border-radius:0px;
  9499. filter:drop-shadow(none);
  9500. transition:none;
  9501. }
  9502. #u13003 {
  9503. border-width:0px;
  9504. position:absolute;
  9505. left:22px;
  9506. top:0px;
  9507. width:40px;
  9508. height:20px;
  9509. display:flex;
  9510. transition:none;
  9511. transform-origin:50% 50%;
  9512. }
  9513. #u13003 .text {
  9514. position:absolute;
  9515. align-self:center;
  9516. padding:2px 2px 2px 3px;
  9517. box-sizing:border-box;
  9518. width:100%;
  9519. }
  9520. #u13003_text {
  9521. border-width:0px;
  9522. white-space:nowrap;
  9523. text-transform:none;
  9524. }
  9525. #u13004 {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:20px;
  9529. top:80px;
  9530. width:62px;
  9531. height:20px;
  9532. transition:none;
  9533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9534. font-weight:400;
  9535. font-style:normal;
  9536. }
  9537. #u13005_div {
  9538. border-width:0px;
  9539. position:absolute;
  9540. left:0px;
  9541. top:0px;
  9542. width:40px;
  9543. height:20px;
  9544. background:inherit;
  9545. background-color:rgba(255, 255, 255, 0);
  9546. border-radius:0px;
  9547. filter:drop-shadow(none);
  9548. transition:none;
  9549. }
  9550. #u13005 {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:22px;
  9554. top:0px;
  9555. width:40px;
  9556. height:20px;
  9557. display:flex;
  9558. transition:none;
  9559. transform-origin:50% 50%;
  9560. }
  9561. #u13005 .text {
  9562. position:absolute;
  9563. align-self:center;
  9564. padding:2px 2px 2px 3px;
  9565. box-sizing:border-box;
  9566. width:100%;
  9567. }
  9568. #u13005_text {
  9569. border-width:0px;
  9570. white-space:nowrap;
  9571. text-transform:none;
  9572. }
  9573. #u13006 {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:20px;
  9577. top:100px;
  9578. width:64px;
  9579. height:20px;
  9580. transition:none;
  9581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9582. font-weight:400;
  9583. font-style:normal;
  9584. }
  9585. #u13007_div {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:0px;
  9589. top:0px;
  9590. width:42px;
  9591. height:20px;
  9592. background:inherit;
  9593. background-color:rgba(255, 255, 255, 0);
  9594. border-radius:0px;
  9595. filter:drop-shadow(none);
  9596. transition:none;
  9597. }
  9598. #u13007 {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:22px;
  9602. top:0px;
  9603. width:42px;
  9604. height:20px;
  9605. display:flex;
  9606. transition:none;
  9607. transform-origin:50% 50%;
  9608. }
  9609. #u13007 .text {
  9610. position:absolute;
  9611. align-self:center;
  9612. padding:2px 2px 2px 3px;
  9613. box-sizing:border-box;
  9614. width:100%;
  9615. }
  9616. #u13007_text {
  9617. border-width:0px;
  9618. white-space:nowrap;
  9619. text-transform:none;
  9620. }
  9621. #u13008 {
  9622. border-width:0px;
  9623. position:absolute;
  9624. left:20px;
  9625. top:120px;
  9626. width:54px;
  9627. height:20px;
  9628. transition:none;
  9629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9630. font-weight:400;
  9631. font-style:normal;
  9632. }
  9633. #u13009_div {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:32px;
  9639. height:20px;
  9640. background:inherit;
  9641. background-color:rgba(255, 255, 255, 0);
  9642. border-radius:0px;
  9643. filter:drop-shadow(none);
  9644. transition:none;
  9645. }
  9646. #u13009 {
  9647. border-width:0px;
  9648. position:absolute;
  9649. left:22px;
  9650. top:0px;
  9651. width:32px;
  9652. height:20px;
  9653. display:flex;
  9654. transition:none;
  9655. transform-origin:50% 50%;
  9656. }
  9657. #u13009 .text {
  9658. position:absolute;
  9659. align-self:center;
  9660. padding:2px 2px 2px 3px;
  9661. box-sizing:border-box;
  9662. width:100%;
  9663. }
  9664. #u13009_text {
  9665. border-width:0px;
  9666. white-space:nowrap;
  9667. text-transform:none;
  9668. }
  9669. #u13010 {
  9670. border-width:0px;
  9671. position:absolute;
  9672. left:20px;
  9673. top:160px;
  9674. width:70px;
  9675. height:20px;
  9676. transition:none;
  9677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9678. font-weight:400;
  9679. font-style:normal;
  9680. }
  9681. #u13011 {
  9682. border-width:0px;
  9683. position:absolute;
  9684. left:6px;
  9685. top:6px;
  9686. width:9px;
  9687. height:9px;
  9688. display:flex;
  9689. transition:none;
  9690. }
  9691. #u13011 .text {
  9692. position:absolute;
  9693. align-self:center;
  9694. padding:2px 2px 2px 2px;
  9695. box-sizing:border-box;
  9696. width:100%;
  9697. }
  9698. #u13011_img {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:9px;
  9704. height:9px;
  9705. }
  9706. #u13011_img.selected {
  9707. }
  9708. #u13011.selected {
  9709. }
  9710. #u13011_text {
  9711. border-width:0px;
  9712. word-wrap:break-word;
  9713. text-transform:none;
  9714. visibility:hidden;
  9715. }
  9716. #u13012_div {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:48px;
  9722. height:20px;
  9723. background:inherit;
  9724. background-color:rgba(255, 255, 255, 0);
  9725. border-radius:0px;
  9726. filter:drop-shadow(none);
  9727. transition:none;
  9728. }
  9729. #u13012 {
  9730. border-width:0px;
  9731. position:absolute;
  9732. left:22px;
  9733. top:0px;
  9734. width:48px;
  9735. height:20px;
  9736. display:flex;
  9737. transition:none;
  9738. transform-origin:50% 50%;
  9739. }
  9740. #u13012 .text {
  9741. position:absolute;
  9742. align-self:center;
  9743. padding:2px 2px 2px 3px;
  9744. box-sizing:border-box;
  9745. width:100%;
  9746. }
  9747. #u13012_text {
  9748. border-width:0px;
  9749. white-space:nowrap;
  9750. text-transform:none;
  9751. }
  9752. #u13010_children {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:0px;
  9756. top:0px;
  9757. width:0px;
  9758. height:0px;
  9759. }
  9760. #u13013 {
  9761. border-width:0px;
  9762. position:absolute;
  9763. left:20px;
  9764. top:20px;
  9765. width:59px;
  9766. height:20px;
  9767. transition:none;
  9768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9769. font-weight:400;
  9770. font-style:normal;
  9771. }
  9772. #u13014_div {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:0px;
  9776. top:0px;
  9777. width:37px;
  9778. height:20px;
  9779. background:inherit;
  9780. background-color:rgba(255, 255, 255, 0);
  9781. border-radius:0px;
  9782. filter:drop-shadow(none);
  9783. transition:none;
  9784. }
  9785. #u13014 {
  9786. border-width:0px;
  9787. position:absolute;
  9788. left:22px;
  9789. top:0px;
  9790. width:37px;
  9791. height:20px;
  9792. display:flex;
  9793. transition:none;
  9794. transform-origin:50% 50%;
  9795. }
  9796. #u13014 .text {
  9797. position:absolute;
  9798. align-self:center;
  9799. padding:2px 2px 2px 3px;
  9800. box-sizing:border-box;
  9801. width:100%;
  9802. }
  9803. #u13014_text {
  9804. border-width:0px;
  9805. white-space:nowrap;
  9806. text-transform:none;
  9807. }
  9808. #u13015 {
  9809. border-width:0px;
  9810. position:absolute;
  9811. left:20px;
  9812. top:40px;
  9813. width:62px;
  9814. height:20px;
  9815. transition:none;
  9816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9817. font-weight:400;
  9818. font-style:normal;
  9819. }
  9820. #u13016_div {
  9821. border-width:0px;
  9822. position:absolute;
  9823. left:0px;
  9824. top:0px;
  9825. width:40px;
  9826. height:20px;
  9827. background:inherit;
  9828. background-color:rgba(255, 255, 255, 0);
  9829. border-radius:0px;
  9830. filter:drop-shadow(none);
  9831. transition:none;
  9832. }
  9833. #u13016 {
  9834. border-width:0px;
  9835. position:absolute;
  9836. left:22px;
  9837. top:0px;
  9838. width:40px;
  9839. height:20px;
  9840. display:flex;
  9841. transition:none;
  9842. transform-origin:50% 50%;
  9843. }
  9844. #u13016 .text {
  9845. position:absolute;
  9846. align-self:center;
  9847. padding:2px 2px 2px 3px;
  9848. box-sizing:border-box;
  9849. width:100%;
  9850. }
  9851. #u13016_text {
  9852. border-width:0px;
  9853. white-space:nowrap;
  9854. text-transform:none;
  9855. }
  9856. #u13017 {
  9857. border-width:0px;
  9858. position:absolute;
  9859. left:20px;
  9860. top:60px;
  9861. width:62px;
  9862. height:20px;
  9863. transition:none;
  9864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9865. font-weight:400;
  9866. font-style:normal;
  9867. }
  9868. #u13018_div {
  9869. border-width:0px;
  9870. position:absolute;
  9871. left:0px;
  9872. top:0px;
  9873. width:40px;
  9874. height:20px;
  9875. background:inherit;
  9876. background-color:rgba(255, 255, 255, 0);
  9877. border-radius:0px;
  9878. filter:drop-shadow(none);
  9879. transition:none;
  9880. }
  9881. #u13018 {
  9882. border-width:0px;
  9883. position:absolute;
  9884. left:22px;
  9885. top:0px;
  9886. width:40px;
  9887. height:20px;
  9888. display:flex;
  9889. transition:none;
  9890. transform-origin:50% 50%;
  9891. }
  9892. #u13018 .text {
  9893. position:absolute;
  9894. align-self:center;
  9895. padding:2px 2px 2px 3px;
  9896. box-sizing:border-box;
  9897. width:100%;
  9898. }
  9899. #u13018_text {
  9900. border-width:0px;
  9901. white-space:nowrap;
  9902. text-transform:none;
  9903. }
  9904. #u13019 {
  9905. border-width:0px;
  9906. position:absolute;
  9907. left:20px;
  9908. top:80px;
  9909. width:62px;
  9910. height:20px;
  9911. transition:none;
  9912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9913. font-weight:400;
  9914. font-style:normal;
  9915. }
  9916. #u13020_div {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:0px;
  9920. top:0px;
  9921. width:40px;
  9922. height:20px;
  9923. background:inherit;
  9924. background-color:rgba(255, 255, 255, 0);
  9925. border-radius:0px;
  9926. filter:drop-shadow(none);
  9927. transition:none;
  9928. }
  9929. #u13020 {
  9930. border-width:0px;
  9931. position:absolute;
  9932. left:22px;
  9933. top:0px;
  9934. width:40px;
  9935. height:20px;
  9936. display:flex;
  9937. transition:none;
  9938. transform-origin:50% 50%;
  9939. }
  9940. #u13020 .text {
  9941. position:absolute;
  9942. align-self:center;
  9943. padding:2px 2px 2px 3px;
  9944. box-sizing:border-box;
  9945. width:100%;
  9946. }
  9947. #u13020_text {
  9948. border-width:0px;
  9949. white-space:nowrap;
  9950. text-transform:none;
  9951. }
  9952. #u13021 {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:20px;
  9956. top:100px;
  9957. width:64px;
  9958. height:20px;
  9959. transition:none;
  9960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9961. font-weight:400;
  9962. font-style:normal;
  9963. }
  9964. #u13022_div {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:0px;
  9968. top:0px;
  9969. width:42px;
  9970. height:20px;
  9971. background:inherit;
  9972. background-color:rgba(255, 255, 255, 0);
  9973. border-radius:0px;
  9974. filter:drop-shadow(none);
  9975. transition:none;
  9976. }
  9977. #u13022 {
  9978. border-width:0px;
  9979. position:absolute;
  9980. left:22px;
  9981. top:0px;
  9982. width:42px;
  9983. height:20px;
  9984. display:flex;
  9985. transition:none;
  9986. transform-origin:50% 50%;
  9987. }
  9988. #u13022 .text {
  9989. position:absolute;
  9990. align-self:center;
  9991. padding:2px 2px 2px 3px;
  9992. box-sizing:border-box;
  9993. width:100%;
  9994. }
  9995. #u13022_text {
  9996. border-width:0px;
  9997. white-space:nowrap;
  9998. text-transform:none;
  9999. }
  10000. #u13023 {
  10001. border-width:0px;
  10002. position:absolute;
  10003. left:20px;
  10004. top:120px;
  10005. width:54px;
  10006. height:20px;
  10007. transition:none;
  10008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10009. font-weight:400;
  10010. font-style:normal;
  10011. }
  10012. #u13024_div {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:0px;
  10016. top:0px;
  10017. width:32px;
  10018. height:20px;
  10019. background:inherit;
  10020. background-color:rgba(255, 255, 255, 0);
  10021. border-radius:0px;
  10022. filter:drop-shadow(none);
  10023. transition:none;
  10024. }
  10025. #u13024 {
  10026. border-width:0px;
  10027. position:absolute;
  10028. left:22px;
  10029. top:0px;
  10030. width:32px;
  10031. height:20px;
  10032. display:flex;
  10033. transition:none;
  10034. transform-origin:50% 50%;
  10035. }
  10036. #u13024 .text {
  10037. position:absolute;
  10038. align-self:center;
  10039. padding:2px 2px 2px 3px;
  10040. box-sizing:border-box;
  10041. width:100%;
  10042. }
  10043. #u13024_text {
  10044. border-width:0px;
  10045. white-space:nowrap;
  10046. text-transform:none;
  10047. }
  10048. #u13025 {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:20px;
  10052. top:320px;
  10053. width:62px;
  10054. height:20px;
  10055. transition:none;
  10056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10057. font-weight:400;
  10058. font-style:normal;
  10059. }
  10060. #u13026 {
  10061. border-width:0px;
  10062. position:absolute;
  10063. left:6px;
  10064. top:6px;
  10065. width:9px;
  10066. height:9px;
  10067. display:flex;
  10068. transition:none;
  10069. }
  10070. #u13026 .text {
  10071. position:absolute;
  10072. align-self:center;
  10073. padding:2px 2px 2px 2px;
  10074. box-sizing:border-box;
  10075. width:100%;
  10076. }
  10077. #u13026_img {
  10078. border-width:0px;
  10079. position:absolute;
  10080. left:0px;
  10081. top:0px;
  10082. width:9px;
  10083. height:9px;
  10084. }
  10085. #u13026_img.selected {
  10086. }
  10087. #u13026.selected {
  10088. }
  10089. #u13026_text {
  10090. border-width:0px;
  10091. word-wrap:break-word;
  10092. text-transform:none;
  10093. visibility:hidden;
  10094. }
  10095. #u13027_div {
  10096. border-width:0px;
  10097. position:absolute;
  10098. left:0px;
  10099. top:0px;
  10100. width:40px;
  10101. height:20px;
  10102. background:inherit;
  10103. background-color:rgba(255, 255, 255, 0);
  10104. border-radius:0px;
  10105. filter:drop-shadow(none);
  10106. transition:none;
  10107. }
  10108. #u13027 {
  10109. border-width:0px;
  10110. position:absolute;
  10111. left:22px;
  10112. top:0px;
  10113. width:40px;
  10114. height:20px;
  10115. display:flex;
  10116. transition:none;
  10117. transform-origin:50% 50%;
  10118. }
  10119. #u13027 .text {
  10120. position:absolute;
  10121. align-self:center;
  10122. padding:2px 2px 2px 3px;
  10123. box-sizing:border-box;
  10124. width:100%;
  10125. }
  10126. #u13027_text {
  10127. border-width:0px;
  10128. white-space:nowrap;
  10129. text-transform:none;
  10130. }
  10131. #u13025_children {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:0px;
  10137. height:0px;
  10138. }
  10139. #u13028 {
  10140. border-width:0px;
  10141. position:absolute;
  10142. left:20px;
  10143. top:20px;
  10144. width:59px;
  10145. height:20px;
  10146. transition:none;
  10147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10148. font-weight:400;
  10149. font-style:normal;
  10150. }
  10151. #u13029_div {
  10152. border-width:0px;
  10153. position:absolute;
  10154. left:0px;
  10155. top:0px;
  10156. width:37px;
  10157. height:20px;
  10158. background:inherit;
  10159. background-color:rgba(255, 255, 255, 0);
  10160. border-radius:0px;
  10161. filter:drop-shadow(none);
  10162. transition:none;
  10163. }
  10164. #u13029 {
  10165. border-width:0px;
  10166. position:absolute;
  10167. left:22px;
  10168. top:0px;
  10169. width:37px;
  10170. height:20px;
  10171. display:flex;
  10172. transition:none;
  10173. transform-origin:50% 50%;
  10174. }
  10175. #u13029 .text {
  10176. position:absolute;
  10177. align-self:center;
  10178. padding:2px 2px 2px 3px;
  10179. box-sizing:border-box;
  10180. width:100%;
  10181. }
  10182. #u13029_text {
  10183. border-width:0px;
  10184. white-space:nowrap;
  10185. text-transform:none;
  10186. }
  10187. #u13030 {
  10188. border-width:0px;
  10189. position:absolute;
  10190. left:20px;
  10191. top:40px;
  10192. width:62px;
  10193. height:20px;
  10194. transition:none;
  10195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10196. font-weight:400;
  10197. font-style:normal;
  10198. }
  10199. #u13031_div {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:0px;
  10203. top:0px;
  10204. width:40px;
  10205. height:20px;
  10206. background:inherit;
  10207. background-color:rgba(255, 255, 255, 0);
  10208. border-radius:0px;
  10209. filter:drop-shadow(none);
  10210. transition:none;
  10211. }
  10212. #u13031 {
  10213. border-width:0px;
  10214. position:absolute;
  10215. left:22px;
  10216. top:0px;
  10217. width:40px;
  10218. height:20px;
  10219. display:flex;
  10220. transition:none;
  10221. transform-origin:50% 50%;
  10222. }
  10223. #u13031 .text {
  10224. position:absolute;
  10225. align-self:center;
  10226. padding:2px 2px 2px 3px;
  10227. box-sizing:border-box;
  10228. width:100%;
  10229. }
  10230. #u13031_text {
  10231. border-width:0px;
  10232. white-space:nowrap;
  10233. text-transform:none;
  10234. }
  10235. #u13032 {
  10236. border-width:0px;
  10237. position:absolute;
  10238. left:20px;
  10239. top:60px;
  10240. width:62px;
  10241. height:20px;
  10242. transition:none;
  10243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10244. font-weight:400;
  10245. font-style:normal;
  10246. }
  10247. #u13033_div {
  10248. border-width:0px;
  10249. position:absolute;
  10250. left:0px;
  10251. top:0px;
  10252. width:40px;
  10253. height:20px;
  10254. background:inherit;
  10255. background-color:rgba(255, 255, 255, 0);
  10256. border-radius:0px;
  10257. filter:drop-shadow(none);
  10258. transition:none;
  10259. }
  10260. #u13033 {
  10261. border-width:0px;
  10262. position:absolute;
  10263. left:22px;
  10264. top:0px;
  10265. width:40px;
  10266. height:20px;
  10267. display:flex;
  10268. transition:none;
  10269. transform-origin:50% 50%;
  10270. }
  10271. #u13033 .text {
  10272. position:absolute;
  10273. align-self:center;
  10274. padding:2px 2px 2px 3px;
  10275. box-sizing:border-box;
  10276. width:100%;
  10277. }
  10278. #u13033_text {
  10279. border-width:0px;
  10280. white-space:nowrap;
  10281. text-transform:none;
  10282. }
  10283. #u13034 {
  10284. border-width:0px;
  10285. position:absolute;
  10286. left:20px;
  10287. top:80px;
  10288. width:64px;
  10289. height:20px;
  10290. transition:none;
  10291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10292. font-weight:400;
  10293. font-style:normal;
  10294. }
  10295. #u13035_div {
  10296. border-width:0px;
  10297. position:absolute;
  10298. left:0px;
  10299. top:0px;
  10300. width:42px;
  10301. height:20px;
  10302. background:inherit;
  10303. background-color:rgba(255, 255, 255, 0);
  10304. border-radius:0px;
  10305. filter:drop-shadow(none);
  10306. transition:none;
  10307. }
  10308. #u13035 {
  10309. border-width:0px;
  10310. position:absolute;
  10311. left:22px;
  10312. top:0px;
  10313. width:42px;
  10314. height:20px;
  10315. display:flex;
  10316. transition:none;
  10317. transform-origin:50% 50%;
  10318. }
  10319. #u13035 .text {
  10320. position:absolute;
  10321. align-self:center;
  10322. padding:2px 2px 2px 3px;
  10323. box-sizing:border-box;
  10324. width:100%;
  10325. }
  10326. #u13035_text {
  10327. border-width:0px;
  10328. white-space:nowrap;
  10329. text-transform:none;
  10330. }
  10331. #u13036 {
  10332. border-width:0px;
  10333. position:absolute;
  10334. left:20px;
  10335. top:100px;
  10336. width:54px;
  10337. height:20px;
  10338. transition:none;
  10339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10340. font-weight:400;
  10341. font-style:normal;
  10342. }
  10343. #u13037_div {
  10344. border-width:0px;
  10345. position:absolute;
  10346. left:0px;
  10347. top:0px;
  10348. width:32px;
  10349. height:20px;
  10350. background:inherit;
  10351. background-color:rgba(255, 255, 255, 0);
  10352. border-radius:0px;
  10353. filter:drop-shadow(none);
  10354. transition:none;
  10355. }
  10356. #u13037 {
  10357. border-width:0px;
  10358. position:absolute;
  10359. left:22px;
  10360. top:0px;
  10361. width:32px;
  10362. height:20px;
  10363. display:flex;
  10364. transition:none;
  10365. transform-origin:50% 50%;
  10366. }
  10367. #u13037 .text {
  10368. position:absolute;
  10369. align-self:center;
  10370. padding:2px 2px 2px 3px;
  10371. box-sizing:border-box;
  10372. width:100%;
  10373. }
  10374. #u13037_text {
  10375. border-width:0px;
  10376. white-space:nowrap;
  10377. text-transform:none;
  10378. }
  10379. #u13038 {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:20px;
  10383. top:440px;
  10384. width:62px;
  10385. height:20px;
  10386. transition:none;
  10387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10388. font-weight:400;
  10389. font-style:normal;
  10390. }
  10391. #u13039 {
  10392. border-width:0px;
  10393. position:absolute;
  10394. left:6px;
  10395. top:6px;
  10396. width:9px;
  10397. height:9px;
  10398. display:flex;
  10399. transition:none;
  10400. }
  10401. #u13039 .text {
  10402. position:absolute;
  10403. align-self:center;
  10404. padding:2px 2px 2px 2px;
  10405. box-sizing:border-box;
  10406. width:100%;
  10407. }
  10408. #u13039_img {
  10409. border-width:0px;
  10410. position:absolute;
  10411. left:0px;
  10412. top:0px;
  10413. width:9px;
  10414. height:9px;
  10415. }
  10416. #u13039_img.selected {
  10417. }
  10418. #u13039.selected {
  10419. }
  10420. #u13039_text {
  10421. border-width:0px;
  10422. word-wrap:break-word;
  10423. text-transform:none;
  10424. visibility:hidden;
  10425. }
  10426. #u13040_div {
  10427. border-width:0px;
  10428. position:absolute;
  10429. left:0px;
  10430. top:0px;
  10431. width:40px;
  10432. height:20px;
  10433. background:inherit;
  10434. background-color:rgba(255, 255, 255, 0);
  10435. border-radius:0px;
  10436. filter:drop-shadow(none);
  10437. transition:none;
  10438. }
  10439. #u13040 {
  10440. border-width:0px;
  10441. position:absolute;
  10442. left:22px;
  10443. top:0px;
  10444. width:40px;
  10445. height:20px;
  10446. display:flex;
  10447. transition:none;
  10448. transform-origin:50% 50%;
  10449. }
  10450. #u13040 .text {
  10451. position:absolute;
  10452. align-self:center;
  10453. padding:2px 2px 2px 3px;
  10454. box-sizing:border-box;
  10455. width:100%;
  10456. }
  10457. #u13040_text {
  10458. border-width:0px;
  10459. white-space:nowrap;
  10460. text-transform:none;
  10461. }
  10462. #u13038_children {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:0px;
  10466. top:0px;
  10467. width:0px;
  10468. height:0px;
  10469. }
  10470. #u13041 {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:20px;
  10474. top:20px;
  10475. width:97px;
  10476. height:20px;
  10477. transition:none;
  10478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10479. font-weight:400;
  10480. font-style:normal;
  10481. }
  10482. #u13042_div {
  10483. border-width:0px;
  10484. position:absolute;
  10485. left:0px;
  10486. top:0px;
  10487. width:75px;
  10488. height:20px;
  10489. background:inherit;
  10490. background-color:rgba(255, 255, 255, 0);
  10491. border-radius:0px;
  10492. filter:drop-shadow(none);
  10493. transition:none;
  10494. }
  10495. #u13042 {
  10496. border-width:0px;
  10497. position:absolute;
  10498. left:22px;
  10499. top:0px;
  10500. width:75px;
  10501. height:20px;
  10502. display:flex;
  10503. transition:none;
  10504. transform-origin:50% 50%;
  10505. }
  10506. #u13042 .text {
  10507. position:absolute;
  10508. align-self:center;
  10509. padding:2px 2px 2px 3px;
  10510. box-sizing:border-box;
  10511. width:100%;
  10512. }
  10513. #u13042_text {
  10514. border-width:0px;
  10515. white-space:nowrap;
  10516. text-transform:none;
  10517. }
  10518. #u13043 {
  10519. border-width:0px;
  10520. position:absolute;
  10521. left:20px;
  10522. top:40px;
  10523. width:97px;
  10524. height:20px;
  10525. transition:none;
  10526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10527. font-weight:400;
  10528. font-style:normal;
  10529. }
  10530. #u13044_div {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:0px;
  10534. top:0px;
  10535. width:75px;
  10536. height:20px;
  10537. background:inherit;
  10538. background-color:rgba(255, 255, 255, 0);
  10539. border-radius:0px;
  10540. filter:drop-shadow(none);
  10541. transition:none;
  10542. }
  10543. #u13044 {
  10544. border-width:0px;
  10545. position:absolute;
  10546. left:22px;
  10547. top:0px;
  10548. width:75px;
  10549. height:20px;
  10550. display:flex;
  10551. transition:none;
  10552. transform-origin:50% 50%;
  10553. }
  10554. #u13044 .text {
  10555. position:absolute;
  10556. align-self:center;
  10557. padding:2px 2px 2px 3px;
  10558. box-sizing:border-box;
  10559. width:100%;
  10560. }
  10561. #u13044_text {
  10562. border-width:0px;
  10563. white-space:nowrap;
  10564. text-transform:none;
  10565. }
  10566. #u13045 {
  10567. border-width:0px;
  10568. position:absolute;
  10569. left:0px;
  10570. top:0px;
  10571. width:0px;
  10572. height:0px;
  10573. }
  10574. #u13046_div {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:0px;
  10578. top:0px;
  10579. width:170px;
  10580. height:30px;
  10581. background:inherit;
  10582. background-color:rgba(255, 255, 255, 1);
  10583. box-sizing:border-box;
  10584. border-width:1px;
  10585. border-style:solid;
  10586. border-color:rgba(242, 242, 242, 1);
  10587. border-radius:4px;
  10588. filter:drop-shadow(none);
  10589. transition:none;
  10590. font-family:"Microsoft YaHei", sans-serif;
  10591. font-weight:400;
  10592. font-style:normal;
  10593. font-size:14px;
  10594. color:#CCCCCC;
  10595. text-align:left;
  10596. }
  10597. #u13046 {
  10598. border-width:0px;
  10599. position:absolute;
  10600. left:350px;
  10601. top:199px;
  10602. width:170px;
  10603. height:30px;
  10604. display:flex;
  10605. transition:none;
  10606. transform-origin:50% 50%;
  10607. font-family:"Microsoft YaHei", sans-serif;
  10608. font-weight:400;
  10609. font-style:normal;
  10610. font-size:14px;
  10611. color:#CCCCCC;
  10612. text-align:left;
  10613. }
  10614. #u13046 .text {
  10615. position:absolute;
  10616. align-self:center;
  10617. padding:2px 8px 2px 8px;
  10618. box-sizing:border-box;
  10619. width:100%;
  10620. }
  10621. #u13046_text {
  10622. border-width:0px;
  10623. word-wrap:break-word;
  10624. text-transform:none;
  10625. visibility:hidden;
  10626. }
  10627. #u13047_input {
  10628. position:absolute;
  10629. left:0px;
  10630. top:0px;
  10631. width:133px;
  10632. height:26px;
  10633. padding:2px 2px 2px 2px;
  10634. font-family:"Microsoft YaHei", sans-serif;
  10635. font-weight:400;
  10636. font-style:normal;
  10637. font-size:14px;
  10638. letter-spacing:normal;
  10639. color:#000000;
  10640. vertical-align:none;
  10641. text-align:left;
  10642. text-transform:none;
  10643. background-color:transparent;
  10644. border-color:transparent;
  10645. }
  10646. #u13047_input.hint {
  10647. position:absolute;
  10648. left:0px;
  10649. top:0px;
  10650. width:133px;
  10651. height:26px;
  10652. padding:2px 2px 2px 2px;
  10653. font-family:"Microsoft YaHei", sans-serif;
  10654. font-weight:400;
  10655. font-style:normal;
  10656. font-size:12px;
  10657. letter-spacing:normal;
  10658. color:#AAAAAA;
  10659. vertical-align:none;
  10660. text-align:left;
  10661. text-transform:none;
  10662. background-color:transparent;
  10663. border-color:transparent;
  10664. }
  10665. #u13047_input.disabled {
  10666. position:absolute;
  10667. left:0px;
  10668. top:0px;
  10669. width:133px;
  10670. height:26px;
  10671. padding:2px 2px 2px 2px;
  10672. font-family:"Microsoft YaHei", sans-serif;
  10673. font-weight:400;
  10674. font-style:normal;
  10675. font-size:14px;
  10676. letter-spacing:normal;
  10677. color:#000000;
  10678. vertical-align:none;
  10679. text-align:left;
  10680. text-transform:none;
  10681. background-color:transparent;
  10682. border-color:transparent;
  10683. }
  10684. #u13047_input.hint.disabled {
  10685. position:absolute;
  10686. left:0px;
  10687. top:0px;
  10688. width:133px;
  10689. height:26px;
  10690. padding:2px 2px 2px 2px;
  10691. font-family:"Microsoft YaHei", sans-serif;
  10692. font-weight:400;
  10693. font-style:normal;
  10694. font-size:12px;
  10695. letter-spacing:normal;
  10696. color:#AAAAAA;
  10697. vertical-align:none;
  10698. text-align:left;
  10699. text-transform:none;
  10700. background-color:transparent;
  10701. border-color:transparent;
  10702. }
  10703. #u13047_div {
  10704. border-width:0px;
  10705. position:absolute;
  10706. left:0px;
  10707. top:0px;
  10708. width:133px;
  10709. height:26px;
  10710. background:inherit;
  10711. background-color:rgba(255, 255, 255, 1);
  10712. border-radius:0px;
  10713. filter:drop-shadow(none);
  10714. transition:none;
  10715. font-family:"Microsoft YaHei", sans-serif;
  10716. font-weight:400;
  10717. font-style:normal;
  10718. font-size:14px;
  10719. }
  10720. #u13047 {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:355px;
  10724. top:201px;
  10725. width:133px;
  10726. height:26px;
  10727. display:flex;
  10728. transition:none;
  10729. transform-origin:50% 50%;
  10730. font-family:"Microsoft YaHei", sans-serif;
  10731. font-weight:400;
  10732. font-style:normal;
  10733. font-size:14px;
  10734. }
  10735. #u13047 .text {
  10736. position:absolute;
  10737. align-self:center;
  10738. padding:2px 2px 2px 2px;
  10739. box-sizing:border-box;
  10740. width:100%;
  10741. }
  10742. #u13047_div.hint {
  10743. border-width:0px;
  10744. position:absolute;
  10745. left:0px;
  10746. top:0px;
  10747. width:133px;
  10748. height:26px;
  10749. background:inherit;
  10750. background-color:rgba(255, 255, 255, 1);
  10751. border-radius:0px;
  10752. filter:drop-shadow(none);
  10753. transition:none;
  10754. font-family:"Microsoft YaHei", sans-serif;
  10755. font-weight:400;
  10756. font-style:normal;
  10757. font-size:14px;
  10758. }
  10759. #u13047.hint {
  10760. }
  10761. #u13047_div.disabled {
  10762. border-width:0px;
  10763. position:absolute;
  10764. left:0px;
  10765. top:0px;
  10766. width:133px;
  10767. height:26px;
  10768. background:inherit;
  10769. background-color:rgba(240, 240, 240, 1);
  10770. border-radius:0px;
  10771. filter:drop-shadow(none);
  10772. transition:none;
  10773. font-family:"Microsoft YaHei", sans-serif;
  10774. font-weight:400;
  10775. font-style:normal;
  10776. font-size:14px;
  10777. }
  10778. #u13047.disabled {
  10779. }
  10780. #u13047_div.hint.disabled {
  10781. border-width:0px;
  10782. position:absolute;
  10783. left:0px;
  10784. top:0px;
  10785. width:133px;
  10786. height:26px;
  10787. background:inherit;
  10788. background-color:rgba(240, 240, 240, 1);
  10789. border-radius:0px;
  10790. filter:drop-shadow(none);
  10791. transition:none;
  10792. font-family:"Microsoft YaHei", sans-serif;
  10793. font-weight:400;
  10794. font-style:normal;
  10795. font-size:14px;
  10796. }
  10797. #u13047.hint.disabled {
  10798. }
  10799. #u13048 {
  10800. border-width:0px;
  10801. position:absolute;
  10802. left:496px;
  10803. top:208px;
  10804. width:14px;
  10805. height:14px;
  10806. display:flex;
  10807. transition:none;
  10808. }
  10809. #u13048 .text {
  10810. position:absolute;
  10811. align-self:center;
  10812. padding:2px 2px 2px 2px;
  10813. box-sizing:border-box;
  10814. width:100%;
  10815. }
  10816. #u13048_img {
  10817. border-width:0px;
  10818. position:absolute;
  10819. left:0px;
  10820. top:0px;
  10821. width:14px;
  10822. height:14px;
  10823. }
  10824. #u13048_text {
  10825. border-width:0px;
  10826. word-wrap:break-word;
  10827. text-transform:none;
  10828. visibility:hidden;
  10829. }
  10830. #u13049 {
  10831. border-width:0px;
  10832. position:absolute;
  10833. left:0px;
  10834. top:0px;
  10835. width:0px;
  10836. height:0px;
  10837. }
  10838. #u13050_div {
  10839. border-width:0px;
  10840. position:absolute;
  10841. left:0px;
  10842. top:0px;
  10843. width:109px;
  10844. height:30px;
  10845. background:inherit;
  10846. background-color:rgba(255, 255, 255, 0);
  10847. border-radius:0px;
  10848. filter:drop-shadow(none);
  10849. transition:none;
  10850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10851. font-weight:400;
  10852. font-style:normal;
  10853. font-size:18px;
  10854. color:#000000;
  10855. line-height:30px;
  10856. }
  10857. #u13050 {
  10858. border-width:0px;
  10859. position:absolute;
  10860. left:350px;
  10861. top:160px;
  10862. width:109px;
  10863. height:30px;
  10864. display:flex;
  10865. transition:none;
  10866. transform-origin:50% 50%;
  10867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10868. font-weight:400;
  10869. font-style:normal;
  10870. font-size:18px;
  10871. color:#000000;
  10872. line-height:30px;
  10873. }
  10874. #u13050 .text {
  10875. position:absolute;
  10876. align-self:flex-start;
  10877. padding:0px 0px 0px 0px;
  10878. box-sizing:border-box;
  10879. width:100%;
  10880. }
  10881. #u13050_text {
  10882. border-width:0px;
  10883. white-space:nowrap;
  10884. text-transform:none;
  10885. }
  10886. #u13051 {
  10887. border-width:0px;
  10888. position:absolute;
  10889. left:471px;
  10890. top:171px;
  10891. width:12px;
  10892. height:7px;
  10893. display:flex;
  10894. transition:none;
  10895. }
  10896. #u13051 .text {
  10897. position:absolute;
  10898. align-self:center;
  10899. padding:2px 2px 2px 2px;
  10900. box-sizing:border-box;
  10901. width:100%;
  10902. }
  10903. #u13051_img {
  10904. border-width:0px;
  10905. position:absolute;
  10906. left:0px;
  10907. top:0px;
  10908. width:12px;
  10909. height:7px;
  10910. }
  10911. #u13051_text {
  10912. border-width:0px;
  10913. word-wrap:break-word;
  10914. text-transform:none;
  10915. visibility:hidden;
  10916. }
  10917. #u13052_div {
  10918. border-width:0px;
  10919. position:absolute;
  10920. left:0px;
  10921. top:0px;
  10922. width:145px;
  10923. height:30px;
  10924. background:inherit;
  10925. background-color:rgba(255, 255, 255, 0);
  10926. border-radius:0px;
  10927. filter:drop-shadow(none);
  10928. transition:none;
  10929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10930. font-weight:400;
  10931. font-style:normal;
  10932. font-size:18px;
  10933. color:#000000;
  10934. line-height:30px;
  10935. }
  10936. #u13052 {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:563px;
  10940. top:160px;
  10941. width:145px;
  10942. height:30px;
  10943. display:flex;
  10944. transition:none;
  10945. transform-origin:50% 50%;
  10946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10947. font-weight:400;
  10948. font-style:normal;
  10949. font-size:18px;
  10950. color:#000000;
  10951. line-height:30px;
  10952. }
  10953. #u13052 .text {
  10954. position:absolute;
  10955. align-self:flex-start;
  10956. padding:0px 0px 0px 0px;
  10957. box-sizing:border-box;
  10958. width:100%;
  10959. }
  10960. #u13052_text {
  10961. border-width:0px;
  10962. white-space:nowrap;
  10963. text-transform:none;
  10964. }
  10965. #u13053 {
  10966. border-width:0px;
  10967. position:absolute;
  10968. left:0px;
  10969. top:0px;
  10970. width:0px;
  10971. height:0px;
  10972. }
  10973. #u13054_div {
  10974. border-width:0px;
  10975. position:absolute;
  10976. left:0px;
  10977. top:0px;
  10978. width:140px;
  10979. height:30px;
  10980. background:inherit;
  10981. background-color:rgba(255, 255, 255, 1);
  10982. box-sizing:border-box;
  10983. border-width:1px;
  10984. border-style:solid;
  10985. border-color:rgba(215, 215, 215, 1);
  10986. border-radius:4px;
  10987. filter:drop-shadow(none);
  10988. transition:none;
  10989. font-size:14px;
  10990. }
  10991. #u13054 {
  10992. border-width:0px;
  10993. position:absolute;
  10994. left:1161px;
  10995. top:199px;
  10996. width:140px;
  10997. height:30px;
  10998. display:flex;
  10999. transition:none;
  11000. transform-origin:50% 50%;
  11001. font-size:14px;
  11002. }
  11003. #u13054 .text {
  11004. position:absolute;
  11005. align-self:center;
  11006. padding:2px 2px 2px 2px;
  11007. box-sizing:border-box;
  11008. width:100%;
  11009. }
  11010. #u13054_text {
  11011. border-width:0px;
  11012. word-wrap:break-word;
  11013. text-transform:none;
  11014. visibility:hidden;
  11015. }
  11016. #u13055_input {
  11017. position:absolute;
  11018. left:0px;
  11019. top:0px;
  11020. width:134px;
  11021. height:23px;
  11022. padding:2px 2px 2px 2px;
  11023. font-family:'ArialMT', 'Arial', sans-serif;
  11024. font-weight:400;
  11025. font-style:normal;
  11026. font-size:14px;
  11027. letter-spacing:normal;
  11028. color:#AAAAAA;
  11029. vertical-align:none;
  11030. text-align:left;
  11031. text-transform:none;
  11032. background-color:transparent;
  11033. border-color:transparent;
  11034. }
  11035. #u13055_input.disabled {
  11036. position:absolute;
  11037. left:0px;
  11038. top:0px;
  11039. width:134px;
  11040. height:23px;
  11041. padding:2px 2px 2px 2px;
  11042. font-family:'ArialMT', 'Arial', sans-serif;
  11043. font-weight:400;
  11044. font-style:normal;
  11045. font-size:14px;
  11046. letter-spacing:normal;
  11047. color:#AAAAAA;
  11048. vertical-align:none;
  11049. text-align:left;
  11050. text-transform:none;
  11051. background-color:transparent;
  11052. border-color:transparent;
  11053. }
  11054. #u13055_div {
  11055. border-width:0px;
  11056. position:absolute;
  11057. left:0px;
  11058. top:0px;
  11059. width:134px;
  11060. height:23px;
  11061. background:inherit;
  11062. background-color:rgba(255, 255, 255, 1);
  11063. border-radius:0px;
  11064. filter:drop-shadow(none);
  11065. transition:none;
  11066. font-size:14px;
  11067. color:#AAAAAA;
  11068. }
  11069. #u13055 {
  11070. border-width:0px;
  11071. position:absolute;
  11072. left:1165px;
  11073. top:201px;
  11074. width:134px;
  11075. height:23px;
  11076. display:flex;
  11077. transition:none;
  11078. transform-origin:50% 50%;
  11079. font-size:14px;
  11080. color:#AAAAAA;
  11081. }
  11082. #u13055 .text {
  11083. position:absolute;
  11084. align-self:flex-start;
  11085. padding:2px 2px 2px 2px;
  11086. box-sizing:border-box;
  11087. width:100%;
  11088. }
  11089. #u13055_div.disabled {
  11090. border-width:0px;
  11091. position:absolute;
  11092. left:0px;
  11093. top:0px;
  11094. width:134px;
  11095. height:23px;
  11096. background:inherit;
  11097. background-color:rgba(240, 240, 240, 1);
  11098. border-radius:0px;
  11099. filter:drop-shadow(none);
  11100. transition:none;
  11101. font-size:14px;
  11102. color:#AAAAAA;
  11103. }
  11104. #u13055.disabled {
  11105. }
  11106. .u13055_input_option {
  11107. font-size:14px;
  11108. }
  11109. #u13056_div {
  11110. border-width:0px;
  11111. position:absolute;
  11112. left:0px;
  11113. top:0px;
  11114. width:60px;
  11115. height:30px;
  11116. background:inherit;
  11117. background-color:rgba(255, 255, 255, 1);
  11118. box-sizing:border-box;
  11119. border-width:1px;
  11120. border-style:solid;
  11121. border-color:rgba(170, 170, 170, 1);
  11122. border-radius:4px;
  11123. filter:drop-shadow(none);
  11124. transition:none;
  11125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11126. font-weight:400;
  11127. font-style:normal;
  11128. font-size:14px;
  11129. }
  11130. #u13056 {
  11131. border-width:0px;
  11132. position:absolute;
  11133. left:1508px;
  11134. top:60px;
  11135. width:60px;
  11136. height:30px;
  11137. display:flex;
  11138. transition:none;
  11139. transform-origin:50% 50%;
  11140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11141. font-weight:400;
  11142. font-style:normal;
  11143. font-size:14px;
  11144. }
  11145. #u13056 .text {
  11146. position:absolute;
  11147. align-self:center;
  11148. padding:2px 2px 2px 2px;
  11149. box-sizing:border-box;
  11150. width:100%;
  11151. }
  11152. #u13056_text {
  11153. border-width:0px;
  11154. word-wrap:break-word;
  11155. text-transform:none;
  11156. }
  11157. #u13057 {
  11158. border-width:0px;
  11159. position:absolute;
  11160. left:0px;
  11161. top:0px;
  11162. width:0px;
  11163. height:0px;
  11164. }
  11165. #u13058_div {
  11166. border-width:0px;
  11167. position:absolute;
  11168. left:0px;
  11169. top:0px;
  11170. width:80px;
  11171. height:100px;
  11172. background:inherit;
  11173. background-color:rgba(255, 255, 255, 1);
  11174. box-sizing:border-box;
  11175. border-width:1px;
  11176. border-style:solid;
  11177. border-color:rgba(242, 242, 242, 1);
  11178. border-radius:4px;
  11179. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  11180. transition:none;
  11181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11182. font-weight:400;
  11183. font-style:normal;
  11184. font-size:14px;
  11185. text-align:left;
  11186. }
  11187. #u13058 {
  11188. border-width:0px;
  11189. position:absolute;
  11190. left:1488px;
  11191. top:401px;
  11192. width:80px;
  11193. height:100px;
  11194. display:flex;
  11195. transition:none;
  11196. transform-origin:50% 50%;
  11197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11198. font-weight:400;
  11199. font-style:normal;
  11200. font-size:14px;
  11201. text-align:left;
  11202. }
  11203. #u13058 .text {
  11204. position:absolute;
  11205. align-self:center;
  11206. padding:2px 2px 2px 2px;
  11207. box-sizing:border-box;
  11208. width:100%;
  11209. }
  11210. #u13058_text {
  11211. border-width:0px;
  11212. word-wrap:break-word;
  11213. text-transform:none;
  11214. visibility:hidden;
  11215. }
  11216. #u13059_div {
  11217. border-width:0px;
  11218. position:absolute;
  11219. left:0px;
  11220. top:0px;
  11221. width:66px;
  11222. height:40px;
  11223. background:inherit;
  11224. background-color:rgba(255, 255, 255, 1);
  11225. border-left:0px;
  11226. border-top:0px;
  11227. border-right:0px;
  11228. border-radius:0px;
  11229. border-bottom-right-radius:0px;
  11230. border-bottom-left-radius:0px;
  11231. filter:drop-shadow(none);
  11232. transition:none;
  11233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11234. font-weight:400;
  11235. font-style:normal;
  11236. font-size:14px;
  11237. }
  11238. #u13059 {
  11239. border-width:0px;
  11240. position:absolute;
  11241. left:1494px;
  11242. top:451px;
  11243. width:66px;
  11244. height:40px;
  11245. display:flex;
  11246. transition:none;
  11247. transform-origin:50% 50%;
  11248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11249. font-weight:400;
  11250. font-style:normal;
  11251. font-size:14px;
  11252. }
  11253. #u13059 .text {
  11254. position:absolute;
  11255. align-self:center;
  11256. padding:2px 2px 2px 2px;
  11257. box-sizing:border-box;
  11258. width:100%;
  11259. }
  11260. #u13059_text {
  11261. border-width:0px;
  11262. word-wrap:break-word;
  11263. text-transform:none;
  11264. }
  11265. #u13060_div {
  11266. border-width:0px;
  11267. position:absolute;
  11268. left:0px;
  11269. top:0px;
  11270. width:66px;
  11271. height:40px;
  11272. background:inherit;
  11273. background-color:rgba(255, 255, 255, 1);
  11274. box-sizing:border-box;
  11275. border-width:1px;
  11276. border-style:solid;
  11277. border-color:rgba(215, 215, 215, 1);
  11278. border-left:0px;
  11279. border-top:0px;
  11280. border-right:0px;
  11281. border-radius:0px;
  11282. border-bottom-right-radius:0px;
  11283. border-bottom-left-radius:0px;
  11284. filter:drop-shadow(none);
  11285. transition:none;
  11286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11287. font-weight:400;
  11288. font-style:normal;
  11289. font-size:14px;
  11290. }
  11291. #u13060 {
  11292. border-width:0px;
  11293. position:absolute;
  11294. left:1494px;
  11295. top:411px;
  11296. width:66px;
  11297. height:40px;
  11298. display:flex;
  11299. transition:none;
  11300. transform-origin:50% 50%;
  11301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11302. font-weight:400;
  11303. font-style:normal;
  11304. font-size:14px;
  11305. }
  11306. #u13060 .text {
  11307. position:absolute;
  11308. align-self:center;
  11309. padding:2px 2px 2px 2px;
  11310. box-sizing:border-box;
  11311. width:100%;
  11312. }
  11313. #u13060_text {
  11314. border-width:0px;
  11315. word-wrap:break-word;
  11316. text-transform:none;
  11317. }
  11318. #u13061 {
  11319. border-width:0px;
  11320. position:absolute;
  11321. left:120px;
  11322. top:50px;
  11323. width:201px;
  11324. height:1190px;
  11325. }
  11326. #u13062 {
  11327. border-width:0px;
  11328. position:absolute;
  11329. left:0px;
  11330. top:0px;
  11331. width:0px;
  11332. height:0px;
  11333. }
  11334. #u13063_div {
  11335. border-width:0px;
  11336. position:absolute;
  11337. left:0px;
  11338. top:0px;
  11339. width:200px;
  11340. height:1190px;
  11341. background:inherit;
  11342. background-color:rgba(255, 255, 255, 1);
  11343. border-radius:0px;
  11344. filter:drop-shadow(none);
  11345. transition:none;
  11346. }
  11347. #u13063 {
  11348. border-width:0px;
  11349. position:absolute;
  11350. left:0px;
  11351. top:0px;
  11352. width:200px;
  11353. height:1190px;
  11354. display:flex;
  11355. transition:none;
  11356. transform-origin:50% 50%;
  11357. }
  11358. #u13063 .text {
  11359. position:absolute;
  11360. align-self:center;
  11361. padding:2px 2px 2px 2px;
  11362. box-sizing:border-box;
  11363. width:100%;
  11364. }
  11365. #u13063_text {
  11366. border-width:0px;
  11367. word-wrap:break-word;
  11368. text-transform:none;
  11369. visibility:hidden;
  11370. }
  11371. #u13064_div {
  11372. border-width:0px;
  11373. position:absolute;
  11374. left:0px;
  11375. top:0px;
  11376. width:200px;
  11377. height:60px;
  11378. background:inherit;
  11379. background-color:rgba(224, 231, 247, 1);
  11380. border-radius:0px;
  11381. filter:drop-shadow(none);
  11382. transition:none;
  11383. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11384. font-weight:500;
  11385. font-style:normal;
  11386. font-size:18px;
  11387. }
  11388. #u13064 {
  11389. border-width:0px;
  11390. position:absolute;
  11391. left:0px;
  11392. top:0px;
  11393. width:200px;
  11394. height:60px;
  11395. display:flex;
  11396. transition:none;
  11397. transform-origin:50% 50%;
  11398. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11399. font-weight:500;
  11400. font-style:normal;
  11401. font-size:18px;
  11402. }
  11403. #u13064 .text {
  11404. position:absolute;
  11405. align-self:center;
  11406. padding:0px 0px 0px 20px;
  11407. box-sizing:border-box;
  11408. width:100%;
  11409. }
  11410. #u13064_text {
  11411. border-width:0px;
  11412. word-wrap:break-word;
  11413. text-transform:none;
  11414. }
  11415. #u13065_div {
  11416. border-width:0px;
  11417. position:absolute;
  11418. left:0px;
  11419. top:0px;
  11420. width:65px;
  11421. height:22px;
  11422. background:inherit;
  11423. background-color:rgba(255, 255, 255, 0);
  11424. border-radius:0px;
  11425. filter:drop-shadow(none);
  11426. transition:none;
  11427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11428. font-weight:400;
  11429. font-style:normal;
  11430. font-size:16px;
  11431. }
  11432. #u13065 {
  11433. border-width:0px;
  11434. position:absolute;
  11435. left:25px;
  11436. top:526px;
  11437. width:65px;
  11438. height:22px;
  11439. display:flex;
  11440. transition:none;
  11441. transform-origin:50% 50%;
  11442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11443. font-weight:400;
  11444. font-style:normal;
  11445. font-size:16px;
  11446. }
  11447. #u13065 .text {
  11448. position:absolute;
  11449. align-self:flex-start;
  11450. padding:0px 0px 0px 0px;
  11451. box-sizing:border-box;
  11452. width:100%;
  11453. }
  11454. #u13065_text {
  11455. border-width:0px;
  11456. white-space:nowrap;
  11457. text-transform:none;
  11458. }
  11459. #u13066_div {
  11460. border-width:0px;
  11461. position:absolute;
  11462. left:0px;
  11463. top:0px;
  11464. width:49px;
  11465. height:17px;
  11466. background:inherit;
  11467. background-color:rgba(255, 255, 255, 0);
  11468. border-radius:0px;
  11469. filter:drop-shadow(none);
  11470. transition:none;
  11471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11472. font-weight:400;
  11473. font-style:normal;
  11474. font-size:12px;
  11475. color:#AAAAAA;
  11476. }
  11477. #u13066 {
  11478. border-width:0px;
  11479. position:absolute;
  11480. left:23px;
  11481. top:489px;
  11482. width:49px;
  11483. height:17px;
  11484. display:flex;
  11485. transition:none;
  11486. transform-origin:50% 50%;
  11487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11488. font-weight:400;
  11489. font-style:normal;
  11490. font-size:12px;
  11491. color:#AAAAAA;
  11492. }
  11493. #u13066 .text {
  11494. position:absolute;
  11495. align-self:flex-start;
  11496. padding:0px 0px 0px 0px;
  11497. box-sizing:border-box;
  11498. width:100%;
  11499. }
  11500. #u13066_text {
  11501. border-width:0px;
  11502. white-space:nowrap;
  11503. text-transform:none;
  11504. }
  11505. #u13067_div {
  11506. border-width:0px;
  11507. position:absolute;
  11508. left:0px;
  11509. top:0px;
  11510. width:49px;
  11511. height:17px;
  11512. background:inherit;
  11513. background-color:rgba(255, 255, 255, 0);
  11514. border-radius:0px;
  11515. filter:drop-shadow(none);
  11516. transition:none;
  11517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11518. font-weight:400;
  11519. font-style:normal;
  11520. font-size:12px;
  11521. color:#AAAAAA;
  11522. }
  11523. #u13067 {
  11524. border-width:0px;
  11525. position:absolute;
  11526. left:24px;
  11527. top:81px;
  11528. width:49px;
  11529. height:17px;
  11530. display:flex;
  11531. transition:none;
  11532. transform-origin:50% 50%;
  11533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11534. font-weight:400;
  11535. font-style:normal;
  11536. font-size:12px;
  11537. color:#AAAAAA;
  11538. }
  11539. #u13067 .text {
  11540. position:absolute;
  11541. align-self:flex-start;
  11542. padding:0px 0px 0px 0px;
  11543. box-sizing:border-box;
  11544. width:100%;
  11545. }
  11546. #u13067_text {
  11547. border-width:0px;
  11548. white-space:nowrap;
  11549. text-transform:none;
  11550. }
  11551. #u13068_div {
  11552. border-width:0px;
  11553. position:absolute;
  11554. left:0px;
  11555. top:0px;
  11556. width:65px;
  11557. height:22px;
  11558. background:inherit;
  11559. background-color:rgba(255, 255, 255, 0);
  11560. border-radius:0px;
  11561. filter:drop-shadow(none);
  11562. transition:none;
  11563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11564. font-weight:400;
  11565. font-style:normal;
  11566. font-size:16px;
  11567. }
  11568. #u13068 {
  11569. border-width:0px;
  11570. position:absolute;
  11571. left:26px;
  11572. top:118px;
  11573. width:65px;
  11574. height:22px;
  11575. display:flex;
  11576. transition:none;
  11577. transform-origin:50% 50%;
  11578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11579. font-weight:400;
  11580. font-style:normal;
  11581. font-size:16px;
  11582. }
  11583. #u13068 .text {
  11584. position:absolute;
  11585. align-self:flex-start;
  11586. padding:0px 0px 0px 0px;
  11587. box-sizing:border-box;
  11588. width:100%;
  11589. }
  11590. #u13068_text {
  11591. border-width:0px;
  11592. white-space:nowrap;
  11593. text-transform:none;
  11594. }
  11595. #u13069 {
  11596. border-width:0px;
  11597. position:absolute;
  11598. left:0px;
  11599. top:468px;
  11600. width:200px;
  11601. height:1px;
  11602. display:flex;
  11603. transition:none;
  11604. }
  11605. #u13069 .text {
  11606. position:absolute;
  11607. align-self:center;
  11608. padding:2px 2px 2px 2px;
  11609. box-sizing:border-box;
  11610. width:100%;
  11611. }
  11612. #u13069_img {
  11613. border-width:0px;
  11614. position:absolute;
  11615. left:0px;
  11616. top:0px;
  11617. width:201px;
  11618. height:2px;
  11619. }
  11620. #u13069_text {
  11621. border-width:0px;
  11622. word-wrap:break-word;
  11623. text-transform:none;
  11624. visibility:hidden;
  11625. }
  11626. #u13070_div {
  11627. border-width:0px;
  11628. position:absolute;
  11629. left:0px;
  11630. top:0px;
  11631. width:65px;
  11632. height:22px;
  11633. background:inherit;
  11634. background-color:rgba(255, 255, 255, 0);
  11635. border-radius:0px;
  11636. filter:drop-shadow(none);
  11637. transition:none;
  11638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11639. font-weight:400;
  11640. font-style:normal;
  11641. font-size:16px;
  11642. }
  11643. #u13070 {
  11644. border-width:0px;
  11645. position:absolute;
  11646. left:25px;
  11647. top:568px;
  11648. width:65px;
  11649. height:22px;
  11650. display:flex;
  11651. transition:none;
  11652. transform-origin:50% 50%;
  11653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11654. font-weight:400;
  11655. font-style:normal;
  11656. font-size:16px;
  11657. }
  11658. #u13070 .text {
  11659. position:absolute;
  11660. align-self:flex-start;
  11661. padding:0px 0px 0px 0px;
  11662. box-sizing:border-box;
  11663. width:100%;
  11664. }
  11665. #u13070_text {
  11666. border-width:0px;
  11667. white-space:nowrap;
  11668. text-transform:none;
  11669. }
  11670. #u13071_div {
  11671. border-width:0px;
  11672. position:absolute;
  11673. left:0px;
  11674. top:0px;
  11675. width:49px;
  11676. height:17px;
  11677. background:inherit;
  11678. background-color:rgba(255, 255, 255, 0);
  11679. border-radius:0px;
  11680. filter:drop-shadow(none);
  11681. transition:none;
  11682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11683. font-weight:400;
  11684. font-style:normal;
  11685. font-size:12px;
  11686. color:#AAAAAA;
  11687. }
  11688. #u13071 {
  11689. border-width:0px;
  11690. position:absolute;
  11691. left:24px;
  11692. top:305px;
  11693. width:49px;
  11694. height:17px;
  11695. display:flex;
  11696. transition:none;
  11697. transform-origin:50% 50%;
  11698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11699. font-weight:400;
  11700. font-style:normal;
  11701. font-size:12px;
  11702. color:#AAAAAA;
  11703. }
  11704. #u13071 .text {
  11705. position:absolute;
  11706. align-self:flex-start;
  11707. padding:0px 0px 0px 0px;
  11708. box-sizing:border-box;
  11709. width:100%;
  11710. }
  11711. #u13071_text {
  11712. border-width:0px;
  11713. white-space:nowrap;
  11714. text-transform:none;
  11715. }
  11716. #u13072 {
  11717. border-width:0px;
  11718. position:absolute;
  11719. left:1px;
  11720. top:284px;
  11721. width:200px;
  11722. height:1px;
  11723. display:flex;
  11724. transition:none;
  11725. }
  11726. #u13072 .text {
  11727. position:absolute;
  11728. align-self:center;
  11729. padding:2px 2px 2px 2px;
  11730. box-sizing:border-box;
  11731. width:100%;
  11732. }
  11733. #u13072_img {
  11734. border-width:0px;
  11735. position:absolute;
  11736. left:0px;
  11737. top:0px;
  11738. width:201px;
  11739. height:2px;
  11740. }
  11741. #u13072_text {
  11742. border-width:0px;
  11743. word-wrap:break-word;
  11744. text-transform:none;
  11745. visibility:hidden;
  11746. }
  11747. #u13073_div {
  11748. border-width:0px;
  11749. position:absolute;
  11750. left:0px;
  11751. top:0px;
  11752. width:65px;
  11753. height:22px;
  11754. background:inherit;
  11755. background-color:rgba(255, 255, 255, 0);
  11756. border-radius:0px;
  11757. filter:drop-shadow(none);
  11758. transition:none;
  11759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11760. font-weight:400;
  11761. font-style:normal;
  11762. font-size:16px;
  11763. }
  11764. #u13073 {
  11765. border-width:0px;
  11766. position:absolute;
  11767. left:26px;
  11768. top:342px;
  11769. width:65px;
  11770. height:22px;
  11771. display:flex;
  11772. transition:none;
  11773. transform-origin:50% 50%;
  11774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11775. font-weight:400;
  11776. font-style:normal;
  11777. font-size:16px;
  11778. }
  11779. #u13073 .text {
  11780. position:absolute;
  11781. align-self:flex-start;
  11782. padding:0px 0px 0px 0px;
  11783. box-sizing:border-box;
  11784. width:100%;
  11785. }
  11786. #u13073_text {
  11787. border-width:0px;
  11788. white-space:nowrap;
  11789. text-transform:none;
  11790. }
  11791. #u13074_div {
  11792. border-width:0px;
  11793. position:absolute;
  11794. left:0px;
  11795. top:0px;
  11796. width:65px;
  11797. height:22px;
  11798. background:inherit;
  11799. background-color:rgba(255, 255, 255, 0);
  11800. border-radius:0px;
  11801. filter:drop-shadow(none);
  11802. transition:none;
  11803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11804. font-weight:400;
  11805. font-style:normal;
  11806. font-size:16px;
  11807. }
  11808. #u13074 {
  11809. border-width:0px;
  11810. position:absolute;
  11811. left:26px;
  11812. top:384px;
  11813. width:65px;
  11814. height:22px;
  11815. display:flex;
  11816. transition:none;
  11817. transform-origin:50% 50%;
  11818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11819. font-weight:400;
  11820. font-style:normal;
  11821. font-size:16px;
  11822. }
  11823. #u13074 .text {
  11824. position:absolute;
  11825. align-self:flex-start;
  11826. padding:0px 0px 0px 0px;
  11827. box-sizing:border-box;
  11828. width:100%;
  11829. }
  11830. #u13074_text {
  11831. border-width:0px;
  11832. white-space:nowrap;
  11833. text-transform:none;
  11834. }
  11835. #u13075_div {
  11836. border-width:0px;
  11837. position:absolute;
  11838. left:0px;
  11839. top:0px;
  11840. width:65px;
  11841. height:22px;
  11842. background:inherit;
  11843. background-color:rgba(255, 255, 255, 0);
  11844. border-radius:0px;
  11845. filter:drop-shadow(none);
  11846. transition:none;
  11847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11848. font-weight:400;
  11849. font-style:normal;
  11850. font-size:16px;
  11851. }
  11852. #u13075 {
  11853. border-width:0px;
  11854. position:absolute;
  11855. left:25px;
  11856. top:876px;
  11857. width:65px;
  11858. height:22px;
  11859. display:flex;
  11860. transition:none;
  11861. transform-origin:50% 50%;
  11862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11863. font-weight:400;
  11864. font-style:normal;
  11865. font-size:16px;
  11866. }
  11867. #u13075 .text {
  11868. position:absolute;
  11869. align-self:flex-start;
  11870. padding:0px 0px 0px 0px;
  11871. box-sizing:border-box;
  11872. width:100%;
  11873. }
  11874. #u13075_text {
  11875. border-width:0px;
  11876. white-space:nowrap;
  11877. text-transform:none;
  11878. }
  11879. #u13076_div {
  11880. border-width:0px;
  11881. position:absolute;
  11882. left:0px;
  11883. top:0px;
  11884. width:97px;
  11885. height:22px;
  11886. background:inherit;
  11887. background-color:rgba(255, 255, 255, 0);
  11888. border-radius:0px;
  11889. filter:drop-shadow(none);
  11890. transition:none;
  11891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11892. font-weight:400;
  11893. font-style:normal;
  11894. font-size:16px;
  11895. }
  11896. #u13076 {
  11897. border-width:0px;
  11898. position:absolute;
  11899. left:25px;
  11900. top:668px;
  11901. width:97px;
  11902. height:22px;
  11903. display:flex;
  11904. transition:none;
  11905. transform-origin:50% 50%;
  11906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11907. font-weight:400;
  11908. font-style:normal;
  11909. font-size:16px;
  11910. }
  11911. #u13076 .text {
  11912. position:absolute;
  11913. align-self:flex-start;
  11914. padding:0px 0px 0px 0px;
  11915. box-sizing:border-box;
  11916. width:100%;
  11917. }
  11918. #u13076_text {
  11919. border-width:0px;
  11920. white-space:nowrap;
  11921. text-transform:none;
  11922. }
  11923. #u13077_div {
  11924. border-width:0px;
  11925. position:absolute;
  11926. left:0px;
  11927. top:0px;
  11928. width:49px;
  11929. height:17px;
  11930. background:inherit;
  11931. background-color:rgba(255, 255, 255, 0);
  11932. border-radius:0px;
  11933. filter:drop-shadow(none);
  11934. transition:none;
  11935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11936. font-weight:400;
  11937. font-style:normal;
  11938. font-size:12px;
  11939. color:#AAAAAA;
  11940. }
  11941. #u13077 {
  11942. border-width:0px;
  11943. position:absolute;
  11944. left:23px;
  11945. top:631px;
  11946. width:49px;
  11947. height:17px;
  11948. display:flex;
  11949. transition:none;
  11950. transform-origin:50% 50%;
  11951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11952. font-weight:400;
  11953. font-style:normal;
  11954. font-size:12px;
  11955. color:#AAAAAA;
  11956. }
  11957. #u13077 .text {
  11958. position:absolute;
  11959. align-self:flex-start;
  11960. padding:0px 0px 0px 0px;
  11961. box-sizing:border-box;
  11962. width:100%;
  11963. }
  11964. #u13077_text {
  11965. border-width:0px;
  11966. white-space:nowrap;
  11967. text-transform:none;
  11968. }
  11969. #u13078 {
  11970. border-width:0px;
  11971. position:absolute;
  11972. left:0px;
  11973. top:610px;
  11974. width:200px;
  11975. height:1px;
  11976. display:flex;
  11977. transition:none;
  11978. }
  11979. #u13078 .text {
  11980. position:absolute;
  11981. align-self:center;
  11982. padding:2px 2px 2px 2px;
  11983. box-sizing:border-box;
  11984. width:100%;
  11985. }
  11986. #u13078_img {
  11987. border-width:0px;
  11988. position:absolute;
  11989. left:0px;
  11990. top:0px;
  11991. width:201px;
  11992. height:2px;
  11993. }
  11994. #u13078_text {
  11995. border-width:0px;
  11996. word-wrap:break-word;
  11997. text-transform:none;
  11998. visibility:hidden;
  11999. }
  12000. #u13079_div {
  12001. border-width:0px;
  12002. position:absolute;
  12003. left:0px;
  12004. top:0px;
  12005. width:97px;
  12006. height:22px;
  12007. background:inherit;
  12008. background-color:rgba(255, 255, 255, 0);
  12009. border-radius:0px;
  12010. filter:drop-shadow(none);
  12011. transition:none;
  12012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12013. font-weight:400;
  12014. font-style:normal;
  12015. font-size:16px;
  12016. }
  12017. #u13079 {
  12018. border-width:0px;
  12019. position:absolute;
  12020. left:25px;
  12021. top:750px;
  12022. width:97px;
  12023. height:22px;
  12024. display:flex;
  12025. transition:none;
  12026. transform-origin:50% 50%;
  12027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12028. font-weight:400;
  12029. font-style:normal;
  12030. font-size:16px;
  12031. }
  12032. #u13079 .text {
  12033. position:absolute;
  12034. align-self:flex-start;
  12035. padding:0px 0px 0px 0px;
  12036. box-sizing:border-box;
  12037. width:100%;
  12038. }
  12039. #u13079_text {
  12040. border-width:0px;
  12041. white-space:nowrap;
  12042. text-transform:none;
  12043. }
  12044. #u13080_div {
  12045. border-width:0px;
  12046. position:absolute;
  12047. left:0px;
  12048. top:0px;
  12049. width:97px;
  12050. height:22px;
  12051. background:inherit;
  12052. background-color:rgba(255, 255, 255, 0);
  12053. border-radius:0px;
  12054. filter:drop-shadow(none);
  12055. transition:none;
  12056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12057. font-weight:400;
  12058. font-style:normal;
  12059. font-size:16px;
  12060. }
  12061. #u13080 {
  12062. border-width:0px;
  12063. position:absolute;
  12064. left:25px;
  12065. top:792px;
  12066. width:97px;
  12067. height:22px;
  12068. display:flex;
  12069. transition:none;
  12070. transform-origin:50% 50%;
  12071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12072. font-weight:400;
  12073. font-style:normal;
  12074. font-size:16px;
  12075. }
  12076. #u13080 .text {
  12077. position:absolute;
  12078. align-self:flex-start;
  12079. padding:0px 0px 0px 0px;
  12080. box-sizing:border-box;
  12081. width:100%;
  12082. }
  12083. #u13080_text {
  12084. border-width:0px;
  12085. white-space:nowrap;
  12086. text-transform:none;
  12087. }
  12088. #u13081_div {
  12089. border-width:0px;
  12090. position:absolute;
  12091. left:0px;
  12092. top:0px;
  12093. width:65px;
  12094. height:22px;
  12095. background:inherit;
  12096. background-color:rgba(255, 255, 255, 0);
  12097. border-radius:0px;
  12098. filter:drop-shadow(none);
  12099. transition:none;
  12100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12101. font-weight:400;
  12102. font-style:normal;
  12103. font-size:16px;
  12104. }
  12105. #u13081 {
  12106. border-width:0px;
  12107. position:absolute;
  12108. left:25px;
  12109. top:976px;
  12110. width:65px;
  12111. height:22px;
  12112. display:flex;
  12113. transition:none;
  12114. transform-origin:50% 50%;
  12115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12116. font-weight:400;
  12117. font-style:normal;
  12118. font-size:16px;
  12119. }
  12120. #u13081 .text {
  12121. position:absolute;
  12122. align-self:flex-start;
  12123. padding:0px 0px 0px 0px;
  12124. box-sizing:border-box;
  12125. width:100%;
  12126. }
  12127. #u13081_text {
  12128. border-width:0px;
  12129. white-space:nowrap;
  12130. text-transform:none;
  12131. }
  12132. #u13082_div {
  12133. border-width:0px;
  12134. position:absolute;
  12135. left:0px;
  12136. top:0px;
  12137. width:49px;
  12138. height:17px;
  12139. background:inherit;
  12140. background-color:rgba(255, 255, 255, 0);
  12141. border-radius:0px;
  12142. filter:drop-shadow(none);
  12143. transition:none;
  12144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12145. font-weight:400;
  12146. font-style:normal;
  12147. font-size:12px;
  12148. color:#AAAAAA;
  12149. }
  12150. #u13082 {
  12151. border-width:0px;
  12152. position:absolute;
  12153. left:23px;
  12154. top:939px;
  12155. width:49px;
  12156. height:17px;
  12157. display:flex;
  12158. transition:none;
  12159. transform-origin:50% 50%;
  12160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12161. font-weight:400;
  12162. font-style:normal;
  12163. font-size:12px;
  12164. color:#AAAAAA;
  12165. }
  12166. #u13082 .text {
  12167. position:absolute;
  12168. align-self:flex-start;
  12169. padding:0px 0px 0px 0px;
  12170. box-sizing:border-box;
  12171. width:100%;
  12172. }
  12173. #u13082_text {
  12174. border-width:0px;
  12175. white-space:nowrap;
  12176. text-transform:none;
  12177. }
  12178. #u13083 {
  12179. border-width:0px;
  12180. position:absolute;
  12181. left:0px;
  12182. top:918px;
  12183. width:200px;
  12184. height:1px;
  12185. display:flex;
  12186. transition:none;
  12187. }
  12188. #u13083 .text {
  12189. position:absolute;
  12190. align-self:center;
  12191. padding:2px 2px 2px 2px;
  12192. box-sizing:border-box;
  12193. width:100%;
  12194. }
  12195. #u13083_img {
  12196. border-width:0px;
  12197. position:absolute;
  12198. left:0px;
  12199. top:0px;
  12200. width:201px;
  12201. height:2px;
  12202. }
  12203. #u13083_text {
  12204. border-width:0px;
  12205. word-wrap:break-word;
  12206. text-transform:none;
  12207. visibility:hidden;
  12208. }
  12209. #u13084_div {
  12210. border-width:0px;
  12211. position:absolute;
  12212. left:0px;
  12213. top:0px;
  12214. width:65px;
  12215. height:22px;
  12216. background:inherit;
  12217. background-color:rgba(255, 255, 255, 0);
  12218. border-radius:0px;
  12219. filter:drop-shadow(none);
  12220. transition:none;
  12221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12222. font-weight:400;
  12223. font-style:normal;
  12224. font-size:16px;
  12225. }
  12226. #u13084 {
  12227. border-width:0px;
  12228. position:absolute;
  12229. left:25px;
  12230. top:1018px;
  12231. width:65px;
  12232. height:22px;
  12233. display:flex;
  12234. transition:none;
  12235. transform-origin:50% 50%;
  12236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12237. font-weight:400;
  12238. font-style:normal;
  12239. font-size:16px;
  12240. }
  12241. #u13084 .text {
  12242. position:absolute;
  12243. align-self:flex-start;
  12244. padding:0px 0px 0px 0px;
  12245. box-sizing:border-box;
  12246. width:100%;
  12247. }
  12248. #u13084_text {
  12249. border-width:0px;
  12250. white-space:nowrap;
  12251. text-transform:none;
  12252. }
  12253. #u13085_div {
  12254. border-width:0px;
  12255. position:absolute;
  12256. left:0px;
  12257. top:0px;
  12258. width:97px;
  12259. height:22px;
  12260. background:inherit;
  12261. background-color:rgba(255, 255, 255, 0);
  12262. border-radius:0px;
  12263. filter:drop-shadow(none);
  12264. transition:none;
  12265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12266. font-weight:400;
  12267. font-style:normal;
  12268. font-size:16px;
  12269. }
  12270. #u13085 {
  12271. border-width:0px;
  12272. position:absolute;
  12273. left:25px;
  12274. top:834px;
  12275. width:97px;
  12276. height:22px;
  12277. display:flex;
  12278. transition:none;
  12279. transform-origin:50% 50%;
  12280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12281. font-weight:400;
  12282. font-style:normal;
  12283. font-size:16px;
  12284. }
  12285. #u13085 .text {
  12286. position:absolute;
  12287. align-self:flex-start;
  12288. padding:0px 0px 0px 0px;
  12289. box-sizing:border-box;
  12290. width:100%;
  12291. }
  12292. #u13085_text {
  12293. border-width:0px;
  12294. white-space:nowrap;
  12295. text-transform:none;
  12296. }
  12297. #u13086_div {
  12298. border-width:0px;
  12299. position:absolute;
  12300. left:0px;
  12301. top:0px;
  12302. width:81px;
  12303. height:22px;
  12304. background:inherit;
  12305. background-color:rgba(255, 255, 255, 0);
  12306. border-radius:0px;
  12307. filter:drop-shadow(none);
  12308. transition:none;
  12309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12310. font-weight:400;
  12311. font-style:normal;
  12312. font-size:16px;
  12313. }
  12314. #u13086 {
  12315. border-width:0px;
  12316. position:absolute;
  12317. left:26px;
  12318. top:426px;
  12319. width:81px;
  12320. height:22px;
  12321. display:flex;
  12322. transition:none;
  12323. transform-origin:50% 50%;
  12324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12325. font-weight:400;
  12326. font-style:normal;
  12327. font-size:16px;
  12328. }
  12329. #u13086 .text {
  12330. position:absolute;
  12331. align-self:flex-start;
  12332. padding:0px 0px 0px 0px;
  12333. box-sizing:border-box;
  12334. width:100%;
  12335. }
  12336. #u13086_text {
  12337. border-width:0px;
  12338. white-space:nowrap;
  12339. text-transform:none;
  12340. }
  12341. #u13087_div {
  12342. border-width:0px;
  12343. position:absolute;
  12344. left:0px;
  12345. top:0px;
  12346. width:97px;
  12347. height:22px;
  12348. background:inherit;
  12349. background-color:rgba(255, 255, 255, 0);
  12350. border-radius:0px;
  12351. filter:drop-shadow(none);
  12352. transition:none;
  12353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12354. font-weight:400;
  12355. font-style:normal;
  12356. font-size:16px;
  12357. }
  12358. #u13087 {
  12359. border-width:0px;
  12360. position:absolute;
  12361. left:25px;
  12362. top:710px;
  12363. width:97px;
  12364. height:22px;
  12365. display:flex;
  12366. transition:none;
  12367. transform-origin:50% 50%;
  12368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12369. font-weight:400;
  12370. font-style:normal;
  12371. font-size:16px;
  12372. }
  12373. #u13087 .text {
  12374. position:absolute;
  12375. align-self:flex-start;
  12376. padding:0px 0px 0px 0px;
  12377. box-sizing:border-box;
  12378. width:100%;
  12379. }
  12380. #u13087_text {
  12381. border-width:0px;
  12382. white-space:nowrap;
  12383. text-transform:none;
  12384. }
  12385. #u13088_div {
  12386. border-width:0px;
  12387. position:absolute;
  12388. left:0px;
  12389. top:0px;
  12390. width:65px;
  12391. height:22px;
  12392. background:inherit;
  12393. background-color:rgba(255, 255, 255, 0);
  12394. border-radius:0px;
  12395. filter:drop-shadow(none);
  12396. transition:none;
  12397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12398. font-weight:400;
  12399. font-style:normal;
  12400. font-size:16px;
  12401. }
  12402. #u13088 {
  12403. border-width:0px;
  12404. position:absolute;
  12405. left:25px;
  12406. top:160px;
  12407. width:65px;
  12408. height:22px;
  12409. display:flex;
  12410. transition:none;
  12411. transform-origin:50% 50%;
  12412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12413. font-weight:400;
  12414. font-style:normal;
  12415. font-size:16px;
  12416. }
  12417. #u13088 .text {
  12418. position:absolute;
  12419. align-self:flex-start;
  12420. padding:0px 0px 0px 0px;
  12421. box-sizing:border-box;
  12422. width:100%;
  12423. }
  12424. #u13088_text {
  12425. border-width:0px;
  12426. white-space:nowrap;
  12427. text-transform:none;
  12428. }
  12429. #u13089_div {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:0px;
  12433. top:0px;
  12434. width:81px;
  12435. height:22px;
  12436. background:inherit;
  12437. background-color:rgba(255, 255, 255, 0);
  12438. border-radius:0px;
  12439. filter:drop-shadow(none);
  12440. transition:none;
  12441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12442. font-weight:400;
  12443. font-style:normal;
  12444. font-size:16px;
  12445. }
  12446. #u13089 {
  12447. border-width:0px;
  12448. position:absolute;
  12449. left:26px;
  12450. top:202px;
  12451. width:81px;
  12452. height:22px;
  12453. display:flex;
  12454. transition:none;
  12455. transform-origin:50% 50%;
  12456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12457. font-weight:400;
  12458. font-style:normal;
  12459. font-size:16px;
  12460. }
  12461. #u13089 .text {
  12462. position:absolute;
  12463. align-self:flex-start;
  12464. padding:0px 0px 0px 0px;
  12465. box-sizing:border-box;
  12466. width:100%;
  12467. }
  12468. #u13089_text {
  12469. border-width:0px;
  12470. white-space:nowrap;
  12471. text-transform:none;
  12472. }
  12473. #u13090_div {
  12474. border-width:0px;
  12475. position:absolute;
  12476. left:0px;
  12477. top:0px;
  12478. width:65px;
  12479. height:22px;
  12480. background:inherit;
  12481. background-color:rgba(255, 255, 255, 0);
  12482. border-radius:0px;
  12483. filter:drop-shadow(none);
  12484. transition:none;
  12485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12486. font-weight:400;
  12487. font-style:normal;
  12488. font-size:16px;
  12489. }
  12490. #u13090 {
  12491. border-width:0px;
  12492. position:absolute;
  12493. left:26px;
  12494. top:244px;
  12495. width:65px;
  12496. height:22px;
  12497. display:flex;
  12498. transition:none;
  12499. transform-origin:50% 50%;
  12500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12501. font-weight:400;
  12502. font-style:normal;
  12503. font-size:16px;
  12504. }
  12505. #u13090 .text {
  12506. position:absolute;
  12507. align-self:flex-start;
  12508. padding:0px 0px 0px 0px;
  12509. box-sizing:border-box;
  12510. width:100%;
  12511. }
  12512. #u13090_text {
  12513. border-width:0px;
  12514. white-space:nowrap;
  12515. text-transform:none;
  12516. }
  12517. #u13091 {
  12518. border-width:0px;
  12519. position:absolute;
  12520. left:0px;
  12521. top:0px;
  12522. width:0px;
  12523. height:0px;
  12524. }
  12525. #u13092_div {
  12526. border-width:0px;
  12527. position:absolute;
  12528. left:0px;
  12529. top:0px;
  12530. width:140px;
  12531. height:30px;
  12532. background:inherit;
  12533. background-color:rgba(255, 255, 255, 1);
  12534. box-sizing:border-box;
  12535. border-width:1px;
  12536. border-style:solid;
  12537. border-color:rgba(201, 201, 201, 1);
  12538. border-radius:4px;
  12539. filter:drop-shadow(none);
  12540. transition:none;
  12541. font-family:"Microsoft YaHei", sans-serif;
  12542. font-weight:400;
  12543. font-style:normal;
  12544. font-size:14px;
  12545. color:#CCCCCC;
  12546. text-align:left;
  12547. }
  12548. #u13092 {
  12549. border-width:0px;
  12550. position:absolute;
  12551. left:1311px;
  12552. top:199px;
  12553. width:140px;
  12554. height:30px;
  12555. display:flex;
  12556. transition:none;
  12557. transform-origin:50% 50%;
  12558. font-family:"Microsoft YaHei", sans-serif;
  12559. font-weight:400;
  12560. font-style:normal;
  12561. font-size:14px;
  12562. color:#CCCCCC;
  12563. text-align:left;
  12564. }
  12565. #u13092 .text {
  12566. position:absolute;
  12567. align-self:center;
  12568. padding:2px 8px 2px 8px;
  12569. box-sizing:border-box;
  12570. width:100%;
  12571. }
  12572. #u13092_text {
  12573. border-width:0px;
  12574. word-wrap:break-word;
  12575. text-transform:none;
  12576. visibility:hidden;
  12577. }
  12578. #u13093_input {
  12579. position:absolute;
  12580. left:0px;
  12581. top:0px;
  12582. width:127px;
  12583. height:25px;
  12584. padding:2px 2px 2px 2px;
  12585. font-family:"Microsoft YaHei", sans-serif;
  12586. font-weight:400;
  12587. font-style:normal;
  12588. font-size:10px;
  12589. letter-spacing:normal;
  12590. color:#000000;
  12591. vertical-align:none;
  12592. text-align:left;
  12593. text-transform:none;
  12594. background-color:transparent;
  12595. border-color:transparent;
  12596. }
  12597. #u13093_input.hint {
  12598. position:absolute;
  12599. left:0px;
  12600. top:0px;
  12601. width:127px;
  12602. height:25px;
  12603. padding:2px 2px 2px 2px;
  12604. font-family:"Microsoft YaHei", sans-serif;
  12605. font-weight:400;
  12606. font-style:normal;
  12607. font-size:12px;
  12608. letter-spacing:normal;
  12609. color:#AAAAAA;
  12610. vertical-align:none;
  12611. text-align:left;
  12612. text-transform:none;
  12613. background-color:transparent;
  12614. border-color:transparent;
  12615. }
  12616. #u13093_input.disabled {
  12617. position:absolute;
  12618. left:0px;
  12619. top:0px;
  12620. width:127px;
  12621. height:25px;
  12622. padding:2px 2px 2px 2px;
  12623. font-family:"Microsoft YaHei", sans-serif;
  12624. font-weight:400;
  12625. font-style:normal;
  12626. font-size:10px;
  12627. letter-spacing:normal;
  12628. color:#000000;
  12629. vertical-align:none;
  12630. text-align:left;
  12631. text-transform:none;
  12632. background-color:transparent;
  12633. border-color:transparent;
  12634. }
  12635. #u13093_input.hint.disabled {
  12636. position:absolute;
  12637. left:0px;
  12638. top:0px;
  12639. width:127px;
  12640. height:25px;
  12641. padding:2px 2px 2px 2px;
  12642. font-family:"Microsoft YaHei", sans-serif;
  12643. font-weight:400;
  12644. font-style:normal;
  12645. font-size:12px;
  12646. letter-spacing:normal;
  12647. color:#AAAAAA;
  12648. vertical-align:none;
  12649. text-align:left;
  12650. text-transform:none;
  12651. background-color:transparent;
  12652. border-color:transparent;
  12653. }
  12654. #u13093_div {
  12655. border-width:0px;
  12656. position:absolute;
  12657. left:0px;
  12658. top:0px;
  12659. width:127px;
  12660. height:25px;
  12661. background:inherit;
  12662. background-color:rgba(255, 255, 255, 1);
  12663. border-radius:0px;
  12664. filter:drop-shadow(none);
  12665. transition:none;
  12666. font-family:"Microsoft YaHei", sans-serif;
  12667. font-weight:400;
  12668. font-style:normal;
  12669. font-size:10px;
  12670. }
  12671. #u13093 {
  12672. border-width:0px;
  12673. position:absolute;
  12674. left:1319px;
  12675. top:200px;
  12676. width:127px;
  12677. height:25px;
  12678. display:flex;
  12679. transition:none;
  12680. transform-origin:50% 50%;
  12681. font-family:"Microsoft YaHei", sans-serif;
  12682. font-weight:400;
  12683. font-style:normal;
  12684. font-size:10px;
  12685. }
  12686. #u13093 .text {
  12687. position:absolute;
  12688. align-self:center;
  12689. padding:2px 2px 2px 2px;
  12690. box-sizing:border-box;
  12691. width:100%;
  12692. }
  12693. #u13093_div.hint {
  12694. border-width:0px;
  12695. position:absolute;
  12696. left:0px;
  12697. top:0px;
  12698. width:127px;
  12699. height:25px;
  12700. background:inherit;
  12701. background-color:rgba(255, 255, 255, 1);
  12702. border-radius:0px;
  12703. filter:drop-shadow(none);
  12704. transition:none;
  12705. font-family:"Microsoft YaHei", sans-serif;
  12706. font-weight:400;
  12707. font-style:normal;
  12708. font-size:10px;
  12709. }
  12710. #u13093.hint {
  12711. }
  12712. #u13093_div.disabled {
  12713. border-width:0px;
  12714. position:absolute;
  12715. left:0px;
  12716. top:0px;
  12717. width:127px;
  12718. height:25px;
  12719. background:inherit;
  12720. background-color:rgba(240, 240, 240, 1);
  12721. border-radius:0px;
  12722. filter:drop-shadow(none);
  12723. transition:none;
  12724. font-family:"Microsoft YaHei", sans-serif;
  12725. font-weight:400;
  12726. font-style:normal;
  12727. font-size:10px;
  12728. }
  12729. #u13093.disabled {
  12730. }
  12731. #u13093_div.hint.disabled {
  12732. border-width:0px;
  12733. position:absolute;
  12734. left:0px;
  12735. top:0px;
  12736. width:127px;
  12737. height:25px;
  12738. background:inherit;
  12739. background-color:rgba(240, 240, 240, 1);
  12740. border-radius:0px;
  12741. filter:drop-shadow(none);
  12742. transition:none;
  12743. font-family:"Microsoft YaHei", sans-serif;
  12744. font-weight:400;
  12745. font-style:normal;
  12746. font-size:10px;
  12747. }
  12748. #u13093.hint.disabled {
  12749. }
  12750. #u13094_div {
  12751. border-width:0px;
  12752. position:absolute;
  12753. left:0px;
  12754. top:0px;
  12755. width:813px;
  12756. height:20px;
  12757. background:inherit;
  12758. background-color:rgba(255, 255, 255, 0);
  12759. border-left:0px;
  12760. border-top:0px;
  12761. border-right:0px;
  12762. border-radius:0px;
  12763. border-bottom-right-radius:0px;
  12764. border-bottom-left-radius:0px;
  12765. filter:drop-shadow(none);
  12766. transition:none;
  12767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12768. font-weight:400;
  12769. font-style:normal;
  12770. font-size:14px;
  12771. color:#7F7F7F;
  12772. }
  12773. #u13094 {
  12774. border-width:0px;
  12775. position:absolute;
  12776. left:352px;
  12777. top:110px;
  12778. width:813px;
  12779. height:20px;
  12780. display:flex;
  12781. transition:none;
  12782. transform-origin:50% 50%;
  12783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12784. font-weight:400;
  12785. font-style:normal;
  12786. font-size:14px;
  12787. color:#7F7F7F;
  12788. }
  12789. #u13094 .text {
  12790. position:absolute;
  12791. align-self:center;
  12792. padding:0px 0px 0px 0px;
  12793. box-sizing:border-box;
  12794. width:100%;
  12795. }
  12796. #u13094_text {
  12797. border-width:0px;
  12798. white-space:nowrap;
  12799. text-transform:none;
  12800. }
  12801. #u13095 {
  12802. border-width:0px;
  12803. position:absolute;
  12804. left:0px;
  12805. top:0px;
  12806. width:0px;
  12807. height:0px;
  12808. }
  12809. #u13096 {
  12810. border-width:0px;
  12811. position:absolute;
  12812. left:0px;
  12813. top:0px;
  12814. width:0px;
  12815. height:0px;
  12816. }
  12817. #u13097_div {
  12818. border-width:0px;
  12819. position:absolute;
  12820. left:0px;
  12821. top:0px;
  12822. width:380px;
  12823. height:160px;
  12824. background:inherit;
  12825. background-color:rgba(255, 255, 255, 1);
  12826. box-sizing:border-box;
  12827. border-width:1px;
  12828. border-style:solid;
  12829. border-color:rgba(242, 242, 242, 1);
  12830. border-radius:4px;
  12831. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  12832. transition:none;
  12833. font-family:"Microsoft YaHei", sans-serif;
  12834. font-weight:400;
  12835. font-style:normal;
  12836. }
  12837. #u13097 {
  12838. border-width:0px;
  12839. position:absolute;
  12840. left:760px;
  12841. top:727px;
  12842. width:380px;
  12843. height:160px;
  12844. display:flex;
  12845. transition:none;
  12846. transform-origin:50% 50%;
  12847. font-family:"Microsoft YaHei", sans-serif;
  12848. font-weight:400;
  12849. font-style:normal;
  12850. }
  12851. #u13097 .text {
  12852. position:absolute;
  12853. align-self:center;
  12854. padding:2px 2px 2px 2px;
  12855. box-sizing:border-box;
  12856. width:100%;
  12857. }
  12858. #u13097_text {
  12859. border-width:0px;
  12860. word-wrap:break-word;
  12861. text-transform:none;
  12862. visibility:hidden;
  12863. }
  12864. #u13098_div {
  12865. border-width:0px;
  12866. position:absolute;
  12867. left:0px;
  12868. top:0px;
  12869. width:163px;
  12870. height:21px;
  12871. background:inherit;
  12872. background-color:rgba(255, 255, 255, 0);
  12873. border-radius:0px;
  12874. filter:drop-shadow(none);
  12875. transition:none;
  12876. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12877. font-weight:650;
  12878. font-style:normal;
  12879. font-size:18px;
  12880. color:#000000;
  12881. line-height:22px;
  12882. }
  12883. #u13098 {
  12884. border-width:0px;
  12885. position:absolute;
  12886. left:820px;
  12887. top:752px;
  12888. width:163px;
  12889. height:21px;
  12890. display:flex;
  12891. transition:none;
  12892. transform-origin:50% 50%;
  12893. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12894. font-weight:650;
  12895. font-style:normal;
  12896. font-size:18px;
  12897. color:#000000;
  12898. line-height:22px;
  12899. }
  12900. #u13098 .text {
  12901. position:absolute;
  12902. align-self:flex-start;
  12903. padding:0px 0px 0px 0px;
  12904. box-sizing:border-box;
  12905. width:100%;
  12906. }
  12907. #u13098_text {
  12908. border-width:0px;
  12909. white-space:nowrap;
  12910. text-transform:none;
  12911. }
  12912. #u13099_div {
  12913. border-width:0px;
  12914. position:absolute;
  12915. left:0px;
  12916. top:0px;
  12917. width:61px;
  12918. height:32px;
  12919. background:inherit;
  12920. background-color:rgba(24, 144, 255, 1);
  12921. border-radius:4px;
  12922. filter:drop-shadow(none);
  12923. transition:none;
  12924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12925. font-weight:400;
  12926. font-style:normal;
  12927. font-size:14px;
  12928. color:#FFFFFF;
  12929. }
  12930. #u13099 {
  12931. border-width:0px;
  12932. position:absolute;
  12933. left:1059px;
  12934. top:839px;
  12935. width:61px;
  12936. height:32px;
  12937. display:flex;
  12938. transition:none;
  12939. transform-origin:50% 50%;
  12940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12941. font-weight:400;
  12942. font-style:normal;
  12943. font-size:14px;
  12944. color:#FFFFFF;
  12945. }
  12946. #u13099 .text {
  12947. position:absolute;
  12948. align-self:center;
  12949. padding:2px 16px 2px 16px;
  12950. box-sizing:border-box;
  12951. width:100%;
  12952. }
  12953. #u13099_text {
  12954. border-width:0px;
  12955. white-space:nowrap;
  12956. text-transform:none;
  12957. }
  12958. #u13100 {
  12959. border-width:0px;
  12960. position:absolute;
  12961. left:789px;
  12962. top:756px;
  12963. width:20px;
  12964. height:20px;
  12965. display:flex;
  12966. transition:none;
  12967. }
  12968. #u13100 .text {
  12969. position:absolute;
  12970. align-self:center;
  12971. padding:2px 2px 2px 2px;
  12972. box-sizing:border-box;
  12973. width:100%;
  12974. }
  12975. #u13100_img {
  12976. border-width:0px;
  12977. position:absolute;
  12978. left:0px;
  12979. top:0px;
  12980. width:20px;
  12981. height:20px;
  12982. }
  12983. #u13100_text {
  12984. border-width:0px;
  12985. word-wrap:break-word;
  12986. text-transform:none;
  12987. visibility:hidden;
  12988. }
  12989. #u13101_div {
  12990. border-width:0px;
  12991. position:absolute;
  12992. left:0px;
  12993. top:0px;
  12994. width:300px;
  12995. height:44px;
  12996. background:inherit;
  12997. background-color:rgba(255, 255, 255, 0);
  12998. border-radius:0px;
  12999. filter:drop-shadow(none);
  13000. transition:none;
  13001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13002. font-weight:400;
  13003. font-style:normal;
  13004. font-size:14px;
  13005. color:#7F7F7F;
  13006. line-height:22px;
  13007. }
  13008. #u13101 {
  13009. border-width:0px;
  13010. position:absolute;
  13011. left:820px;
  13012. top:786px;
  13013. width:300px;
  13014. height:44px;
  13015. display:flex;
  13016. transition:none;
  13017. transform-origin:50% 50%;
  13018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13019. font-weight:400;
  13020. font-style:normal;
  13021. font-size:14px;
  13022. color:#7F7F7F;
  13023. line-height:22px;
  13024. }
  13025. #u13101 .text {
  13026. position:absolute;
  13027. align-self:flex-start;
  13028. padding:0px 0px 0px 0px;
  13029. box-sizing:border-box;
  13030. width:100%;
  13031. }
  13032. #u13101_text {
  13033. border-width:0px;
  13034. word-wrap:break-word;
  13035. text-transform:none;
  13036. }
  13037. #u13102_div {
  13038. border-width:0px;
  13039. position:absolute;
  13040. left:0px;
  13041. top:0px;
  13042. width:66px;
  13043. height:32px;
  13044. background:inherit;
  13045. background-color:rgba(255, 255, 255, 1);
  13046. box-sizing:border-box;
  13047. border-width:1px;
  13048. border-style:solid;
  13049. border-color:rgba(217, 217, 217, 1);
  13050. border-radius:4px;
  13051. filter:drop-shadow(none);
  13052. transition:none;
  13053. font-family:"Microsoft YaHei", sans-serif;
  13054. font-weight:400;
  13055. font-style:normal;
  13056. font-size:14px;
  13057. color:rgba(0, 0, 0, 0.6470588235294118);
  13058. line-height:21px;
  13059. }
  13060. #u13102 {
  13061. border-width:0px;
  13062. position:absolute;
  13063. left:976px;
  13064. top:839px;
  13065. width:66px;
  13066. height:32px;
  13067. display:flex;
  13068. transition:none;
  13069. transform-origin:50% 50%;
  13070. font-family:"Microsoft YaHei", sans-serif;
  13071. font-weight:400;
  13072. font-style:normal;
  13073. font-size:14px;
  13074. color:rgba(0, 0, 0, 0.6470588235294118);
  13075. line-height:21px;
  13076. }
  13077. #u13102 .text {
  13078. position:absolute;
  13079. align-self:center;
  13080. padding:2px 16px 2px 16px;
  13081. box-sizing:border-box;
  13082. width:100%;
  13083. }
  13084. #u13102_text {
  13085. border-width:0px;
  13086. white-space:nowrap;
  13087. text-transform:none;
  13088. }
  13089. #u13103 {
  13090. border-width:0px;
  13091. position:absolute;
  13092. left:0px;
  13093. top:0px;
  13094. width:0px;
  13095. height:0px;
  13096. }
  13097. #u13104 {
  13098. border-width:0px;
  13099. position:absolute;
  13100. left:0px;
  13101. top:0px;
  13102. width:0px;
  13103. height:0px;
  13104. }
  13105. #u13105_div {
  13106. border-width:0px;
  13107. position:absolute;
  13108. left:0px;
  13109. top:0px;
  13110. width:380px;
  13111. height:160px;
  13112. background:inherit;
  13113. background-color:rgba(255, 255, 255, 1);
  13114. box-sizing:border-box;
  13115. border-width:1px;
  13116. border-style:solid;
  13117. border-color:rgba(242, 242, 242, 1);
  13118. border-radius:4px;
  13119. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  13120. transition:none;
  13121. font-family:"Microsoft YaHei", sans-serif;
  13122. font-weight:400;
  13123. font-style:normal;
  13124. }
  13125. #u13105 {
  13126. border-width:0px;
  13127. position:absolute;
  13128. left:1160px;
  13129. top:727px;
  13130. width:380px;
  13131. height:160px;
  13132. display:flex;
  13133. transition:none;
  13134. transform-origin:50% 50%;
  13135. font-family:"Microsoft YaHei", sans-serif;
  13136. font-weight:400;
  13137. font-style:normal;
  13138. }
  13139. #u13105 .text {
  13140. position:absolute;
  13141. align-self:center;
  13142. padding:2px 2px 2px 2px;
  13143. box-sizing:border-box;
  13144. width:100%;
  13145. }
  13146. #u13105_text {
  13147. border-width:0px;
  13148. word-wrap:break-word;
  13149. text-transform:none;
  13150. visibility:hidden;
  13151. }
  13152. #u13106_div {
  13153. border-width:0px;
  13154. position:absolute;
  13155. left:0px;
  13156. top:0px;
  13157. width:91px;
  13158. height:21px;
  13159. background:inherit;
  13160. background-color:rgba(255, 255, 255, 0);
  13161. border-radius:0px;
  13162. filter:drop-shadow(none);
  13163. transition:none;
  13164. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13165. font-weight:650;
  13166. font-style:normal;
  13167. font-size:18px;
  13168. color:#000000;
  13169. line-height:22px;
  13170. }
  13171. #u13106 {
  13172. border-width:0px;
  13173. position:absolute;
  13174. left:1220px;
  13175. top:752px;
  13176. width:91px;
  13177. height:21px;
  13178. display:flex;
  13179. transition:none;
  13180. transform-origin:50% 50%;
  13181. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13182. font-weight:650;
  13183. font-style:normal;
  13184. font-size:18px;
  13185. color:#000000;
  13186. line-height:22px;
  13187. }
  13188. #u13106 .text {
  13189. position:absolute;
  13190. align-self:flex-start;
  13191. padding:0px 0px 0px 0px;
  13192. box-sizing:border-box;
  13193. width:100%;
  13194. }
  13195. #u13106_text {
  13196. border-width:0px;
  13197. white-space:nowrap;
  13198. text-transform:none;
  13199. }
  13200. #u13107_div {
  13201. border-width:0px;
  13202. position:absolute;
  13203. left:0px;
  13204. top:0px;
  13205. width:61px;
  13206. height:32px;
  13207. background:inherit;
  13208. background-color:rgba(24, 144, 255, 1);
  13209. border-radius:4px;
  13210. filter:drop-shadow(none);
  13211. transition:none;
  13212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13213. font-weight:400;
  13214. font-style:normal;
  13215. font-size:14px;
  13216. color:#FFFFFF;
  13217. }
  13218. #u13107 {
  13219. border-width:0px;
  13220. position:absolute;
  13221. left:1459px;
  13222. top:839px;
  13223. width:61px;
  13224. height:32px;
  13225. display:flex;
  13226. transition:none;
  13227. transform-origin:50% 50%;
  13228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13229. font-weight:400;
  13230. font-style:normal;
  13231. font-size:14px;
  13232. color:#FFFFFF;
  13233. }
  13234. #u13107 .text {
  13235. position:absolute;
  13236. align-self:center;
  13237. padding:2px 16px 2px 16px;
  13238. box-sizing:border-box;
  13239. width:100%;
  13240. }
  13241. #u13107_text {
  13242. border-width:0px;
  13243. white-space:nowrap;
  13244. text-transform:none;
  13245. }
  13246. #u13108_div {
  13247. border-width:0px;
  13248. position:absolute;
  13249. left:0px;
  13250. top:0px;
  13251. width:300px;
  13252. height:44px;
  13253. background:inherit;
  13254. background-color:rgba(255, 255, 255, 0);
  13255. border-radius:0px;
  13256. filter:drop-shadow(none);
  13257. transition:none;
  13258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13259. font-weight:400;
  13260. font-style:normal;
  13261. font-size:14px;
  13262. color:#7F7F7F;
  13263. line-height:22px;
  13264. }
  13265. #u13108 {
  13266. border-width:0px;
  13267. position:absolute;
  13268. left:1220px;
  13269. top:786px;
  13270. width:300px;
  13271. height:44px;
  13272. display:flex;
  13273. transition:none;
  13274. transform-origin:50% 50%;
  13275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13276. font-weight:400;
  13277. font-style:normal;
  13278. font-size:14px;
  13279. color:#7F7F7F;
  13280. line-height:22px;
  13281. }
  13282. #u13108 .text {
  13283. position:absolute;
  13284. align-self:flex-start;
  13285. padding:0px 0px 0px 0px;
  13286. box-sizing:border-box;
  13287. width:100%;
  13288. }
  13289. #u13108_text {
  13290. border-width:0px;
  13291. word-wrap:break-word;
  13292. text-transform:none;
  13293. }
  13294. #u13109 {
  13295. border-width:0px;
  13296. position:absolute;
  13297. left:1189px;
  13298. top:752px;
  13299. width:20px;
  13300. height:20px;
  13301. display:flex;
  13302. transition:none;
  13303. }
  13304. #u13109 .text {
  13305. position:absolute;
  13306. align-self:center;
  13307. padding:2px 2px 2px 2px;
  13308. box-sizing:border-box;
  13309. width:100%;
  13310. }
  13311. #u13109_img {
  13312. border-width:0px;
  13313. position:absolute;
  13314. left:0px;
  13315. top:0px;
  13316. width:20px;
  13317. height:20px;
  13318. }
  13319. #u13109_text {
  13320. border-width:0px;
  13321. word-wrap:break-word;
  13322. text-transform:none;
  13323. visibility:hidden;
  13324. }
  13325. #u13110_div {
  13326. border-width:0px;
  13327. position:absolute;
  13328. left:0px;
  13329. top:0px;
  13330. width:680px;
  13331. height:61px;
  13332. background:inherit;
  13333. background-color:rgba(255, 255, 255, 0);
  13334. border-top:0px;
  13335. border-right:0px;
  13336. border-bottom:0px;
  13337. border-radius:0px;
  13338. border-top-left-radius:0px;
  13339. border-bottom-left-radius:0px;
  13340. filter:drop-shadow(none);
  13341. transition:none;
  13342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13343. font-weight:400;
  13344. font-style:normal;
  13345. font-size:12px;
  13346. color:#D9001B;
  13347. }
  13348. #u13110 {
  13349. border-width:0px;
  13350. position:absolute;
  13351. left:760px;
  13352. top:661px;
  13353. width:680px;
  13354. height:61px;
  13355. display:flex;
  13356. transition:none;
  13357. transform-origin:50% 50%;
  13358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13359. font-weight:400;
  13360. font-style:normal;
  13361. font-size:12px;
  13362. color:#D9001B;
  13363. }
  13364. #u13110 .text {
  13365. position:absolute;
  13366. align-self:center;
  13367. padding:5px 0px 5px 0px;
  13368. box-sizing:border-box;
  13369. width:100%;
  13370. }
  13371. #u13110_text {
  13372. border-width:0px;
  13373. white-space:nowrap;
  13374. text-transform:none;
  13375. }
  13376. #u13111_div {
  13377. border-width:0px;
  13378. position:absolute;
  13379. left:0px;
  13380. top:0px;
  13381. width:60px;
  13382. height:30px;
  13383. background:inherit;
  13384. background-color:rgba(24, 144, 255, 1);
  13385. border-radius:4px;
  13386. filter:drop-shadow(none);
  13387. transition:none;
  13388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13389. font-weight:400;
  13390. font-style:normal;
  13391. font-size:14px;
  13392. color:#FFFFFF;
  13393. }
  13394. #u13111 {
  13395. border-width:0px;
  13396. position:absolute;
  13397. left:563px;
  13398. top:291px;
  13399. width:60px;
  13400. height:30px;
  13401. display:flex;
  13402. transition:none;
  13403. transform-origin:50% 50%;
  13404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13405. font-weight:400;
  13406. font-style:normal;
  13407. font-size:14px;
  13408. color:#FFFFFF;
  13409. }
  13410. #u13111 .text {
  13411. position:absolute;
  13412. align-self:center;
  13413. padding:2px 2px 2px 2px;
  13414. box-sizing:border-box;
  13415. width:100%;
  13416. }
  13417. #u13111_text {
  13418. border-width:0px;
  13419. word-wrap:break-word;
  13420. text-transform:none;
  13421. }
  13422. #u13112_div {
  13423. border-width:0px;
  13424. position:absolute;
  13425. left:0px;
  13426. top:0px;
  13427. width:55px;
  13428. height:30px;
  13429. background:inherit;
  13430. background-color:rgba(255, 255, 255, 1);
  13431. box-sizing:border-box;
  13432. border-width:1px;
  13433. border-style:solid;
  13434. border-color:rgba(170, 170, 170, 1);
  13435. border-radius:4px;
  13436. filter:drop-shadow(none);
  13437. transition:none;
  13438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13439. font-weight:400;
  13440. font-style:normal;
  13441. font-size:12px;
  13442. color:#555555;
  13443. }
  13444. #u13112 {
  13445. border-width:0px;
  13446. position:absolute;
  13447. left:702px;
  13448. top:291px;
  13449. width:55px;
  13450. height:30px;
  13451. display:flex;
  13452. transition:none;
  13453. transform-origin:50% 50%;
  13454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13455. font-weight:400;
  13456. font-style:normal;
  13457. font-size:12px;
  13458. color:#555555;
  13459. }
  13460. #u13112 .text {
  13461. position:absolute;
  13462. align-self:center;
  13463. padding:5px 15px 5px 15px;
  13464. box-sizing:border-box;
  13465. width:100%;
  13466. }
  13467. #u13112_text {
  13468. border-width:0px;
  13469. white-space:nowrap;
  13470. text-transform:none;
  13471. }
  13472. #u13113_div {
  13473. border-width:0px;
  13474. position:absolute;
  13475. left:0px;
  13476. top:0px;
  13477. width:59px;
  13478. height:30px;
  13479. background:inherit;
  13480. background-color:rgba(255, 255, 255, 1);
  13481. box-sizing:border-box;
  13482. border-width:1px;
  13483. border-style:solid;
  13484. border-color:rgba(170, 170, 170, 1);
  13485. border-radius:4px;
  13486. filter:drop-shadow(none);
  13487. transition:none;
  13488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13489. font-weight:400;
  13490. font-style:normal;
  13491. font-size:14px;
  13492. color:#555555;
  13493. }
  13494. #u13113 {
  13495. border-width:0px;
  13496. position:absolute;
  13497. left:633px;
  13498. top:291px;
  13499. width:59px;
  13500. height:30px;
  13501. display:flex;
  13502. transition:none;
  13503. transform-origin:50% 50%;
  13504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13505. font-weight:400;
  13506. font-style:normal;
  13507. font-size:14px;
  13508. color:#555555;
  13509. }
  13510. #u13113 .text {
  13511. position:absolute;
  13512. align-self:center;
  13513. padding:5px 15px 5px 15px;
  13514. box-sizing:border-box;
  13515. width:100%;
  13516. }
  13517. #u13113_text {
  13518. border-width:0px;
  13519. white-space:nowrap;
  13520. text-transform:none;
  13521. }
  13522. #u13114_div {
  13523. border-width:0px;
  13524. position:absolute;
  13525. left:0px;
  13526. top:0px;
  13527. width:115px;
  13528. height:30px;
  13529. background:inherit;
  13530. background-color:rgba(255, 255, 255, 1);
  13531. border-radius:4px;
  13532. filter:drop-shadow(none);
  13533. transition:none;
  13534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13535. font-weight:400;
  13536. font-style:normal;
  13537. font-size:12px;
  13538. text-decoration:underline ;
  13539. color:#298FFF;
  13540. }
  13541. #u13114 {
  13542. border-width:0px;
  13543. position:absolute;
  13544. left:1445px;
  13545. top:292px;
  13546. width:115px;
  13547. height:30px;
  13548. display:flex;
  13549. transition:none;
  13550. transform-origin:50% 50%;
  13551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13552. font-weight:400;
  13553. font-style:normal;
  13554. font-size:12px;
  13555. text-decoration:underline ;
  13556. color:#298FFF;
  13557. }
  13558. #u13114 .text {
  13559. position:absolute;
  13560. align-self:center;
  13561. padding:5px 15px 5px 15px;
  13562. box-sizing:border-box;
  13563. width:100%;
  13564. }
  13565. #u13114_text {
  13566. border-width:0px;
  13567. white-space:nowrap;
  13568. text-transform:none;
  13569. }
  13570. #u13115 {
  13571. border-width:0px;
  13572. position:absolute;
  13573. left:1503px;
  13574. top:292px;
  13575. width:0px;
  13576. height:0px;
  13577. transition:none;
  13578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13579. font-weight:400;
  13580. font-style:normal;
  13581. font-size:12px;
  13582. color:#333333;
  13583. }
  13584. #u13115_seg0 {
  13585. border-width:0px;
  13586. position:absolute;
  13587. left:-5px;
  13588. top:-171px;
  13589. width:10px;
  13590. height:171px;
  13591. }
  13592. #u13115_seg1 {
  13593. border-width:0px;
  13594. position:absolute;
  13595. left:-5px;
  13596. top:-171px;
  13597. width:148px;
  13598. height:10px;
  13599. }
  13600. #u13115_seg2 {
  13601. border-width:0px;
  13602. position:absolute;
  13603. left:126px;
  13604. top:-182px;
  13605. width:32px;
  13606. height:32px;
  13607. }
  13608. #u13115_text {
  13609. border-width:0px;
  13610. position:absolute;
  13611. left:-50px;
  13612. top:-162px;
  13613. width:100px;
  13614. word-wrap:break-word;
  13615. text-transform:none;
  13616. visibility:hidden;
  13617. }
  13618. #u13116 {
  13619. border-width:0px;
  13620. position:absolute;
  13621. left:0px;
  13622. top:0px;
  13623. width:0px;
  13624. height:0px;
  13625. }
  13626. #u13117 {
  13627. border-width:0px;
  13628. position:absolute;
  13629. left:0px;
  13630. top:0px;
  13631. width:0px;
  13632. height:0px;
  13633. }
  13634. #u13118_div {
  13635. border-width:0px;
  13636. position:absolute;
  13637. left:0px;
  13638. top:0px;
  13639. width:380px;
  13640. height:160px;
  13641. background:inherit;
  13642. background-color:rgba(255, 255, 255, 1);
  13643. box-sizing:border-box;
  13644. border-width:1px;
  13645. border-style:solid;
  13646. border-color:rgba(242, 242, 242, 1);
  13647. border-radius:4px;
  13648. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  13649. transition:none;
  13650. font-family:"Microsoft YaHei", sans-serif;
  13651. font-weight:400;
  13652. font-style:normal;
  13653. }
  13654. #u13118 {
  13655. border-width:0px;
  13656. position:absolute;
  13657. left:1955px;
  13658. top:368px;
  13659. width:380px;
  13660. height:160px;
  13661. display:flex;
  13662. transition:none;
  13663. transform-origin:50% 50%;
  13664. font-family:"Microsoft YaHei", sans-serif;
  13665. font-weight:400;
  13666. font-style:normal;
  13667. }
  13668. #u13118 .text {
  13669. position:absolute;
  13670. align-self:center;
  13671. padding:2px 2px 2px 2px;
  13672. box-sizing:border-box;
  13673. width:100%;
  13674. }
  13675. #u13118_text {
  13676. border-width:0px;
  13677. word-wrap:break-word;
  13678. text-transform:none;
  13679. visibility:hidden;
  13680. }
  13681. #u13119_div {
  13682. border-width:0px;
  13683. position:absolute;
  13684. left:0px;
  13685. top:0px;
  13686. width:217px;
  13687. height:21px;
  13688. background:inherit;
  13689. background-color:rgba(255, 255, 255, 0);
  13690. border-radius:0px;
  13691. filter:drop-shadow(none);
  13692. transition:none;
  13693. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13694. font-weight:650;
  13695. font-style:normal;
  13696. font-size:18px;
  13697. color:#000000;
  13698. line-height:22px;
  13699. }
  13700. #u13119 {
  13701. border-width:0px;
  13702. position:absolute;
  13703. left:2015px;
  13704. top:393px;
  13705. width:217px;
  13706. height:21px;
  13707. display:flex;
  13708. transition:none;
  13709. transform-origin:50% 50%;
  13710. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13711. font-weight:650;
  13712. font-style:normal;
  13713. font-size:18px;
  13714. color:#000000;
  13715. line-height:22px;
  13716. }
  13717. #u13119 .text {
  13718. position:absolute;
  13719. align-self:flex-start;
  13720. padding:0px 0px 0px 0px;
  13721. box-sizing:border-box;
  13722. width:100%;
  13723. }
  13724. #u13119_text {
  13725. border-width:0px;
  13726. white-space:nowrap;
  13727. text-transform:none;
  13728. }
  13729. #u13120_div {
  13730. border-width:0px;
  13731. position:absolute;
  13732. left:0px;
  13733. top:0px;
  13734. width:61px;
  13735. height:32px;
  13736. background:inherit;
  13737. background-color:rgba(24, 144, 255, 1);
  13738. border-radius:4px;
  13739. filter:drop-shadow(none);
  13740. transition:none;
  13741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13742. font-weight:400;
  13743. font-style:normal;
  13744. font-size:14px;
  13745. color:#FFFFFF;
  13746. }
  13747. #u13120 {
  13748. border-width:0px;
  13749. position:absolute;
  13750. left:2254px;
  13751. top:480px;
  13752. width:61px;
  13753. height:32px;
  13754. display:flex;
  13755. transition:none;
  13756. transform-origin:50% 50%;
  13757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13758. font-weight:400;
  13759. font-style:normal;
  13760. font-size:14px;
  13761. color:#FFFFFF;
  13762. }
  13763. #u13120 .text {
  13764. position:absolute;
  13765. align-self:center;
  13766. padding:2px 16px 2px 16px;
  13767. box-sizing:border-box;
  13768. width:100%;
  13769. }
  13770. #u13120_text {
  13771. border-width:0px;
  13772. white-space:nowrap;
  13773. text-transform:none;
  13774. }
  13775. #u13121 {
  13776. border-width:0px;
  13777. position:absolute;
  13778. left:1984px;
  13779. top:397px;
  13780. width:20px;
  13781. height:20px;
  13782. display:flex;
  13783. transition:none;
  13784. }
  13785. #u13121 .text {
  13786. position:absolute;
  13787. align-self:center;
  13788. padding:2px 2px 2px 2px;
  13789. box-sizing:border-box;
  13790. width:100%;
  13791. }
  13792. #u13121_img {
  13793. border-width:0px;
  13794. position:absolute;
  13795. left:0px;
  13796. top:0px;
  13797. width:20px;
  13798. height:20px;
  13799. }
  13800. #u13121_text {
  13801. border-width:0px;
  13802. word-wrap:break-word;
  13803. text-transform:none;
  13804. visibility:hidden;
  13805. }
  13806. #u13122_div {
  13807. border-width:0px;
  13808. position:absolute;
  13809. left:0px;
  13810. top:0px;
  13811. width:300px;
  13812. height:44px;
  13813. background:inherit;
  13814. background-color:rgba(255, 255, 255, 0);
  13815. border-radius:0px;
  13816. filter:drop-shadow(none);
  13817. transition:none;
  13818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13819. font-weight:400;
  13820. font-style:normal;
  13821. font-size:14px;
  13822. color:#7F7F7F;
  13823. line-height:22px;
  13824. }
  13825. #u13122 {
  13826. border-width:0px;
  13827. position:absolute;
  13828. left:2015px;
  13829. top:427px;
  13830. width:300px;
  13831. height:44px;
  13832. display:flex;
  13833. transition:none;
  13834. transform-origin:50% 50%;
  13835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13836. font-weight:400;
  13837. font-style:normal;
  13838. font-size:14px;
  13839. color:#7F7F7F;
  13840. line-height:22px;
  13841. }
  13842. #u13122 .text {
  13843. position:absolute;
  13844. align-self:flex-start;
  13845. padding:0px 0px 0px 0px;
  13846. box-sizing:border-box;
  13847. width:100%;
  13848. }
  13849. #u13122_text {
  13850. border-width:0px;
  13851. word-wrap:break-word;
  13852. text-transform:none;
  13853. }
  13854. #u13123_div {
  13855. border-width:0px;
  13856. position:absolute;
  13857. left:0px;
  13858. top:0px;
  13859. width:66px;
  13860. height:32px;
  13861. background:inherit;
  13862. background-color:rgba(255, 255, 255, 1);
  13863. box-sizing:border-box;
  13864. border-width:1px;
  13865. border-style:solid;
  13866. border-color:rgba(217, 217, 217, 1);
  13867. border-radius:4px;
  13868. filter:drop-shadow(none);
  13869. transition:none;
  13870. font-family:"Microsoft YaHei", sans-serif;
  13871. font-weight:400;
  13872. font-style:normal;
  13873. font-size:14px;
  13874. color:rgba(0, 0, 0, 0.6470588235294118);
  13875. line-height:21px;
  13876. }
  13877. #u13123 {
  13878. border-width:0px;
  13879. position:absolute;
  13880. left:2171px;
  13881. top:480px;
  13882. width:66px;
  13883. height:32px;
  13884. display:flex;
  13885. transition:none;
  13886. transform-origin:50% 50%;
  13887. font-family:"Microsoft YaHei", sans-serif;
  13888. font-weight:400;
  13889. font-style:normal;
  13890. font-size:14px;
  13891. color:rgba(0, 0, 0, 0.6470588235294118);
  13892. line-height:21px;
  13893. }
  13894. #u13123 .text {
  13895. position:absolute;
  13896. align-self:center;
  13897. padding:2px 16px 2px 16px;
  13898. box-sizing:border-box;
  13899. width:100%;
  13900. }
  13901. #u13123_text {
  13902. border-width:0px;
  13903. white-space:nowrap;
  13904. text-transform:none;
  13905. }
  13906. #u13124 {
  13907. border-width:0px;
  13908. position:absolute;
  13909. left:0px;
  13910. top:0px;
  13911. width:0px;
  13912. height:0px;
  13913. }
  13914. #u13125_div {
  13915. border-width:0px;
  13916. position:absolute;
  13917. left:0px;
  13918. top:0px;
  13919. width:60px;
  13920. height:30px;
  13921. background:inherit;
  13922. background-color:rgba(24, 144, 255, 1);
  13923. border-radius:4px;
  13924. filter:drop-shadow(none);
  13925. transition:none;
  13926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13927. font-weight:400;
  13928. font-style:normal;
  13929. font-size:14px;
  13930. color:#FFFFFF;
  13931. }
  13932. #u13125 {
  13933. border-width:0px;
  13934. position:absolute;
  13935. left:1161px;
  13936. top:240px;
  13937. width:60px;
  13938. height:30px;
  13939. display:flex;
  13940. transition:none;
  13941. transform-origin:50% 50%;
  13942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13943. font-weight:400;
  13944. font-style:normal;
  13945. font-size:14px;
  13946. color:#FFFFFF;
  13947. }
  13948. #u13125 .text {
  13949. position:absolute;
  13950. align-self:center;
  13951. padding:2px 2px 2px 2px;
  13952. box-sizing:border-box;
  13953. width:100%;
  13954. }
  13955. #u13125_text {
  13956. border-width:0px;
  13957. word-wrap:break-word;
  13958. text-transform:none;
  13959. }
  13960. #u13126_div {
  13961. border-width:0px;
  13962. position:absolute;
  13963. left:0px;
  13964. top:0px;
  13965. width:60px;
  13966. height:30px;
  13967. background:inherit;
  13968. background-color:rgba(255, 255, 255, 1);
  13969. box-sizing:border-box;
  13970. border-width:1px;
  13971. border-style:solid;
  13972. border-color:rgba(170, 170, 170, 1);
  13973. border-radius:4px;
  13974. filter:drop-shadow(none);
  13975. transition:none;
  13976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13977. font-weight:400;
  13978. font-style:normal;
  13979. font-size:14px;
  13980. }
  13981. #u13126 {
  13982. border-width:0px;
  13983. position:absolute;
  13984. left:1231px;
  13985. top:240px;
  13986. width:60px;
  13987. height:30px;
  13988. display:flex;
  13989. transition:none;
  13990. transform-origin:50% 50%;
  13991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13992. font-weight:400;
  13993. font-style:normal;
  13994. font-size:14px;
  13995. }
  13996. #u13126 .text {
  13997. position:absolute;
  13998. align-self:center;
  13999. padding:2px 2px 2px 2px;
  14000. box-sizing:border-box;
  14001. width:100%;
  14002. }
  14003. #u13126_text {
  14004. border-width:0px;
  14005. word-wrap:break-word;
  14006. text-transform:none;
  14007. }
  14008. #u13127 {
  14009. border-width:0px;
  14010. position:absolute;
  14011. left:0px;
  14012. top:0px;
  14013. width:0px;
  14014. height:0px;
  14015. }
  14016. #u13128_div {
  14017. border-width:0px;
  14018. position:absolute;
  14019. left:0px;
  14020. top:0px;
  14021. width:140px;
  14022. height:30px;
  14023. background:inherit;
  14024. background-color:rgba(255, 255, 255, 1);
  14025. box-sizing:border-box;
  14026. border-width:1px;
  14027. border-style:solid;
  14028. border-color:rgba(215, 215, 215, 1);
  14029. border-radius:4px;
  14030. filter:drop-shadow(none);
  14031. transition:none;
  14032. font-size:14px;
  14033. }
  14034. #u13128 {
  14035. border-width:0px;
  14036. position:absolute;
  14037. left:711px;
  14038. top:199px;
  14039. width:140px;
  14040. height:30px;
  14041. display:flex;
  14042. transition:none;
  14043. transform-origin:50% 50%;
  14044. font-size:14px;
  14045. }
  14046. #u13128 .text {
  14047. position:absolute;
  14048. align-self:center;
  14049. padding:2px 2px 2px 2px;
  14050. box-sizing:border-box;
  14051. width:100%;
  14052. }
  14053. #u13128_text {
  14054. border-width:0px;
  14055. word-wrap:break-word;
  14056. text-transform:none;
  14057. visibility:hidden;
  14058. }
  14059. #u13129_input {
  14060. position:absolute;
  14061. left:0px;
  14062. top:0px;
  14063. width:134px;
  14064. height:23px;
  14065. padding:2px 2px 2px 2px;
  14066. font-family:'ArialMT', 'Arial', sans-serif;
  14067. font-weight:400;
  14068. font-style:normal;
  14069. font-size:14px;
  14070. letter-spacing:normal;
  14071. color:#AAAAAA;
  14072. vertical-align:none;
  14073. text-align:left;
  14074. text-transform:none;
  14075. background-color:transparent;
  14076. border-color:transparent;
  14077. }
  14078. #u13129_input.disabled {
  14079. position:absolute;
  14080. left:0px;
  14081. top:0px;
  14082. width:134px;
  14083. height:23px;
  14084. padding:2px 2px 2px 2px;
  14085. font-family:'ArialMT', 'Arial', sans-serif;
  14086. font-weight:400;
  14087. font-style:normal;
  14088. font-size:14px;
  14089. letter-spacing:normal;
  14090. color:#AAAAAA;
  14091. vertical-align:none;
  14092. text-align:left;
  14093. text-transform:none;
  14094. background-color:transparent;
  14095. border-color:transparent;
  14096. }
  14097. #u13129_div {
  14098. border-width:0px;
  14099. position:absolute;
  14100. left:0px;
  14101. top:0px;
  14102. width:134px;
  14103. height:23px;
  14104. background:inherit;
  14105. background-color:rgba(255, 255, 255, 1);
  14106. border-radius:0px;
  14107. filter:drop-shadow(none);
  14108. transition:none;
  14109. font-size:14px;
  14110. color:#AAAAAA;
  14111. }
  14112. #u13129 {
  14113. border-width:0px;
  14114. position:absolute;
  14115. left:715px;
  14116. top:201px;
  14117. width:134px;
  14118. height:23px;
  14119. display:flex;
  14120. transition:none;
  14121. transform-origin:50% 50%;
  14122. font-size:14px;
  14123. color:#AAAAAA;
  14124. }
  14125. #u13129 .text {
  14126. position:absolute;
  14127. align-self:flex-start;
  14128. padding:2px 2px 2px 2px;
  14129. box-sizing:border-box;
  14130. width:100%;
  14131. }
  14132. #u13129_div.disabled {
  14133. border-width:0px;
  14134. position:absolute;
  14135. left:0px;
  14136. top:0px;
  14137. width:134px;
  14138. height:23px;
  14139. background:inherit;
  14140. background-color:rgba(240, 240, 240, 1);
  14141. border-radius:0px;
  14142. filter:drop-shadow(none);
  14143. transition:none;
  14144. font-size:14px;
  14145. color:#AAAAAA;
  14146. }
  14147. #u13129.disabled {
  14148. }
  14149. .u13129_input_option {
  14150. font-size:14px;
  14151. }
  14152. #u13130 {
  14153. border-width:0px;
  14154. position:absolute;
  14155. left:0px;
  14156. top:0px;
  14157. width:0px;
  14158. height:0px;
  14159. }
  14160. #u13131_div {
  14161. border-width:0px;
  14162. position:absolute;
  14163. left:0px;
  14164. top:0px;
  14165. width:140px;
  14166. height:30px;
  14167. background:inherit;
  14168. background-color:rgba(255, 255, 255, 1);
  14169. box-sizing:border-box;
  14170. border-width:1px;
  14171. border-style:solid;
  14172. border-color:rgba(201, 201, 201, 1);
  14173. border-radius:4px;
  14174. filter:drop-shadow(none);
  14175. transition:none;
  14176. font-family:"Microsoft YaHei", sans-serif;
  14177. font-weight:400;
  14178. font-style:normal;
  14179. font-size:14px;
  14180. color:#CCCCCC;
  14181. text-align:left;
  14182. }
  14183. #u13131 {
  14184. border-width:0px;
  14185. position:absolute;
  14186. left:1011px;
  14187. top:239px;
  14188. width:140px;
  14189. height:30px;
  14190. display:flex;
  14191. transition:none;
  14192. transform-origin:50% 50%;
  14193. font-family:"Microsoft YaHei", sans-serif;
  14194. font-weight:400;
  14195. font-style:normal;
  14196. font-size:14px;
  14197. color:#CCCCCC;
  14198. text-align:left;
  14199. }
  14200. #u13131 .text {
  14201. position:absolute;
  14202. align-self:center;
  14203. padding:2px 8px 2px 8px;
  14204. box-sizing:border-box;
  14205. width:100%;
  14206. }
  14207. #u13131_text {
  14208. border-width:0px;
  14209. word-wrap:break-word;
  14210. text-transform:none;
  14211. visibility:hidden;
  14212. }
  14213. #u13132_input {
  14214. position:absolute;
  14215. left:0px;
  14216. top:0px;
  14217. width:127px;
  14218. height:25px;
  14219. padding:2px 2px 2px 2px;
  14220. font-family:"Microsoft YaHei", sans-serif;
  14221. font-weight:400;
  14222. font-style:normal;
  14223. font-size:10px;
  14224. letter-spacing:normal;
  14225. color:#000000;
  14226. vertical-align:none;
  14227. text-align:left;
  14228. text-transform:none;
  14229. background-color:transparent;
  14230. border-color:transparent;
  14231. }
  14232. #u13132_input.hint {
  14233. position:absolute;
  14234. left:0px;
  14235. top:0px;
  14236. width:127px;
  14237. height:25px;
  14238. padding:2px 2px 2px 2px;
  14239. font-family:"Microsoft YaHei", sans-serif;
  14240. font-weight:400;
  14241. font-style:normal;
  14242. font-size:12px;
  14243. letter-spacing:normal;
  14244. color:#AAAAAA;
  14245. vertical-align:none;
  14246. text-align:left;
  14247. text-transform:none;
  14248. background-color:transparent;
  14249. border-color:transparent;
  14250. }
  14251. #u13132_input.disabled {
  14252. position:absolute;
  14253. left:0px;
  14254. top:0px;
  14255. width:127px;
  14256. height:25px;
  14257. padding:2px 2px 2px 2px;
  14258. font-family:"Microsoft YaHei", sans-serif;
  14259. font-weight:400;
  14260. font-style:normal;
  14261. font-size:10px;
  14262. letter-spacing:normal;
  14263. color:#000000;
  14264. vertical-align:none;
  14265. text-align:left;
  14266. text-transform:none;
  14267. background-color:transparent;
  14268. border-color:transparent;
  14269. }
  14270. #u13132_input.hint.disabled {
  14271. position:absolute;
  14272. left:0px;
  14273. top:0px;
  14274. width:127px;
  14275. height:25px;
  14276. padding:2px 2px 2px 2px;
  14277. font-family:"Microsoft YaHei", sans-serif;
  14278. font-weight:400;
  14279. font-style:normal;
  14280. font-size:12px;
  14281. letter-spacing:normal;
  14282. color:#AAAAAA;
  14283. vertical-align:none;
  14284. text-align:left;
  14285. text-transform:none;
  14286. background-color:transparent;
  14287. border-color:transparent;
  14288. }
  14289. #u13132_div {
  14290. border-width:0px;
  14291. position:absolute;
  14292. left:0px;
  14293. top:0px;
  14294. width:127px;
  14295. height:25px;
  14296. background:inherit;
  14297. background-color:rgba(255, 255, 255, 1);
  14298. border-radius:0px;
  14299. filter:drop-shadow(none);
  14300. transition:none;
  14301. font-family:"Microsoft YaHei", sans-serif;
  14302. font-weight:400;
  14303. font-style:normal;
  14304. font-size:10px;
  14305. }
  14306. #u13132 {
  14307. border-width:0px;
  14308. position:absolute;
  14309. left:1019px;
  14310. top:240px;
  14311. width:127px;
  14312. height:25px;
  14313. display:flex;
  14314. transition:none;
  14315. transform-origin:50% 50%;
  14316. font-family:"Microsoft YaHei", sans-serif;
  14317. font-weight:400;
  14318. font-style:normal;
  14319. font-size:10px;
  14320. }
  14321. #u13132 .text {
  14322. position:absolute;
  14323. align-self:center;
  14324. padding:2px 2px 2px 2px;
  14325. box-sizing:border-box;
  14326. width:100%;
  14327. }
  14328. #u13132_div.hint {
  14329. border-width:0px;
  14330. position:absolute;
  14331. left:0px;
  14332. top:0px;
  14333. width:127px;
  14334. height:25px;
  14335. background:inherit;
  14336. background-color:rgba(255, 255, 255, 1);
  14337. border-radius:0px;
  14338. filter:drop-shadow(none);
  14339. transition:none;
  14340. font-family:"Microsoft YaHei", sans-serif;
  14341. font-weight:400;
  14342. font-style:normal;
  14343. font-size:10px;
  14344. }
  14345. #u13132.hint {
  14346. }
  14347. #u13132_div.disabled {
  14348. border-width:0px;
  14349. position:absolute;
  14350. left:0px;
  14351. top:0px;
  14352. width:127px;
  14353. height:25px;
  14354. background:inherit;
  14355. background-color:rgba(240, 240, 240, 1);
  14356. border-radius:0px;
  14357. filter:drop-shadow(none);
  14358. transition:none;
  14359. font-family:"Microsoft YaHei", sans-serif;
  14360. font-weight:400;
  14361. font-style:normal;
  14362. font-size:10px;
  14363. }
  14364. #u13132.disabled {
  14365. }
  14366. #u13132_div.hint.disabled {
  14367. border-width:0px;
  14368. position:absolute;
  14369. left:0px;
  14370. top:0px;
  14371. width:127px;
  14372. height:25px;
  14373. background:inherit;
  14374. background-color:rgba(240, 240, 240, 1);
  14375. border-radius:0px;
  14376. filter:drop-shadow(none);
  14377. transition:none;
  14378. font-family:"Microsoft YaHei", sans-serif;
  14379. font-weight:400;
  14380. font-style:normal;
  14381. font-size:10px;
  14382. }
  14383. #u13132.hint.disabled {
  14384. }
  14385. #u13133 {
  14386. border-width:0px;
  14387. position:absolute;
  14388. left:0px;
  14389. top:0px;
  14390. width:0px;
  14391. height:0px;
  14392. }
  14393. #u13134_div {
  14394. border-width:0px;
  14395. position:absolute;
  14396. left:0px;
  14397. top:0px;
  14398. width:140px;
  14399. height:30px;
  14400. background:inherit;
  14401. background-color:rgba(242, 242, 242, 1);
  14402. box-sizing:border-box;
  14403. border-width:1px;
  14404. border-style:solid;
  14405. border-color:rgba(215, 215, 215, 1);
  14406. border-radius:4px;
  14407. filter:drop-shadow(none);
  14408. transition:none;
  14409. font-size:14px;
  14410. }
  14411. #u13134 {
  14412. border-width:0px;
  14413. position:absolute;
  14414. left:563px;
  14415. top:199px;
  14416. width:140px;
  14417. height:30px;
  14418. display:flex;
  14419. transition:none;
  14420. transform-origin:50% 50%;
  14421. font-size:14px;
  14422. }
  14423. #u13134 .text {
  14424. position:absolute;
  14425. align-self:center;
  14426. padding:2px 2px 2px 2px;
  14427. box-sizing:border-box;
  14428. width:100%;
  14429. }
  14430. #u13134_text {
  14431. border-width:0px;
  14432. word-wrap:break-word;
  14433. text-transform:none;
  14434. visibility:hidden;
  14435. }
  14436. #u13135_input {
  14437. position:absolute;
  14438. left:0px;
  14439. top:0px;
  14440. width:134px;
  14441. height:23px;
  14442. padding:2px 2px 2px 2px;
  14443. font-family:'ArialMT', 'Arial', sans-serif;
  14444. font-weight:400;
  14445. font-style:normal;
  14446. font-size:14px;
  14447. letter-spacing:normal;
  14448. color:#AAAAAA;
  14449. vertical-align:none;
  14450. text-align:left;
  14451. text-transform:none;
  14452. background-color:transparent;
  14453. border-color:transparent;
  14454. }
  14455. #u13135_input.disabled {
  14456. position:absolute;
  14457. left:0px;
  14458. top:0px;
  14459. width:134px;
  14460. height:23px;
  14461. padding:2px 2px 2px 2px;
  14462. font-family:'ArialMT', 'Arial', sans-serif;
  14463. font-weight:400;
  14464. font-style:normal;
  14465. font-size:14px;
  14466. letter-spacing:normal;
  14467. color:#AAAAAA;
  14468. vertical-align:none;
  14469. text-align:left;
  14470. text-transform:none;
  14471. background-color:transparent;
  14472. border-color:transparent;
  14473. }
  14474. #u13135_div {
  14475. border-width:0px;
  14476. position:absolute;
  14477. left:0px;
  14478. top:0px;
  14479. width:134px;
  14480. height:23px;
  14481. background:inherit;
  14482. background-color:rgba(242, 242, 242, 1);
  14483. border-radius:0px;
  14484. filter:drop-shadow(none);
  14485. transition:none;
  14486. font-size:14px;
  14487. color:#AAAAAA;
  14488. }
  14489. #u13135 {
  14490. border-width:0px;
  14491. position:absolute;
  14492. left:567px;
  14493. top:201px;
  14494. width:134px;
  14495. height:23px;
  14496. display:flex;
  14497. transition:none;
  14498. transform-origin:50% 50%;
  14499. font-size:14px;
  14500. color:#AAAAAA;
  14501. }
  14502. #u13135 .text {
  14503. position:absolute;
  14504. align-self:flex-start;
  14505. padding:2px 2px 2px 2px;
  14506. box-sizing:border-box;
  14507. width:100%;
  14508. }
  14509. #u13135_div.disabled {
  14510. border-width:0px;
  14511. position:absolute;
  14512. left:0px;
  14513. top:0px;
  14514. width:134px;
  14515. height:23px;
  14516. background:inherit;
  14517. background-color:rgba(240, 240, 240, 1);
  14518. border-radius:0px;
  14519. filter:drop-shadow(none);
  14520. transition:none;
  14521. font-size:14px;
  14522. color:#AAAAAA;
  14523. }
  14524. #u13135.disabled {
  14525. }
  14526. .u13135_input_option {
  14527. font-size:14px;
  14528. }
  14529. #u13136 {
  14530. border-width:0px;
  14531. position:absolute;
  14532. left:0px;
  14533. top:0px;
  14534. width:0px;
  14535. height:0px;
  14536. }
  14537. #u13137_div {
  14538. border-width:0px;
  14539. position:absolute;
  14540. left:0px;
  14541. top:0px;
  14542. width:140px;
  14543. height:30px;
  14544. background:inherit;
  14545. background-color:rgba(255, 255, 255, 1);
  14546. box-sizing:border-box;
  14547. border-width:1px;
  14548. border-style:solid;
  14549. border-color:rgba(215, 215, 215, 1);
  14550. border-radius:4px;
  14551. filter:drop-shadow(none);
  14552. transition:none;
  14553. font-size:14px;
  14554. }
  14555. #u13137 {
  14556. border-width:0px;
  14557. position:absolute;
  14558. left:861px;
  14559. top:199px;
  14560. width:140px;
  14561. height:30px;
  14562. display:flex;
  14563. transition:none;
  14564. transform-origin:50% 50%;
  14565. font-size:14px;
  14566. }
  14567. #u13137 .text {
  14568. position:absolute;
  14569. align-self:center;
  14570. padding:2px 2px 2px 2px;
  14571. box-sizing:border-box;
  14572. width:100%;
  14573. }
  14574. #u13137_text {
  14575. border-width:0px;
  14576. word-wrap:break-word;
  14577. text-transform:none;
  14578. visibility:hidden;
  14579. }
  14580. #u13138_input {
  14581. position:absolute;
  14582. left:0px;
  14583. top:0px;
  14584. width:134px;
  14585. height:23px;
  14586. padding:2px 2px 2px 2px;
  14587. font-family:'ArialMT', 'Arial', sans-serif;
  14588. font-weight:400;
  14589. font-style:normal;
  14590. font-size:14px;
  14591. letter-spacing:normal;
  14592. color:#AAAAAA;
  14593. vertical-align:none;
  14594. text-align:left;
  14595. text-transform:none;
  14596. background-color:transparent;
  14597. border-color:transparent;
  14598. }
  14599. #u13138_input.disabled {
  14600. position:absolute;
  14601. left:0px;
  14602. top:0px;
  14603. width:134px;
  14604. height:23px;
  14605. padding:2px 2px 2px 2px;
  14606. font-family:'ArialMT', 'Arial', sans-serif;
  14607. font-weight:400;
  14608. font-style:normal;
  14609. font-size:14px;
  14610. letter-spacing:normal;
  14611. color:#AAAAAA;
  14612. vertical-align:none;
  14613. text-align:left;
  14614. text-transform:none;
  14615. background-color:transparent;
  14616. border-color:transparent;
  14617. }
  14618. #u13138_div {
  14619. border-width:0px;
  14620. position:absolute;
  14621. left:0px;
  14622. top:0px;
  14623. width:134px;
  14624. height:23px;
  14625. background:inherit;
  14626. background-color:rgba(255, 255, 255, 1);
  14627. border-radius:0px;
  14628. filter:drop-shadow(none);
  14629. transition:none;
  14630. font-size:14px;
  14631. color:#AAAAAA;
  14632. }
  14633. #u13138 {
  14634. border-width:0px;
  14635. position:absolute;
  14636. left:865px;
  14637. top:201px;
  14638. width:134px;
  14639. height:23px;
  14640. display:flex;
  14641. transition:none;
  14642. transform-origin:50% 50%;
  14643. font-size:14px;
  14644. color:#AAAAAA;
  14645. }
  14646. #u13138 .text {
  14647. position:absolute;
  14648. align-self:flex-start;
  14649. padding:2px 2px 2px 2px;
  14650. box-sizing:border-box;
  14651. width:100%;
  14652. }
  14653. #u13138_div.disabled {
  14654. border-width:0px;
  14655. position:absolute;
  14656. left:0px;
  14657. top:0px;
  14658. width:134px;
  14659. height:23px;
  14660. background:inherit;
  14661. background-color:rgba(240, 240, 240, 1);
  14662. border-radius:0px;
  14663. filter:drop-shadow(none);
  14664. transition:none;
  14665. font-size:14px;
  14666. color:#AAAAAA;
  14667. }
  14668. #u13138.disabled {
  14669. }
  14670. .u13138_input_option {
  14671. font-size:14px;
  14672. }
  14673. #u13139 {
  14674. border-width:0px;
  14675. position:absolute;
  14676. left:0px;
  14677. top:0px;
  14678. width:0px;
  14679. height:0px;
  14680. }
  14681. #u13140_div {
  14682. border-width:0px;
  14683. position:absolute;
  14684. left:0px;
  14685. top:0px;
  14686. width:140px;
  14687. height:30px;
  14688. background:inherit;
  14689. background-color:rgba(255, 255, 255, 1);
  14690. box-sizing:border-box;
  14691. border-width:1px;
  14692. border-style:solid;
  14693. border-color:rgba(215, 215, 215, 1);
  14694. border-radius:4px;
  14695. filter:drop-shadow(none);
  14696. transition:none;
  14697. font-size:14px;
  14698. }
  14699. #u13140 {
  14700. border-width:0px;
  14701. position:absolute;
  14702. left:1011px;
  14703. top:199px;
  14704. width:140px;
  14705. height:30px;
  14706. display:flex;
  14707. transition:none;
  14708. transform-origin:50% 50%;
  14709. font-size:14px;
  14710. }
  14711. #u13140 .text {
  14712. position:absolute;
  14713. align-self:center;
  14714. padding:2px 2px 2px 2px;
  14715. box-sizing:border-box;
  14716. width:100%;
  14717. }
  14718. #u13140_text {
  14719. border-width:0px;
  14720. word-wrap:break-word;
  14721. text-transform:none;
  14722. visibility:hidden;
  14723. }
  14724. #u13141_input {
  14725. position:absolute;
  14726. left:0px;
  14727. top:0px;
  14728. width:134px;
  14729. height:23px;
  14730. padding:2px 2px 2px 2px;
  14731. font-family:'ArialMT', 'Arial', sans-serif;
  14732. font-weight:400;
  14733. font-style:normal;
  14734. font-size:14px;
  14735. letter-spacing:normal;
  14736. color:#AAAAAA;
  14737. vertical-align:none;
  14738. text-align:left;
  14739. text-transform:none;
  14740. background-color:transparent;
  14741. border-color:transparent;
  14742. }
  14743. #u13141_input.disabled {
  14744. position:absolute;
  14745. left:0px;
  14746. top:0px;
  14747. width:134px;
  14748. height:23px;
  14749. padding:2px 2px 2px 2px;
  14750. font-family:'ArialMT', 'Arial', sans-serif;
  14751. font-weight:400;
  14752. font-style:normal;
  14753. font-size:14px;
  14754. letter-spacing:normal;
  14755. color:#AAAAAA;
  14756. vertical-align:none;
  14757. text-align:left;
  14758. text-transform:none;
  14759. background-color:transparent;
  14760. border-color:transparent;
  14761. }
  14762. #u13141_div {
  14763. border-width:0px;
  14764. position:absolute;
  14765. left:0px;
  14766. top:0px;
  14767. width:134px;
  14768. height:23px;
  14769. background:inherit;
  14770. background-color:rgba(255, 255, 255, 1);
  14771. border-radius:0px;
  14772. filter:drop-shadow(none);
  14773. transition:none;
  14774. font-size:14px;
  14775. color:#AAAAAA;
  14776. }
  14777. #u13141 {
  14778. border-width:0px;
  14779. position:absolute;
  14780. left:1015px;
  14781. top:201px;
  14782. width:134px;
  14783. height:23px;
  14784. display:flex;
  14785. transition:none;
  14786. transform-origin:50% 50%;
  14787. font-size:14px;
  14788. color:#AAAAAA;
  14789. }
  14790. #u13141 .text {
  14791. position:absolute;
  14792. align-self:flex-start;
  14793. padding:2px 2px 2px 2px;
  14794. box-sizing:border-box;
  14795. width:100%;
  14796. }
  14797. #u13141_div.disabled {
  14798. border-width:0px;
  14799. position:absolute;
  14800. left:0px;
  14801. top:0px;
  14802. width:134px;
  14803. height:23px;
  14804. background:inherit;
  14805. background-color:rgba(240, 240, 240, 1);
  14806. border-radius:0px;
  14807. filter:drop-shadow(none);
  14808. transition:none;
  14809. font-size:14px;
  14810. color:#AAAAAA;
  14811. }
  14812. #u13141.disabled {
  14813. }
  14814. .u13141_input_option {
  14815. font-size:14px;
  14816. }