styles.css 205 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2757px;
  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. #u12736 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u12737_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u12737 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u12737 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u12737_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u12738_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u12738 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u12738 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u12738_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u12739_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u12739 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u12739 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u12739_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u12740 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u12741 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u12741 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u12741_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u12741_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u12742_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u12742 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u12742 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u12742_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u12743_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u12743 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u12743 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u12743_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u12744 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u12745_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u12745 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u12745 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u12745_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u12746 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u12746 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u12746_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u12746_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u12747 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u12748_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u12748 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u12748 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u12748_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u12749 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u12749 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u12749_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u12749_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u12750 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u12751_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u12751 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u12751 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u12751_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u12752 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u12752 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u12752_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u12752_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u12753 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u12754_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u12754 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u12754 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u12754_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u12755 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u12755 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u12755_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u12755_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u12756 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u12757_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u12757 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u12757 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u12757_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u12758 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u12758 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u12758_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u12758_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u12759 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u12760_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u12760 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u12760 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u12760_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u12761 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u12761 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u12761_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u12761_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u12762 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u12763_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u12763 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u12763 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u12763_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u12764 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u12764 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u12764_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u12764_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u12765 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u12766_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u12766 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u12766 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u12766_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u12767 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u12767 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u12767_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u12767_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u12768 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u12769_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u12769 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u12769 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u12769_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u12770 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u12770 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u12770_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u12770_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u12771 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u12772_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u12772 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u12772 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u12772_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u12773 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u12773 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u12773_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u12773_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u12774 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u12775_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u12775 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u12775 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u12775_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u12776 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u12776 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u12776_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u12776_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u12777 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u12778_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:"ArialMT", "Arial", sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u12778_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:"ArialMT", "Arial", sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u12778_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u12778 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u12778 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u12778_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u12778.disabled {
  1294. }
  1295. .u12778_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u12779 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u12779 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u12779_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u12779_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u12780_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u12780 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u12780 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u12780_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u12781 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u12781 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u12781_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u12781_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u12782 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u12783_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u12783 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u12783 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u12783_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u12784 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u12784 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u12784_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u12784_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u12785 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u12785 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u12785_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u12785_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u12786 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u12786 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u12786_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u12786_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u12787 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u12787 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u12787_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u12787_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u12788 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u12789_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u12789 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u12789 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u12789_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u12790 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u12790 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u12790_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u12790_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u12791_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1259px;
  1673. height:1180px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. }
  1680. #u12791 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:330px;
  1684. top:50px;
  1685. width:1259px;
  1686. height:1180px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u12791 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u12791_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u12792 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:563px;
  1708. top:332px;
  1709. width:1007px;
  1710. height:318px;
  1711. }
  1712. #u12793 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:100px;
  1718. height:34px;
  1719. display:flex;
  1720. transition:none;
  1721. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:12px;
  1725. color:#FFFFFF;
  1726. }
  1727. #u12793 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u12793_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:100px;
  1740. height:34px;
  1741. }
  1742. #u12793_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u12794 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:100px;
  1751. top:0px;
  1752. width:100px;
  1753. height:34px;
  1754. display:flex;
  1755. transition:none;
  1756. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:12px;
  1760. color:#FFFFFF;
  1761. }
  1762. #u12794 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u12794_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:100px;
  1775. height:34px;
  1776. }
  1777. #u12794_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u12795 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:199px;
  1786. top:0px;
  1787. width:83px;
  1788. height:34px;
  1789. display:flex;
  1790. transition:none;
  1791. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:12px;
  1795. color:#FFFFFF;
  1796. }
  1797. #u12795 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u12795_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:83px;
  1810. height:34px;
  1811. }
  1812. #u12795_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u12796 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:282px;
  1821. top:0px;
  1822. width:101px;
  1823. height:34px;
  1824. display:flex;
  1825. transition:none;
  1826. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:12px;
  1830. color:#FFFFFF;
  1831. }
  1832. #u12796 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u12796_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:101px;
  1845. height:34px;
  1846. }
  1847. #u12796_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u12797 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:383px;
  1856. top:0px;
  1857. width:96px;
  1858. height:34px;
  1859. display:flex;
  1860. transition:none;
  1861. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u12797 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u12797_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:96px;
  1880. height:34px;
  1881. }
  1882. #u12797_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u12798 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:479px;
  1891. top:0px;
  1892. width:96px;
  1893. height:34px;
  1894. display:flex;
  1895. transition:none;
  1896. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:12px;
  1900. color:#FFFFFF;
  1901. }
  1902. #u12798 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u12798_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:96px;
  1915. height:34px;
  1916. }
  1917. #u12798_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u12799 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:576px;
  1926. top:0px;
  1927. width:101px;
  1928. height:34px;
  1929. display:flex;
  1930. transition:none;
  1931. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#FFFFFF;
  1936. }
  1937. #u12799 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u12799_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:101px;
  1950. height:34px;
  1951. }
  1952. #u12799_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u12800 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:676px;
  1961. top:0px;
  1962. width:96px;
  1963. height:34px;
  1964. display:flex;
  1965. transition:none;
  1966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u12800 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u12800_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:96px;
  1985. height:34px;
  1986. }
  1987. #u12800_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u12801 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:773px;
  1996. top:0px;
  1997. width:96px;
  1998. height:34px;
  1999. display:flex;
  2000. transition:none;
  2001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u12801 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u12801_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:96px;
  2020. height:34px;
  2021. }
  2022. #u12801_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u12802 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:869px;
  2031. top:0px;
  2032. width:138px;
  2033. height:34px;
  2034. display:flex;
  2035. transition:none;
  2036. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u12802 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u12802_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:138px;
  2055. height:34px;
  2056. }
  2057. #u12802_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u12803 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:34px;
  2067. width:100px;
  2068. height:44px;
  2069. display:flex;
  2070. transition:none;
  2071. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:12px;
  2075. color:#333333;
  2076. line-height:40px;
  2077. }
  2078. #u12803 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:2px 2px 2px 0px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u12803_img {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:100px;
  2091. height:44px;
  2092. }
  2093. #u12803_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u12804 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:100px;
  2103. top:34px;
  2104. width:100px;
  2105. height:44px;
  2106. display:flex;
  2107. transition:none;
  2108. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2109. font-weight:400;
  2110. font-style:normal;
  2111. font-size:12px;
  2112. color:#333333;
  2113. line-height:40px;
  2114. }
  2115. #u12804 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u12804_img {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:100px;
  2128. height:44px;
  2129. }
  2130. #u12804_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. visibility:hidden;
  2135. }
  2136. #u12805 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:199px;
  2140. top:34px;
  2141. width:83px;
  2142. height:44px;
  2143. display:flex;
  2144. transition:none;
  2145. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:12px;
  2149. color:#333333;
  2150. line-height:40px;
  2151. }
  2152. #u12805 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 0px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u12805_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:83px;
  2165. height:44px;
  2166. }
  2167. #u12805_text {
  2168. border-width:0px;
  2169. word-wrap:break-word;
  2170. text-transform:none;
  2171. visibility:hidden;
  2172. }
  2173. #u12806 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:282px;
  2177. top:34px;
  2178. width:101px;
  2179. height:44px;
  2180. display:flex;
  2181. transition:none;
  2182. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:12px;
  2186. color:#333333;
  2187. line-height:40px;
  2188. }
  2189. #u12806 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 0px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u12806_img {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:101px;
  2202. height:44px;
  2203. }
  2204. #u12806_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. visibility:hidden;
  2209. }
  2210. #u12807 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:383px;
  2214. top:34px;
  2215. width:96px;
  2216. height:44px;
  2217. display:flex;
  2218. transition:none;
  2219. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. color:#333333;
  2224. line-height:40px;
  2225. }
  2226. #u12807 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 2px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u12807_img {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:96px;
  2239. height:44px;
  2240. }
  2241. #u12807_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. }
  2246. #u12808 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:479px;
  2250. top:34px;
  2251. width:96px;
  2252. height:44px;
  2253. display:flex;
  2254. transition:none;
  2255. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:12px;
  2259. color:#333333;
  2260. line-height:40px;
  2261. }
  2262. #u12808 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 0px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u12808_img {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:96px;
  2275. height:44px;
  2276. }
  2277. #u12808_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. visibility:hidden;
  2282. }
  2283. #u12809 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:576px;
  2287. top:34px;
  2288. width:101px;
  2289. height:44px;
  2290. display:flex;
  2291. transition:none;
  2292. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:12px;
  2296. color:#333333;
  2297. line-height:40px;
  2298. }
  2299. #u12809 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u12809_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:101px;
  2312. height:44px;
  2313. }
  2314. #u12809_text {
  2315. border-width:0px;
  2316. word-wrap:break-word;
  2317. text-transform:none;
  2318. visibility:hidden;
  2319. }
  2320. #u12810 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:676px;
  2324. top:34px;
  2325. width:96px;
  2326. height:44px;
  2327. display:flex;
  2328. transition:none;
  2329. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. color:#333333;
  2334. line-height:40px;
  2335. }
  2336. #u12810 .text {
  2337. position:absolute;
  2338. align-self:center;
  2339. padding:2px 2px 2px 0px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u12810_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:96px;
  2349. height:44px;
  2350. }
  2351. #u12810_text {
  2352. border-width:0px;
  2353. word-wrap:break-word;
  2354. text-transform:none;
  2355. visibility:hidden;
  2356. }
  2357. #u12811 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:773px;
  2361. top:34px;
  2362. width:96px;
  2363. height:44px;
  2364. display:flex;
  2365. transition:none;
  2366. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:12px;
  2370. color:#333333;
  2371. line-height:40px;
  2372. }
  2373. #u12811 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u12811_img {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:96px;
  2386. height:44px;
  2387. }
  2388. #u12811_text {
  2389. border-width:0px;
  2390. word-wrap:break-word;
  2391. text-transform:none;
  2392. visibility:hidden;
  2393. }
  2394. #u12812 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:869px;
  2398. top:34px;
  2399. width:138px;
  2400. height:44px;
  2401. display:flex;
  2402. transition:none;
  2403. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2404. font-weight:400;
  2405. font-style:normal;
  2406. font-size:12px;
  2407. line-height:35px;
  2408. }
  2409. #u12812 .text {
  2410. position:absolute;
  2411. align-self:center;
  2412. padding:2px 2px 2px 0px;
  2413. box-sizing:border-box;
  2414. width:100%;
  2415. }
  2416. #u12812_img {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:138px;
  2422. height:44px;
  2423. }
  2424. #u12812_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. }
  2429. #u12813 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:78px;
  2434. width:100px;
  2435. height:44px;
  2436. display:flex;
  2437. transition:none;
  2438. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2439. font-weight:400;
  2440. font-style:normal;
  2441. font-size:12px;
  2442. color:#333333;
  2443. line-height:40px;
  2444. }
  2445. #u12813 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 0px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u12813_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:100px;
  2458. height:44px;
  2459. }
  2460. #u12813_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. visibility:hidden;
  2465. }
  2466. #u12814 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:100px;
  2470. top:78px;
  2471. width:100px;
  2472. height:44px;
  2473. display:flex;
  2474. transition:none;
  2475. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. color:#333333;
  2480. line-height:40px;
  2481. }
  2482. #u12814 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 2px 2px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u12814_img {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:100px;
  2495. height:44px;
  2496. }
  2497. #u12814_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u12815 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:199px;
  2507. top:78px;
  2508. width:83px;
  2509. height:44px;
  2510. display:flex;
  2511. transition:none;
  2512. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:12px;
  2516. color:#333333;
  2517. line-height:40px;
  2518. }
  2519. #u12815 .text {
  2520. position:absolute;
  2521. align-self:center;
  2522. padding:2px 2px 2px 0px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u12815_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:83px;
  2532. height:44px;
  2533. }
  2534. #u12815_text {
  2535. border-width:0px;
  2536. word-wrap:break-word;
  2537. text-transform:none;
  2538. visibility:hidden;
  2539. }
  2540. #u12816 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:282px;
  2544. top:78px;
  2545. width:101px;
  2546. height:44px;
  2547. display:flex;
  2548. transition:none;
  2549. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:12px;
  2553. color:#333333;
  2554. line-height:40px;
  2555. }
  2556. #u12816 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 0px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u12816_img {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:101px;
  2569. height:44px;
  2570. }
  2571. #u12816_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u12817 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:383px;
  2581. top:78px;
  2582. width:96px;
  2583. height:44px;
  2584. display:flex;
  2585. transition:none;
  2586. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:12px;
  2590. color:#333333;
  2591. line-height:40px;
  2592. }
  2593. #u12817 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u12817_img {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:96px;
  2606. height:44px;
  2607. }
  2608. #u12817_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. }
  2613. #u12818 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:479px;
  2617. top:78px;
  2618. width:96px;
  2619. height:44px;
  2620. display:flex;
  2621. transition:none;
  2622. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:12px;
  2626. color:#333333;
  2627. line-height:40px;
  2628. }
  2629. #u12818 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 0px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u12818_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:96px;
  2642. height:44px;
  2643. }
  2644. #u12818_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u12819 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:576px;
  2654. top:78px;
  2655. width:101px;
  2656. height:44px;
  2657. display:flex;
  2658. transition:none;
  2659. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:12px;
  2663. color:#333333;
  2664. line-height:40px;
  2665. }
  2666. #u12819 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u12819_img {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:101px;
  2679. height:44px;
  2680. }
  2681. #u12819_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u12820 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:676px;
  2691. top:78px;
  2692. width:96px;
  2693. height:44px;
  2694. display:flex;
  2695. transition:none;
  2696. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. color:#333333;
  2701. line-height:40px;
  2702. }
  2703. #u12820 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u12820_img {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:96px;
  2716. height:44px;
  2717. }
  2718. #u12820_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u12821 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:773px;
  2728. top:78px;
  2729. width:96px;
  2730. height:44px;
  2731. display:flex;
  2732. transition:none;
  2733. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:12px;
  2737. color:#333333;
  2738. line-height:40px;
  2739. }
  2740. #u12821 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u12821_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:96px;
  2753. height:44px;
  2754. }
  2755. #u12821_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. visibility:hidden;
  2760. }
  2761. #u12822 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:869px;
  2765. top:78px;
  2766. width:138px;
  2767. height:44px;
  2768. display:flex;
  2769. transition:none;
  2770. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:12px;
  2774. color:#298FFF;
  2775. line-height:35px;
  2776. }
  2777. #u12822 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u12822_img {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:138px;
  2790. height:44px;
  2791. }
  2792. #u12822_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. }
  2797. #u12823 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:122px;
  2802. width:100px;
  2803. height:44px;
  2804. display:flex;
  2805. transition:none;
  2806. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:12px;
  2810. color:#333333;
  2811. line-height:40px;
  2812. }
  2813. #u12823 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u12823_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:100px;
  2826. height:44px;
  2827. }
  2828. #u12823_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u12824 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:100px;
  2838. top:122px;
  2839. width:100px;
  2840. height:44px;
  2841. display:flex;
  2842. transition:none;
  2843. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:12px;
  2847. color:#333333;
  2848. line-height:40px;
  2849. }
  2850. #u12824 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 0px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u12824_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:100px;
  2863. height:44px;
  2864. }
  2865. #u12824_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. visibility:hidden;
  2870. }
  2871. #u12825 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:199px;
  2875. top:122px;
  2876. width:83px;
  2877. height:44px;
  2878. display:flex;
  2879. transition:none;
  2880. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:12px;
  2884. color:#333333;
  2885. line-height:40px;
  2886. }
  2887. #u12825 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u12825_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:83px;
  2900. height:44px;
  2901. }
  2902. #u12825_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. visibility:hidden;
  2907. }
  2908. #u12826 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:282px;
  2912. top:122px;
  2913. width:101px;
  2914. height:44px;
  2915. display:flex;
  2916. transition:none;
  2917. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:12px;
  2921. color:#333333;
  2922. line-height:40px;
  2923. }
  2924. #u12826 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 0px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u12826_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:101px;
  2937. height:44px;
  2938. }
  2939. #u12826_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. visibility:hidden;
  2944. }
  2945. #u12827 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:383px;
  2949. top:122px;
  2950. width:96px;
  2951. height:44px;
  2952. display:flex;
  2953. transition:none;
  2954. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. color:#333333;
  2959. line-height:40px;
  2960. }
  2961. #u12827 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u12827_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:96px;
  2974. height:44px;
  2975. }
  2976. #u12827_text {
  2977. border-width:0px;
  2978. word-wrap:break-word;
  2979. text-transform:none;
  2980. }
  2981. #u12828 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:479px;
  2985. top:122px;
  2986. width:96px;
  2987. height:44px;
  2988. display:flex;
  2989. transition:none;
  2990. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. color:#333333;
  2995. line-height:40px;
  2996. }
  2997. #u12828 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 0px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u12828_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:96px;
  3010. height:44px;
  3011. }
  3012. #u12828_text {
  3013. border-width:0px;
  3014. word-wrap:break-word;
  3015. text-transform:none;
  3016. visibility:hidden;
  3017. }
  3018. #u12829 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:576px;
  3022. top:122px;
  3023. width:101px;
  3024. height:44px;
  3025. display:flex;
  3026. transition:none;
  3027. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. color:#333333;
  3032. line-height:40px;
  3033. }
  3034. #u12829 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:2px 2px 2px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u12829_img {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:101px;
  3047. height:44px;
  3048. }
  3049. #u12829_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u12830 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:676px;
  3059. top:122px;
  3060. width:96px;
  3061. height:44px;
  3062. display:flex;
  3063. transition:none;
  3064. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. color:#333333;
  3069. line-height:40px;
  3070. }
  3071. #u12830 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:2px 2px 2px 0px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u12830_img {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:0px;
  3083. width:96px;
  3084. height:44px;
  3085. }
  3086. #u12830_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u12831 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:773px;
  3096. top:122px;
  3097. width:96px;
  3098. height:44px;
  3099. display:flex;
  3100. transition:none;
  3101. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:12px;
  3105. color:#333333;
  3106. line-height:40px;
  3107. }
  3108. #u12831 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u12831_img {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:96px;
  3121. height:44px;
  3122. }
  3123. #u12831_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u12832 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:869px;
  3133. top:122px;
  3134. width:138px;
  3135. height:44px;
  3136. display:flex;
  3137. transition:none;
  3138. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3139. font-weight:400;
  3140. font-style:normal;
  3141. font-size:12px;
  3142. color:#1890FF;
  3143. }
  3144. #u12832 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 0px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u12832_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:138px;
  3157. height:44px;
  3158. }
  3159. #u12832_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. visibility:hidden;
  3164. }
  3165. #u12833 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:166px;
  3170. width:100px;
  3171. height:38px;
  3172. display:flex;
  3173. transition:none;
  3174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:12px;
  3178. color:#606266;
  3179. }
  3180. #u12833 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:2px 2px 2px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u12833_img {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:100px;
  3193. height:38px;
  3194. }
  3195. #u12833_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. visibility:hidden;
  3200. }
  3201. #u12834 {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:100px;
  3205. top:166px;
  3206. width:100px;
  3207. height:38px;
  3208. display:flex;
  3209. transition:none;
  3210. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:12px;
  3214. color:#606266;
  3215. }
  3216. #u12834 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 0px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u12834_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:100px;
  3229. height:38px;
  3230. }
  3231. #u12834_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u12835 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:199px;
  3241. top:166px;
  3242. width:83px;
  3243. height:38px;
  3244. display:flex;
  3245. transition:none;
  3246. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:12px;
  3250. color:#606266;
  3251. }
  3252. #u12835 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 2px 2px 0px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u12835_img {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:83px;
  3265. height:38px;
  3266. }
  3267. #u12835_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u12836 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:282px;
  3277. top:166px;
  3278. width:101px;
  3279. height:38px;
  3280. display:flex;
  3281. transition:none;
  3282. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:12px;
  3286. color:#606266;
  3287. }
  3288. #u12836 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u12836_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:101px;
  3301. height:38px;
  3302. }
  3303. #u12836_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u12837 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:383px;
  3313. top:166px;
  3314. width:96px;
  3315. height:38px;
  3316. display:flex;
  3317. transition:none;
  3318. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:12px;
  3322. color:#606266;
  3323. }
  3324. #u12837 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 2px 2px 0px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u12837_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:96px;
  3337. height:38px;
  3338. }
  3339. #u12837_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u12838 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:479px;
  3349. top:166px;
  3350. width:96px;
  3351. height:38px;
  3352. display:flex;
  3353. transition:none;
  3354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. color:#606266;
  3359. }
  3360. #u12838 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u12838_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:96px;
  3373. height:38px;
  3374. }
  3375. #u12838_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. visibility:hidden;
  3380. }
  3381. #u12839 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:576px;
  3385. top:166px;
  3386. width:101px;
  3387. height:38px;
  3388. display:flex;
  3389. transition:none;
  3390. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:12px;
  3394. color:#606266;
  3395. }
  3396. #u12839 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u12839_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:101px;
  3409. height:38px;
  3410. }
  3411. #u12839_text {
  3412. border-width:0px;
  3413. word-wrap:break-word;
  3414. text-transform:none;
  3415. visibility:hidden;
  3416. }
  3417. #u12840 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:676px;
  3421. top:166px;
  3422. width:96px;
  3423. height:38px;
  3424. display:flex;
  3425. transition:none;
  3426. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3427. font-weight:400;
  3428. font-style:normal;
  3429. font-size:12px;
  3430. color:#606266;
  3431. }
  3432. #u12840 .text {
  3433. position:absolute;
  3434. align-self:center;
  3435. padding:2px 2px 2px 0px;
  3436. box-sizing:border-box;
  3437. width:100%;
  3438. }
  3439. #u12840_img {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:96px;
  3445. height:38px;
  3446. }
  3447. #u12840_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u12841 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:773px;
  3457. top:166px;
  3458. width:96px;
  3459. height:38px;
  3460. display:flex;
  3461. transition:none;
  3462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:12px;
  3466. color:#606266;
  3467. }
  3468. #u12841 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:2px 2px 2px 0px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u12841_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:96px;
  3481. height:38px;
  3482. }
  3483. #u12841_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u12842 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:869px;
  3493. top:166px;
  3494. width:138px;
  3495. height:38px;
  3496. display:flex;
  3497. transition:none;
  3498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. font-size:12px;
  3502. color:#606266;
  3503. }
  3504. #u12842 .text {
  3505. position:absolute;
  3506. align-self:center;
  3507. padding:2px 2px 2px 0px;
  3508. box-sizing:border-box;
  3509. width:100%;
  3510. }
  3511. #u12842_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:138px;
  3517. height:38px;
  3518. }
  3519. #u12842_text {
  3520. border-width:0px;
  3521. word-wrap:break-word;
  3522. text-transform:none;
  3523. visibility:hidden;
  3524. }
  3525. #u12843 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:204px;
  3530. width:100px;
  3531. height:38px;
  3532. display:flex;
  3533. transition:none;
  3534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. color:#606266;
  3539. }
  3540. #u12843 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 0px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u12843_img {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:100px;
  3553. height:38px;
  3554. }
  3555. #u12843_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. visibility:hidden;
  3560. }
  3561. #u12844 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:100px;
  3565. top:204px;
  3566. width:100px;
  3567. height:38px;
  3568. display:flex;
  3569. transition:none;
  3570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#606266;
  3575. }
  3576. #u12844 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u12844_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:100px;
  3589. height:38px;
  3590. }
  3591. #u12844_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u12845 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:199px;
  3601. top:204px;
  3602. width:83px;
  3603. height:38px;
  3604. display:flex;
  3605. transition:none;
  3606. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:12px;
  3610. color:#606266;
  3611. }
  3612. #u12845 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u12845_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:83px;
  3625. height:38px;
  3626. }
  3627. #u12845_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u12846 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:282px;
  3637. top:204px;
  3638. width:101px;
  3639. height:38px;
  3640. display:flex;
  3641. transition:none;
  3642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3643. font-weight:400;
  3644. font-style:normal;
  3645. font-size:12px;
  3646. color:#606266;
  3647. }
  3648. #u12846 .text {
  3649. position:absolute;
  3650. align-self:center;
  3651. padding:2px 2px 2px 0px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u12846_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:101px;
  3661. height:38px;
  3662. }
  3663. #u12846_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u12847 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:383px;
  3673. top:204px;
  3674. width:96px;
  3675. height:38px;
  3676. display:flex;
  3677. transition:none;
  3678. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. color:#606266;
  3683. }
  3684. #u12847 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u12847_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:96px;
  3697. height:38px;
  3698. }
  3699. #u12847_text {
  3700. border-width:0px;
  3701. word-wrap:break-word;
  3702. text-transform:none;
  3703. visibility:hidden;
  3704. }
  3705. #u12848 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:479px;
  3709. top:204px;
  3710. width:96px;
  3711. height:38px;
  3712. display:flex;
  3713. transition:none;
  3714. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:12px;
  3718. color:#606266;
  3719. }
  3720. #u12848 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u12848_img {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:96px;
  3733. height:38px;
  3734. }
  3735. #u12848_text {
  3736. border-width:0px;
  3737. word-wrap:break-word;
  3738. text-transform:none;
  3739. visibility:hidden;
  3740. }
  3741. #u12849 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:576px;
  3745. top:204px;
  3746. width:101px;
  3747. height:38px;
  3748. display:flex;
  3749. transition:none;
  3750. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. font-size:12px;
  3754. color:#606266;
  3755. }
  3756. #u12849 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 0px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u12849_img {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:101px;
  3769. height:38px;
  3770. }
  3771. #u12849_text {
  3772. border-width:0px;
  3773. word-wrap:break-word;
  3774. text-transform:none;
  3775. visibility:hidden;
  3776. }
  3777. #u12850 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:676px;
  3781. top:204px;
  3782. width:96px;
  3783. height:38px;
  3784. display:flex;
  3785. transition:none;
  3786. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:12px;
  3790. color:#606266;
  3791. }
  3792. #u12850 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u12850_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:96px;
  3805. height:38px;
  3806. }
  3807. #u12850_text {
  3808. border-width:0px;
  3809. word-wrap:break-word;
  3810. text-transform:none;
  3811. visibility:hidden;
  3812. }
  3813. #u12851 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:773px;
  3817. top:204px;
  3818. width:96px;
  3819. height:38px;
  3820. display:flex;
  3821. transition:none;
  3822. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. font-size:12px;
  3826. color:#606266;
  3827. }
  3828. #u12851 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:2px 2px 2px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u12851_img {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:96px;
  3841. height:38px;
  3842. }
  3843. #u12851_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. visibility:hidden;
  3848. }
  3849. #u12852 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:869px;
  3853. top:204px;
  3854. width:138px;
  3855. height:38px;
  3856. display:flex;
  3857. transition:none;
  3858. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:12px;
  3862. color:#606266;
  3863. }
  3864. #u12852 .text {
  3865. position:absolute;
  3866. align-self:center;
  3867. padding:2px 2px 2px 0px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u12852_img {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:138px;
  3877. height:38px;
  3878. }
  3879. #u12852_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. visibility:hidden;
  3884. }
  3885. #u12853 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:242px;
  3890. width:100px;
  3891. height:38px;
  3892. display:flex;
  3893. transition:none;
  3894. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:12px;
  3898. color:#606266;
  3899. }
  3900. #u12853 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 0px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u12853_img {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:100px;
  3913. height:38px;
  3914. }
  3915. #u12853_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u12854 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:100px;
  3925. top:242px;
  3926. width:100px;
  3927. height:38px;
  3928. display:flex;
  3929. transition:none;
  3930. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:12px;
  3934. color:#606266;
  3935. }
  3936. #u12854 .text {
  3937. position:absolute;
  3938. align-self:center;
  3939. padding:2px 2px 2px 0px;
  3940. box-sizing:border-box;
  3941. width:100%;
  3942. }
  3943. #u12854_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:100px;
  3949. height:38px;
  3950. }
  3951. #u12854_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u12855 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:199px;
  3961. top:242px;
  3962. width:83px;
  3963. height:38px;
  3964. display:flex;
  3965. transition:none;
  3966. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:12px;
  3970. color:#606266;
  3971. }
  3972. #u12855 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:2px 2px 2px 0px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u12855_img {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:83px;
  3985. height:38px;
  3986. }
  3987. #u12855_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u12856 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:282px;
  3997. top:242px;
  3998. width:101px;
  3999. height:38px;
  4000. display:flex;
  4001. transition:none;
  4002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. font-size:12px;
  4006. color:#606266;
  4007. }
  4008. #u12856 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 0px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u12856_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:101px;
  4021. height:38px;
  4022. }
  4023. #u12856_text {
  4024. border-width:0px;
  4025. word-wrap:break-word;
  4026. text-transform:none;
  4027. visibility:hidden;
  4028. }
  4029. #u12857 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:383px;
  4033. top:242px;
  4034. width:96px;
  4035. height:38px;
  4036. display:flex;
  4037. transition:none;
  4038. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. color:#606266;
  4043. }
  4044. #u12857 .text {
  4045. position:absolute;
  4046. align-self:center;
  4047. padding:2px 2px 2px 0px;
  4048. box-sizing:border-box;
  4049. width:100%;
  4050. }
  4051. #u12857_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:96px;
  4057. height:38px;
  4058. }
  4059. #u12857_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. visibility:hidden;
  4064. }
  4065. #u12858 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:479px;
  4069. top:242px;
  4070. width:96px;
  4071. height:38px;
  4072. display:flex;
  4073. transition:none;
  4074. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:12px;
  4078. color:#606266;
  4079. }
  4080. #u12858 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 0px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u12858_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:96px;
  4093. height:38px;
  4094. }
  4095. #u12858_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u12859 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:576px;
  4105. top:242px;
  4106. width:101px;
  4107. height:38px;
  4108. display:flex;
  4109. transition:none;
  4110. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:12px;
  4114. color:#606266;
  4115. }
  4116. #u12859 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 2px 2px 0px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u12859_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:101px;
  4129. height:38px;
  4130. }
  4131. #u12859_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u12860 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:676px;
  4141. top:242px;
  4142. width:96px;
  4143. height:38px;
  4144. display:flex;
  4145. transition:none;
  4146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:12px;
  4150. color:#606266;
  4151. }
  4152. #u12860 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 0px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u12860_img {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:96px;
  4165. height:38px;
  4166. }
  4167. #u12860_text {
  4168. border-width:0px;
  4169. word-wrap:break-word;
  4170. text-transform:none;
  4171. visibility:hidden;
  4172. }
  4173. #u12861 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:773px;
  4177. top:242px;
  4178. width:96px;
  4179. height:38px;
  4180. display:flex;
  4181. transition:none;
  4182. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:12px;
  4186. color:#606266;
  4187. }
  4188. #u12861 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 0px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u12861_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:96px;
  4201. height:38px;
  4202. }
  4203. #u12861_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u12862 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:869px;
  4213. top:242px;
  4214. width:138px;
  4215. height:38px;
  4216. display:flex;
  4217. transition:none;
  4218. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:12px;
  4222. color:#606266;
  4223. }
  4224. #u12862 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 0px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u12862_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:138px;
  4237. height:38px;
  4238. }
  4239. #u12862_text {
  4240. border-width:0px;
  4241. word-wrap:break-word;
  4242. text-transform:none;
  4243. visibility:hidden;
  4244. }
  4245. #u12863 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:280px;
  4250. width:100px;
  4251. height:38px;
  4252. display:flex;
  4253. transition:none;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u12863 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u12863_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:100px;
  4273. height:38px;
  4274. }
  4275. #u12863_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. visibility:hidden;
  4280. }
  4281. #u12864 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:100px;
  4285. top:280px;
  4286. width:100px;
  4287. height:38px;
  4288. display:flex;
  4289. transition:none;
  4290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. color:#606266;
  4295. }
  4296. #u12864 .text {
  4297. position:absolute;
  4298. align-self:center;
  4299. padding:2px 2px 2px 0px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u12864_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:100px;
  4309. height:38px;
  4310. }
  4311. #u12864_text {
  4312. border-width:0px;
  4313. word-wrap:break-word;
  4314. text-transform:none;
  4315. visibility:hidden;
  4316. }
  4317. #u12865 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:199px;
  4321. top:280px;
  4322. width:83px;
  4323. height:38px;
  4324. display:flex;
  4325. transition:none;
  4326. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:12px;
  4330. color:#606266;
  4331. }
  4332. #u12865 .text {
  4333. position:absolute;
  4334. align-self:center;
  4335. padding:2px 2px 2px 0px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u12865_img {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:83px;
  4345. height:38px;
  4346. }
  4347. #u12865_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. visibility:hidden;
  4352. }
  4353. #u12866 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:282px;
  4357. top:280px;
  4358. width:101px;
  4359. height:38px;
  4360. display:flex;
  4361. transition:none;
  4362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:12px;
  4366. color:#606266;
  4367. }
  4368. #u12866 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u12866_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:101px;
  4381. height:38px;
  4382. }
  4383. #u12866_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. visibility:hidden;
  4388. }
  4389. #u12867 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:383px;
  4393. top:280px;
  4394. width:96px;
  4395. height:38px;
  4396. display:flex;
  4397. transition:none;
  4398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:12px;
  4402. color:#606266;
  4403. }
  4404. #u12867 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:2px 2px 2px 0px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u12867_img {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:96px;
  4417. height:38px;
  4418. }
  4419. #u12867_text {
  4420. border-width:0px;
  4421. word-wrap:break-word;
  4422. text-transform:none;
  4423. visibility:hidden;
  4424. }
  4425. #u12868 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:479px;
  4429. top:280px;
  4430. width:96px;
  4431. height:38px;
  4432. display:flex;
  4433. transition:none;
  4434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:12px;
  4438. color:#606266;
  4439. }
  4440. #u12868 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 0px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u12868_img {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:96px;
  4453. height:38px;
  4454. }
  4455. #u12868_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u12869 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:576px;
  4465. top:280px;
  4466. width:101px;
  4467. height:38px;
  4468. display:flex;
  4469. transition:none;
  4470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4471. font-weight:400;
  4472. font-style:normal;
  4473. font-size:12px;
  4474. color:#606266;
  4475. }
  4476. #u12869 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 0px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u12869_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:101px;
  4489. height:38px;
  4490. }
  4491. #u12869_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u12870 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:676px;
  4501. top:280px;
  4502. width:96px;
  4503. height:38px;
  4504. display:flex;
  4505. transition:none;
  4506. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. color:#606266;
  4511. }
  4512. #u12870 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u12870_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:96px;
  4525. height:38px;
  4526. }
  4527. #u12870_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u12871 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:773px;
  4537. top:280px;
  4538. width:96px;
  4539. height:38px;
  4540. display:flex;
  4541. transition:none;
  4542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4543. font-weight:400;
  4544. font-style:normal;
  4545. font-size:12px;
  4546. color:#606266;
  4547. }
  4548. #u12871 .text {
  4549. position:absolute;
  4550. align-self:center;
  4551. padding:2px 2px 2px 0px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u12871_img {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:96px;
  4561. height:38px;
  4562. }
  4563. #u12871_text {
  4564. border-width:0px;
  4565. word-wrap:break-word;
  4566. text-transform:none;
  4567. visibility:hidden;
  4568. }
  4569. #u12872 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:869px;
  4573. top:280px;
  4574. width:138px;
  4575. height:38px;
  4576. display:flex;
  4577. transition:none;
  4578. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4579. font-weight:400;
  4580. font-style:normal;
  4581. font-size:12px;
  4582. color:#606266;
  4583. }
  4584. #u12872 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 0px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u12872_img {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:138px;
  4597. height:38px;
  4598. }
  4599. #u12872_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. visibility:hidden;
  4604. }
  4605. #u12873_div {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:73px;
  4611. height:50px;
  4612. background:inherit;
  4613. background-color:rgba(255, 255, 255, 0);
  4614. border-left:0px;
  4615. border-top:0px;
  4616. border-right:0px;
  4617. border-radius:0px;
  4618. border-bottom-right-radius:0px;
  4619. border-bottom-left-radius:0px;
  4620. filter:drop-shadow(none);
  4621. transition:none;
  4622. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:18px;
  4626. }
  4627. #u12873 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:350px;
  4631. top:50px;
  4632. width:73px;
  4633. height:50px;
  4634. display:flex;
  4635. transition:none;
  4636. transform-origin:50% 50%;
  4637. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4638. font-weight:400;
  4639. font-style:normal;
  4640. font-size:18px;
  4641. }
  4642. #u12873 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:0px 0px 0px 0px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u12873_text {
  4650. border-width:0px;
  4651. white-space:nowrap;
  4652. text-transform:none;
  4653. }
  4654. #u12874 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:0px;
  4660. height:0px;
  4661. }
  4662. #u12875_div {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:140px;
  4668. height:30px;
  4669. background:inherit;
  4670. background-color:rgba(255, 255, 255, 1);
  4671. box-sizing:border-box;
  4672. border-width:1px;
  4673. border-style:solid;
  4674. border-color:rgba(215, 215, 215, 1);
  4675. border-radius:4px;
  4676. filter:drop-shadow(none);
  4677. transition:none;
  4678. font-size:14px;
  4679. }
  4680. #u12875 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:861px;
  4684. top:239px;
  4685. width:140px;
  4686. height:30px;
  4687. display:flex;
  4688. transition:none;
  4689. transform-origin:50% 50%;
  4690. font-size:14px;
  4691. }
  4692. #u12875 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 2px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u12875_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. visibility:hidden;
  4704. }
  4705. #u12876_input {
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:134px;
  4710. height:23px;
  4711. padding:2px 2px 2px 2px;
  4712. font-family:"ArialMT", "Arial", sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:14px;
  4716. letter-spacing:normal;
  4717. color:#AAAAAA;
  4718. vertical-align:none;
  4719. text-align:left;
  4720. text-transform:none;
  4721. background-color:transparent;
  4722. border-color:transparent;
  4723. }
  4724. #u12876_input.disabled {
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:134px;
  4729. height:23px;
  4730. padding:2px 2px 2px 2px;
  4731. font-family:"ArialMT", "Arial", sans-serif;
  4732. font-weight:400;
  4733. font-style:normal;
  4734. font-size:14px;
  4735. letter-spacing:normal;
  4736. color:#AAAAAA;
  4737. vertical-align:none;
  4738. text-align:left;
  4739. text-transform:none;
  4740. background-color:transparent;
  4741. border-color:transparent;
  4742. }
  4743. #u12876_div {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:134px;
  4749. height:23px;
  4750. background:inherit;
  4751. background-color:rgba(255, 255, 255, 1);
  4752. border-radius:0px;
  4753. filter:drop-shadow(none);
  4754. transition:none;
  4755. font-size:14px;
  4756. color:#AAAAAA;
  4757. }
  4758. #u12876 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:865px;
  4762. top:241px;
  4763. width:134px;
  4764. height:23px;
  4765. display:flex;
  4766. transition:none;
  4767. transform-origin:50% 50%;
  4768. font-size:14px;
  4769. color:#AAAAAA;
  4770. }
  4771. #u12876 .text {
  4772. position:absolute;
  4773. align-self:flex-start;
  4774. padding:2px 2px 2px 2px;
  4775. box-sizing:border-box;
  4776. width:100%;
  4777. }
  4778. #u12876_div.disabled {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:134px;
  4784. height:23px;
  4785. background:inherit;
  4786. background-color:rgba(240, 240, 240, 1);
  4787. border-radius:0px;
  4788. filter:drop-shadow(none);
  4789. transition:none;
  4790. font-size:14px;
  4791. color:#AAAAAA;
  4792. }
  4793. #u12876.disabled {
  4794. }
  4795. .u12876_input_option {
  4796. font-size:14px;
  4797. }
  4798. #u12877 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:0px;
  4804. height:0px;
  4805. }
  4806. #u12878_div {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:140px;
  4812. height:30px;
  4813. background:inherit;
  4814. background-color:rgba(255, 255, 255, 1);
  4815. box-sizing:border-box;
  4816. border-width:1px;
  4817. border-style:solid;
  4818. border-color:rgba(201, 201, 201, 1);
  4819. border-radius:4px;
  4820. filter:drop-shadow(none);
  4821. transition:none;
  4822. font-family:"Microsoft YaHei", sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:14px;
  4826. color:#CCCCCC;
  4827. text-align:left;
  4828. }
  4829. #u12878 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:563px;
  4833. top:239px;
  4834. width:140px;
  4835. height:30px;
  4836. display:flex;
  4837. transition:none;
  4838. transform-origin:50% 50%;
  4839. font-family:"Microsoft YaHei", sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:14px;
  4843. color:#CCCCCC;
  4844. text-align:left;
  4845. }
  4846. #u12878 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 8px 2px 8px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u12878_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u12879_input {
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:127px;
  4864. height:25px;
  4865. padding:2px 2px 2px 2px;
  4866. font-family:"Microsoft YaHei", sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:10px;
  4870. letter-spacing:normal;
  4871. color:#000000;
  4872. vertical-align:none;
  4873. text-align:left;
  4874. text-transform:none;
  4875. background-color:transparent;
  4876. border-color:transparent;
  4877. }
  4878. #u12879_input.hint {
  4879. position:absolute;
  4880. left:0px;
  4881. top:0px;
  4882. width:127px;
  4883. height:25px;
  4884. padding:2px 2px 2px 2px;
  4885. font-family:"Microsoft YaHei", sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:12px;
  4889. letter-spacing:normal;
  4890. color:#AAAAAA;
  4891. vertical-align:none;
  4892. text-align:left;
  4893. text-transform:none;
  4894. background-color:transparent;
  4895. border-color:transparent;
  4896. }
  4897. #u12879_input.disabled {
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:127px;
  4902. height:25px;
  4903. padding:2px 2px 2px 2px;
  4904. font-family:"Microsoft YaHei", sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:10px;
  4908. letter-spacing:normal;
  4909. color:#000000;
  4910. vertical-align:none;
  4911. text-align:left;
  4912. text-transform:none;
  4913. background-color:transparent;
  4914. border-color:transparent;
  4915. }
  4916. #u12879_input.hint.disabled {
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:127px;
  4921. height:25px;
  4922. padding:2px 2px 2px 2px;
  4923. font-family:"Microsoft YaHei", sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:12px;
  4927. letter-spacing:normal;
  4928. color:#AAAAAA;
  4929. vertical-align:none;
  4930. text-align:left;
  4931. text-transform:none;
  4932. background-color:transparent;
  4933. border-color:transparent;
  4934. }
  4935. #u12879_div {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:127px;
  4941. height:25px;
  4942. background:inherit;
  4943. background-color:rgba(255, 255, 255, 1);
  4944. border-radius:0px;
  4945. filter:drop-shadow(none);
  4946. transition:none;
  4947. font-family:"Microsoft YaHei", sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:10px;
  4951. }
  4952. #u12879 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:571px;
  4956. top:240px;
  4957. width:127px;
  4958. height:25px;
  4959. display:flex;
  4960. transition:none;
  4961. transform-origin:50% 50%;
  4962. font-family:"Microsoft YaHei", sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:10px;
  4966. }
  4967. #u12879 .text {
  4968. position:absolute;
  4969. align-self:center;
  4970. padding:2px 2px 2px 2px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u12879_div.hint {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:127px;
  4980. height:25px;
  4981. background:inherit;
  4982. background-color:rgba(255, 255, 255, 1);
  4983. border-radius:0px;
  4984. filter:drop-shadow(none);
  4985. transition:none;
  4986. font-family:"Microsoft YaHei", sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:10px;
  4990. }
  4991. #u12879.hint {
  4992. }
  4993. #u12879_div.disabled {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:127px;
  4999. height:25px;
  5000. background:inherit;
  5001. background-color:rgba(240, 240, 240, 1);
  5002. border-radius:0px;
  5003. filter:drop-shadow(none);
  5004. transition:none;
  5005. font-family:"Microsoft YaHei", sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:10px;
  5009. }
  5010. #u12879.disabled {
  5011. }
  5012. #u12879_div.hint.disabled {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:0px;
  5016. top:0px;
  5017. width:127px;
  5018. height:25px;
  5019. background:inherit;
  5020. background-color:rgba(240, 240, 240, 1);
  5021. border-radius:0px;
  5022. filter:drop-shadow(none);
  5023. transition:none;
  5024. font-family:"Microsoft YaHei", sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:10px;
  5028. }
  5029. #u12879.hint.disabled {
  5030. }
  5031. #u12880 {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:0px;
  5037. height:0px;
  5038. }
  5039. #u12881_div {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:140px;
  5045. height:30px;
  5046. background:inherit;
  5047. background-color:rgba(255, 255, 255, 1);
  5048. box-sizing:border-box;
  5049. border-width:1px;
  5050. border-style:solid;
  5051. border-color:rgba(201, 201, 201, 1);
  5052. border-radius:4px;
  5053. filter:drop-shadow(none);
  5054. transition:none;
  5055. font-family:"Microsoft YaHei", sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:14px;
  5059. color:#CCCCCC;
  5060. text-align:left;
  5061. }
  5062. #u12881 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:713px;
  5066. top:239px;
  5067. width:140px;
  5068. height:30px;
  5069. display:flex;
  5070. transition:none;
  5071. transform-origin:50% 50%;
  5072. font-family:"Microsoft YaHei", sans-serif;
  5073. font-weight:400;
  5074. font-style:normal;
  5075. font-size:14px;
  5076. color:#CCCCCC;
  5077. text-align:left;
  5078. }
  5079. #u12881 .text {
  5080. position:absolute;
  5081. align-self:center;
  5082. padding:2px 8px 2px 8px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u12881_text {
  5087. border-width:0px;
  5088. word-wrap:break-word;
  5089. text-transform:none;
  5090. visibility:hidden;
  5091. }
  5092. #u12882_input {
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:127px;
  5097. height:25px;
  5098. padding:2px 2px 2px 2px;
  5099. font-family:"Microsoft YaHei", sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. font-size:10px;
  5103. letter-spacing:normal;
  5104. color:#000000;
  5105. vertical-align:none;
  5106. text-align:left;
  5107. text-transform:none;
  5108. background-color:transparent;
  5109. border-color:transparent;
  5110. }
  5111. #u12882_input.hint {
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:127px;
  5116. height:25px;
  5117. padding:2px 2px 2px 2px;
  5118. font-family:"Microsoft YaHei", sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. letter-spacing:normal;
  5123. color:#AAAAAA;
  5124. vertical-align:none;
  5125. text-align:left;
  5126. text-transform:none;
  5127. background-color:transparent;
  5128. border-color:transparent;
  5129. }
  5130. #u12882_input.disabled {
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:127px;
  5135. height:25px;
  5136. padding:2px 2px 2px 2px;
  5137. font-family:"Microsoft YaHei", sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:10px;
  5141. letter-spacing:normal;
  5142. color:#000000;
  5143. vertical-align:none;
  5144. text-align:left;
  5145. text-transform:none;
  5146. background-color:transparent;
  5147. border-color:transparent;
  5148. }
  5149. #u12882_input.hint.disabled {
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:127px;
  5154. height:25px;
  5155. padding:2px 2px 2px 2px;
  5156. font-family:"Microsoft YaHei", sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:12px;
  5160. letter-spacing:normal;
  5161. color:#AAAAAA;
  5162. vertical-align:none;
  5163. text-align:left;
  5164. text-transform:none;
  5165. background-color:transparent;
  5166. border-color:transparent;
  5167. }
  5168. #u12882_div {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:127px;
  5174. height:25px;
  5175. background:inherit;
  5176. background-color:rgba(255, 255, 255, 1);
  5177. border-radius:0px;
  5178. filter:drop-shadow(none);
  5179. transition:none;
  5180. font-family:"Microsoft YaHei", sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:10px;
  5184. }
  5185. #u12882 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:721px;
  5189. top:240px;
  5190. width:127px;
  5191. height:25px;
  5192. display:flex;
  5193. transition:none;
  5194. transform-origin:50% 50%;
  5195. font-family:"Microsoft YaHei", sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:10px;
  5199. }
  5200. #u12882 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 2px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u12882_div.hint {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:127px;
  5213. height:25px;
  5214. background:inherit;
  5215. background-color:rgba(255, 255, 255, 1);
  5216. border-radius:0px;
  5217. filter:drop-shadow(none);
  5218. transition:none;
  5219. font-family:"Microsoft YaHei", sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:10px;
  5223. }
  5224. #u12882.hint {
  5225. }
  5226. #u12882_div.disabled {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:127px;
  5232. height:25px;
  5233. background:inherit;
  5234. background-color:rgba(240, 240, 240, 1);
  5235. border-radius:0px;
  5236. filter:drop-shadow(none);
  5237. transition:none;
  5238. font-family:"Microsoft YaHei", sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:10px;
  5242. }
  5243. #u12882.disabled {
  5244. }
  5245. #u12882_div.hint.disabled {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:0px;
  5249. top:0px;
  5250. width:127px;
  5251. height:25px;
  5252. background:inherit;
  5253. background-color:rgba(240, 240, 240, 1);
  5254. border-radius:0px;
  5255. filter:drop-shadow(none);
  5256. transition:none;
  5257. font-family:"Microsoft YaHei", sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:10px;
  5261. }
  5262. #u12882.hint.disabled {
  5263. }
  5264. #u12883 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:0px;
  5270. height:0px;
  5271. }
  5272. #u12884 {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:350px;
  5276. top:241px;
  5277. width:137px;
  5278. height:500px;
  5279. transition:none;
  5280. }
  5281. #u12884_children {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:0px;
  5287. height:0px;
  5288. }
  5289. #u12885 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:106px;
  5295. height:20px;
  5296. transition:none;
  5297. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. }
  5301. #u12886 {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:6px;
  5305. top:6px;
  5306. width:9px;
  5307. height:9px;
  5308. display:flex;
  5309. transition:none;
  5310. }
  5311. #u12886 .text {
  5312. position:absolute;
  5313. align-self:center;
  5314. padding:2px 2px 2px 2px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u12886_img {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:9px;
  5324. height:9px;
  5325. }
  5326. #u12886_img.selected {
  5327. }
  5328. #u12886.selected {
  5329. }
  5330. #u12886_text {
  5331. border-width:0px;
  5332. word-wrap:break-word;
  5333. text-transform:none;
  5334. visibility:hidden;
  5335. }
  5336. #u12887_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:84px;
  5342. height:20px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. border-radius:0px;
  5346. filter:drop-shadow(none);
  5347. transition:none;
  5348. }
  5349. #u12887 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:22px;
  5353. top:0px;
  5354. width:84px;
  5355. height:20px;
  5356. display:flex;
  5357. transition:none;
  5358. transform-origin:50% 50%;
  5359. }
  5360. #u12887 .text {
  5361. position:absolute;
  5362. align-self:center;
  5363. padding:2px 2px 2px 3px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u12887_text {
  5368. border-width:0px;
  5369. white-space:nowrap;
  5370. text-transform:none;
  5371. }
  5372. #u12885_children {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:0px;
  5378. height:0px;
  5379. }
  5380. #u12888 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:20px;
  5384. top:20px;
  5385. width:59px;
  5386. height:20px;
  5387. transition:none;
  5388. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. }
  5392. #u12889 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:6px;
  5396. top:6px;
  5397. width:9px;
  5398. height:9px;
  5399. display:flex;
  5400. transition:none;
  5401. }
  5402. #u12889 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 2px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u12889_img {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:9px;
  5415. height:9px;
  5416. }
  5417. #u12889_img.selected {
  5418. }
  5419. #u12889.selected {
  5420. }
  5421. #u12889_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. visibility:hidden;
  5426. }
  5427. #u12890_div {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:37px;
  5433. height:20px;
  5434. background:inherit;
  5435. background-color:rgba(255, 255, 255, 0);
  5436. border-radius:0px;
  5437. filter:drop-shadow(none);
  5438. transition:none;
  5439. }
  5440. #u12890 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:22px;
  5444. top:0px;
  5445. width:37px;
  5446. height:20px;
  5447. display:flex;
  5448. transition:none;
  5449. transform-origin:50% 50%;
  5450. }
  5451. #u12890 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:2px 2px 2px 3px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u12890_text {
  5459. border-width:0px;
  5460. white-space:nowrap;
  5461. text-transform:none;
  5462. }
  5463. #u12888_children {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:0px;
  5469. height:0px;
  5470. }
  5471. #u12891 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:20px;
  5475. top:20px;
  5476. width:67px;
  5477. height:20px;
  5478. transition:none;
  5479. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5480. font-weight:400;
  5481. font-style:normal;
  5482. }
  5483. #u12892 {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:6px;
  5487. top:6px;
  5488. width:9px;
  5489. height:9px;
  5490. display:flex;
  5491. transition:none;
  5492. }
  5493. #u12892 .text {
  5494. position:absolute;
  5495. align-self:center;
  5496. padding:2px 2px 2px 2px;
  5497. box-sizing:border-box;
  5498. width:100%;
  5499. }
  5500. #u12892_img {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:9px;
  5506. height:9px;
  5507. }
  5508. #u12892_img.selected {
  5509. }
  5510. #u12892.selected {
  5511. }
  5512. #u12892_text {
  5513. border-width:0px;
  5514. word-wrap:break-word;
  5515. text-transform:none;
  5516. visibility:hidden;
  5517. }
  5518. #u12893_div {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:0px;
  5522. top:0px;
  5523. width:45px;
  5524. height:20px;
  5525. background:inherit;
  5526. background-color:rgba(255, 255, 255, 0);
  5527. border-radius:0px;
  5528. filter:drop-shadow(none);
  5529. transition:none;
  5530. }
  5531. #u12893 {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:22px;
  5535. top:0px;
  5536. width:45px;
  5537. height:20px;
  5538. display:flex;
  5539. transition:none;
  5540. transform-origin:50% 50%;
  5541. }
  5542. #u12893 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:2px 2px 2px 3px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u12893_text {
  5550. border-width:0px;
  5551. white-space:nowrap;
  5552. text-transform:none;
  5553. }
  5554. #u12891_children {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:0px;
  5560. height:0px;
  5561. }
  5562. #u12894 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:20px;
  5566. top:20px;
  5567. width:59px;
  5568. height:20px;
  5569. transition:none;
  5570. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5571. font-weight:400;
  5572. font-style:normal;
  5573. }
  5574. #u12895_div {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:37px;
  5580. height:20px;
  5581. background:inherit;
  5582. background-color:rgba(255, 255, 255, 0);
  5583. border-radius:0px;
  5584. filter:drop-shadow(none);
  5585. transition:none;
  5586. }
  5587. #u12895 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:22px;
  5591. top:0px;
  5592. width:37px;
  5593. height:20px;
  5594. display:flex;
  5595. transition:none;
  5596. transform-origin:50% 50%;
  5597. }
  5598. #u12895 .text {
  5599. position:absolute;
  5600. align-self:center;
  5601. padding:2px 2px 2px 3px;
  5602. box-sizing:border-box;
  5603. width:100%;
  5604. }
  5605. #u12895_text {
  5606. border-width:0px;
  5607. white-space:nowrap;
  5608. text-transform:none;
  5609. }
  5610. #u12896 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:20px;
  5614. top:40px;
  5615. width:62px;
  5616. height:20px;
  5617. transition:none;
  5618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5619. font-weight:400;
  5620. font-style:normal;
  5621. color:#1890FF;
  5622. }
  5623. #u12897_div {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:40px;
  5629. height:20px;
  5630. background:inherit;
  5631. background-color:rgba(255, 255, 255, 0);
  5632. border-radius:0px;
  5633. filter:drop-shadow(none);
  5634. transition:none;
  5635. }
  5636. #u12897 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:22px;
  5640. top:0px;
  5641. width:40px;
  5642. height:20px;
  5643. display:flex;
  5644. transition:none;
  5645. transform-origin:50% 50%;
  5646. }
  5647. #u12897 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:2px 2px 2px 3px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u12897_text {
  5655. border-width:0px;
  5656. white-space:nowrap;
  5657. text-transform:none;
  5658. }
  5659. #u12898 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:20px;
  5663. top:60px;
  5664. width:62px;
  5665. height:20px;
  5666. transition:none;
  5667. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. }
  5671. #u12899_div {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:40px;
  5677. height:20px;
  5678. background:inherit;
  5679. background-color:rgba(255, 255, 255, 0);
  5680. border-radius:0px;
  5681. filter:drop-shadow(none);
  5682. transition:none;
  5683. }
  5684. #u12899 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:22px;
  5688. top:0px;
  5689. width:40px;
  5690. height:20px;
  5691. display:flex;
  5692. transition:none;
  5693. transform-origin:50% 50%;
  5694. }
  5695. #u12899 .text {
  5696. position:absolute;
  5697. align-self:center;
  5698. padding:2px 2px 2px 3px;
  5699. box-sizing:border-box;
  5700. width:100%;
  5701. }
  5702. #u12899_text {
  5703. border-width:0px;
  5704. white-space:nowrap;
  5705. text-transform:none;
  5706. }
  5707. #u12900 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:20px;
  5711. top:80px;
  5712. width:62px;
  5713. height:20px;
  5714. transition:none;
  5715. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. }
  5719. #u12901_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:40px;
  5725. height:20px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 0);
  5728. border-radius:0px;
  5729. filter:drop-shadow(none);
  5730. transition:none;
  5731. }
  5732. #u12901 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:22px;
  5736. top:0px;
  5737. width:40px;
  5738. height:20px;
  5739. display:flex;
  5740. transition:none;
  5741. transform-origin:50% 50%;
  5742. }
  5743. #u12901 .text {
  5744. position:absolute;
  5745. align-self:center;
  5746. padding:2px 2px 2px 3px;
  5747. box-sizing:border-box;
  5748. width:100%;
  5749. }
  5750. #u12901_text {
  5751. border-width:0px;
  5752. white-space:nowrap;
  5753. text-transform:none;
  5754. }
  5755. #u12902 {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:20px;
  5759. top:100px;
  5760. width:64px;
  5761. height:20px;
  5762. transition:none;
  5763. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. }
  5767. #u12903_div {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:42px;
  5773. height:20px;
  5774. background:inherit;
  5775. background-color:rgba(255, 255, 255, 0);
  5776. border-radius:0px;
  5777. filter:drop-shadow(none);
  5778. transition:none;
  5779. }
  5780. #u12903 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:22px;
  5784. top:0px;
  5785. width:42px;
  5786. height:20px;
  5787. display:flex;
  5788. transition:none;
  5789. transform-origin:50% 50%;
  5790. }
  5791. #u12903 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 3px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u12903_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u12904 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:20px;
  5807. top:120px;
  5808. width:54px;
  5809. height:20px;
  5810. transition:none;
  5811. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. }
  5815. #u12905_div {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:32px;
  5821. height:20px;
  5822. background:inherit;
  5823. background-color:rgba(255, 255, 255, 0);
  5824. border-radius:0px;
  5825. filter:drop-shadow(none);
  5826. transition:none;
  5827. }
  5828. #u12905 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:22px;
  5832. top:0px;
  5833. width:32px;
  5834. height:20px;
  5835. display:flex;
  5836. transition:none;
  5837. transform-origin:50% 50%;
  5838. }
  5839. #u12905 .text {
  5840. position:absolute;
  5841. align-self:center;
  5842. padding:2px 2px 2px 3px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u12905_text {
  5847. border-width:0px;
  5848. white-space:nowrap;
  5849. text-transform:none;
  5850. }
  5851. #u12906 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:20px;
  5855. top:160px;
  5856. width:70px;
  5857. height:20px;
  5858. transition:none;
  5859. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. }
  5863. #u12907 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:6px;
  5867. top:6px;
  5868. width:9px;
  5869. height:9px;
  5870. display:flex;
  5871. transition:none;
  5872. }
  5873. #u12907 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:2px 2px 2px 2px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u12907_img {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:9px;
  5886. height:9px;
  5887. }
  5888. #u12907_img.selected {
  5889. }
  5890. #u12907.selected {
  5891. }
  5892. #u12907_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u12908_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:48px;
  5904. height:20px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 0);
  5907. border-radius:0px;
  5908. filter:drop-shadow(none);
  5909. transition:none;
  5910. }
  5911. #u12908 {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:22px;
  5915. top:0px;
  5916. width:48px;
  5917. height:20px;
  5918. display:flex;
  5919. transition:none;
  5920. transform-origin:50% 50%;
  5921. }
  5922. #u12908 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 3px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u12908_text {
  5930. border-width:0px;
  5931. white-space:nowrap;
  5932. text-transform:none;
  5933. }
  5934. #u12906_children {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:0px;
  5940. height:0px;
  5941. }
  5942. #u12909 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:20px;
  5946. top:20px;
  5947. width:59px;
  5948. height:20px;
  5949. transition:none;
  5950. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. }
  5954. #u12910_div {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:37px;
  5960. height:20px;
  5961. background:inherit;
  5962. background-color:rgba(255, 255, 255, 0);
  5963. border-radius:0px;
  5964. filter:drop-shadow(none);
  5965. transition:none;
  5966. }
  5967. #u12910 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:22px;
  5971. top:0px;
  5972. width:37px;
  5973. height:20px;
  5974. display:flex;
  5975. transition:none;
  5976. transform-origin:50% 50%;
  5977. }
  5978. #u12910 .text {
  5979. position:absolute;
  5980. align-self:center;
  5981. padding:2px 2px 2px 3px;
  5982. box-sizing:border-box;
  5983. width:100%;
  5984. }
  5985. #u12910_text {
  5986. border-width:0px;
  5987. white-space:nowrap;
  5988. text-transform:none;
  5989. }
  5990. #u12911 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:20px;
  5994. top:40px;
  5995. width:62px;
  5996. height:20px;
  5997. transition:none;
  5998. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. }
  6002. #u12912_div {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:40px;
  6008. height:20px;
  6009. background:inherit;
  6010. background-color:rgba(255, 255, 255, 0);
  6011. border-radius:0px;
  6012. filter:drop-shadow(none);
  6013. transition:none;
  6014. }
  6015. #u12912 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:22px;
  6019. top:0px;
  6020. width:40px;
  6021. height:20px;
  6022. display:flex;
  6023. transition:none;
  6024. transform-origin:50% 50%;
  6025. }
  6026. #u12912 .text {
  6027. position:absolute;
  6028. align-self:center;
  6029. padding:2px 2px 2px 3px;
  6030. box-sizing:border-box;
  6031. width:100%;
  6032. }
  6033. #u12912_text {
  6034. border-width:0px;
  6035. white-space:nowrap;
  6036. text-transform:none;
  6037. }
  6038. #u12913 {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:20px;
  6042. top:60px;
  6043. width:62px;
  6044. height:20px;
  6045. transition:none;
  6046. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6047. font-weight:400;
  6048. font-style:normal;
  6049. }
  6050. #u12914_div {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:0px;
  6054. top:0px;
  6055. width:40px;
  6056. height:20px;
  6057. background:inherit;
  6058. background-color:rgba(255, 255, 255, 0);
  6059. border-radius:0px;
  6060. filter:drop-shadow(none);
  6061. transition:none;
  6062. }
  6063. #u12914 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:22px;
  6067. top:0px;
  6068. width:40px;
  6069. height:20px;
  6070. display:flex;
  6071. transition:none;
  6072. transform-origin:50% 50%;
  6073. }
  6074. #u12914 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 3px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u12914_text {
  6082. border-width:0px;
  6083. white-space:nowrap;
  6084. text-transform:none;
  6085. }
  6086. #u12915 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:20px;
  6090. top:80px;
  6091. width:62px;
  6092. height:20px;
  6093. transition:none;
  6094. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. }
  6098. #u12916_div {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:40px;
  6104. height:20px;
  6105. background:inherit;
  6106. background-color:rgba(255, 255, 255, 0);
  6107. border-radius:0px;
  6108. filter:drop-shadow(none);
  6109. transition:none;
  6110. }
  6111. #u12916 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:22px;
  6115. top:0px;
  6116. width:40px;
  6117. height:20px;
  6118. display:flex;
  6119. transition:none;
  6120. transform-origin:50% 50%;
  6121. }
  6122. #u12916 .text {
  6123. position:absolute;
  6124. align-self:center;
  6125. padding:2px 2px 2px 3px;
  6126. box-sizing:border-box;
  6127. width:100%;
  6128. }
  6129. #u12916_text {
  6130. border-width:0px;
  6131. white-space:nowrap;
  6132. text-transform:none;
  6133. }
  6134. #u12917 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:20px;
  6138. top:100px;
  6139. width:64px;
  6140. height:20px;
  6141. transition:none;
  6142. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. }
  6146. #u12918_div {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:42px;
  6152. height:20px;
  6153. background:inherit;
  6154. background-color:rgba(255, 255, 255, 0);
  6155. border-radius:0px;
  6156. filter:drop-shadow(none);
  6157. transition:none;
  6158. }
  6159. #u12918 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:22px;
  6163. top:0px;
  6164. width:42px;
  6165. height:20px;
  6166. display:flex;
  6167. transition:none;
  6168. transform-origin:50% 50%;
  6169. }
  6170. #u12918 .text {
  6171. position:absolute;
  6172. align-self:center;
  6173. padding:2px 2px 2px 3px;
  6174. box-sizing:border-box;
  6175. width:100%;
  6176. }
  6177. #u12918_text {
  6178. border-width:0px;
  6179. white-space:nowrap;
  6180. text-transform:none;
  6181. }
  6182. #u12919 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:20px;
  6186. top:120px;
  6187. width:54px;
  6188. height:20px;
  6189. transition:none;
  6190. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. }
  6194. #u12920_div {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:32px;
  6200. height:20px;
  6201. background:inherit;
  6202. background-color:rgba(255, 255, 255, 0);
  6203. border-radius:0px;
  6204. filter:drop-shadow(none);
  6205. transition:none;
  6206. }
  6207. #u12920 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:22px;
  6211. top:0px;
  6212. width:32px;
  6213. height:20px;
  6214. display:flex;
  6215. transition:none;
  6216. transform-origin:50% 50%;
  6217. }
  6218. #u12920 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:2px 2px 2px 3px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u12920_text {
  6226. border-width:0px;
  6227. white-space:nowrap;
  6228. text-transform:none;
  6229. }
  6230. #u12921 {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:20px;
  6234. top:320px;
  6235. width:62px;
  6236. height:20px;
  6237. transition:none;
  6238. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. }
  6242. #u12922 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:6px;
  6246. top:6px;
  6247. width:9px;
  6248. height:9px;
  6249. display:flex;
  6250. transition:none;
  6251. }
  6252. #u12922 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 2px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u12922_img {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:9px;
  6265. height:9px;
  6266. }
  6267. #u12922_img.selected {
  6268. }
  6269. #u12922.selected {
  6270. }
  6271. #u12922_text {
  6272. border-width:0px;
  6273. word-wrap:break-word;
  6274. text-transform:none;
  6275. visibility:hidden;
  6276. }
  6277. #u12923_div {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:0px;
  6281. top:0px;
  6282. width:40px;
  6283. height:20px;
  6284. background:inherit;
  6285. background-color:rgba(255, 255, 255, 0);
  6286. border-radius:0px;
  6287. filter:drop-shadow(none);
  6288. transition:none;
  6289. }
  6290. #u12923 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:22px;
  6294. top:0px;
  6295. width:40px;
  6296. height:20px;
  6297. display:flex;
  6298. transition:none;
  6299. transform-origin:50% 50%;
  6300. }
  6301. #u12923 .text {
  6302. position:absolute;
  6303. align-self:center;
  6304. padding:2px 2px 2px 3px;
  6305. box-sizing:border-box;
  6306. width:100%;
  6307. }
  6308. #u12923_text {
  6309. border-width:0px;
  6310. white-space:nowrap;
  6311. text-transform:none;
  6312. }
  6313. #u12921_children {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:0px;
  6319. height:0px;
  6320. }
  6321. #u12924 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:20px;
  6325. top:20px;
  6326. width:59px;
  6327. height:20px;
  6328. transition:none;
  6329. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. }
  6333. #u12925_div {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:37px;
  6339. height:20px;
  6340. background:inherit;
  6341. background-color:rgba(255, 255, 255, 0);
  6342. border-radius:0px;
  6343. filter:drop-shadow(none);
  6344. transition:none;
  6345. }
  6346. #u12925 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:22px;
  6350. top:0px;
  6351. width:37px;
  6352. height:20px;
  6353. display:flex;
  6354. transition:none;
  6355. transform-origin:50% 50%;
  6356. }
  6357. #u12925 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:2px 2px 2px 3px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u12925_text {
  6365. border-width:0px;
  6366. white-space:nowrap;
  6367. text-transform:none;
  6368. }
  6369. #u12926 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:20px;
  6373. top:40px;
  6374. width:62px;
  6375. height:20px;
  6376. transition:none;
  6377. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. }
  6381. #u12927_div {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:40px;
  6387. height:20px;
  6388. background:inherit;
  6389. background-color:rgba(255, 255, 255, 0);
  6390. border-radius:0px;
  6391. filter:drop-shadow(none);
  6392. transition:none;
  6393. }
  6394. #u12927 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:22px;
  6398. top:0px;
  6399. width:40px;
  6400. height:20px;
  6401. display:flex;
  6402. transition:none;
  6403. transform-origin:50% 50%;
  6404. }
  6405. #u12927 .text {
  6406. position:absolute;
  6407. align-self:center;
  6408. padding:2px 2px 2px 3px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u12927_text {
  6413. border-width:0px;
  6414. white-space:nowrap;
  6415. text-transform:none;
  6416. }
  6417. #u12928 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:20px;
  6421. top:60px;
  6422. width:62px;
  6423. height:20px;
  6424. transition:none;
  6425. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6426. font-weight:400;
  6427. font-style:normal;
  6428. }
  6429. #u12929_div {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:40px;
  6435. height:20px;
  6436. background:inherit;
  6437. background-color:rgba(255, 255, 255, 0);
  6438. border-radius:0px;
  6439. filter:drop-shadow(none);
  6440. transition:none;
  6441. }
  6442. #u12929 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:22px;
  6446. top:0px;
  6447. width:40px;
  6448. height:20px;
  6449. display:flex;
  6450. transition:none;
  6451. transform-origin:50% 50%;
  6452. }
  6453. #u12929 .text {
  6454. position:absolute;
  6455. align-self:center;
  6456. padding:2px 2px 2px 3px;
  6457. box-sizing:border-box;
  6458. width:100%;
  6459. }
  6460. #u12929_text {
  6461. border-width:0px;
  6462. white-space:nowrap;
  6463. text-transform:none;
  6464. }
  6465. #u12930 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:20px;
  6469. top:80px;
  6470. width:64px;
  6471. height:20px;
  6472. transition:none;
  6473. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. }
  6477. #u12931_div {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:42px;
  6483. height:20px;
  6484. background:inherit;
  6485. background-color:rgba(255, 255, 255, 0);
  6486. border-radius:0px;
  6487. filter:drop-shadow(none);
  6488. transition:none;
  6489. }
  6490. #u12931 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:22px;
  6494. top:0px;
  6495. width:42px;
  6496. height:20px;
  6497. display:flex;
  6498. transition:none;
  6499. transform-origin:50% 50%;
  6500. }
  6501. #u12931 .text {
  6502. position:absolute;
  6503. align-self:center;
  6504. padding:2px 2px 2px 3px;
  6505. box-sizing:border-box;
  6506. width:100%;
  6507. }
  6508. #u12931_text {
  6509. border-width:0px;
  6510. white-space:nowrap;
  6511. text-transform:none;
  6512. }
  6513. #u12932 {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:20px;
  6517. top:100px;
  6518. width:54px;
  6519. height:20px;
  6520. transition:none;
  6521. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. }
  6525. #u12933_div {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:32px;
  6531. height:20px;
  6532. background:inherit;
  6533. background-color:rgba(255, 255, 255, 0);
  6534. border-radius:0px;
  6535. filter:drop-shadow(none);
  6536. transition:none;
  6537. }
  6538. #u12933 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:22px;
  6542. top:0px;
  6543. width:32px;
  6544. height:20px;
  6545. display:flex;
  6546. transition:none;
  6547. transform-origin:50% 50%;
  6548. }
  6549. #u12933 .text {
  6550. position:absolute;
  6551. align-self:center;
  6552. padding:2px 2px 2px 3px;
  6553. box-sizing:border-box;
  6554. width:100%;
  6555. }
  6556. #u12933_text {
  6557. border-width:0px;
  6558. white-space:nowrap;
  6559. text-transform:none;
  6560. }
  6561. #u12934 {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:20px;
  6565. top:440px;
  6566. width:62px;
  6567. height:20px;
  6568. transition:none;
  6569. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. }
  6573. #u12935 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:6px;
  6577. top:6px;
  6578. width:9px;
  6579. height:9px;
  6580. display:flex;
  6581. transition:none;
  6582. }
  6583. #u12935 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:2px 2px 2px 2px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u12935_img {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:9px;
  6596. height:9px;
  6597. }
  6598. #u12935_img.selected {
  6599. }
  6600. #u12935.selected {
  6601. }
  6602. #u12935_text {
  6603. border-width:0px;
  6604. word-wrap:break-word;
  6605. text-transform:none;
  6606. visibility:hidden;
  6607. }
  6608. #u12936_div {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:40px;
  6614. height:20px;
  6615. background:inherit;
  6616. background-color:rgba(255, 255, 255, 0);
  6617. border-radius:0px;
  6618. filter:drop-shadow(none);
  6619. transition:none;
  6620. }
  6621. #u12936 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:22px;
  6625. top:0px;
  6626. width:40px;
  6627. height:20px;
  6628. display:flex;
  6629. transition:none;
  6630. transform-origin:50% 50%;
  6631. }
  6632. #u12936 .text {
  6633. position:absolute;
  6634. align-self:center;
  6635. padding:2px 2px 2px 3px;
  6636. box-sizing:border-box;
  6637. width:100%;
  6638. }
  6639. #u12936_text {
  6640. border-width:0px;
  6641. white-space:nowrap;
  6642. text-transform:none;
  6643. }
  6644. #u12934_children {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:0px;
  6650. height:0px;
  6651. }
  6652. #u12937 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:20px;
  6656. top:20px;
  6657. width:97px;
  6658. height:20px;
  6659. transition:none;
  6660. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. }
  6664. #u12938_div {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:75px;
  6670. height:20px;
  6671. background:inherit;
  6672. background-color:rgba(255, 255, 255, 0);
  6673. border-radius:0px;
  6674. filter:drop-shadow(none);
  6675. transition:none;
  6676. }
  6677. #u12938 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:22px;
  6681. top:0px;
  6682. width:75px;
  6683. height:20px;
  6684. display:flex;
  6685. transition:none;
  6686. transform-origin:50% 50%;
  6687. }
  6688. #u12938 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:2px 2px 2px 3px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u12938_text {
  6696. border-width:0px;
  6697. white-space:nowrap;
  6698. text-transform:none;
  6699. }
  6700. #u12939 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:20px;
  6704. top:40px;
  6705. width:97px;
  6706. height:20px;
  6707. transition:none;
  6708. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. }
  6712. #u12940_div {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:75px;
  6718. height:20px;
  6719. background:inherit;
  6720. background-color:rgba(255, 255, 255, 0);
  6721. border-radius:0px;
  6722. filter:drop-shadow(none);
  6723. transition:none;
  6724. }
  6725. #u12940 {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:22px;
  6729. top:0px;
  6730. width:75px;
  6731. height:20px;
  6732. display:flex;
  6733. transition:none;
  6734. transform-origin:50% 50%;
  6735. }
  6736. #u12940 .text {
  6737. position:absolute;
  6738. align-self:center;
  6739. padding:2px 2px 2px 3px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u12940_text {
  6744. border-width:0px;
  6745. white-space:nowrap;
  6746. text-transform:none;
  6747. }
  6748. #u12941 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:0px;
  6754. height:0px;
  6755. }
  6756. #u12942_div {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:170px;
  6762. height:30px;
  6763. background:inherit;
  6764. background-color:rgba(255, 255, 255, 1);
  6765. box-sizing:border-box;
  6766. border-width:1px;
  6767. border-style:solid;
  6768. border-color:rgba(242, 242, 242, 1);
  6769. border-radius:4px;
  6770. filter:drop-shadow(none);
  6771. transition:none;
  6772. font-family:"Microsoft YaHei", sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:14px;
  6776. color:#CCCCCC;
  6777. text-align:left;
  6778. }
  6779. #u12942 {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:350px;
  6783. top:199px;
  6784. width:170px;
  6785. height:30px;
  6786. display:flex;
  6787. transition:none;
  6788. transform-origin:50% 50%;
  6789. font-family:"Microsoft YaHei", sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:14px;
  6793. color:#CCCCCC;
  6794. text-align:left;
  6795. }
  6796. #u12942 .text {
  6797. position:absolute;
  6798. align-self:center;
  6799. padding:2px 8px 2px 8px;
  6800. box-sizing:border-box;
  6801. width:100%;
  6802. }
  6803. #u12942_text {
  6804. border-width:0px;
  6805. word-wrap:break-word;
  6806. text-transform:none;
  6807. visibility:hidden;
  6808. }
  6809. #u12943_input {
  6810. position:absolute;
  6811. left:0px;
  6812. top:0px;
  6813. width:133px;
  6814. height:26px;
  6815. padding:2px 2px 2px 2px;
  6816. font-family:"Microsoft YaHei", sans-serif;
  6817. font-weight:400;
  6818. font-style:normal;
  6819. font-size:14px;
  6820. letter-spacing:normal;
  6821. color:#000000;
  6822. vertical-align:none;
  6823. text-align:left;
  6824. text-transform:none;
  6825. background-color:transparent;
  6826. border-color:transparent;
  6827. }
  6828. #u12943_input.hint {
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:133px;
  6833. height:26px;
  6834. padding:2px 2px 2px 2px;
  6835. font-family:"Microsoft YaHei", sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:12px;
  6839. letter-spacing:normal;
  6840. color:#AAAAAA;
  6841. vertical-align:none;
  6842. text-align:left;
  6843. text-transform:none;
  6844. background-color:transparent;
  6845. border-color:transparent;
  6846. }
  6847. #u12943_input.disabled {
  6848. position:absolute;
  6849. left:0px;
  6850. top:0px;
  6851. width:133px;
  6852. height:26px;
  6853. padding:2px 2px 2px 2px;
  6854. font-family:"Microsoft YaHei", sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:14px;
  6858. letter-spacing:normal;
  6859. color:#000000;
  6860. vertical-align:none;
  6861. text-align:left;
  6862. text-transform:none;
  6863. background-color:transparent;
  6864. border-color:transparent;
  6865. }
  6866. #u12943_input.hint.disabled {
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:133px;
  6871. height:26px;
  6872. padding:2px 2px 2px 2px;
  6873. font-family:"Microsoft YaHei", sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. font-size:12px;
  6877. letter-spacing:normal;
  6878. color:#AAAAAA;
  6879. vertical-align:none;
  6880. text-align:left;
  6881. text-transform:none;
  6882. background-color:transparent;
  6883. border-color:transparent;
  6884. }
  6885. #u12943_div {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:0px;
  6889. top:0px;
  6890. width:133px;
  6891. height:26px;
  6892. background:inherit;
  6893. background-color:rgba(255, 255, 255, 1);
  6894. border-radius:0px;
  6895. filter:drop-shadow(none);
  6896. transition:none;
  6897. font-family:"Microsoft YaHei", sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:14px;
  6901. }
  6902. #u12943 {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:355px;
  6906. top:201px;
  6907. width:133px;
  6908. height:26px;
  6909. display:flex;
  6910. transition:none;
  6911. transform-origin:50% 50%;
  6912. font-family:"Microsoft YaHei", sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:14px;
  6916. }
  6917. #u12943 .text {
  6918. position:absolute;
  6919. align-self:center;
  6920. padding:2px 2px 2px 2px;
  6921. box-sizing:border-box;
  6922. width:100%;
  6923. }
  6924. #u12943_div.hint {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:133px;
  6930. height:26px;
  6931. background:inherit;
  6932. background-color:rgba(255, 255, 255, 1);
  6933. border-radius:0px;
  6934. filter:drop-shadow(none);
  6935. transition:none;
  6936. font-family:"Microsoft YaHei", sans-serif;
  6937. font-weight:400;
  6938. font-style:normal;
  6939. font-size:14px;
  6940. }
  6941. #u12943.hint {
  6942. }
  6943. #u12943_div.disabled {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:0px;
  6947. top:0px;
  6948. width:133px;
  6949. height:26px;
  6950. background:inherit;
  6951. background-color:rgba(240, 240, 240, 1);
  6952. border-radius:0px;
  6953. filter:drop-shadow(none);
  6954. transition:none;
  6955. font-family:"Microsoft YaHei", sans-serif;
  6956. font-weight:400;
  6957. font-style:normal;
  6958. font-size:14px;
  6959. }
  6960. #u12943.disabled {
  6961. }
  6962. #u12943_div.hint.disabled {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:133px;
  6968. height:26px;
  6969. background:inherit;
  6970. background-color:rgba(240, 240, 240, 1);
  6971. border-radius:0px;
  6972. filter:drop-shadow(none);
  6973. transition:none;
  6974. font-family:"Microsoft YaHei", sans-serif;
  6975. font-weight:400;
  6976. font-style:normal;
  6977. font-size:14px;
  6978. }
  6979. #u12943.hint.disabled {
  6980. }
  6981. #u12944 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:496px;
  6985. top:208px;
  6986. width:14px;
  6987. height:14px;
  6988. display:flex;
  6989. transition:none;
  6990. }
  6991. #u12944 .text {
  6992. position:absolute;
  6993. align-self:center;
  6994. padding:2px 2px 2px 2px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u12944_img {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:14px;
  7004. height:14px;
  7005. }
  7006. #u12944_text {
  7007. border-width:0px;
  7008. word-wrap:break-word;
  7009. text-transform:none;
  7010. visibility:hidden;
  7011. }
  7012. #u12945 {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:0px;
  7016. top:0px;
  7017. width:0px;
  7018. height:0px;
  7019. }
  7020. #u12946_div {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:109px;
  7026. height:30px;
  7027. background:inherit;
  7028. background-color:rgba(255, 255, 255, 0);
  7029. border-radius:0px;
  7030. filter:drop-shadow(none);
  7031. transition:none;
  7032. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:18px;
  7036. color:#000000;
  7037. line-height:30px;
  7038. }
  7039. #u12946 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:350px;
  7043. top:160px;
  7044. width:109px;
  7045. height:30px;
  7046. display:flex;
  7047. transition:none;
  7048. transform-origin:50% 50%;
  7049. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7050. font-weight:400;
  7051. font-style:normal;
  7052. font-size:18px;
  7053. color:#000000;
  7054. line-height:30px;
  7055. }
  7056. #u12946 .text {
  7057. position:absolute;
  7058. align-self:flex-start;
  7059. padding:0px 0px 0px 0px;
  7060. box-sizing:border-box;
  7061. width:100%;
  7062. }
  7063. #u12946_text {
  7064. border-width:0px;
  7065. white-space:nowrap;
  7066. text-transform:none;
  7067. }
  7068. #u12947 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:471px;
  7072. top:171px;
  7073. width:12px;
  7074. height:7px;
  7075. display:flex;
  7076. transition:none;
  7077. }
  7078. #u12947 .text {
  7079. position:absolute;
  7080. align-self:center;
  7081. padding:2px 2px 2px 2px;
  7082. box-sizing:border-box;
  7083. width:100%;
  7084. }
  7085. #u12947_img {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:12px;
  7091. height:7px;
  7092. }
  7093. #u12947_text {
  7094. border-width:0px;
  7095. word-wrap:break-word;
  7096. text-transform:none;
  7097. visibility:hidden;
  7098. }
  7099. #u12948_div {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:0px;
  7103. top:0px;
  7104. width:145px;
  7105. height:30px;
  7106. background:inherit;
  7107. background-color:rgba(255, 255, 255, 0);
  7108. border-radius:0px;
  7109. filter:drop-shadow(none);
  7110. transition:none;
  7111. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:18px;
  7115. color:#000000;
  7116. line-height:30px;
  7117. }
  7118. #u12948 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:563px;
  7122. top:160px;
  7123. width:145px;
  7124. height:30px;
  7125. display:flex;
  7126. transition:none;
  7127. transform-origin:50% 50%;
  7128. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7129. font-weight:400;
  7130. font-style:normal;
  7131. font-size:18px;
  7132. color:#000000;
  7133. line-height:30px;
  7134. }
  7135. #u12948 .text {
  7136. position:absolute;
  7137. align-self:flex-start;
  7138. padding:0px 0px 0px 0px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u12948_text {
  7143. border-width:0px;
  7144. white-space:nowrap;
  7145. text-transform:none;
  7146. }
  7147. #u12949 {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:0px;
  7152. width:0px;
  7153. height:0px;
  7154. }
  7155. #u12950_div {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:140px;
  7161. height:30px;
  7162. background:inherit;
  7163. background-color:rgba(255, 255, 255, 1);
  7164. box-sizing:border-box;
  7165. border-width:1px;
  7166. border-style:solid;
  7167. border-color:rgba(215, 215, 215, 1);
  7168. border-radius:4px;
  7169. filter:drop-shadow(none);
  7170. transition:none;
  7171. font-size:14px;
  7172. }
  7173. #u12950 {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:1161px;
  7177. top:199px;
  7178. width:140px;
  7179. height:30px;
  7180. display:flex;
  7181. transition:none;
  7182. transform-origin:50% 50%;
  7183. font-size:14px;
  7184. }
  7185. #u12950 .text {
  7186. position:absolute;
  7187. align-self:center;
  7188. padding:2px 2px 2px 2px;
  7189. box-sizing:border-box;
  7190. width:100%;
  7191. }
  7192. #u12950_text {
  7193. border-width:0px;
  7194. word-wrap:break-word;
  7195. text-transform:none;
  7196. visibility:hidden;
  7197. }
  7198. #u12951_input {
  7199. position:absolute;
  7200. left:0px;
  7201. top:0px;
  7202. width:134px;
  7203. height:23px;
  7204. padding:2px 2px 2px 2px;
  7205. font-family:"ArialMT", "Arial", sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:14px;
  7209. letter-spacing:normal;
  7210. color:#AAAAAA;
  7211. vertical-align:none;
  7212. text-align:left;
  7213. text-transform:none;
  7214. background-color:transparent;
  7215. border-color:transparent;
  7216. }
  7217. #u12951_input.disabled {
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:134px;
  7222. height:23px;
  7223. padding:2px 2px 2px 2px;
  7224. font-family:"ArialMT", "Arial", sans-serif;
  7225. font-weight:400;
  7226. font-style:normal;
  7227. font-size:14px;
  7228. letter-spacing:normal;
  7229. color:#AAAAAA;
  7230. vertical-align:none;
  7231. text-align:left;
  7232. text-transform:none;
  7233. background-color:transparent;
  7234. border-color:transparent;
  7235. }
  7236. #u12951_div {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:134px;
  7242. height:23px;
  7243. background:inherit;
  7244. background-color:rgba(255, 255, 255, 1);
  7245. border-radius:0px;
  7246. filter:drop-shadow(none);
  7247. transition:none;
  7248. font-size:14px;
  7249. color:#AAAAAA;
  7250. }
  7251. #u12951 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:1165px;
  7255. top:201px;
  7256. width:134px;
  7257. height:23px;
  7258. display:flex;
  7259. transition:none;
  7260. transform-origin:50% 50%;
  7261. font-size:14px;
  7262. color:#AAAAAA;
  7263. }
  7264. #u12951 .text {
  7265. position:absolute;
  7266. align-self:flex-start;
  7267. padding:2px 2px 2px 2px;
  7268. box-sizing:border-box;
  7269. width:100%;
  7270. }
  7271. #u12951_div.disabled {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:0px;
  7275. top:0px;
  7276. width:134px;
  7277. height:23px;
  7278. background:inherit;
  7279. background-color:rgba(240, 240, 240, 1);
  7280. border-radius:0px;
  7281. filter:drop-shadow(none);
  7282. transition:none;
  7283. font-size:14px;
  7284. color:#AAAAAA;
  7285. }
  7286. #u12951.disabled {
  7287. }
  7288. .u12951_input_option {
  7289. font-size:14px;
  7290. }
  7291. #u12952_div {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:60px;
  7297. height:30px;
  7298. background:inherit;
  7299. background-color:rgba(255, 255, 255, 1);
  7300. box-sizing:border-box;
  7301. border-width:1px;
  7302. border-style:solid;
  7303. border-color:rgba(170, 170, 170, 1);
  7304. border-radius:4px;
  7305. filter:drop-shadow(none);
  7306. transition:none;
  7307. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7308. font-weight:400;
  7309. font-style:normal;
  7310. font-size:14px;
  7311. }
  7312. #u12952 {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:1508px;
  7316. top:60px;
  7317. width:60px;
  7318. height:30px;
  7319. display:flex;
  7320. transition:none;
  7321. transform-origin:50% 50%;
  7322. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:14px;
  7326. }
  7327. #u12952 .text {
  7328. position:absolute;
  7329. align-self:center;
  7330. padding:2px 2px 2px 2px;
  7331. box-sizing:border-box;
  7332. width:100%;
  7333. }
  7334. #u12952_text {
  7335. border-width:0px;
  7336. word-wrap:break-word;
  7337. text-transform:none;
  7338. }
  7339. #u12953 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:0px;
  7343. top:0px;
  7344. width:0px;
  7345. height:0px;
  7346. }
  7347. #u12954_div {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:80px;
  7353. height:100px;
  7354. background:inherit;
  7355. background-color:rgba(255, 255, 255, 1);
  7356. box-sizing:border-box;
  7357. border-width:1px;
  7358. border-style:solid;
  7359. border-color:rgba(242, 242, 242, 1);
  7360. border-radius:4px;
  7361. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  7362. transition:none;
  7363. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:14px;
  7367. text-align:left;
  7368. }
  7369. #u12954 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:1498px;
  7373. top:465px;
  7374. width:80px;
  7375. height:100px;
  7376. display:flex;
  7377. transition:none;
  7378. transform-origin:50% 50%;
  7379. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:14px;
  7383. text-align:left;
  7384. }
  7385. #u12954 .text {
  7386. position:absolute;
  7387. align-self:center;
  7388. padding:2px 2px 2px 2px;
  7389. box-sizing:border-box;
  7390. width:100%;
  7391. }
  7392. #u12954_text {
  7393. border-width:0px;
  7394. word-wrap:break-word;
  7395. text-transform:none;
  7396. visibility:hidden;
  7397. }
  7398. #u12955_div {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:0px;
  7402. top:0px;
  7403. width:66px;
  7404. height:40px;
  7405. background:inherit;
  7406. background-color:rgba(255, 255, 255, 1);
  7407. border-left:0px;
  7408. border-top:0px;
  7409. border-right:0px;
  7410. border-radius:0px;
  7411. border-bottom-right-radius:0px;
  7412. border-bottom-left-radius:0px;
  7413. filter:drop-shadow(none);
  7414. transition:none;
  7415. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7416. font-weight:400;
  7417. font-style:normal;
  7418. font-size:14px;
  7419. }
  7420. #u12955 {
  7421. border-width:0px;
  7422. position:absolute;
  7423. left:1504px;
  7424. top:515px;
  7425. width:66px;
  7426. height:40px;
  7427. display:flex;
  7428. transition:none;
  7429. transform-origin:50% 50%;
  7430. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:14px;
  7434. }
  7435. #u12955 .text {
  7436. position:absolute;
  7437. align-self:center;
  7438. padding:2px 2px 2px 2px;
  7439. box-sizing:border-box;
  7440. width:100%;
  7441. }
  7442. #u12955_text {
  7443. border-width:0px;
  7444. word-wrap:break-word;
  7445. text-transform:none;
  7446. }
  7447. #u12956_div {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:0px;
  7451. top:0px;
  7452. width:66px;
  7453. height:40px;
  7454. background:inherit;
  7455. background-color:rgba(255, 255, 255, 1);
  7456. box-sizing:border-box;
  7457. border-width:1px;
  7458. border-style:solid;
  7459. border-color:rgba(215, 215, 215, 1);
  7460. border-left:0px;
  7461. border-top:0px;
  7462. border-right:0px;
  7463. border-radius:0px;
  7464. border-bottom-right-radius:0px;
  7465. border-bottom-left-radius:0px;
  7466. filter:drop-shadow(none);
  7467. transition:none;
  7468. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:14px;
  7472. }
  7473. #u12956 {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:1504px;
  7477. top:475px;
  7478. width:66px;
  7479. height:40px;
  7480. display:flex;
  7481. transition:none;
  7482. transform-origin:50% 50%;
  7483. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:14px;
  7487. }
  7488. #u12956 .text {
  7489. position:absolute;
  7490. align-self:center;
  7491. padding:2px 2px 2px 2px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u12956_text {
  7496. border-width:0px;
  7497. word-wrap:break-word;
  7498. text-transform:none;
  7499. }
  7500. #u12957 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:120px;
  7504. top:50px;
  7505. width:201px;
  7506. height:1190px;
  7507. }
  7508. #u12958 {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:0px;
  7512. top:0px;
  7513. width:0px;
  7514. height:0px;
  7515. }
  7516. #u12959_div {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:200px;
  7522. height:1190px;
  7523. background:inherit;
  7524. background-color:rgba(255, 255, 255, 1);
  7525. border-radius:0px;
  7526. filter:drop-shadow(none);
  7527. transition:none;
  7528. }
  7529. #u12959 {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:200px;
  7535. height:1190px;
  7536. display:flex;
  7537. transition:none;
  7538. transform-origin:50% 50%;
  7539. }
  7540. #u12959 .text {
  7541. position:absolute;
  7542. align-self:center;
  7543. padding:2px 2px 2px 2px;
  7544. box-sizing:border-box;
  7545. width:100%;
  7546. }
  7547. #u12959_text {
  7548. border-width:0px;
  7549. word-wrap:break-word;
  7550. text-transform:none;
  7551. visibility:hidden;
  7552. }
  7553. #u12960_div {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:0px;
  7557. top:0px;
  7558. width:200px;
  7559. height:60px;
  7560. background:inherit;
  7561. background-color:rgba(224, 231, 247, 1);
  7562. border-radius:0px;
  7563. filter:drop-shadow(none);
  7564. transition:none;
  7565. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  7566. font-weight:500;
  7567. font-style:normal;
  7568. font-size:18px;
  7569. }
  7570. #u12960 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:200px;
  7576. height:60px;
  7577. display:flex;
  7578. transition:none;
  7579. transform-origin:50% 50%;
  7580. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  7581. font-weight:500;
  7582. font-style:normal;
  7583. font-size:18px;
  7584. }
  7585. #u12960 .text {
  7586. position:absolute;
  7587. align-self:center;
  7588. padding:0px 0px 0px 20px;
  7589. box-sizing:border-box;
  7590. width:100%;
  7591. }
  7592. #u12960_text {
  7593. border-width:0px;
  7594. word-wrap:break-word;
  7595. text-transform:none;
  7596. }
  7597. #u12961_div {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:65px;
  7603. height:22px;
  7604. background:inherit;
  7605. background-color:rgba(255, 255, 255, 0);
  7606. border-radius:0px;
  7607. filter:drop-shadow(none);
  7608. transition:none;
  7609. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7610. font-weight:400;
  7611. font-style:normal;
  7612. font-size:16px;
  7613. }
  7614. #u12961 {
  7615. border-width:0px;
  7616. position:absolute;
  7617. left:25px;
  7618. top:456px;
  7619. width:65px;
  7620. height:22px;
  7621. display:flex;
  7622. transition:none;
  7623. transform-origin:50% 50%;
  7624. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. font-size:16px;
  7628. }
  7629. #u12961 .text {
  7630. position:absolute;
  7631. align-self:flex-start;
  7632. padding:0px 0px 0px 0px;
  7633. box-sizing:border-box;
  7634. width:100%;
  7635. }
  7636. #u12961_text {
  7637. border-width:0px;
  7638. white-space:nowrap;
  7639. text-transform:none;
  7640. }
  7641. #u12962_div {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:49px;
  7647. height:17px;
  7648. background:inherit;
  7649. background-color:rgba(255, 255, 255, 0);
  7650. border-radius:0px;
  7651. filter:drop-shadow(none);
  7652. transition:none;
  7653. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. font-size:12px;
  7657. color:#AAAAAA;
  7658. }
  7659. #u12962 {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:23px;
  7663. top:419px;
  7664. width:49px;
  7665. height:17px;
  7666. display:flex;
  7667. transition:none;
  7668. transform-origin:50% 50%;
  7669. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7670. font-weight:400;
  7671. font-style:normal;
  7672. font-size:12px;
  7673. color:#AAAAAA;
  7674. }
  7675. #u12962 .text {
  7676. position:absolute;
  7677. align-self:flex-start;
  7678. padding:0px 0px 0px 0px;
  7679. box-sizing:border-box;
  7680. width:100%;
  7681. }
  7682. #u12962_text {
  7683. border-width:0px;
  7684. white-space:nowrap;
  7685. text-transform:none;
  7686. }
  7687. #u12963_div {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:49px;
  7693. height:17px;
  7694. background:inherit;
  7695. background-color:rgba(255, 255, 255, 0);
  7696. border-radius:0px;
  7697. filter:drop-shadow(none);
  7698. transition:none;
  7699. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:12px;
  7703. color:#AAAAAA;
  7704. }
  7705. #u12963 {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:24px;
  7709. top:81px;
  7710. width:49px;
  7711. height:17px;
  7712. display:flex;
  7713. transition:none;
  7714. transform-origin:50% 50%;
  7715. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7716. font-weight:400;
  7717. font-style:normal;
  7718. font-size:12px;
  7719. color:#AAAAAA;
  7720. }
  7721. #u12963 .text {
  7722. position:absolute;
  7723. align-self:flex-start;
  7724. padding:0px 0px 0px 0px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u12963_text {
  7729. border-width:0px;
  7730. white-space:nowrap;
  7731. text-transform:none;
  7732. }
  7733. #u12964_div {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:65px;
  7739. height:22px;
  7740. background:inherit;
  7741. background-color:rgba(255, 255, 255, 0);
  7742. border-radius:0px;
  7743. filter:drop-shadow(none);
  7744. transition:none;
  7745. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7746. font-weight:400;
  7747. font-style:normal;
  7748. font-size:16px;
  7749. }
  7750. #u12964 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:26px;
  7754. top:118px;
  7755. width:65px;
  7756. height:22px;
  7757. display:flex;
  7758. transition:none;
  7759. transform-origin:50% 50%;
  7760. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7761. font-weight:400;
  7762. font-style:normal;
  7763. font-size:16px;
  7764. }
  7765. #u12964 .text {
  7766. position:absolute;
  7767. align-self:flex-start;
  7768. padding:0px 0px 0px 0px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u12964_text {
  7773. border-width:0px;
  7774. white-space:nowrap;
  7775. text-transform:none;
  7776. }
  7777. #u12965 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:398px;
  7782. width:200px;
  7783. height:1px;
  7784. display:flex;
  7785. transition:none;
  7786. }
  7787. #u12965 .text {
  7788. position:absolute;
  7789. align-self:center;
  7790. padding:2px 2px 2px 2px;
  7791. box-sizing:border-box;
  7792. width:100%;
  7793. }
  7794. #u12965_img {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:0px;
  7798. top:0px;
  7799. width:201px;
  7800. height:2px;
  7801. }
  7802. #u12965_text {
  7803. border-width:0px;
  7804. word-wrap:break-word;
  7805. text-transform:none;
  7806. visibility:hidden;
  7807. }
  7808. #u12966_div {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:0px;
  7812. top:0px;
  7813. width:65px;
  7814. height:22px;
  7815. background:inherit;
  7816. background-color:rgba(255, 255, 255, 0);
  7817. border-radius:0px;
  7818. filter:drop-shadow(none);
  7819. transition:none;
  7820. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:16px;
  7824. }
  7825. #u12966 {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:25px;
  7829. top:498px;
  7830. width:65px;
  7831. height:22px;
  7832. display:flex;
  7833. transition:none;
  7834. transform-origin:50% 50%;
  7835. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7836. font-weight:400;
  7837. font-style:normal;
  7838. font-size:16px;
  7839. }
  7840. #u12966 .text {
  7841. position:absolute;
  7842. align-self:flex-start;
  7843. padding:0px 0px 0px 0px;
  7844. box-sizing:border-box;
  7845. width:100%;
  7846. }
  7847. #u12966_text {
  7848. border-width:0px;
  7849. white-space:nowrap;
  7850. text-transform:none;
  7851. }
  7852. #u12967_div {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:0px;
  7856. top:0px;
  7857. width:49px;
  7858. height:17px;
  7859. background:inherit;
  7860. background-color:rgba(255, 255, 255, 0);
  7861. border-radius:0px;
  7862. filter:drop-shadow(none);
  7863. transition:none;
  7864. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7865. font-weight:400;
  7866. font-style:normal;
  7867. font-size:12px;
  7868. color:#AAAAAA;
  7869. }
  7870. #u12967 {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:24px;
  7874. top:235px;
  7875. width:49px;
  7876. height:17px;
  7877. display:flex;
  7878. transition:none;
  7879. transform-origin:50% 50%;
  7880. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7881. font-weight:400;
  7882. font-style:normal;
  7883. font-size:12px;
  7884. color:#AAAAAA;
  7885. }
  7886. #u12967 .text {
  7887. position:absolute;
  7888. align-self:flex-start;
  7889. padding:0px 0px 0px 0px;
  7890. box-sizing:border-box;
  7891. width:100%;
  7892. }
  7893. #u12967_text {
  7894. border-width:0px;
  7895. white-space:nowrap;
  7896. text-transform:none;
  7897. }
  7898. #u12968 {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:1px;
  7902. top:214px;
  7903. width:200px;
  7904. height:1px;
  7905. display:flex;
  7906. transition:none;
  7907. }
  7908. #u12968 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 2px 2px 2px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u12968_img {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:0px;
  7919. top:0px;
  7920. width:201px;
  7921. height:2px;
  7922. }
  7923. #u12968_text {
  7924. border-width:0px;
  7925. word-wrap:break-word;
  7926. text-transform:none;
  7927. visibility:hidden;
  7928. }
  7929. #u12969_div {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:0px;
  7933. top:0px;
  7934. width:65px;
  7935. height:22px;
  7936. background:inherit;
  7937. background-color:rgba(255, 255, 255, 0);
  7938. border-radius:0px;
  7939. filter:drop-shadow(none);
  7940. transition:none;
  7941. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:16px;
  7945. }
  7946. #u12969 {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:26px;
  7950. top:272px;
  7951. width:65px;
  7952. height:22px;
  7953. display:flex;
  7954. transition:none;
  7955. transform-origin:50% 50%;
  7956. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7957. font-weight:400;
  7958. font-style:normal;
  7959. font-size:16px;
  7960. }
  7961. #u12969 .text {
  7962. position:absolute;
  7963. align-self:flex-start;
  7964. padding:0px 0px 0px 0px;
  7965. box-sizing:border-box;
  7966. width:100%;
  7967. }
  7968. #u12969_text {
  7969. border-width:0px;
  7970. white-space:nowrap;
  7971. text-transform:none;
  7972. }
  7973. #u12970_div {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:0px;
  7977. top:0px;
  7978. width:65px;
  7979. height:22px;
  7980. background:inherit;
  7981. background-color:rgba(255, 255, 255, 0);
  7982. border-radius:0px;
  7983. filter:drop-shadow(none);
  7984. transition:none;
  7985. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:16px;
  7989. }
  7990. #u12970 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:26px;
  7994. top:314px;
  7995. width:65px;
  7996. height:22px;
  7997. display:flex;
  7998. transition:none;
  7999. transform-origin:50% 50%;
  8000. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:16px;
  8004. }
  8005. #u12970 .text {
  8006. position:absolute;
  8007. align-self:flex-start;
  8008. padding:0px 0px 0px 0px;
  8009. box-sizing:border-box;
  8010. width:100%;
  8011. }
  8012. #u12970_text {
  8013. border-width:0px;
  8014. white-space:nowrap;
  8015. text-transform:none;
  8016. }
  8017. #u12971_div {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:0px;
  8021. top:0px;
  8022. width:129px;
  8023. height:22px;
  8024. background:inherit;
  8025. background-color:rgba(255, 255, 255, 0);
  8026. border-radius:0px;
  8027. filter:drop-shadow(none);
  8028. transition:none;
  8029. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8030. font-weight:400;
  8031. font-style:normal;
  8032. font-size:16px;
  8033. }
  8034. #u12971 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:25px;
  8038. top:956px;
  8039. width:129px;
  8040. height:22px;
  8041. display:flex;
  8042. transition:none;
  8043. transform-origin:50% 50%;
  8044. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. font-size:16px;
  8048. }
  8049. #u12971 .text {
  8050. position:absolute;
  8051. align-self:flex-start;
  8052. padding:0px 0px 0px 0px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u12971_text {
  8057. border-width:0px;
  8058. white-space:nowrap;
  8059. text-transform:none;
  8060. }
  8061. #u12972_div {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:129px;
  8067. height:22px;
  8068. background:inherit;
  8069. background-color:rgba(255, 255, 255, 0);
  8070. border-radius:0px;
  8071. filter:drop-shadow(none);
  8072. transition:none;
  8073. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8074. font-weight:400;
  8075. font-style:normal;
  8076. font-size:16px;
  8077. }
  8078. #u12972 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:25px;
  8082. top:748px;
  8083. width:129px;
  8084. height:22px;
  8085. display:flex;
  8086. transition:none;
  8087. transform-origin:50% 50%;
  8088. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8089. font-weight:400;
  8090. font-style:normal;
  8091. font-size:16px;
  8092. }
  8093. #u12972 .text {
  8094. position:absolute;
  8095. align-self:flex-start;
  8096. padding:0px 0px 0px 0px;
  8097. box-sizing:border-box;
  8098. width:100%;
  8099. }
  8100. #u12972_text {
  8101. border-width:0px;
  8102. white-space:nowrap;
  8103. text-transform:none;
  8104. }
  8105. #u12973_div {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:0px;
  8109. top:0px;
  8110. width:97px;
  8111. height:17px;
  8112. background:inherit;
  8113. background-color:rgba(255, 255, 255, 0);
  8114. border-radius:0px;
  8115. filter:drop-shadow(none);
  8116. transition:none;
  8117. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8118. font-weight:400;
  8119. font-style:normal;
  8120. font-size:12px;
  8121. color:#AAAAAA;
  8122. }
  8123. #u12973 {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:23px;
  8127. top:711px;
  8128. width:97px;
  8129. height:17px;
  8130. display:flex;
  8131. transition:none;
  8132. transform-origin:50% 50%;
  8133. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8134. font-weight:400;
  8135. font-style:normal;
  8136. font-size:12px;
  8137. color:#AAAAAA;
  8138. }
  8139. #u12973 .text {
  8140. position:absolute;
  8141. align-self:flex-start;
  8142. padding:0px 0px 0px 0px;
  8143. box-sizing:border-box;
  8144. width:100%;
  8145. }
  8146. #u12973_text {
  8147. border-width:0px;
  8148. white-space:nowrap;
  8149. text-transform:none;
  8150. }
  8151. #u12974 {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:0px;
  8155. top:690px;
  8156. width:200px;
  8157. height:1px;
  8158. display:flex;
  8159. transition:none;
  8160. }
  8161. #u12974 .text {
  8162. position:absolute;
  8163. align-self:center;
  8164. padding:2px 2px 2px 2px;
  8165. box-sizing:border-box;
  8166. width:100%;
  8167. }
  8168. #u12974_img {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:0px;
  8172. top:0px;
  8173. width:201px;
  8174. height:2px;
  8175. }
  8176. #u12974_text {
  8177. border-width:0px;
  8178. word-wrap:break-word;
  8179. text-transform:none;
  8180. visibility:hidden;
  8181. }
  8182. #u12975_div {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:0px;
  8186. top:0px;
  8187. width:129px;
  8188. height:22px;
  8189. background:inherit;
  8190. background-color:rgba(255, 255, 255, 0);
  8191. border-radius:0px;
  8192. filter:drop-shadow(none);
  8193. transition:none;
  8194. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8195. font-weight:400;
  8196. font-style:normal;
  8197. font-size:16px;
  8198. }
  8199. #u12975 {
  8200. border-width:0px;
  8201. position:absolute;
  8202. left:25px;
  8203. top:830px;
  8204. width:129px;
  8205. height:22px;
  8206. display:flex;
  8207. transition:none;
  8208. transform-origin:50% 50%;
  8209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8210. font-weight:400;
  8211. font-style:normal;
  8212. font-size:16px;
  8213. }
  8214. #u12975 .text {
  8215. position:absolute;
  8216. align-self:flex-start;
  8217. padding:0px 0px 0px 0px;
  8218. box-sizing:border-box;
  8219. width:100%;
  8220. }
  8221. #u12975_text {
  8222. border-width:0px;
  8223. white-space:nowrap;
  8224. text-transform:none;
  8225. }
  8226. #u12976_div {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:0px;
  8230. top:0px;
  8231. width:129px;
  8232. height:22px;
  8233. background:inherit;
  8234. background-color:rgba(255, 255, 255, 0);
  8235. border-radius:0px;
  8236. filter:drop-shadow(none);
  8237. transition:none;
  8238. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8239. font-weight:400;
  8240. font-style:normal;
  8241. font-size:16px;
  8242. }
  8243. #u12976 {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:25px;
  8247. top:872px;
  8248. width:129px;
  8249. height:22px;
  8250. display:flex;
  8251. transition:none;
  8252. transform-origin:50% 50%;
  8253. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8254. font-weight:400;
  8255. font-style:normal;
  8256. font-size:16px;
  8257. }
  8258. #u12976 .text {
  8259. position:absolute;
  8260. align-self:flex-start;
  8261. padding:0px 0px 0px 0px;
  8262. box-sizing:border-box;
  8263. width:100%;
  8264. }
  8265. #u12976_text {
  8266. border-width:0px;
  8267. white-space:nowrap;
  8268. text-transform:none;
  8269. }
  8270. #u12977_div {
  8271. border-width:0px;
  8272. position:absolute;
  8273. left:0px;
  8274. top:0px;
  8275. width:65px;
  8276. height:22px;
  8277. background:inherit;
  8278. background-color:rgba(255, 255, 255, 0);
  8279. border-radius:0px;
  8280. filter:drop-shadow(none);
  8281. transition:none;
  8282. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8283. font-weight:400;
  8284. font-style:normal;
  8285. font-size:16px;
  8286. }
  8287. #u12977 {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:25px;
  8291. top:1056px;
  8292. width:65px;
  8293. height:22px;
  8294. display:flex;
  8295. transition:none;
  8296. transform-origin:50% 50%;
  8297. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8298. font-weight:400;
  8299. font-style:normal;
  8300. font-size:16px;
  8301. }
  8302. #u12977 .text {
  8303. position:absolute;
  8304. align-self:flex-start;
  8305. padding:0px 0px 0px 0px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u12977_text {
  8310. border-width:0px;
  8311. white-space:nowrap;
  8312. text-transform:none;
  8313. }
  8314. #u12978_div {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:0px;
  8318. top:0px;
  8319. width:49px;
  8320. height:17px;
  8321. background:inherit;
  8322. background-color:rgba(255, 255, 255, 0);
  8323. border-radius:0px;
  8324. filter:drop-shadow(none);
  8325. transition:none;
  8326. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8327. font-weight:400;
  8328. font-style:normal;
  8329. font-size:12px;
  8330. color:#AAAAAA;
  8331. }
  8332. #u12978 {
  8333. border-width:0px;
  8334. position:absolute;
  8335. left:23px;
  8336. top:1019px;
  8337. width:49px;
  8338. height:17px;
  8339. display:flex;
  8340. transition:none;
  8341. transform-origin:50% 50%;
  8342. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8343. font-weight:400;
  8344. font-style:normal;
  8345. font-size:12px;
  8346. color:#AAAAAA;
  8347. }
  8348. #u12978 .text {
  8349. position:absolute;
  8350. align-self:flex-start;
  8351. padding:0px 0px 0px 0px;
  8352. box-sizing:border-box;
  8353. width:100%;
  8354. }
  8355. #u12978_text {
  8356. border-width:0px;
  8357. white-space:nowrap;
  8358. text-transform:none;
  8359. }
  8360. #u12979 {
  8361. border-width:0px;
  8362. position:absolute;
  8363. left:0px;
  8364. top:998px;
  8365. width:200px;
  8366. height:1px;
  8367. display:flex;
  8368. transition:none;
  8369. }
  8370. #u12979 .text {
  8371. position:absolute;
  8372. align-self:center;
  8373. padding:2px 2px 2px 2px;
  8374. box-sizing:border-box;
  8375. width:100%;
  8376. }
  8377. #u12979_img {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:201px;
  8383. height:2px;
  8384. }
  8385. #u12979_text {
  8386. border-width:0px;
  8387. word-wrap:break-word;
  8388. text-transform:none;
  8389. visibility:hidden;
  8390. }
  8391. #u12980_div {
  8392. border-width:0px;
  8393. position:absolute;
  8394. left:0px;
  8395. top:0px;
  8396. width:65px;
  8397. height:22px;
  8398. background:inherit;
  8399. background-color:rgba(255, 255, 255, 0);
  8400. border-radius:0px;
  8401. filter:drop-shadow(none);
  8402. transition:none;
  8403. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8404. font-weight:400;
  8405. font-style:normal;
  8406. font-size:16px;
  8407. }
  8408. #u12980 {
  8409. border-width:0px;
  8410. position:absolute;
  8411. left:25px;
  8412. top:1098px;
  8413. width:65px;
  8414. height:22px;
  8415. display:flex;
  8416. transition:none;
  8417. transform-origin:50% 50%;
  8418. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. font-size:16px;
  8422. }
  8423. #u12980 .text {
  8424. position:absolute;
  8425. align-self:flex-start;
  8426. padding:0px 0px 0px 0px;
  8427. box-sizing:border-box;
  8428. width:100%;
  8429. }
  8430. #u12980_text {
  8431. border-width:0px;
  8432. white-space:nowrap;
  8433. text-transform:none;
  8434. }
  8435. #u12981_div {
  8436. border-width:0px;
  8437. position:absolute;
  8438. left:0px;
  8439. top:0px;
  8440. width:129px;
  8441. height:22px;
  8442. background:inherit;
  8443. background-color:rgba(255, 255, 255, 0);
  8444. border-radius:0px;
  8445. filter:drop-shadow(none);
  8446. transition:none;
  8447. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:16px;
  8451. }
  8452. #u12981 {
  8453. border-width:0px;
  8454. position:absolute;
  8455. left:25px;
  8456. top:914px;
  8457. width:129px;
  8458. height:22px;
  8459. display:flex;
  8460. transition:none;
  8461. transform-origin:50% 50%;
  8462. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:16px;
  8466. }
  8467. #u12981 .text {
  8468. position:absolute;
  8469. align-self:flex-start;
  8470. padding:0px 0px 0px 0px;
  8471. box-sizing:border-box;
  8472. width:100%;
  8473. }
  8474. #u12981_text {
  8475. border-width:0px;
  8476. white-space:nowrap;
  8477. text-transform:none;
  8478. }
  8479. #u12982_div {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:0px;
  8483. top:0px;
  8484. width:81px;
  8485. height:22px;
  8486. background:inherit;
  8487. background-color:rgba(255, 255, 255, 0);
  8488. border-radius:0px;
  8489. filter:drop-shadow(none);
  8490. transition:none;
  8491. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:16px;
  8495. }
  8496. #u12982 {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:26px;
  8500. top:356px;
  8501. width:81px;
  8502. height:22px;
  8503. display:flex;
  8504. transition:none;
  8505. transform-origin:50% 50%;
  8506. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:16px;
  8510. }
  8511. #u12982 .text {
  8512. position:absolute;
  8513. align-self:flex-start;
  8514. padding:0px 0px 0px 0px;
  8515. box-sizing:border-box;
  8516. width:100%;
  8517. }
  8518. #u12982_text {
  8519. border-width:0px;
  8520. white-space:nowrap;
  8521. text-transform:none;
  8522. }
  8523. #u12983_div {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:0px;
  8527. top:0px;
  8528. width:129px;
  8529. height:22px;
  8530. background:inherit;
  8531. background-color:rgba(255, 255, 255, 0);
  8532. border-radius:0px;
  8533. filter:drop-shadow(none);
  8534. transition:none;
  8535. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8536. font-weight:400;
  8537. font-style:normal;
  8538. font-size:16px;
  8539. }
  8540. #u12983 {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:25px;
  8544. top:790px;
  8545. width:129px;
  8546. height:22px;
  8547. display:flex;
  8548. transition:none;
  8549. transform-origin:50% 50%;
  8550. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8551. font-weight:400;
  8552. font-style:normal;
  8553. font-size:16px;
  8554. }
  8555. #u12983 .text {
  8556. position:absolute;
  8557. align-self:flex-start;
  8558. padding:0px 0px 0px 0px;
  8559. box-sizing:border-box;
  8560. width:100%;
  8561. }
  8562. #u12983_text {
  8563. border-width:0px;
  8564. white-space:nowrap;
  8565. text-transform:none;
  8566. }
  8567. #u12984_div {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:0px;
  8571. top:0px;
  8572. width:65px;
  8573. height:22px;
  8574. background:inherit;
  8575. background-color:rgba(255, 255, 255, 0);
  8576. border-radius:0px;
  8577. filter:drop-shadow(none);
  8578. transition:none;
  8579. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8580. font-weight:400;
  8581. font-style:normal;
  8582. font-size:16px;
  8583. }
  8584. #u12984 {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:25px;
  8588. top:160px;
  8589. width:65px;
  8590. height:22px;
  8591. display:flex;
  8592. transition:none;
  8593. transform-origin:50% 50%;
  8594. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8595. font-weight:400;
  8596. font-style:normal;
  8597. font-size:16px;
  8598. }
  8599. #u12984 .text {
  8600. position:absolute;
  8601. align-self:flex-start;
  8602. padding:0px 0px 0px 0px;
  8603. box-sizing:border-box;
  8604. width:100%;
  8605. }
  8606. #u12984_text {
  8607. border-width:0px;
  8608. white-space:nowrap;
  8609. text-transform:none;
  8610. }
  8611. #u12985_div {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:0px;
  8615. top:0px;
  8616. width:81px;
  8617. height:22px;
  8618. background:inherit;
  8619. background-color:rgba(255, 255, 255, 0);
  8620. border-radius:0px;
  8621. filter:drop-shadow(none);
  8622. transition:none;
  8623. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. font-size:16px;
  8627. }
  8628. #u12985 {
  8629. border-width:0px;
  8630. position:absolute;
  8631. left:25px;
  8632. top:598px;
  8633. width:81px;
  8634. height:22px;
  8635. display:flex;
  8636. transition:none;
  8637. transform-origin:50% 50%;
  8638. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8639. font-weight:400;
  8640. font-style:normal;
  8641. font-size:16px;
  8642. }
  8643. #u12985 .text {
  8644. position:absolute;
  8645. align-self:flex-start;
  8646. padding:0px 0px 0px 0px;
  8647. box-sizing:border-box;
  8648. width:100%;
  8649. }
  8650. #u12985_text {
  8651. border-width:0px;
  8652. white-space:nowrap;
  8653. text-transform:none;
  8654. }
  8655. #u12986_div {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:0px;
  8659. top:0px;
  8660. width:65px;
  8661. height:22px;
  8662. background:inherit;
  8663. background-color:rgba(255, 255, 255, 0);
  8664. border-radius:0px;
  8665. filter:drop-shadow(none);
  8666. transition:none;
  8667. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8668. font-weight:400;
  8669. font-style:normal;
  8670. font-size:16px;
  8671. }
  8672. #u12986 {
  8673. border-width:0px;
  8674. position:absolute;
  8675. left:25px;
  8676. top:640px;
  8677. width:65px;
  8678. height:22px;
  8679. display:flex;
  8680. transition:none;
  8681. transform-origin:50% 50%;
  8682. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8683. font-weight:400;
  8684. font-style:normal;
  8685. font-size:16px;
  8686. }
  8687. #u12986 .text {
  8688. position:absolute;
  8689. align-self:flex-start;
  8690. padding:0px 0px 0px 0px;
  8691. box-sizing:border-box;
  8692. width:100%;
  8693. }
  8694. #u12986_text {
  8695. border-width:0px;
  8696. white-space:nowrap;
  8697. text-transform:none;
  8698. }
  8699. #u12987_div {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:0px;
  8703. top:0px;
  8704. width:73px;
  8705. height:17px;
  8706. background:inherit;
  8707. background-color:rgba(255, 255, 255, 0);
  8708. border-radius:0px;
  8709. filter:drop-shadow(none);
  8710. transition:none;
  8711. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8712. font-weight:400;
  8713. font-style:normal;
  8714. font-size:12px;
  8715. color:#AAAAAA;
  8716. }
  8717. #u12987 {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:23px;
  8721. top:561px;
  8722. width:73px;
  8723. height:17px;
  8724. display:flex;
  8725. transition:none;
  8726. transform-origin:50% 50%;
  8727. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8728. font-weight:400;
  8729. font-style:normal;
  8730. font-size:12px;
  8731. color:#AAAAAA;
  8732. }
  8733. #u12987 .text {
  8734. position:absolute;
  8735. align-self:flex-start;
  8736. padding:0px 0px 0px 0px;
  8737. box-sizing:border-box;
  8738. width:100%;
  8739. }
  8740. #u12987_text {
  8741. border-width:0px;
  8742. white-space:nowrap;
  8743. text-transform:none;
  8744. }
  8745. #u12988 {
  8746. border-width:0px;
  8747. position:absolute;
  8748. left:0px;
  8749. top:540px;
  8750. width:200px;
  8751. height:1px;
  8752. display:flex;
  8753. transition:none;
  8754. }
  8755. #u12988 .text {
  8756. position:absolute;
  8757. align-self:center;
  8758. padding:2px 2px 2px 2px;
  8759. box-sizing:border-box;
  8760. width:100%;
  8761. }
  8762. #u12988_img {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:201px;
  8768. height:2px;
  8769. }
  8770. #u12988_text {
  8771. border-width:0px;
  8772. word-wrap:break-word;
  8773. text-transform:none;
  8774. visibility:hidden;
  8775. }
  8776. #u12989 {
  8777. border-width:0px;
  8778. position:absolute;
  8779. left:0px;
  8780. top:0px;
  8781. width:0px;
  8782. height:0px;
  8783. }
  8784. #u12990_div {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:0px;
  8788. top:0px;
  8789. width:140px;
  8790. height:30px;
  8791. background:inherit;
  8792. background-color:rgba(255, 255, 255, 1);
  8793. box-sizing:border-box;
  8794. border-width:1px;
  8795. border-style:solid;
  8796. border-color:rgba(201, 201, 201, 1);
  8797. border-radius:4px;
  8798. filter:drop-shadow(none);
  8799. transition:none;
  8800. font-family:"Microsoft YaHei", sans-serif;
  8801. font-weight:400;
  8802. font-style:normal;
  8803. font-size:14px;
  8804. color:#CCCCCC;
  8805. text-align:left;
  8806. }
  8807. #u12990 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:1311px;
  8811. top:199px;
  8812. width:140px;
  8813. height:30px;
  8814. display:flex;
  8815. transition:none;
  8816. transform-origin:50% 50%;
  8817. font-family:"Microsoft YaHei", sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:14px;
  8821. color:#CCCCCC;
  8822. text-align:left;
  8823. }
  8824. #u12990 .text {
  8825. position:absolute;
  8826. align-self:center;
  8827. padding:2px 8px 2px 8px;
  8828. box-sizing:border-box;
  8829. width:100%;
  8830. }
  8831. #u12990_text {
  8832. border-width:0px;
  8833. word-wrap:break-word;
  8834. text-transform:none;
  8835. visibility:hidden;
  8836. }
  8837. #u12991_input {
  8838. position:absolute;
  8839. left:0px;
  8840. top:0px;
  8841. width:127px;
  8842. height:25px;
  8843. padding:2px 2px 2px 2px;
  8844. font-family:"Microsoft YaHei", sans-serif;
  8845. font-weight:400;
  8846. font-style:normal;
  8847. font-size:10px;
  8848. letter-spacing:normal;
  8849. color:#000000;
  8850. vertical-align:none;
  8851. text-align:left;
  8852. text-transform:none;
  8853. background-color:transparent;
  8854. border-color:transparent;
  8855. }
  8856. #u12991_input.hint {
  8857. position:absolute;
  8858. left:0px;
  8859. top:0px;
  8860. width:127px;
  8861. height:25px;
  8862. padding:2px 2px 2px 2px;
  8863. font-family:"Microsoft YaHei", sans-serif;
  8864. font-weight:400;
  8865. font-style:normal;
  8866. font-size:12px;
  8867. letter-spacing:normal;
  8868. color:#AAAAAA;
  8869. vertical-align:none;
  8870. text-align:left;
  8871. text-transform:none;
  8872. background-color:transparent;
  8873. border-color:transparent;
  8874. }
  8875. #u12991_input.disabled {
  8876. position:absolute;
  8877. left:0px;
  8878. top:0px;
  8879. width:127px;
  8880. height:25px;
  8881. padding:2px 2px 2px 2px;
  8882. font-family:"Microsoft YaHei", sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:10px;
  8886. letter-spacing:normal;
  8887. color:#000000;
  8888. vertical-align:none;
  8889. text-align:left;
  8890. text-transform:none;
  8891. background-color:transparent;
  8892. border-color:transparent;
  8893. }
  8894. #u12991_input.hint.disabled {
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:127px;
  8899. height:25px;
  8900. padding:2px 2px 2px 2px;
  8901. font-family:"Microsoft YaHei", sans-serif;
  8902. font-weight:400;
  8903. font-style:normal;
  8904. font-size:12px;
  8905. letter-spacing:normal;
  8906. color:#AAAAAA;
  8907. vertical-align:none;
  8908. text-align:left;
  8909. text-transform:none;
  8910. background-color:transparent;
  8911. border-color:transparent;
  8912. }
  8913. #u12991_div {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:0px;
  8917. top:0px;
  8918. width:127px;
  8919. height:25px;
  8920. background:inherit;
  8921. background-color:rgba(255, 255, 255, 1);
  8922. border-radius:0px;
  8923. filter:drop-shadow(none);
  8924. transition:none;
  8925. font-family:"Microsoft YaHei", sans-serif;
  8926. font-weight:400;
  8927. font-style:normal;
  8928. font-size:10px;
  8929. }
  8930. #u12991 {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:1319px;
  8934. top:200px;
  8935. width:127px;
  8936. height:25px;
  8937. display:flex;
  8938. transition:none;
  8939. transform-origin:50% 50%;
  8940. font-family:"Microsoft YaHei", sans-serif;
  8941. font-weight:400;
  8942. font-style:normal;
  8943. font-size:10px;
  8944. }
  8945. #u12991 .text {
  8946. position:absolute;
  8947. align-self:center;
  8948. padding:2px 2px 2px 2px;
  8949. box-sizing:border-box;
  8950. width:100%;
  8951. }
  8952. #u12991_div.hint {
  8953. border-width:0px;
  8954. position:absolute;
  8955. left:0px;
  8956. top:0px;
  8957. width:127px;
  8958. height:25px;
  8959. background:inherit;
  8960. background-color:rgba(255, 255, 255, 1);
  8961. border-radius:0px;
  8962. filter:drop-shadow(none);
  8963. transition:none;
  8964. font-family:"Microsoft YaHei", sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:10px;
  8968. }
  8969. #u12991.hint {
  8970. }
  8971. #u12991_div.disabled {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:127px;
  8977. height:25px;
  8978. background:inherit;
  8979. background-color:rgba(240, 240, 240, 1);
  8980. border-radius:0px;
  8981. filter:drop-shadow(none);
  8982. transition:none;
  8983. font-family:"Microsoft YaHei", sans-serif;
  8984. font-weight:400;
  8985. font-style:normal;
  8986. font-size:10px;
  8987. }
  8988. #u12991.disabled {
  8989. }
  8990. #u12991_div.hint.disabled {
  8991. border-width:0px;
  8992. position:absolute;
  8993. left:0px;
  8994. top:0px;
  8995. width:127px;
  8996. height:25px;
  8997. background:inherit;
  8998. background-color:rgba(240, 240, 240, 1);
  8999. border-radius:0px;
  9000. filter:drop-shadow(none);
  9001. transition:none;
  9002. font-family:"Microsoft YaHei", sans-serif;
  9003. font-weight:400;
  9004. font-style:normal;
  9005. font-size:10px;
  9006. }
  9007. #u12991.hint.disabled {
  9008. }
  9009. #u12992_div {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:0px;
  9013. top:0px;
  9014. width:813px;
  9015. height:20px;
  9016. background:inherit;
  9017. background-color:rgba(255, 255, 255, 0);
  9018. border-left:0px;
  9019. border-top:0px;
  9020. border-right:0px;
  9021. border-radius:0px;
  9022. border-bottom-right-radius:0px;
  9023. border-bottom-left-radius:0px;
  9024. filter:drop-shadow(none);
  9025. transition:none;
  9026. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9027. font-weight:400;
  9028. font-style:normal;
  9029. font-size:14px;
  9030. color:#7F7F7F;
  9031. }
  9032. #u12992 {
  9033. border-width:0px;
  9034. position:absolute;
  9035. left:352px;
  9036. top:110px;
  9037. width:813px;
  9038. height:20px;
  9039. display:flex;
  9040. transition:none;
  9041. transform-origin:50% 50%;
  9042. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9043. font-weight:400;
  9044. font-style:normal;
  9045. font-size:14px;
  9046. color:#7F7F7F;
  9047. }
  9048. #u12992 .text {
  9049. position:absolute;
  9050. align-self:center;
  9051. padding:0px 0px 0px 0px;
  9052. box-sizing:border-box;
  9053. width:100%;
  9054. }
  9055. #u12992_text {
  9056. border-width:0px;
  9057. white-space:nowrap;
  9058. text-transform:none;
  9059. }
  9060. #u12993 {
  9061. border-width:0px;
  9062. position:absolute;
  9063. left:0px;
  9064. top:0px;
  9065. width:0px;
  9066. height:0px;
  9067. }
  9068. #u12994 {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:0px;
  9072. top:0px;
  9073. width:0px;
  9074. height:0px;
  9075. }
  9076. #u12995_div {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:0px;
  9080. top:0px;
  9081. width:380px;
  9082. height:160px;
  9083. background:inherit;
  9084. background-color:rgba(255, 255, 255, 1);
  9085. box-sizing:border-box;
  9086. border-width:1px;
  9087. border-style:solid;
  9088. border-color:rgba(242, 242, 242, 1);
  9089. border-radius:4px;
  9090. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  9091. transition:none;
  9092. font-family:"Microsoft YaHei", sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. }
  9096. #u12995 {
  9097. border-width:0px;
  9098. position:absolute;
  9099. left:1110px;
  9100. top:523px;
  9101. width:380px;
  9102. height:160px;
  9103. display:flex;
  9104. transition:none;
  9105. transform-origin:50% 50%;
  9106. font-family:"Microsoft YaHei", sans-serif;
  9107. font-weight:400;
  9108. font-style:normal;
  9109. }
  9110. #u12995 .text {
  9111. position:absolute;
  9112. align-self:center;
  9113. padding:2px 2px 2px 2px;
  9114. box-sizing:border-box;
  9115. width:100%;
  9116. }
  9117. #u12995_text {
  9118. border-width:0px;
  9119. word-wrap:break-word;
  9120. text-transform:none;
  9121. visibility:hidden;
  9122. }
  9123. #u12996_div {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:0px;
  9127. top:0px;
  9128. width:163px;
  9129. height:21px;
  9130. background:inherit;
  9131. background-color:rgba(255, 255, 255, 0);
  9132. border-radius:0px;
  9133. filter:drop-shadow(none);
  9134. transition:none;
  9135. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  9136. font-weight:650;
  9137. font-style:normal;
  9138. font-size:18px;
  9139. color:#000000;
  9140. line-height:22px;
  9141. }
  9142. #u12996 {
  9143. border-width:0px;
  9144. position:absolute;
  9145. left:1170px;
  9146. top:548px;
  9147. width:163px;
  9148. height:21px;
  9149. display:flex;
  9150. transition:none;
  9151. transform-origin:50% 50%;
  9152. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  9153. font-weight:650;
  9154. font-style:normal;
  9155. font-size:18px;
  9156. color:#000000;
  9157. line-height:22px;
  9158. }
  9159. #u12996 .text {
  9160. position:absolute;
  9161. align-self:flex-start;
  9162. padding:0px 0px 0px 0px;
  9163. box-sizing:border-box;
  9164. width:100%;
  9165. }
  9166. #u12996_text {
  9167. border-width:0px;
  9168. white-space:nowrap;
  9169. text-transform:none;
  9170. }
  9171. #u12997_div {
  9172. border-width:0px;
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:61px;
  9177. height:32px;
  9178. background:inherit;
  9179. background-color:rgba(24, 144, 255, 1);
  9180. border-radius:4px;
  9181. filter:drop-shadow(none);
  9182. transition:none;
  9183. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9184. font-weight:400;
  9185. font-style:normal;
  9186. font-size:14px;
  9187. color:#FFFFFF;
  9188. }
  9189. #u12997 {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:1409px;
  9193. top:635px;
  9194. width:61px;
  9195. height:32px;
  9196. display:flex;
  9197. transition:none;
  9198. transform-origin:50% 50%;
  9199. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9200. font-weight:400;
  9201. font-style:normal;
  9202. font-size:14px;
  9203. color:#FFFFFF;
  9204. }
  9205. #u12997 .text {
  9206. position:absolute;
  9207. align-self:center;
  9208. padding:2px 16px 2px 16px;
  9209. box-sizing:border-box;
  9210. width:100%;
  9211. }
  9212. #u12997_text {
  9213. border-width:0px;
  9214. white-space:nowrap;
  9215. text-transform:none;
  9216. }
  9217. #u12998 {
  9218. border-width:0px;
  9219. position:absolute;
  9220. left:1139px;
  9221. top:552px;
  9222. width:20px;
  9223. height:20px;
  9224. display:flex;
  9225. transition:none;
  9226. }
  9227. #u12998 .text {
  9228. position:absolute;
  9229. align-self:center;
  9230. padding:2px 2px 2px 2px;
  9231. box-sizing:border-box;
  9232. width:100%;
  9233. }
  9234. #u12998_img {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:0px;
  9238. top:0px;
  9239. width:20px;
  9240. height:20px;
  9241. }
  9242. #u12998_text {
  9243. border-width:0px;
  9244. word-wrap:break-word;
  9245. text-transform:none;
  9246. visibility:hidden;
  9247. }
  9248. #u12999_div {
  9249. border-width:0px;
  9250. position:absolute;
  9251. left:0px;
  9252. top:0px;
  9253. width:300px;
  9254. height:44px;
  9255. background:inherit;
  9256. background-color:rgba(255, 255, 255, 0);
  9257. border-radius:0px;
  9258. filter:drop-shadow(none);
  9259. transition:none;
  9260. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9261. font-weight:400;
  9262. font-style:normal;
  9263. font-size:14px;
  9264. color:#7F7F7F;
  9265. line-height:22px;
  9266. }
  9267. #u12999 {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:1170px;
  9271. top:582px;
  9272. width:300px;
  9273. height:44px;
  9274. display:flex;
  9275. transition:none;
  9276. transform-origin:50% 50%;
  9277. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9278. font-weight:400;
  9279. font-style:normal;
  9280. font-size:14px;
  9281. color:#7F7F7F;
  9282. line-height:22px;
  9283. }
  9284. #u12999 .text {
  9285. position:absolute;
  9286. align-self:flex-start;
  9287. padding:0px 0px 0px 0px;
  9288. box-sizing:border-box;
  9289. width:100%;
  9290. }
  9291. #u12999_text {
  9292. border-width:0px;
  9293. word-wrap:break-word;
  9294. text-transform:none;
  9295. }
  9296. #u13000_div {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:0px;
  9300. top:0px;
  9301. width:66px;
  9302. height:32px;
  9303. background:inherit;
  9304. background-color:rgba(255, 255, 255, 1);
  9305. box-sizing:border-box;
  9306. border-width:1px;
  9307. border-style:solid;
  9308. border-color:rgba(217, 217, 217, 1);
  9309. border-radius:4px;
  9310. filter:drop-shadow(none);
  9311. transition:none;
  9312. font-family:"Microsoft YaHei", sans-serif;
  9313. font-weight:400;
  9314. font-style:normal;
  9315. font-size:14px;
  9316. color:rgba(0, 0, 0, 0.6470588235294118);
  9317. line-height:21px;
  9318. }
  9319. #u13000 {
  9320. border-width:0px;
  9321. position:absolute;
  9322. left:1326px;
  9323. top:635px;
  9324. width:66px;
  9325. height:32px;
  9326. display:flex;
  9327. transition:none;
  9328. transform-origin:50% 50%;
  9329. font-family:"Microsoft YaHei", sans-serif;
  9330. font-weight:400;
  9331. font-style:normal;
  9332. font-size:14px;
  9333. color:rgba(0, 0, 0, 0.6470588235294118);
  9334. line-height:21px;
  9335. }
  9336. #u13000 .text {
  9337. position:absolute;
  9338. align-self:center;
  9339. padding:2px 16px 2px 16px;
  9340. box-sizing:border-box;
  9341. width:100%;
  9342. }
  9343. #u13000_text {
  9344. border-width:0px;
  9345. white-space:nowrap;
  9346. text-transform:none;
  9347. }
  9348. #u13001 {
  9349. border-width:0px;
  9350. position:absolute;
  9351. left:0px;
  9352. top:0px;
  9353. width:0px;
  9354. height:0px;
  9355. }
  9356. #u13002 {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:0px;
  9360. top:0px;
  9361. width:0px;
  9362. height:0px;
  9363. }
  9364. #u13003_div {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:0px;
  9368. top:0px;
  9369. width:380px;
  9370. height:160px;
  9371. background:inherit;
  9372. background-color:rgba(255, 255, 255, 1);
  9373. box-sizing:border-box;
  9374. border-width:1px;
  9375. border-style:solid;
  9376. border-color:rgba(242, 242, 242, 1);
  9377. border-radius:4px;
  9378. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  9379. transition:none;
  9380. font-family:"Microsoft YaHei", sans-serif;
  9381. font-weight:400;
  9382. font-style:normal;
  9383. }
  9384. #u13003 {
  9385. border-width:0px;
  9386. position:absolute;
  9387. left:1110px;
  9388. top:705px;
  9389. width:380px;
  9390. height:160px;
  9391. display:flex;
  9392. transition:none;
  9393. transform-origin:50% 50%;
  9394. font-family:"Microsoft YaHei", sans-serif;
  9395. font-weight:400;
  9396. font-style:normal;
  9397. }
  9398. #u13003 .text {
  9399. position:absolute;
  9400. align-self:center;
  9401. padding:2px 2px 2px 2px;
  9402. box-sizing:border-box;
  9403. width:100%;
  9404. }
  9405. #u13003_text {
  9406. border-width:0px;
  9407. word-wrap:break-word;
  9408. text-transform:none;
  9409. visibility:hidden;
  9410. }
  9411. #u13004_div {
  9412. border-width:0px;
  9413. position:absolute;
  9414. left:0px;
  9415. top:0px;
  9416. width:91px;
  9417. height:21px;
  9418. background:inherit;
  9419. background-color:rgba(255, 255, 255, 0);
  9420. border-radius:0px;
  9421. filter:drop-shadow(none);
  9422. transition:none;
  9423. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  9424. font-weight:650;
  9425. font-style:normal;
  9426. font-size:18px;
  9427. color:#000000;
  9428. line-height:22px;
  9429. }
  9430. #u13004 {
  9431. border-width:0px;
  9432. position:absolute;
  9433. left:1170px;
  9434. top:730px;
  9435. width:91px;
  9436. height:21px;
  9437. display:flex;
  9438. transition:none;
  9439. transform-origin:50% 50%;
  9440. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  9441. font-weight:650;
  9442. font-style:normal;
  9443. font-size:18px;
  9444. color:#000000;
  9445. line-height:22px;
  9446. }
  9447. #u13004 .text {
  9448. position:absolute;
  9449. align-self:flex-start;
  9450. padding:0px 0px 0px 0px;
  9451. box-sizing:border-box;
  9452. width:100%;
  9453. }
  9454. #u13004_text {
  9455. border-width:0px;
  9456. white-space:nowrap;
  9457. text-transform:none;
  9458. }
  9459. #u13005_div {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:0px;
  9463. top:0px;
  9464. width:61px;
  9465. height:32px;
  9466. background:inherit;
  9467. background-color:rgba(24, 144, 255, 1);
  9468. border-radius:4px;
  9469. filter:drop-shadow(none);
  9470. transition:none;
  9471. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9472. font-weight:400;
  9473. font-style:normal;
  9474. font-size:14px;
  9475. color:#FFFFFF;
  9476. }
  9477. #u13005 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:1409px;
  9481. top:817px;
  9482. width:61px;
  9483. height:32px;
  9484. display:flex;
  9485. transition:none;
  9486. transform-origin:50% 50%;
  9487. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9488. font-weight:400;
  9489. font-style:normal;
  9490. font-size:14px;
  9491. color:#FFFFFF;
  9492. }
  9493. #u13005 .text {
  9494. position:absolute;
  9495. align-self:center;
  9496. padding:2px 16px 2px 16px;
  9497. box-sizing:border-box;
  9498. width:100%;
  9499. }
  9500. #u13005_text {
  9501. border-width:0px;
  9502. white-space:nowrap;
  9503. text-transform:none;
  9504. }
  9505. #u13006_div {
  9506. border-width:0px;
  9507. position:absolute;
  9508. left:0px;
  9509. top:0px;
  9510. width:300px;
  9511. height:44px;
  9512. background:inherit;
  9513. background-color:rgba(255, 255, 255, 0);
  9514. border-radius:0px;
  9515. filter:drop-shadow(none);
  9516. transition:none;
  9517. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9518. font-weight:400;
  9519. font-style:normal;
  9520. font-size:14px;
  9521. color:#7F7F7F;
  9522. line-height:22px;
  9523. }
  9524. #u13006 {
  9525. border-width:0px;
  9526. position:absolute;
  9527. left:1170px;
  9528. top:764px;
  9529. width:300px;
  9530. height:44px;
  9531. display:flex;
  9532. transition:none;
  9533. transform-origin:50% 50%;
  9534. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9535. font-weight:400;
  9536. font-style:normal;
  9537. font-size:14px;
  9538. color:#7F7F7F;
  9539. line-height:22px;
  9540. }
  9541. #u13006 .text {
  9542. position:absolute;
  9543. align-self:flex-start;
  9544. padding:0px 0px 0px 0px;
  9545. box-sizing:border-box;
  9546. width:100%;
  9547. }
  9548. #u13006_text {
  9549. border-width:0px;
  9550. word-wrap:break-word;
  9551. text-transform:none;
  9552. }
  9553. #u13007 {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:1139px;
  9557. top:730px;
  9558. width:20px;
  9559. height:20px;
  9560. display:flex;
  9561. transition:none;
  9562. }
  9563. #u13007 .text {
  9564. position:absolute;
  9565. align-self:center;
  9566. padding:2px 2px 2px 2px;
  9567. box-sizing:border-box;
  9568. width:100%;
  9569. }
  9570. #u13007_img {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:0px;
  9574. top:0px;
  9575. width:20px;
  9576. height:20px;
  9577. }
  9578. #u13007_text {
  9579. border-width:0px;
  9580. word-wrap:break-word;
  9581. text-transform:none;
  9582. visibility:hidden;
  9583. }
  9584. #u13008_div {
  9585. border-width:0px;
  9586. position:absolute;
  9587. left:0px;
  9588. top:0px;
  9589. width:60px;
  9590. height:30px;
  9591. background:inherit;
  9592. background-color:rgba(24, 144, 255, 1);
  9593. border-radius:4px;
  9594. filter:drop-shadow(none);
  9595. transition:none;
  9596. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9597. font-weight:400;
  9598. font-style:normal;
  9599. font-size:14px;
  9600. color:#FFFFFF;
  9601. }
  9602. #u13008 {
  9603. border-width:0px;
  9604. position:absolute;
  9605. left:563px;
  9606. top:291px;
  9607. width:60px;
  9608. height:30px;
  9609. display:flex;
  9610. transition:none;
  9611. transform-origin:50% 50%;
  9612. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9613. font-weight:400;
  9614. font-style:normal;
  9615. font-size:14px;
  9616. color:#FFFFFF;
  9617. }
  9618. #u13008 .text {
  9619. position:absolute;
  9620. align-self:center;
  9621. padding:2px 2px 2px 2px;
  9622. box-sizing:border-box;
  9623. width:100%;
  9624. }
  9625. #u13008_text {
  9626. border-width:0px;
  9627. word-wrap:break-word;
  9628. text-transform:none;
  9629. }
  9630. #u13009_div {
  9631. border-width:0px;
  9632. position:absolute;
  9633. left:0px;
  9634. top:0px;
  9635. width:55px;
  9636. height:30px;
  9637. background:inherit;
  9638. background-color:rgba(255, 255, 255, 1);
  9639. box-sizing:border-box;
  9640. border-width:1px;
  9641. border-style:solid;
  9642. border-color:rgba(170, 170, 170, 1);
  9643. border-radius:4px;
  9644. filter:drop-shadow(none);
  9645. transition:none;
  9646. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:12px;
  9650. color:#555555;
  9651. }
  9652. #u13009 {
  9653. border-width:0px;
  9654. position:absolute;
  9655. left:702px;
  9656. top:291px;
  9657. width:55px;
  9658. height:30px;
  9659. display:flex;
  9660. transition:none;
  9661. transform-origin:50% 50%;
  9662. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9663. font-weight:400;
  9664. font-style:normal;
  9665. font-size:12px;
  9666. color:#555555;
  9667. }
  9668. #u13009 .text {
  9669. position:absolute;
  9670. align-self:center;
  9671. padding:5px 15px 5px 15px;
  9672. box-sizing:border-box;
  9673. width:100%;
  9674. }
  9675. #u13009_text {
  9676. border-width:0px;
  9677. white-space:nowrap;
  9678. text-transform:none;
  9679. }
  9680. #u13010_div {
  9681. border-width:0px;
  9682. position:absolute;
  9683. left:0px;
  9684. top:0px;
  9685. width:59px;
  9686. height:30px;
  9687. background:inherit;
  9688. background-color:rgba(255, 255, 255, 1);
  9689. box-sizing:border-box;
  9690. border-width:1px;
  9691. border-style:solid;
  9692. border-color:rgba(170, 170, 170, 1);
  9693. border-radius:4px;
  9694. filter:drop-shadow(none);
  9695. transition:none;
  9696. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9697. font-weight:400;
  9698. font-style:normal;
  9699. font-size:14px;
  9700. color:#555555;
  9701. }
  9702. #u13010 {
  9703. border-width:0px;
  9704. position:absolute;
  9705. left:633px;
  9706. top:291px;
  9707. width:59px;
  9708. height:30px;
  9709. display:flex;
  9710. transition:none;
  9711. transform-origin:50% 50%;
  9712. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9713. font-weight:400;
  9714. font-style:normal;
  9715. font-size:14px;
  9716. color:#555555;
  9717. }
  9718. #u13010 .text {
  9719. position:absolute;
  9720. align-self:center;
  9721. padding:5px 15px 5px 15px;
  9722. box-sizing:border-box;
  9723. width:100%;
  9724. }
  9725. #u13010_text {
  9726. border-width:0px;
  9727. white-space:nowrap;
  9728. text-transform:none;
  9729. }
  9730. #u13011_div {
  9731. border-width:0px;
  9732. position:absolute;
  9733. left:0px;
  9734. top:0px;
  9735. width:115px;
  9736. height:30px;
  9737. background:inherit;
  9738. background-color:rgba(255, 255, 255, 1);
  9739. border-radius:4px;
  9740. filter:drop-shadow(none);
  9741. transition:none;
  9742. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9743. font-weight:400;
  9744. font-style:normal;
  9745. font-size:12px;
  9746. text-decoration:underline ;
  9747. color:#298FFF;
  9748. }
  9749. #u13011 {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:1445px;
  9753. top:292px;
  9754. width:115px;
  9755. height:30px;
  9756. display:flex;
  9757. transition:none;
  9758. transform-origin:50% 50%;
  9759. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9760. font-weight:400;
  9761. font-style:normal;
  9762. font-size:12px;
  9763. text-decoration:underline ;
  9764. color:#298FFF;
  9765. }
  9766. #u13011 .text {
  9767. position:absolute;
  9768. align-self:center;
  9769. padding:5px 15px 5px 15px;
  9770. box-sizing:border-box;
  9771. width:100%;
  9772. }
  9773. #u13011_text {
  9774. border-width:0px;
  9775. white-space:nowrap;
  9776. text-transform:none;
  9777. }
  9778. #u13012 {
  9779. border-width:0px;
  9780. position:absolute;
  9781. left:0px;
  9782. top:0px;
  9783. width:0px;
  9784. height:0px;
  9785. }
  9786. #u13013_div {
  9787. border-width:0px;
  9788. position:absolute;
  9789. left:0px;
  9790. top:0px;
  9791. width:60px;
  9792. height:30px;
  9793. background:inherit;
  9794. background-color:rgba(24, 144, 255, 1);
  9795. border-radius:4px;
  9796. filter:drop-shadow(none);
  9797. transition:none;
  9798. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9799. font-weight:400;
  9800. font-style:normal;
  9801. font-size:14px;
  9802. color:#FFFFFF;
  9803. }
  9804. #u13013 {
  9805. border-width:0px;
  9806. position:absolute;
  9807. left:1161px;
  9808. top:240px;
  9809. width:60px;
  9810. height:30px;
  9811. display:flex;
  9812. transition:none;
  9813. transform-origin:50% 50%;
  9814. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9815. font-weight:400;
  9816. font-style:normal;
  9817. font-size:14px;
  9818. color:#FFFFFF;
  9819. }
  9820. #u13013 .text {
  9821. position:absolute;
  9822. align-self:center;
  9823. padding:2px 2px 2px 2px;
  9824. box-sizing:border-box;
  9825. width:100%;
  9826. }
  9827. #u13013_text {
  9828. border-width:0px;
  9829. word-wrap:break-word;
  9830. text-transform:none;
  9831. }
  9832. #u13014_div {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:0px;
  9836. top:0px;
  9837. width:60px;
  9838. height:30px;
  9839. background:inherit;
  9840. background-color:rgba(255, 255, 255, 1);
  9841. box-sizing:border-box;
  9842. border-width:1px;
  9843. border-style:solid;
  9844. border-color:rgba(170, 170, 170, 1);
  9845. border-radius:4px;
  9846. filter:drop-shadow(none);
  9847. transition:none;
  9848. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9849. font-weight:400;
  9850. font-style:normal;
  9851. font-size:14px;
  9852. }
  9853. #u13014 {
  9854. border-width:0px;
  9855. position:absolute;
  9856. left:1231px;
  9857. top:240px;
  9858. width:60px;
  9859. height:30px;
  9860. display:flex;
  9861. transition:none;
  9862. transform-origin:50% 50%;
  9863. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9864. font-weight:400;
  9865. font-style:normal;
  9866. font-size:14px;
  9867. }
  9868. #u13014 .text {
  9869. position:absolute;
  9870. align-self:center;
  9871. padding:2px 2px 2px 2px;
  9872. box-sizing:border-box;
  9873. width:100%;
  9874. }
  9875. #u13014_text {
  9876. border-width:0px;
  9877. word-wrap:break-word;
  9878. text-transform:none;
  9879. }
  9880. #u13015 {
  9881. border-width:0px;
  9882. position:absolute;
  9883. left:0px;
  9884. top:0px;
  9885. width:0px;
  9886. height:0px;
  9887. }
  9888. #u13016_div {
  9889. border-width:0px;
  9890. position:absolute;
  9891. left:0px;
  9892. top:0px;
  9893. width:140px;
  9894. height:30px;
  9895. background:inherit;
  9896. background-color:rgba(255, 255, 255, 1);
  9897. box-sizing:border-box;
  9898. border-width:1px;
  9899. border-style:solid;
  9900. border-color:rgba(215, 215, 215, 1);
  9901. border-radius:4px;
  9902. filter:drop-shadow(none);
  9903. transition:none;
  9904. font-size:14px;
  9905. }
  9906. #u13016 {
  9907. border-width:0px;
  9908. position:absolute;
  9909. left:711px;
  9910. top:199px;
  9911. width:140px;
  9912. height:30px;
  9913. display:flex;
  9914. transition:none;
  9915. transform-origin:50% 50%;
  9916. font-size:14px;
  9917. }
  9918. #u13016 .text {
  9919. position:absolute;
  9920. align-self:center;
  9921. padding:2px 2px 2px 2px;
  9922. box-sizing:border-box;
  9923. width:100%;
  9924. }
  9925. #u13016_text {
  9926. border-width:0px;
  9927. word-wrap:break-word;
  9928. text-transform:none;
  9929. visibility:hidden;
  9930. }
  9931. #u13017_input {
  9932. position:absolute;
  9933. left:0px;
  9934. top:0px;
  9935. width:134px;
  9936. height:23px;
  9937. padding:2px 2px 2px 2px;
  9938. font-family:"ArialMT", "Arial", sans-serif;
  9939. font-weight:400;
  9940. font-style:normal;
  9941. font-size:14px;
  9942. letter-spacing:normal;
  9943. color:#AAAAAA;
  9944. vertical-align:none;
  9945. text-align:left;
  9946. text-transform:none;
  9947. background-color:transparent;
  9948. border-color:transparent;
  9949. }
  9950. #u13017_input.disabled {
  9951. position:absolute;
  9952. left:0px;
  9953. top:0px;
  9954. width:134px;
  9955. height:23px;
  9956. padding:2px 2px 2px 2px;
  9957. font-family:"ArialMT", "Arial", sans-serif;
  9958. font-weight:400;
  9959. font-style:normal;
  9960. font-size:14px;
  9961. letter-spacing:normal;
  9962. color:#AAAAAA;
  9963. vertical-align:none;
  9964. text-align:left;
  9965. text-transform:none;
  9966. background-color:transparent;
  9967. border-color:transparent;
  9968. }
  9969. #u13017_div {
  9970. border-width:0px;
  9971. position:absolute;
  9972. left:0px;
  9973. top:0px;
  9974. width:134px;
  9975. height:23px;
  9976. background:inherit;
  9977. background-color:rgba(255, 255, 255, 1);
  9978. border-radius:0px;
  9979. filter:drop-shadow(none);
  9980. transition:none;
  9981. font-size:14px;
  9982. color:#AAAAAA;
  9983. }
  9984. #u13017 {
  9985. border-width:0px;
  9986. position:absolute;
  9987. left:715px;
  9988. top:201px;
  9989. width:134px;
  9990. height:23px;
  9991. display:flex;
  9992. transition:none;
  9993. transform-origin:50% 50%;
  9994. font-size:14px;
  9995. color:#AAAAAA;
  9996. }
  9997. #u13017 .text {
  9998. position:absolute;
  9999. align-self:flex-start;
  10000. padding:2px 2px 2px 2px;
  10001. box-sizing:border-box;
  10002. width:100%;
  10003. }
  10004. #u13017_div.disabled {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:0px;
  10008. top:0px;
  10009. width:134px;
  10010. height:23px;
  10011. background:inherit;
  10012. background-color:rgba(240, 240, 240, 1);
  10013. border-radius:0px;
  10014. filter:drop-shadow(none);
  10015. transition:none;
  10016. font-size:14px;
  10017. color:#AAAAAA;
  10018. }
  10019. #u13017.disabled {
  10020. }
  10021. .u13017_input_option {
  10022. font-size:14px;
  10023. }
  10024. #u13018 {
  10025. border-width:0px;
  10026. position:absolute;
  10027. left:0px;
  10028. top:0px;
  10029. width:0px;
  10030. height:0px;
  10031. }
  10032. #u13019_div {
  10033. border-width:0px;
  10034. position:absolute;
  10035. left:0px;
  10036. top:0px;
  10037. width:140px;
  10038. height:30px;
  10039. background:inherit;
  10040. background-color:rgba(255, 255, 255, 1);
  10041. box-sizing:border-box;
  10042. border-width:1px;
  10043. border-style:solid;
  10044. border-color:rgba(201, 201, 201, 1);
  10045. border-radius:4px;
  10046. filter:drop-shadow(none);
  10047. transition:none;
  10048. font-family:"Microsoft YaHei", sans-serif;
  10049. font-weight:400;
  10050. font-style:normal;
  10051. font-size:14px;
  10052. color:#CCCCCC;
  10053. text-align:left;
  10054. }
  10055. #u13019 {
  10056. border-width:0px;
  10057. position:absolute;
  10058. left:1011px;
  10059. top:239px;
  10060. width:140px;
  10061. height:30px;
  10062. display:flex;
  10063. transition:none;
  10064. transform-origin:50% 50%;
  10065. font-family:"Microsoft YaHei", sans-serif;
  10066. font-weight:400;
  10067. font-style:normal;
  10068. font-size:14px;
  10069. color:#CCCCCC;
  10070. text-align:left;
  10071. }
  10072. #u13019 .text {
  10073. position:absolute;
  10074. align-self:center;
  10075. padding:2px 8px 2px 8px;
  10076. box-sizing:border-box;
  10077. width:100%;
  10078. }
  10079. #u13019_text {
  10080. border-width:0px;
  10081. word-wrap:break-word;
  10082. text-transform:none;
  10083. visibility:hidden;
  10084. }
  10085. #u13020_input {
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:127px;
  10090. height:25px;
  10091. padding:2px 2px 2px 2px;
  10092. font-family:"Microsoft YaHei", sans-serif;
  10093. font-weight:400;
  10094. font-style:normal;
  10095. font-size:10px;
  10096. letter-spacing:normal;
  10097. color:#000000;
  10098. vertical-align:none;
  10099. text-align:left;
  10100. text-transform:none;
  10101. background-color:transparent;
  10102. border-color:transparent;
  10103. }
  10104. #u13020_input.hint {
  10105. position:absolute;
  10106. left:0px;
  10107. top:0px;
  10108. width:127px;
  10109. height:25px;
  10110. padding:2px 2px 2px 2px;
  10111. font-family:"Microsoft YaHei", sans-serif;
  10112. font-weight:400;
  10113. font-style:normal;
  10114. font-size:12px;
  10115. letter-spacing:normal;
  10116. color:#AAAAAA;
  10117. vertical-align:none;
  10118. text-align:left;
  10119. text-transform:none;
  10120. background-color:transparent;
  10121. border-color:transparent;
  10122. }
  10123. #u13020_input.disabled {
  10124. position:absolute;
  10125. left:0px;
  10126. top:0px;
  10127. width:127px;
  10128. height:25px;
  10129. padding:2px 2px 2px 2px;
  10130. font-family:"Microsoft YaHei", sans-serif;
  10131. font-weight:400;
  10132. font-style:normal;
  10133. font-size:10px;
  10134. letter-spacing:normal;
  10135. color:#000000;
  10136. vertical-align:none;
  10137. text-align:left;
  10138. text-transform:none;
  10139. background-color:transparent;
  10140. border-color:transparent;
  10141. }
  10142. #u13020_input.hint.disabled {
  10143. position:absolute;
  10144. left:0px;
  10145. top:0px;
  10146. width:127px;
  10147. height:25px;
  10148. padding:2px 2px 2px 2px;
  10149. font-family:"Microsoft YaHei", sans-serif;
  10150. font-weight:400;
  10151. font-style:normal;
  10152. font-size:12px;
  10153. letter-spacing:normal;
  10154. color:#AAAAAA;
  10155. vertical-align:none;
  10156. text-align:left;
  10157. text-transform:none;
  10158. background-color:transparent;
  10159. border-color:transparent;
  10160. }
  10161. #u13020_div {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:0px;
  10165. top:0px;
  10166. width:127px;
  10167. height:25px;
  10168. background:inherit;
  10169. background-color:rgba(255, 255, 255, 1);
  10170. border-radius:0px;
  10171. filter:drop-shadow(none);
  10172. transition:none;
  10173. font-family:"Microsoft YaHei", sans-serif;
  10174. font-weight:400;
  10175. font-style:normal;
  10176. font-size:10px;
  10177. }
  10178. #u13020 {
  10179. border-width:0px;
  10180. position:absolute;
  10181. left:1019px;
  10182. top:240px;
  10183. width:127px;
  10184. height:25px;
  10185. display:flex;
  10186. transition:none;
  10187. transform-origin:50% 50%;
  10188. font-family:"Microsoft YaHei", sans-serif;
  10189. font-weight:400;
  10190. font-style:normal;
  10191. font-size:10px;
  10192. }
  10193. #u13020 .text {
  10194. position:absolute;
  10195. align-self:center;
  10196. padding:2px 2px 2px 2px;
  10197. box-sizing:border-box;
  10198. width:100%;
  10199. }
  10200. #u13020_div.hint {
  10201. border-width:0px;
  10202. position:absolute;
  10203. left:0px;
  10204. top:0px;
  10205. width:127px;
  10206. height:25px;
  10207. background:inherit;
  10208. background-color:rgba(255, 255, 255, 1);
  10209. border-radius:0px;
  10210. filter:drop-shadow(none);
  10211. transition:none;
  10212. font-family:"Microsoft YaHei", sans-serif;
  10213. font-weight:400;
  10214. font-style:normal;
  10215. font-size:10px;
  10216. }
  10217. #u13020.hint {
  10218. }
  10219. #u13020_div.disabled {
  10220. border-width:0px;
  10221. position:absolute;
  10222. left:0px;
  10223. top:0px;
  10224. width:127px;
  10225. height:25px;
  10226. background:inherit;
  10227. background-color:rgba(240, 240, 240, 1);
  10228. border-radius:0px;
  10229. filter:drop-shadow(none);
  10230. transition:none;
  10231. font-family:"Microsoft YaHei", sans-serif;
  10232. font-weight:400;
  10233. font-style:normal;
  10234. font-size:10px;
  10235. }
  10236. #u13020.disabled {
  10237. }
  10238. #u13020_div.hint.disabled {
  10239. border-width:0px;
  10240. position:absolute;
  10241. left:0px;
  10242. top:0px;
  10243. width:127px;
  10244. height:25px;
  10245. background:inherit;
  10246. background-color:rgba(240, 240, 240, 1);
  10247. border-radius:0px;
  10248. filter:drop-shadow(none);
  10249. transition:none;
  10250. font-family:"Microsoft YaHei", sans-serif;
  10251. font-weight:400;
  10252. font-style:normal;
  10253. font-size:10px;
  10254. }
  10255. #u13020.hint.disabled {
  10256. }
  10257. #u13021 {
  10258. border-width:0px;
  10259. position:absolute;
  10260. left:0px;
  10261. top:0px;
  10262. width:0px;
  10263. height:0px;
  10264. }
  10265. #u13022_div {
  10266. border-width:0px;
  10267. position:absolute;
  10268. left:0px;
  10269. top:0px;
  10270. width:140px;
  10271. height:30px;
  10272. background:inherit;
  10273. background-color:rgba(242, 242, 242, 1);
  10274. box-sizing:border-box;
  10275. border-width:1px;
  10276. border-style:solid;
  10277. border-color:rgba(215, 215, 215, 1);
  10278. border-radius:4px;
  10279. filter:drop-shadow(none);
  10280. transition:none;
  10281. font-size:14px;
  10282. }
  10283. #u13022 {
  10284. border-width:0px;
  10285. position:absolute;
  10286. left:563px;
  10287. top:199px;
  10288. width:140px;
  10289. height:30px;
  10290. display:flex;
  10291. transition:none;
  10292. transform-origin:50% 50%;
  10293. font-size:14px;
  10294. }
  10295. #u13022 .text {
  10296. position:absolute;
  10297. align-self:center;
  10298. padding:2px 2px 2px 2px;
  10299. box-sizing:border-box;
  10300. width:100%;
  10301. }
  10302. #u13022_text {
  10303. border-width:0px;
  10304. word-wrap:break-word;
  10305. text-transform:none;
  10306. visibility:hidden;
  10307. }
  10308. #u13023_input {
  10309. position:absolute;
  10310. left:0px;
  10311. top:0px;
  10312. width:134px;
  10313. height:23px;
  10314. padding:2px 2px 2px 2px;
  10315. font-family:"ArialMT", "Arial", sans-serif;
  10316. font-weight:400;
  10317. font-style:normal;
  10318. font-size:14px;
  10319. letter-spacing:normal;
  10320. color:#AAAAAA;
  10321. vertical-align:none;
  10322. text-align:left;
  10323. text-transform:none;
  10324. background-color:transparent;
  10325. border-color:transparent;
  10326. }
  10327. #u13023_input.disabled {
  10328. position:absolute;
  10329. left:0px;
  10330. top:0px;
  10331. width:134px;
  10332. height:23px;
  10333. padding:2px 2px 2px 2px;
  10334. font-family:"ArialMT", "Arial", sans-serif;
  10335. font-weight:400;
  10336. font-style:normal;
  10337. font-size:14px;
  10338. letter-spacing:normal;
  10339. color:#AAAAAA;
  10340. vertical-align:none;
  10341. text-align:left;
  10342. text-transform:none;
  10343. background-color:transparent;
  10344. border-color:transparent;
  10345. }
  10346. #u13023_div {
  10347. border-width:0px;
  10348. position:absolute;
  10349. left:0px;
  10350. top:0px;
  10351. width:134px;
  10352. height:23px;
  10353. background:inherit;
  10354. background-color:rgba(242, 242, 242, 1);
  10355. border-radius:0px;
  10356. filter:drop-shadow(none);
  10357. transition:none;
  10358. font-size:14px;
  10359. color:#AAAAAA;
  10360. }
  10361. #u13023 {
  10362. border-width:0px;
  10363. position:absolute;
  10364. left:567px;
  10365. top:201px;
  10366. width:134px;
  10367. height:23px;
  10368. display:flex;
  10369. transition:none;
  10370. transform-origin:50% 50%;
  10371. font-size:14px;
  10372. color:#AAAAAA;
  10373. }
  10374. #u13023 .text {
  10375. position:absolute;
  10376. align-self:flex-start;
  10377. padding:2px 2px 2px 2px;
  10378. box-sizing:border-box;
  10379. width:100%;
  10380. }
  10381. #u13023_div.disabled {
  10382. border-width:0px;
  10383. position:absolute;
  10384. left:0px;
  10385. top:0px;
  10386. width:134px;
  10387. height:23px;
  10388. background:inherit;
  10389. background-color:rgba(240, 240, 240, 1);
  10390. border-radius:0px;
  10391. filter:drop-shadow(none);
  10392. transition:none;
  10393. font-size:14px;
  10394. color:#AAAAAA;
  10395. }
  10396. #u13023.disabled {
  10397. }
  10398. .u13023_input_option {
  10399. font-size:14px;
  10400. }
  10401. #u13024 {
  10402. border-width:0px;
  10403. position:absolute;
  10404. left:0px;
  10405. top:0px;
  10406. width:0px;
  10407. height:0px;
  10408. }
  10409. #u13025_div {
  10410. border-width:0px;
  10411. position:absolute;
  10412. left:0px;
  10413. top:0px;
  10414. width:140px;
  10415. height:30px;
  10416. background:inherit;
  10417. background-color:rgba(255, 255, 255, 1);
  10418. box-sizing:border-box;
  10419. border-width:1px;
  10420. border-style:solid;
  10421. border-color:rgba(215, 215, 215, 1);
  10422. border-radius:4px;
  10423. filter:drop-shadow(none);
  10424. transition:none;
  10425. font-size:14px;
  10426. }
  10427. #u13025 {
  10428. border-width:0px;
  10429. position:absolute;
  10430. left:861px;
  10431. top:199px;
  10432. width:140px;
  10433. height:30px;
  10434. display:flex;
  10435. transition:none;
  10436. transform-origin:50% 50%;
  10437. font-size:14px;
  10438. }
  10439. #u13025 .text {
  10440. position:absolute;
  10441. align-self:center;
  10442. padding:2px 2px 2px 2px;
  10443. box-sizing:border-box;
  10444. width:100%;
  10445. }
  10446. #u13025_text {
  10447. border-width:0px;
  10448. word-wrap:break-word;
  10449. text-transform:none;
  10450. visibility:hidden;
  10451. }
  10452. #u13026_input {
  10453. position:absolute;
  10454. left:0px;
  10455. top:0px;
  10456. width:134px;
  10457. height:23px;
  10458. padding:2px 2px 2px 2px;
  10459. font-family:"ArialMT", "Arial", sans-serif;
  10460. font-weight:400;
  10461. font-style:normal;
  10462. font-size:14px;
  10463. letter-spacing:normal;
  10464. color:#AAAAAA;
  10465. vertical-align:none;
  10466. text-align:left;
  10467. text-transform:none;
  10468. background-color:transparent;
  10469. border-color:transparent;
  10470. }
  10471. #u13026_input.disabled {
  10472. position:absolute;
  10473. left:0px;
  10474. top:0px;
  10475. width:134px;
  10476. height:23px;
  10477. padding:2px 2px 2px 2px;
  10478. font-family:"ArialMT", "Arial", sans-serif;
  10479. font-weight:400;
  10480. font-style:normal;
  10481. font-size:14px;
  10482. letter-spacing:normal;
  10483. color:#AAAAAA;
  10484. vertical-align:none;
  10485. text-align:left;
  10486. text-transform:none;
  10487. background-color:transparent;
  10488. border-color:transparent;
  10489. }
  10490. #u13026_div {
  10491. border-width:0px;
  10492. position:absolute;
  10493. left:0px;
  10494. top:0px;
  10495. width:134px;
  10496. height:23px;
  10497. background:inherit;
  10498. background-color:rgba(255, 255, 255, 1);
  10499. border-radius:0px;
  10500. filter:drop-shadow(none);
  10501. transition:none;
  10502. font-size:14px;
  10503. color:#AAAAAA;
  10504. }
  10505. #u13026 {
  10506. border-width:0px;
  10507. position:absolute;
  10508. left:865px;
  10509. top:201px;
  10510. width:134px;
  10511. height:23px;
  10512. display:flex;
  10513. transition:none;
  10514. transform-origin:50% 50%;
  10515. font-size:14px;
  10516. color:#AAAAAA;
  10517. }
  10518. #u13026 .text {
  10519. position:absolute;
  10520. align-self:flex-start;
  10521. padding:2px 2px 2px 2px;
  10522. box-sizing:border-box;
  10523. width:100%;
  10524. }
  10525. #u13026_div.disabled {
  10526. border-width:0px;
  10527. position:absolute;
  10528. left:0px;
  10529. top:0px;
  10530. width:134px;
  10531. height:23px;
  10532. background:inherit;
  10533. background-color:rgba(240, 240, 240, 1);
  10534. border-radius:0px;
  10535. filter:drop-shadow(none);
  10536. transition:none;
  10537. font-size:14px;
  10538. color:#AAAAAA;
  10539. }
  10540. #u13026.disabled {
  10541. }
  10542. .u13026_input_option {
  10543. font-size:14px;
  10544. }
  10545. #u13027 {
  10546. border-width:0px;
  10547. position:absolute;
  10548. left:0px;
  10549. top:0px;
  10550. width:0px;
  10551. height:0px;
  10552. }
  10553. #u13028_div {
  10554. border-width:0px;
  10555. position:absolute;
  10556. left:0px;
  10557. top:0px;
  10558. width:140px;
  10559. height:30px;
  10560. background:inherit;
  10561. background-color:rgba(255, 255, 255, 1);
  10562. box-sizing:border-box;
  10563. border-width:1px;
  10564. border-style:solid;
  10565. border-color:rgba(215, 215, 215, 1);
  10566. border-radius:4px;
  10567. filter:drop-shadow(none);
  10568. transition:none;
  10569. font-size:14px;
  10570. }
  10571. #u13028 {
  10572. border-width:0px;
  10573. position:absolute;
  10574. left:1011px;
  10575. top:199px;
  10576. width:140px;
  10577. height:30px;
  10578. display:flex;
  10579. transition:none;
  10580. transform-origin:50% 50%;
  10581. font-size:14px;
  10582. }
  10583. #u13028 .text {
  10584. position:absolute;
  10585. align-self:center;
  10586. padding:2px 2px 2px 2px;
  10587. box-sizing:border-box;
  10588. width:100%;
  10589. }
  10590. #u13028_text {
  10591. border-width:0px;
  10592. word-wrap:break-word;
  10593. text-transform:none;
  10594. visibility:hidden;
  10595. }
  10596. #u13029_input {
  10597. position:absolute;
  10598. left:0px;
  10599. top:0px;
  10600. width:134px;
  10601. height:23px;
  10602. padding:2px 2px 2px 2px;
  10603. font-family:"ArialMT", "Arial", sans-serif;
  10604. font-weight:400;
  10605. font-style:normal;
  10606. font-size:14px;
  10607. letter-spacing:normal;
  10608. color:#AAAAAA;
  10609. vertical-align:none;
  10610. text-align:left;
  10611. text-transform:none;
  10612. background-color:transparent;
  10613. border-color:transparent;
  10614. }
  10615. #u13029_input.disabled {
  10616. position:absolute;
  10617. left:0px;
  10618. top:0px;
  10619. width:134px;
  10620. height:23px;
  10621. padding:2px 2px 2px 2px;
  10622. font-family:"ArialMT", "Arial", sans-serif;
  10623. font-weight:400;
  10624. font-style:normal;
  10625. font-size:14px;
  10626. letter-spacing:normal;
  10627. color:#AAAAAA;
  10628. vertical-align:none;
  10629. text-align:left;
  10630. text-transform:none;
  10631. background-color:transparent;
  10632. border-color:transparent;
  10633. }
  10634. #u13029_div {
  10635. border-width:0px;
  10636. position:absolute;
  10637. left:0px;
  10638. top:0px;
  10639. width:134px;
  10640. height:23px;
  10641. background:inherit;
  10642. background-color:rgba(255, 255, 255, 1);
  10643. border-radius:0px;
  10644. filter:drop-shadow(none);
  10645. transition:none;
  10646. font-size:14px;
  10647. color:#AAAAAA;
  10648. }
  10649. #u13029 {
  10650. border-width:0px;
  10651. position:absolute;
  10652. left:1015px;
  10653. top:201px;
  10654. width:134px;
  10655. height:23px;
  10656. display:flex;
  10657. transition:none;
  10658. transform-origin:50% 50%;
  10659. font-size:14px;
  10660. color:#AAAAAA;
  10661. }
  10662. #u13029 .text {
  10663. position:absolute;
  10664. align-self:flex-start;
  10665. padding:2px 2px 2px 2px;
  10666. box-sizing:border-box;
  10667. width:100%;
  10668. }
  10669. #u13029_div.disabled {
  10670. border-width:0px;
  10671. position:absolute;
  10672. left:0px;
  10673. top:0px;
  10674. width:134px;
  10675. height:23px;
  10676. background:inherit;
  10677. background-color:rgba(240, 240, 240, 1);
  10678. border-radius:0px;
  10679. filter:drop-shadow(none);
  10680. transition:none;
  10681. font-size:14px;
  10682. color:#AAAAAA;
  10683. }
  10684. #u13029.disabled {
  10685. }
  10686. .u13029_input_option {
  10687. font-size:14px;
  10688. }
  10689. #u13030 {
  10690. border-width:0px;
  10691. position:absolute;
  10692. left:1644px;
  10693. top:92px;
  10694. width:1113px;
  10695. height:326px;
  10696. }
  10697. #u13030_state0 {
  10698. border-width:0px;
  10699. position:absolute;
  10700. left:0px;
  10701. top:0px;
  10702. width:1113px;
  10703. height:326px;
  10704. -ms-overflow-x:hidden;
  10705. overflow-x:hidden;
  10706. -ms-overflow-y:hidden;
  10707. overflow-y:hidden;
  10708. background-image:none;
  10709. border-radius:0px;
  10710. -moz-box-shadow:none;
  10711. -webkit-box-shadow:none;
  10712. box-shadow:none;
  10713. }
  10714. #u13030_state0_content {
  10715. border-width:0px;
  10716. position:absolute;
  10717. left:0px;
  10718. top:0px;
  10719. width:1px;
  10720. height:1px;
  10721. }
  10722. #u13031 {
  10723. border-width:0px;
  10724. position:absolute;
  10725. left:0px;
  10726. top:43px;
  10727. width:1000px;
  10728. height:1px;
  10729. display:flex;
  10730. transition:none;
  10731. }
  10732. #u13031 .text {
  10733. position:absolute;
  10734. align-self:center;
  10735. padding:2px 2px 2px 2px;
  10736. box-sizing:border-box;
  10737. width:100%;
  10738. }
  10739. #u13031_img {
  10740. border-width:0px;
  10741. position:absolute;
  10742. left:0px;
  10743. top:0px;
  10744. width:1001px;
  10745. height:2px;
  10746. }
  10747. #u13031_text {
  10748. border-width:0px;
  10749. word-wrap:break-word;
  10750. text-transform:none;
  10751. visibility:hidden;
  10752. }
  10753. #u13032 {
  10754. border-width:0px;
  10755. position:absolute;
  10756. left:0px;
  10757. top:0px;
  10758. width:0px;
  10759. height:0px;
  10760. }
  10761. #u13033 {
  10762. border-width:0px;
  10763. position:absolute;
  10764. left:40px;
  10765. top:37px;
  10766. width:13px;
  10767. height:13px;
  10768. display:flex;
  10769. transition:none;
  10770. }
  10771. #u13033 .text {
  10772. position:absolute;
  10773. align-self:center;
  10774. padding:2px 2px 2px 2px;
  10775. box-sizing:border-box;
  10776. width:100%;
  10777. }
  10778. #u13033_img {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:0px;
  10782. top:0px;
  10783. width:13px;
  10784. height:13px;
  10785. }
  10786. #u13033_text {
  10787. border-width:0px;
  10788. word-wrap:break-word;
  10789. text-transform:none;
  10790. visibility:hidden;
  10791. }
  10792. #u13034_div {
  10793. border-width:0px;
  10794. position:absolute;
  10795. left:0px;
  10796. top:0px;
  10797. width:38px;
  10798. height:21px;
  10799. background:inherit;
  10800. background-color:rgba(255, 255, 255, 0);
  10801. border-radius:0px;
  10802. filter:drop-shadow(none);
  10803. transition:none;
  10804. font-family:"Arial-BoldMT", "Arial Bold", "Arial", sans-serif;
  10805. font-weight:700;
  10806. font-style:normal;
  10807. font-size:18px;
  10808. }
  10809. #u13034 {
  10810. border-width:0px;
  10811. position:absolute;
  10812. left:28px;
  10813. top:7px;
  10814. width:38px;
  10815. height:21px;
  10816. display:flex;
  10817. transition:none;
  10818. transform-origin:50% 50%;
  10819. font-family:"Arial-BoldMT", "Arial Bold", "Arial", sans-serif;
  10820. font-weight:700;
  10821. font-style:normal;
  10822. font-size:18px;
  10823. }
  10824. #u13034 .text {
  10825. position:absolute;
  10826. align-self:flex-start;
  10827. padding:0px 0px 0px 0px;
  10828. box-sizing:border-box;
  10829. width:100%;
  10830. }
  10831. #u13034_text {
  10832. border-width:0px;
  10833. white-space:nowrap;
  10834. text-transform:none;
  10835. }
  10836. #u13035 {
  10837. border-width:0px;
  10838. position:absolute;
  10839. left:30px;
  10840. top:67px;
  10841. width:763px;
  10842. height:220px;
  10843. transition:none;
  10844. }
  10845. #u13035_children {
  10846. border-width:0px;
  10847. position:absolute;
  10848. left:0px;
  10849. top:0px;
  10850. width:0px;
  10851. height:0px;
  10852. }
  10853. #u13036 {
  10854. border-width:0px;
  10855. position:absolute;
  10856. left:0px;
  10857. top:0px;
  10858. width:150px;
  10859. height:20px;
  10860. transition:none;
  10861. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10862. font-weight:400;
  10863. font-style:normal;
  10864. }
  10865. #u13037 {
  10866. border-width:0px;
  10867. position:absolute;
  10868. left:6px;
  10869. top:6px;
  10870. width:9px;
  10871. height:9px;
  10872. display:flex;
  10873. transition:none;
  10874. }
  10875. #u13037 .text {
  10876. position:absolute;
  10877. align-self:center;
  10878. padding:2px 2px 2px 2px;
  10879. box-sizing:border-box;
  10880. width:100%;
  10881. }
  10882. #u13037_img {
  10883. border-width:0px;
  10884. position:absolute;
  10885. left:0px;
  10886. top:0px;
  10887. width:9px;
  10888. height:9px;
  10889. }
  10890. #u13037_img.selected {
  10891. }
  10892. #u13037.selected {
  10893. }
  10894. #u13037_text {
  10895. border-width:0px;
  10896. word-wrap:break-word;
  10897. text-transform:none;
  10898. visibility:hidden;
  10899. }
  10900. #u13038_div {
  10901. border-width:0px;
  10902. position:absolute;
  10903. left:0px;
  10904. top:0px;
  10905. width:128px;
  10906. height:20px;
  10907. background:inherit;
  10908. background-color:rgba(255, 255, 255, 0);
  10909. border-radius:0px;
  10910. filter:drop-shadow(none);
  10911. transition:none;
  10912. }
  10913. #u13038 {
  10914. border-width:0px;
  10915. position:absolute;
  10916. left:22px;
  10917. top:0px;
  10918. width:128px;
  10919. height:20px;
  10920. display:flex;
  10921. transition:none;
  10922. transform-origin:50% 50%;
  10923. }
  10924. #u13038 .text {
  10925. position:absolute;
  10926. align-self:center;
  10927. padding:2px 2px 2px 3px;
  10928. box-sizing:border-box;
  10929. width:100%;
  10930. }
  10931. #u13038_text {
  10932. border-width:0px;
  10933. white-space:nowrap;
  10934. text-transform:none;
  10935. }
  10936. #u13036_children {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:0px;
  10940. top:0px;
  10941. width:0px;
  10942. height:0px;
  10943. }
  10944. #u13039 {
  10945. border-width:0px;
  10946. position:absolute;
  10947. left:20px;
  10948. top:20px;
  10949. width:715px;
  10950. height:20px;
  10951. transition:none;
  10952. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  10953. font-weight:400;
  10954. font-style:normal;
  10955. }
  10956. #u13040_div {
  10957. border-width:0px;
  10958. position:absolute;
  10959. left:0px;
  10960. top:0px;
  10961. width:693px;
  10962. height:20px;
  10963. background:inherit;
  10964. background-color:rgba(255, 255, 255, 0);
  10965. border-radius:0px;
  10966. filter:drop-shadow(none);
  10967. transition:none;
  10968. }
  10969. #u13040 {
  10970. border-width:0px;
  10971. position:absolute;
  10972. left:22px;
  10973. top:0px;
  10974. width:693px;
  10975. height:20px;
  10976. display:flex;
  10977. transition:none;
  10978. transform-origin:50% 50%;
  10979. }
  10980. #u13040 .text {
  10981. position:absolute;
  10982. align-self:center;
  10983. padding:2px 2px 2px 3px;
  10984. box-sizing:border-box;
  10985. width:100%;
  10986. }
  10987. #u13040_text {
  10988. border-width:0px;
  10989. white-space:nowrap;
  10990. text-transform:none;
  10991. }
  10992. #u13041 {
  10993. border-width:0px;
  10994. position:absolute;
  10995. left:0px;
  10996. top:40px;
  10997. width:101px;
  10998. height:20px;
  10999. transition:none;
  11000. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11001. font-weight:400;
  11002. font-style:normal;
  11003. }
  11004. #u13042 {
  11005. border-width:0px;
  11006. position:absolute;
  11007. left:6px;
  11008. top:6px;
  11009. width:9px;
  11010. height:9px;
  11011. display:flex;
  11012. transition:none;
  11013. }
  11014. #u13042 .text {
  11015. position:absolute;
  11016. align-self:center;
  11017. padding:2px 2px 2px 2px;
  11018. box-sizing:border-box;
  11019. width:100%;
  11020. }
  11021. #u13042_img {
  11022. border-width:0px;
  11023. position:absolute;
  11024. left:0px;
  11025. top:0px;
  11026. width:9px;
  11027. height:9px;
  11028. }
  11029. #u13042_img.selected {
  11030. }
  11031. #u13042.selected {
  11032. }
  11033. #u13042_text {
  11034. border-width:0px;
  11035. word-wrap:break-word;
  11036. text-transform:none;
  11037. visibility:hidden;
  11038. }
  11039. #u13043_div {
  11040. border-width:0px;
  11041. position:absolute;
  11042. left:0px;
  11043. top:0px;
  11044. width:79px;
  11045. height:20px;
  11046. background:inherit;
  11047. background-color:rgba(255, 255, 255, 0);
  11048. border-radius:0px;
  11049. filter:drop-shadow(none);
  11050. transition:none;
  11051. }
  11052. #u13043 {
  11053. border-width:0px;
  11054. position:absolute;
  11055. left:22px;
  11056. top:0px;
  11057. width:79px;
  11058. height:20px;
  11059. display:flex;
  11060. transition:none;
  11061. transform-origin:50% 50%;
  11062. }
  11063. #u13043 .text {
  11064. position:absolute;
  11065. align-self:center;
  11066. padding:2px 2px 2px 3px;
  11067. box-sizing:border-box;
  11068. width:100%;
  11069. }
  11070. #u13043_text {
  11071. border-width:0px;
  11072. white-space:nowrap;
  11073. text-transform:none;
  11074. }
  11075. #u13041_children {
  11076. border-width:0px;
  11077. position:absolute;
  11078. left:0px;
  11079. top:0px;
  11080. width:0px;
  11081. height:0px;
  11082. }
  11083. #u13044 {
  11084. border-width:0px;
  11085. position:absolute;
  11086. left:20px;
  11087. top:20px;
  11088. width:158px;
  11089. height:20px;
  11090. transition:none;
  11091. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11092. font-weight:400;
  11093. font-style:normal;
  11094. }
  11095. #u13045_div {
  11096. border-width:0px;
  11097. position:absolute;
  11098. left:0px;
  11099. top:0px;
  11100. width:136px;
  11101. height:20px;
  11102. background:inherit;
  11103. background-color:rgba(255, 255, 255, 0);
  11104. border-radius:0px;
  11105. filter:drop-shadow(none);
  11106. transition:none;
  11107. }
  11108. #u13045 {
  11109. border-width:0px;
  11110. position:absolute;
  11111. left:22px;
  11112. top:0px;
  11113. width:136px;
  11114. height:20px;
  11115. display:flex;
  11116. transition:none;
  11117. transform-origin:50% 50%;
  11118. }
  11119. #u13045 .text {
  11120. position:absolute;
  11121. align-self:center;
  11122. padding:2px 2px 2px 3px;
  11123. box-sizing:border-box;
  11124. width:100%;
  11125. }
  11126. #u13045_text {
  11127. border-width:0px;
  11128. white-space:nowrap;
  11129. text-transform:none;
  11130. }
  11131. #u13046 {
  11132. border-width:0px;
  11133. position:absolute;
  11134. left:0px;
  11135. top:80px;
  11136. width:101px;
  11137. height:20px;
  11138. transition:none;
  11139. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11140. font-weight:400;
  11141. font-style:normal;
  11142. }
  11143. #u13047 {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:6px;
  11147. top:6px;
  11148. width:9px;
  11149. height:9px;
  11150. display:flex;
  11151. transition:none;
  11152. }
  11153. #u13047 .text {
  11154. position:absolute;
  11155. align-self:center;
  11156. padding:2px 2px 2px 2px;
  11157. box-sizing:border-box;
  11158. width:100%;
  11159. }
  11160. #u13047_img {
  11161. border-width:0px;
  11162. position:absolute;
  11163. left:0px;
  11164. top:0px;
  11165. width:9px;
  11166. height:9px;
  11167. }
  11168. #u13047_img.selected {
  11169. }
  11170. #u13047.selected {
  11171. }
  11172. #u13047_text {
  11173. border-width:0px;
  11174. word-wrap:break-word;
  11175. text-transform:none;
  11176. visibility:hidden;
  11177. }
  11178. #u13048_div {
  11179. border-width:0px;
  11180. position:absolute;
  11181. left:0px;
  11182. top:0px;
  11183. width:79px;
  11184. height:20px;
  11185. background:inherit;
  11186. background-color:rgba(255, 255, 255, 0);
  11187. border-radius:0px;
  11188. filter:drop-shadow(none);
  11189. transition:none;
  11190. }
  11191. #u13048 {
  11192. border-width:0px;
  11193. position:absolute;
  11194. left:22px;
  11195. top:0px;
  11196. width:79px;
  11197. height:20px;
  11198. display:flex;
  11199. transition:none;
  11200. transform-origin:50% 50%;
  11201. }
  11202. #u13048 .text {
  11203. position:absolute;
  11204. align-self:center;
  11205. padding:2px 2px 2px 3px;
  11206. box-sizing:border-box;
  11207. width:100%;
  11208. }
  11209. #u13048_text {
  11210. border-width:0px;
  11211. white-space:nowrap;
  11212. text-transform:none;
  11213. }
  11214. #u13046_children {
  11215. border-width:0px;
  11216. position:absolute;
  11217. left:0px;
  11218. top:0px;
  11219. width:0px;
  11220. height:0px;
  11221. }
  11222. #u13049 {
  11223. border-width:0px;
  11224. position:absolute;
  11225. left:20px;
  11226. top:20px;
  11227. width:174px;
  11228. height:20px;
  11229. transition:none;
  11230. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11231. font-weight:400;
  11232. font-style:normal;
  11233. }
  11234. #u13050_div {
  11235. border-width:0px;
  11236. position:absolute;
  11237. left:0px;
  11238. top:0px;
  11239. width:152px;
  11240. height:20px;
  11241. background:inherit;
  11242. background-color:rgba(255, 255, 255, 0);
  11243. border-radius:0px;
  11244. filter:drop-shadow(none);
  11245. transition:none;
  11246. }
  11247. #u13050 {
  11248. border-width:0px;
  11249. position:absolute;
  11250. left:22px;
  11251. top:0px;
  11252. width:152px;
  11253. height:20px;
  11254. display:flex;
  11255. transition:none;
  11256. transform-origin:50% 50%;
  11257. }
  11258. #u13050 .text {
  11259. position:absolute;
  11260. align-self:center;
  11261. padding:2px 2px 2px 3px;
  11262. box-sizing:border-box;
  11263. width:100%;
  11264. }
  11265. #u13050_text {
  11266. border-width:0px;
  11267. white-space:nowrap;
  11268. text-transform:none;
  11269. }
  11270. #u13051 {
  11271. border-width:0px;
  11272. position:absolute;
  11273. left:20px;
  11274. top:40px;
  11275. width:743px;
  11276. height:20px;
  11277. transition:none;
  11278. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11279. font-weight:400;
  11280. font-style:normal;
  11281. }
  11282. #u13052_div {
  11283. border-width:0px;
  11284. position:absolute;
  11285. left:0px;
  11286. top:0px;
  11287. width:721px;
  11288. height:20px;
  11289. background:inherit;
  11290. background-color:rgba(255, 255, 255, 0);
  11291. border-radius:0px;
  11292. filter:drop-shadow(none);
  11293. transition:none;
  11294. }
  11295. #u13052 {
  11296. border-width:0px;
  11297. position:absolute;
  11298. left:22px;
  11299. top:0px;
  11300. width:721px;
  11301. height:20px;
  11302. display:flex;
  11303. transition:none;
  11304. transform-origin:50% 50%;
  11305. }
  11306. #u13052 .text {
  11307. position:absolute;
  11308. align-self:center;
  11309. padding:2px 2px 2px 3px;
  11310. box-sizing:border-box;
  11311. width:100%;
  11312. }
  11313. #u13052_text {
  11314. border-width:0px;
  11315. white-space:nowrap;
  11316. text-transform:none;
  11317. }
  11318. #u13053 {
  11319. border-width:0px;
  11320. position:absolute;
  11321. left:20px;
  11322. top:60px;
  11323. width:665px;
  11324. height:20px;
  11325. transition:none;
  11326. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11327. font-weight:400;
  11328. font-style:normal;
  11329. }
  11330. #u13054_div {
  11331. border-width:0px;
  11332. position:absolute;
  11333. left:0px;
  11334. top:0px;
  11335. width:643px;
  11336. height:20px;
  11337. background:inherit;
  11338. background-color:rgba(255, 255, 255, 0);
  11339. border-radius:0px;
  11340. filter:drop-shadow(none);
  11341. transition:none;
  11342. }
  11343. #u13054 {
  11344. border-width:0px;
  11345. position:absolute;
  11346. left:22px;
  11347. top:0px;
  11348. width:643px;
  11349. height:20px;
  11350. display:flex;
  11351. transition:none;
  11352. transform-origin:50% 50%;
  11353. }
  11354. #u13054 .text {
  11355. position:absolute;
  11356. align-self:center;
  11357. padding:2px 2px 2px 3px;
  11358. box-sizing:border-box;
  11359. width:100%;
  11360. }
  11361. #u13054_text {
  11362. border-width:0px;
  11363. white-space:nowrap;
  11364. text-transform:none;
  11365. }
  11366. #u13055 {
  11367. border-width:0px;
  11368. position:absolute;
  11369. left:0px;
  11370. top:160px;
  11371. width:140px;
  11372. height:20px;
  11373. transition:none;
  11374. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11375. font-weight:400;
  11376. font-style:normal;
  11377. }
  11378. #u13056 {
  11379. border-width:0px;
  11380. position:absolute;
  11381. left:6px;
  11382. top:6px;
  11383. width:9px;
  11384. height:9px;
  11385. display:flex;
  11386. transition:none;
  11387. }
  11388. #u13056 .text {
  11389. position:absolute;
  11390. align-self:center;
  11391. padding:2px 2px 2px 2px;
  11392. box-sizing:border-box;
  11393. width:100%;
  11394. }
  11395. #u13056_img {
  11396. border-width:0px;
  11397. position:absolute;
  11398. left:0px;
  11399. top:0px;
  11400. width:9px;
  11401. height:9px;
  11402. }
  11403. #u13056_img.selected {
  11404. }
  11405. #u13056.selected {
  11406. }
  11407. #u13056_text {
  11408. border-width:0px;
  11409. word-wrap:break-word;
  11410. text-transform:none;
  11411. visibility:hidden;
  11412. }
  11413. #u13057_div {
  11414. border-width:0px;
  11415. position:absolute;
  11416. left:0px;
  11417. top:0px;
  11418. width:118px;
  11419. height:20px;
  11420. background:inherit;
  11421. background-color:rgba(255, 255, 255, 0);
  11422. border-radius:0px;
  11423. filter:drop-shadow(none);
  11424. transition:none;
  11425. }
  11426. #u13057 {
  11427. border-width:0px;
  11428. position:absolute;
  11429. left:22px;
  11430. top:0px;
  11431. width:118px;
  11432. height:20px;
  11433. display:flex;
  11434. transition:none;
  11435. transform-origin:50% 50%;
  11436. }
  11437. #u13057 .text {
  11438. position:absolute;
  11439. align-self:center;
  11440. padding:2px 2px 2px 3px;
  11441. box-sizing:border-box;
  11442. width:100%;
  11443. }
  11444. #u13057_text {
  11445. border-width:0px;
  11446. white-space:nowrap;
  11447. text-transform:none;
  11448. }
  11449. #u13055_children {
  11450. border-width:0px;
  11451. position:absolute;
  11452. left:0px;
  11453. top:0px;
  11454. width:0px;
  11455. height:0px;
  11456. }
  11457. #u13058 {
  11458. border-width:0px;
  11459. position:absolute;
  11460. left:20px;
  11461. top:20px;
  11462. width:642px;
  11463. height:20px;
  11464. transition:none;
  11465. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11466. font-weight:400;
  11467. font-style:normal;
  11468. }
  11469. #u13059_div {
  11470. border-width:0px;
  11471. position:absolute;
  11472. left:0px;
  11473. top:0px;
  11474. width:620px;
  11475. height:20px;
  11476. background:inherit;
  11477. background-color:rgba(255, 255, 255, 0);
  11478. border-radius:0px;
  11479. filter:drop-shadow(none);
  11480. transition:none;
  11481. }
  11482. #u13059 {
  11483. border-width:0px;
  11484. position:absolute;
  11485. left:22px;
  11486. top:0px;
  11487. width:620px;
  11488. height:20px;
  11489. display:flex;
  11490. transition:none;
  11491. transform-origin:50% 50%;
  11492. }
  11493. #u13059 .text {
  11494. position:absolute;
  11495. align-self:center;
  11496. padding:2px 2px 2px 3px;
  11497. box-sizing:border-box;
  11498. width:100%;
  11499. }
  11500. #u13059_text {
  11501. border-width:0px;
  11502. white-space:nowrap;
  11503. text-transform:none;
  11504. }
  11505. #u13060 {
  11506. border-width:0px;
  11507. position:absolute;
  11508. left:20px;
  11509. top:40px;
  11510. width:692px;
  11511. height:20px;
  11512. transition:none;
  11513. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11514. font-weight:400;
  11515. font-style:normal;
  11516. }
  11517. #u13061_div {
  11518. border-width:0px;
  11519. position:absolute;
  11520. left:0px;
  11521. top:0px;
  11522. width:670px;
  11523. height:20px;
  11524. background:inherit;
  11525. background-color:rgba(255, 255, 255, 0);
  11526. border-radius:0px;
  11527. filter:drop-shadow(none);
  11528. transition:none;
  11529. }
  11530. #u13061 {
  11531. border-width:0px;
  11532. position:absolute;
  11533. left:22px;
  11534. top:0px;
  11535. width:670px;
  11536. height:20px;
  11537. display:flex;
  11538. transition:none;
  11539. transform-origin:50% 50%;
  11540. }
  11541. #u13061 .text {
  11542. position:absolute;
  11543. align-self:center;
  11544. padding:2px 2px 2px 3px;
  11545. box-sizing:border-box;
  11546. width:100%;
  11547. }
  11548. #u13061_text {
  11549. border-width:0px;
  11550. white-space:nowrap;
  11551. text-transform:none;
  11552. }
  11553. #u13062_div {
  11554. border-width:0px;
  11555. position:absolute;
  11556. left:0px;
  11557. top:0px;
  11558. width:127px;
  11559. height:30px;
  11560. background:inherit;
  11561. background-color:rgba(255, 255, 255, 1);
  11562. box-sizing:border-box;
  11563. border-width:1px;
  11564. border-style:solid;
  11565. border-color:rgba(170, 170, 170, 1);
  11566. border-radius:4px;
  11567. filter:drop-shadow(none);
  11568. transition:none;
  11569. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11570. font-weight:400;
  11571. font-style:normal;
  11572. font-size:12px;
  11573. color:#555555;
  11574. }
  11575. #u13062 {
  11576. border-width:0px;
  11577. position:absolute;
  11578. left:777px;
  11579. top:291px;
  11580. width:127px;
  11581. height:30px;
  11582. display:flex;
  11583. transition:none;
  11584. transform-origin:50% 50%;
  11585. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11586. font-weight:400;
  11587. font-style:normal;
  11588. font-size:12px;
  11589. color:#555555;
  11590. }
  11591. #u13062 .text {
  11592. position:absolute;
  11593. align-self:center;
  11594. padding:5px 15px 5px 15px;
  11595. box-sizing:border-box;
  11596. width:100%;
  11597. }
  11598. #u13062_text {
  11599. border-width:0px;
  11600. white-space:nowrap;
  11601. text-transform:none;
  11602. }
  11603. #u13063_div {
  11604. border-width:0px;
  11605. position:absolute;
  11606. left:0px;
  11607. top:0px;
  11608. width:15px;
  11609. height:16px;
  11610. background:inherit;
  11611. background-color:rgba(217, 0, 27, 1);
  11612. border-radius:9px;
  11613. filter:drop-shadow(none);
  11614. transition:none;
  11615. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11616. font-weight:400;
  11617. font-style:normal;
  11618. font-size:12px;
  11619. color:#FFFFFF;
  11620. }
  11621. #u13063 {
  11622. border-width:0px;
  11623. position:absolute;
  11624. left:896px;
  11625. top:283px;
  11626. width:15px;
  11627. height:16px;
  11628. display:flex;
  11629. transition:none;
  11630. transform-origin:50% 50%;
  11631. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11632. font-weight:400;
  11633. font-style:normal;
  11634. font-size:12px;
  11635. color:#FFFFFF;
  11636. }
  11637. #u13063 .text {
  11638. position:absolute;
  11639. align-self:center;
  11640. padding:2px 2px 2px 2px;
  11641. box-sizing:border-box;
  11642. width:100%;
  11643. }
  11644. #u13063_text {
  11645. border-width:0px;
  11646. word-wrap:break-word;
  11647. text-transform:none;
  11648. }