styles.css 137 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u126819_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u126819 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u126819 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u126819_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u126820_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u126820 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u126820 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u126820_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u126821_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u126821 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u126821 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u126821_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u126822 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u126823_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u126823 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u126823 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u126823_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u126824_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u126824 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u126824 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u126824_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u126825_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u126825 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u126825 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u126825_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u126826 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u126827_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u126827_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u126827_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u126827 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u126827 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u126827_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u126827.disabled {
  356. }
  357. .u126827_input_option {
  358. font-size:14px;
  359. }
  360. #u126828_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u126828 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u126828 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u126828_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u126829_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u126829 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u126829 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u126829_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u126830_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u126830 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u126830 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u126830_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u126831 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u126832_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u126832 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u126832 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u126832_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u126833_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u126833 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u126833 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u126833_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u126834 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u126835_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u126835 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u126835 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u126835_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u126836_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u126836 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u126836 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u126836_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u126837 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u126838_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u126838 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u126838 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u126838_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u126839_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u126839 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u126839 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u126839_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u126840 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u126841_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u126841 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u126841 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u126841_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u126842_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u126842 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u126842 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u126842_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u126843 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u126844_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u126844 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u126844 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u126844_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u126845_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u126845 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u126845 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u126845_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u126846 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u126847_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u126847 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u126847 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u126847_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u126848_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u126848 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u126848 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u126848_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u126849 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u126850_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u126850 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u126850 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u126850_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u126851_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u126851 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u126851 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u126851_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u126852 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u126853_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u126853 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u126853 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u126853_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u126854_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u126854 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u126854 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u126854_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u126855 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u126856_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u126856 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u126856 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u126856_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u126857_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u126857 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u126857 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u126857_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u126858 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u126859_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u126859 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u126859 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u126859_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u126860_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u126860 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u126860 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u126860_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u126861_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u126861 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u126861 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u126861_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u126862_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u126862 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u126862 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u126862_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u126863_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u126863 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u126863 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u126863_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u126864_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u126864 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u126864 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u126864_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u126865 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u126866_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u126866 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u126866 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u126866_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u126867_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u126867 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u126867 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u126867_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u126868 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u126869_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u126869 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u126869 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u126869_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u126870_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u126870 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u126870 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u126870_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u126871_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1652. }
  1653. #u126871 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:331px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u126871 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u126871_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u126872_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:25px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:18px;
  1693. }
  1694. #u126872 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:351px;
  1698. top:71px;
  1699. width:73px;
  1700. height:25px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:18px;
  1706. }
  1707. #u126872 .text {
  1708. position:absolute;
  1709. align-self:flex-start;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u126872_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u126873 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:351px;
  1723. top:246px;
  1724. width:1220px;
  1725. height:293px;
  1726. }
  1727. #u126874_img {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:82px;
  1733. height:34px;
  1734. }
  1735. #u126874 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:82px;
  1741. height:34px;
  1742. display:flex;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:14px;
  1747. color:#FFFFFF;
  1748. text-align:left;
  1749. line-height:30px;
  1750. }
  1751. #u126874 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 10px 2px 10px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u126874_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u126875_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:82px;
  1769. height:34px;
  1770. }
  1771. #u126875 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:82px;
  1775. top:0px;
  1776. width:82px;
  1777. height:34px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. color:#FFFFFF;
  1784. text-align:left;
  1785. line-height:30px;
  1786. }
  1787. #u126875 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 10px 2px 10px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u126875_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u126876_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:119px;
  1805. height:34px;
  1806. }
  1807. #u126876 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:164px;
  1811. top:0px;
  1812. width:119px;
  1813. height:34px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:14px;
  1819. color:#FFFFFF;
  1820. text-align:left;
  1821. line-height:30px;
  1822. }
  1823. #u126876 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 10px 2px 10px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u126876_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. }
  1835. #u126877_img {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:119px;
  1841. height:34px;
  1842. }
  1843. #u126877 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:283px;
  1847. top:0px;
  1848. width:119px;
  1849. height:34px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:14px;
  1855. color:#FFFFFF;
  1856. text-align:left;
  1857. line-height:30px;
  1858. }
  1859. #u126877 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 10px 2px 10px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u126877_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. }
  1871. #u126878_img {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:123px;
  1877. height:34px;
  1878. }
  1879. #u126878 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:402px;
  1883. top:0px;
  1884. width:123px;
  1885. height:34px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:14px;
  1891. color:#FFFFFF;
  1892. text-align:left;
  1893. line-height:30px;
  1894. }
  1895. #u126878 .text {
  1896. position:absolute;
  1897. align-self:center;
  1898. padding:2px 10px 2px 10px;
  1899. box-sizing:border-box;
  1900. width:100%;
  1901. }
  1902. #u126878_text {
  1903. border-width:0px;
  1904. word-wrap:break-word;
  1905. text-transform:none;
  1906. }
  1907. #u126879_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:119px;
  1913. height:34px;
  1914. }
  1915. #u126879 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:525px;
  1919. top:0px;
  1920. width:119px;
  1921. height:34px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:14px;
  1927. color:#FFFFFF;
  1928. text-align:left;
  1929. line-height:30px;
  1930. }
  1931. #u126879 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 10px 2px 10px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u126879_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u126880_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:153px;
  1949. height:34px;
  1950. }
  1951. #u126880 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:644px;
  1955. top:0px;
  1956. width:153px;
  1957. height:34px;
  1958. display:flex;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#FFFFFF;
  1964. text-align:left;
  1965. line-height:30px;
  1966. }
  1967. #u126880 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 10px 2px 10px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u126880_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. }
  1979. #u126881_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:119px;
  1985. height:34px;
  1986. }
  1987. #u126881 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:797px;
  1991. top:0px;
  1992. width:119px;
  1993. height:34px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:14px;
  1999. color:#FFFFFF;
  2000. text-align:left;
  2001. line-height:30px;
  2002. }
  2003. #u126881 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 10px 2px 10px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u126881_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. }
  2015. #u126882_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:123px;
  2021. height:34px;
  2022. }
  2023. #u126882 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:916px;
  2027. top:0px;
  2028. width:123px;
  2029. height:34px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:14px;
  2035. color:#FFFFFF;
  2036. text-align:left;
  2037. line-height:30px;
  2038. }
  2039. #u126882 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 10px 2px 10px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u126882_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. }
  2051. #u126883_img {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:181px;
  2057. height:34px;
  2058. }
  2059. #u126883 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:1039px;
  2063. top:0px;
  2064. width:181px;
  2065. height:34px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:14px;
  2071. color:#FFFFFF;
  2072. text-align:left;
  2073. line-height:30px;
  2074. }
  2075. #u126883 .text {
  2076. position:absolute;
  2077. align-self:center;
  2078. padding:2px 10px 2px 10px;
  2079. box-sizing:border-box;
  2080. width:100%;
  2081. }
  2082. #u126883_text {
  2083. border-width:0px;
  2084. word-wrap:break-word;
  2085. text-transform:none;
  2086. }
  2087. #u126884_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:82px;
  2093. height:37px;
  2094. }
  2095. #u126884 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:34px;
  2100. width:82px;
  2101. height:37px;
  2102. display:flex;
  2103. font-size:14px;
  2104. text-align:left;
  2105. }
  2106. #u126884 .text {
  2107. position:absolute;
  2108. align-self:center;
  2109. padding:2px 10px 2px 10px;
  2110. box-sizing:border-box;
  2111. width:100%;
  2112. }
  2113. #u126884_text {
  2114. border-width:0px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. visibility:hidden;
  2118. }
  2119. #u126885_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:82px;
  2125. height:37px;
  2126. }
  2127. #u126885 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:82px;
  2131. top:34px;
  2132. width:82px;
  2133. height:37px;
  2134. display:flex;
  2135. font-size:14px;
  2136. text-align:left;
  2137. }
  2138. #u126885 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:2px 10px 2px 10px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u126885_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. visibility:hidden;
  2150. }
  2151. #u126886_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:119px;
  2157. height:37px;
  2158. }
  2159. #u126886 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:164px;
  2163. top:34px;
  2164. width:119px;
  2165. height:37px;
  2166. display:flex;
  2167. font-size:14px;
  2168. text-align:left;
  2169. }
  2170. #u126886 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 10px 2px 10px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u126886_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. }
  2182. #u126887_img {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:119px;
  2188. height:37px;
  2189. }
  2190. #u126887 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:283px;
  2194. top:34px;
  2195. width:119px;
  2196. height:37px;
  2197. display:flex;
  2198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:14px;
  2202. text-align:left;
  2203. }
  2204. #u126887 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 10px 2px 10px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u126887_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. }
  2216. #u126888_img {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:123px;
  2222. height:37px;
  2223. }
  2224. #u126888 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:402px;
  2228. top:34px;
  2229. width:123px;
  2230. height:37px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:14px;
  2236. text-align:left;
  2237. }
  2238. #u126888 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 10px 2px 10px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u126888_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. visibility:hidden;
  2250. }
  2251. #u126889_img {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:0px;
  2255. top:0px;
  2256. width:119px;
  2257. height:37px;
  2258. }
  2259. #u126889 {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:525px;
  2263. top:34px;
  2264. width:119px;
  2265. height:37px;
  2266. display:flex;
  2267. font-size:14px;
  2268. text-align:left;
  2269. }
  2270. #u126889 .text {
  2271. position:absolute;
  2272. align-self:center;
  2273. padding:2px 10px 2px 10px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u126889_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. visibility:hidden;
  2282. }
  2283. #u126890_img {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:153px;
  2289. height:37px;
  2290. }
  2291. #u126890 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:644px;
  2295. top:34px;
  2296. width:153px;
  2297. height:37px;
  2298. display:flex;
  2299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:14px;
  2303. text-align:left;
  2304. }
  2305. #u126890 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 10px 2px 10px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u126890_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. }
  2317. #u126891_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:119px;
  2323. height:37px;
  2324. }
  2325. #u126891 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:797px;
  2329. top:34px;
  2330. width:119px;
  2331. height:37px;
  2332. display:flex;
  2333. font-size:14px;
  2334. text-align:left;
  2335. }
  2336. #u126891 .text {
  2337. position:absolute;
  2338. align-self:center;
  2339. padding:2px 10px 2px 10px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u126891_text {
  2344. border-width:0px;
  2345. word-wrap:break-word;
  2346. text-transform:none;
  2347. visibility:hidden;
  2348. }
  2349. #u126892_img {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:123px;
  2355. height:37px;
  2356. }
  2357. #u126892 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:916px;
  2361. top:34px;
  2362. width:123px;
  2363. height:37px;
  2364. display:flex;
  2365. font-size:14px;
  2366. text-align:left;
  2367. }
  2368. #u126892 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 10px 2px 10px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u126892_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. visibility:hidden;
  2380. }
  2381. #u126893_img {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:181px;
  2387. height:37px;
  2388. }
  2389. #u126893 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:1039px;
  2393. top:34px;
  2394. width:181px;
  2395. height:37px;
  2396. display:flex;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:14px;
  2401. text-align:left;
  2402. }
  2403. #u126893 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 10px 2px 10px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u126893_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. }
  2415. #u126894_img {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:82px;
  2421. height:37px;
  2422. }
  2423. #u126894 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:71px;
  2428. width:82px;
  2429. height:37px;
  2430. display:flex;
  2431. font-size:14px;
  2432. text-align:left;
  2433. }
  2434. #u126894 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 10px 2px 10px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u126894_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u126895_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:82px;
  2453. height:37px;
  2454. }
  2455. #u126895 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:82px;
  2459. top:71px;
  2460. width:82px;
  2461. height:37px;
  2462. display:flex;
  2463. font-size:14px;
  2464. text-align:left;
  2465. }
  2466. #u126895 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 10px 2px 10px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u126895_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u126896_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:119px;
  2485. height:37px;
  2486. }
  2487. #u126896 {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:164px;
  2491. top:71px;
  2492. width:119px;
  2493. height:37px;
  2494. display:flex;
  2495. font-size:14px;
  2496. text-align:left;
  2497. }
  2498. #u126896 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 10px 2px 10px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u126896_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. }
  2510. #u126897_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:119px;
  2516. height:37px;
  2517. }
  2518. #u126897 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:283px;
  2522. top:71px;
  2523. width:119px;
  2524. height:37px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:14px;
  2530. text-align:left;
  2531. }
  2532. #u126897 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 10px 2px 10px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u126897_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. }
  2544. #u126898_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:123px;
  2550. height:37px;
  2551. }
  2552. #u126898 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:402px;
  2556. top:71px;
  2557. width:123px;
  2558. height:37px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. text-align:left;
  2565. }
  2566. #u126898 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 10px 2px 10px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u126898_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u126899_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:119px;
  2585. height:37px;
  2586. }
  2587. #u126899 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:525px;
  2591. top:71px;
  2592. width:119px;
  2593. height:37px;
  2594. display:flex;
  2595. font-size:14px;
  2596. text-align:left;
  2597. }
  2598. #u126899 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 10px 2px 10px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u126899_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u126900_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:153px;
  2617. height:37px;
  2618. }
  2619. #u126900 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:644px;
  2623. top:71px;
  2624. width:153px;
  2625. height:37px;
  2626. display:flex;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:14px;
  2631. text-align:left;
  2632. }
  2633. #u126900 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 10px 2px 10px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u126900_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. }
  2645. #u126901_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:119px;
  2651. height:37px;
  2652. }
  2653. #u126901 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:797px;
  2657. top:71px;
  2658. width:119px;
  2659. height:37px;
  2660. display:flex;
  2661. font-size:14px;
  2662. text-align:left;
  2663. }
  2664. #u126901 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 10px 2px 10px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u126901_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u126902_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:123px;
  2683. height:37px;
  2684. }
  2685. #u126902 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:916px;
  2689. top:71px;
  2690. width:123px;
  2691. height:37px;
  2692. display:flex;
  2693. font-size:14px;
  2694. text-align:left;
  2695. }
  2696. #u126902 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:2px 10px 2px 10px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u126902_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u126903_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:181px;
  2715. height:37px;
  2716. }
  2717. #u126903 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:1039px;
  2721. top:71px;
  2722. width:181px;
  2723. height:37px;
  2724. display:flex;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:14px;
  2729. text-align:left;
  2730. }
  2731. #u126903 .text {
  2732. position:absolute;
  2733. align-self:center;
  2734. padding:2px 10px 2px 10px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u126903_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. }
  2743. #u126904_img {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:82px;
  2749. height:37px;
  2750. }
  2751. #u126904 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:108px;
  2756. width:82px;
  2757. height:37px;
  2758. display:flex;
  2759. font-size:14px;
  2760. text-align:left;
  2761. }
  2762. #u126904 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 10px 2px 10px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u126904_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. visibility:hidden;
  2774. }
  2775. #u126905_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:82px;
  2781. height:37px;
  2782. }
  2783. #u126905 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:82px;
  2787. top:108px;
  2788. width:82px;
  2789. height:37px;
  2790. display:flex;
  2791. font-size:14px;
  2792. text-align:left;
  2793. }
  2794. #u126905 .text {
  2795. position:absolute;
  2796. align-self:center;
  2797. padding:2px 10px 2px 10px;
  2798. box-sizing:border-box;
  2799. width:100%;
  2800. }
  2801. #u126905_text {
  2802. border-width:0px;
  2803. word-wrap:break-word;
  2804. text-transform:none;
  2805. visibility:hidden;
  2806. }
  2807. #u126906_img {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:119px;
  2813. height:37px;
  2814. }
  2815. #u126906 {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:164px;
  2819. top:108px;
  2820. width:119px;
  2821. height:37px;
  2822. display:flex;
  2823. font-size:14px;
  2824. text-align:left;
  2825. }
  2826. #u126906 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 10px 2px 10px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u126906_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. }
  2838. #u126907_img {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:119px;
  2844. height:37px;
  2845. }
  2846. #u126907 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:283px;
  2850. top:108px;
  2851. width:119px;
  2852. height:37px;
  2853. display:flex;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:14px;
  2858. text-align:left;
  2859. }
  2860. #u126907 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 10px 2px 10px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u126907_text {
  2868. border-width:0px;
  2869. word-wrap:break-word;
  2870. text-transform:none;
  2871. }
  2872. #u126908_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:123px;
  2878. height:37px;
  2879. }
  2880. #u126908 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:402px;
  2884. top:108px;
  2885. width:123px;
  2886. height:37px;
  2887. display:flex;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:14px;
  2892. text-align:left;
  2893. }
  2894. #u126908 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 10px 2px 10px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u126908_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u126909_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:119px;
  2913. height:37px;
  2914. }
  2915. #u126909 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:525px;
  2919. top:108px;
  2920. width:119px;
  2921. height:37px;
  2922. display:flex;
  2923. font-size:14px;
  2924. text-align:left;
  2925. }
  2926. #u126909 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 10px 2px 10px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u126909_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. visibility:hidden;
  2938. }
  2939. #u126910_img {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:153px;
  2945. height:37px;
  2946. }
  2947. #u126910 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:644px;
  2951. top:108px;
  2952. width:153px;
  2953. height:37px;
  2954. display:flex;
  2955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2956. font-weight:400;
  2957. font-style:normal;
  2958. font-size:14px;
  2959. text-align:left;
  2960. }
  2961. #u126910 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 10px 2px 10px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u126910_text {
  2969. border-width:0px;
  2970. word-wrap:break-word;
  2971. text-transform:none;
  2972. }
  2973. #u126911_img {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:119px;
  2979. height:37px;
  2980. }
  2981. #u126911 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:797px;
  2985. top:108px;
  2986. width:119px;
  2987. height:37px;
  2988. display:flex;
  2989. font-size:14px;
  2990. text-align:left;
  2991. }
  2992. #u126911 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 10px 2px 10px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u126911_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. visibility:hidden;
  3004. }
  3005. #u126912_img {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:123px;
  3011. height:37px;
  3012. }
  3013. #u126912 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:916px;
  3017. top:108px;
  3018. width:123px;
  3019. height:37px;
  3020. display:flex;
  3021. font-size:14px;
  3022. text-align:left;
  3023. }
  3024. #u126912 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 10px 2px 10px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u126912_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. visibility:hidden;
  3036. }
  3037. #u126913_img {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:181px;
  3043. height:37px;
  3044. }
  3045. #u126913 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:1039px;
  3049. top:108px;
  3050. width:181px;
  3051. height:37px;
  3052. display:flex;
  3053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3054. font-weight:400;
  3055. font-style:normal;
  3056. font-size:14px;
  3057. color:#1890FF;
  3058. text-align:left;
  3059. }
  3060. #u126913 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 10px 2px 10px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u126913_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. }
  3072. #u126914_img {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:82px;
  3078. height:37px;
  3079. }
  3080. #u126914 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:145px;
  3085. width:82px;
  3086. height:37px;
  3087. display:flex;
  3088. font-size:14px;
  3089. text-align:left;
  3090. }
  3091. #u126914 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 10px 2px 10px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u126914_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u126915_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:82px;
  3110. height:37px;
  3111. }
  3112. #u126915 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:82px;
  3116. top:145px;
  3117. width:82px;
  3118. height:37px;
  3119. display:flex;
  3120. font-size:14px;
  3121. text-align:left;
  3122. }
  3123. #u126915 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 10px 2px 10px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u126915_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u126916_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:119px;
  3142. height:37px;
  3143. }
  3144. #u126916 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:164px;
  3148. top:145px;
  3149. width:119px;
  3150. height:37px;
  3151. display:flex;
  3152. font-size:14px;
  3153. text-align:left;
  3154. }
  3155. #u126916 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:2px 10px 2px 10px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u126916_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u126917_img {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:119px;
  3174. height:37px;
  3175. }
  3176. #u126917 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:283px;
  3180. top:145px;
  3181. width:119px;
  3182. height:37px;
  3183. display:flex;
  3184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:14px;
  3188. text-align:left;
  3189. }
  3190. #u126917 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 10px 2px 10px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u126917_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u126918_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:123px;
  3209. height:37px;
  3210. }
  3211. #u126918 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:402px;
  3215. top:145px;
  3216. width:123px;
  3217. height:37px;
  3218. display:flex;
  3219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:14px;
  3223. text-align:left;
  3224. }
  3225. #u126918 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 10px 2px 10px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u126918_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u126919_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:119px;
  3244. height:37px;
  3245. }
  3246. #u126919 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:525px;
  3250. top:145px;
  3251. width:119px;
  3252. height:37px;
  3253. display:flex;
  3254. font-size:14px;
  3255. text-align:left;
  3256. }
  3257. #u126919 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 10px 2px 10px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u126919_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. visibility:hidden;
  3269. }
  3270. #u126920_img {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:153px;
  3276. height:37px;
  3277. }
  3278. #u126920 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:644px;
  3282. top:145px;
  3283. width:153px;
  3284. height:37px;
  3285. display:flex;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:14px;
  3290. text-align:left;
  3291. }
  3292. #u126920 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 10px 2px 10px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u126920_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u126921_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:119px;
  3311. height:37px;
  3312. }
  3313. #u126921 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:797px;
  3317. top:145px;
  3318. width:119px;
  3319. height:37px;
  3320. display:flex;
  3321. font-size:14px;
  3322. text-align:left;
  3323. }
  3324. #u126921 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 10px 2px 10px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u126921_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. visibility:hidden;
  3336. }
  3337. #u126922_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:123px;
  3343. height:37px;
  3344. }
  3345. #u126922 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:916px;
  3349. top:145px;
  3350. width:123px;
  3351. height:37px;
  3352. display:flex;
  3353. font-size:14px;
  3354. text-align:left;
  3355. }
  3356. #u126922 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 10px 2px 10px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u126922_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u126923_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:181px;
  3375. height:37px;
  3376. }
  3377. #u126923 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:1039px;
  3381. top:145px;
  3382. width:181px;
  3383. height:37px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:14px;
  3389. color:#1890FF;
  3390. text-align:left;
  3391. }
  3392. #u126923 .text {
  3393. position:absolute;
  3394. align-self:center;
  3395. padding:2px 10px 2px 10px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u126923_text {
  3400. border-width:0px;
  3401. word-wrap:break-word;
  3402. text-transform:none;
  3403. }
  3404. #u126924_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:82px;
  3410. height:37px;
  3411. }
  3412. #u126924 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:182px;
  3417. width:82px;
  3418. height:37px;
  3419. display:flex;
  3420. font-size:14px;
  3421. text-align:left;
  3422. }
  3423. #u126924 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 10px 2px 10px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u126924_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u126925_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:82px;
  3442. height:37px;
  3443. }
  3444. #u126925 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:82px;
  3448. top:182px;
  3449. width:82px;
  3450. height:37px;
  3451. display:flex;
  3452. font-size:14px;
  3453. text-align:left;
  3454. }
  3455. #u126925 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 10px 2px 10px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u126925_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u126926_img {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:119px;
  3474. height:37px;
  3475. }
  3476. #u126926 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:164px;
  3480. top:182px;
  3481. width:119px;
  3482. height:37px;
  3483. display:flex;
  3484. font-size:14px;
  3485. text-align:left;
  3486. }
  3487. #u126926 .text {
  3488. position:absolute;
  3489. align-self:center;
  3490. padding:2px 10px 2px 10px;
  3491. box-sizing:border-box;
  3492. width:100%;
  3493. }
  3494. #u126926_text {
  3495. border-width:0px;
  3496. word-wrap:break-word;
  3497. text-transform:none;
  3498. visibility:hidden;
  3499. }
  3500. #u126927_img {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:119px;
  3506. height:37px;
  3507. }
  3508. #u126927 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:283px;
  3512. top:182px;
  3513. width:119px;
  3514. height:37px;
  3515. display:flex;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:14px;
  3520. text-align:left;
  3521. }
  3522. #u126927 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 10px 2px 10px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u126927_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. visibility:hidden;
  3534. }
  3535. #u126928_img {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:123px;
  3541. height:37px;
  3542. }
  3543. #u126928 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:402px;
  3547. top:182px;
  3548. width:123px;
  3549. height:37px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:14px;
  3555. text-align:left;
  3556. }
  3557. #u126928 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 10px 2px 10px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u126928_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u126929_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:119px;
  3576. height:37px;
  3577. }
  3578. #u126929 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:525px;
  3582. top:182px;
  3583. width:119px;
  3584. height:37px;
  3585. display:flex;
  3586. font-size:14px;
  3587. text-align:left;
  3588. }
  3589. #u126929 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 10px 2px 10px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u126929_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u126930_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:153px;
  3608. height:37px;
  3609. }
  3610. #u126930 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:644px;
  3614. top:182px;
  3615. width:153px;
  3616. height:37px;
  3617. display:flex;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. text-align:left;
  3622. }
  3623. #u126930 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 10px 2px 10px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u126930_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. visibility:hidden;
  3635. }
  3636. #u126931_img {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:119px;
  3642. height:37px;
  3643. }
  3644. #u126931 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:797px;
  3648. top:182px;
  3649. width:119px;
  3650. height:37px;
  3651. display:flex;
  3652. font-size:14px;
  3653. text-align:left;
  3654. }
  3655. #u126931 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 10px 2px 10px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u126931_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u126932_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:123px;
  3674. height:37px;
  3675. }
  3676. #u126932 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:916px;
  3680. top:182px;
  3681. width:123px;
  3682. height:37px;
  3683. display:flex;
  3684. font-size:14px;
  3685. text-align:left;
  3686. }
  3687. #u126932 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 10px 2px 10px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u126932_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u126933_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:181px;
  3706. height:37px;
  3707. }
  3708. #u126933 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:1039px;
  3712. top:182px;
  3713. width:181px;
  3714. height:37px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:14px;
  3720. color:#1890FF;
  3721. text-align:left;
  3722. }
  3723. #u126933 .text {
  3724. position:absolute;
  3725. align-self:center;
  3726. padding:2px 10px 2px 10px;
  3727. box-sizing:border-box;
  3728. width:100%;
  3729. }
  3730. #u126933_text {
  3731. border-width:0px;
  3732. word-wrap:break-word;
  3733. text-transform:none;
  3734. }
  3735. #u126934_img {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:82px;
  3741. height:37px;
  3742. }
  3743. #u126934 {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:219px;
  3748. width:82px;
  3749. height:37px;
  3750. display:flex;
  3751. font-size:14px;
  3752. text-align:left;
  3753. }
  3754. #u126934 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 10px 2px 10px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u126934_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u126935_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:82px;
  3773. height:37px;
  3774. }
  3775. #u126935 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:82px;
  3779. top:219px;
  3780. width:82px;
  3781. height:37px;
  3782. display:flex;
  3783. font-size:14px;
  3784. text-align:left;
  3785. }
  3786. #u126935 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 10px 2px 10px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u126935_text {
  3794. border-width:0px;
  3795. word-wrap:break-word;
  3796. text-transform:none;
  3797. visibility:hidden;
  3798. }
  3799. #u126936_img {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:119px;
  3805. height:37px;
  3806. }
  3807. #u126936 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:164px;
  3811. top:219px;
  3812. width:119px;
  3813. height:37px;
  3814. display:flex;
  3815. font-size:14px;
  3816. text-align:left;
  3817. }
  3818. #u126936 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 10px 2px 10px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u126936_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u126937_img {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:119px;
  3837. height:37px;
  3838. }
  3839. #u126937 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:283px;
  3843. top:219px;
  3844. width:119px;
  3845. height:37px;
  3846. display:flex;
  3847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:14px;
  3851. text-align:left;
  3852. }
  3853. #u126937 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:2px 10px 2px 10px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u126937_text {
  3861. border-width:0px;
  3862. word-wrap:break-word;
  3863. text-transform:none;
  3864. visibility:hidden;
  3865. }
  3866. #u126938_img {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:123px;
  3872. height:37px;
  3873. }
  3874. #u126938 {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:402px;
  3878. top:219px;
  3879. width:123px;
  3880. height:37px;
  3881. display:flex;
  3882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3883. font-weight:400;
  3884. font-style:normal;
  3885. font-size:14px;
  3886. text-align:left;
  3887. }
  3888. #u126938 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 10px 2px 10px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u126938_text {
  3896. border-width:0px;
  3897. word-wrap:break-word;
  3898. text-transform:none;
  3899. visibility:hidden;
  3900. }
  3901. #u126939_img {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:119px;
  3907. height:37px;
  3908. }
  3909. #u126939 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:525px;
  3913. top:219px;
  3914. width:119px;
  3915. height:37px;
  3916. display:flex;
  3917. font-size:14px;
  3918. text-align:left;
  3919. }
  3920. #u126939 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 10px 2px 10px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u126939_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u126940_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:153px;
  3939. height:37px;
  3940. }
  3941. #u126940 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:644px;
  3945. top:219px;
  3946. width:153px;
  3947. height:37px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. text-align:left;
  3953. }
  3954. #u126940 .text {
  3955. position:absolute;
  3956. align-self:center;
  3957. padding:2px 10px 2px 10px;
  3958. box-sizing:border-box;
  3959. width:100%;
  3960. }
  3961. #u126940_text {
  3962. border-width:0px;
  3963. word-wrap:break-word;
  3964. text-transform:none;
  3965. visibility:hidden;
  3966. }
  3967. #u126941_img {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:119px;
  3973. height:37px;
  3974. }
  3975. #u126941 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:797px;
  3979. top:219px;
  3980. width:119px;
  3981. height:37px;
  3982. display:flex;
  3983. font-size:14px;
  3984. text-align:left;
  3985. }
  3986. #u126941 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 10px 2px 10px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u126941_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. visibility:hidden;
  3998. }
  3999. #u126942_img {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:123px;
  4005. height:37px;
  4006. }
  4007. #u126942 {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:916px;
  4011. top:219px;
  4012. width:123px;
  4013. height:37px;
  4014. display:flex;
  4015. font-size:14px;
  4016. text-align:left;
  4017. }
  4018. #u126942 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 10px 2px 10px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u126942_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u126943_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:181px;
  4037. height:37px;
  4038. }
  4039. #u126943 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:1039px;
  4043. top:219px;
  4044. width:181px;
  4045. height:37px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:14px;
  4051. color:#1890FF;
  4052. text-align:left;
  4053. }
  4054. #u126943 .text {
  4055. position:absolute;
  4056. align-self:center;
  4057. padding:2px 10px 2px 10px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u126943_text {
  4062. border-width:0px;
  4063. word-wrap:break-word;
  4064. text-transform:none;
  4065. }
  4066. #u126944_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:82px;
  4072. height:37px;
  4073. }
  4074. #u126944 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:256px;
  4079. width:82px;
  4080. height:37px;
  4081. display:flex;
  4082. font-size:14px;
  4083. text-align:left;
  4084. }
  4085. #u126944 .text {
  4086. position:absolute;
  4087. align-self:center;
  4088. padding:2px 10px 2px 10px;
  4089. box-sizing:border-box;
  4090. width:100%;
  4091. }
  4092. #u126944_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u126945_img {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:0px;
  4102. top:0px;
  4103. width:82px;
  4104. height:37px;
  4105. }
  4106. #u126945 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:82px;
  4110. top:256px;
  4111. width:82px;
  4112. height:37px;
  4113. display:flex;
  4114. font-size:14px;
  4115. text-align:left;
  4116. }
  4117. #u126945 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 10px 2px 10px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u126945_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u126946_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:119px;
  4136. height:37px;
  4137. }
  4138. #u126946 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:164px;
  4142. top:256px;
  4143. width:119px;
  4144. height:37px;
  4145. display:flex;
  4146. font-size:14px;
  4147. text-align:left;
  4148. }
  4149. #u126946 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 10px 2px 10px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u126946_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u126947_img {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:119px;
  4168. height:37px;
  4169. }
  4170. #u126947 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:283px;
  4174. top:256px;
  4175. width:119px;
  4176. height:37px;
  4177. display:flex;
  4178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:14px;
  4182. text-align:left;
  4183. }
  4184. #u126947 .text {
  4185. position:absolute;
  4186. align-self:center;
  4187. padding:2px 10px 2px 10px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u126947_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. visibility:hidden;
  4196. }
  4197. #u126948_img {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:123px;
  4203. height:37px;
  4204. }
  4205. #u126948 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:402px;
  4209. top:256px;
  4210. width:123px;
  4211. height:37px;
  4212. display:flex;
  4213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. text-align:left;
  4218. }
  4219. #u126948 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:2px 10px 2px 10px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u126948_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u126949_img {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:119px;
  4238. height:37px;
  4239. }
  4240. #u126949 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:525px;
  4244. top:256px;
  4245. width:119px;
  4246. height:37px;
  4247. display:flex;
  4248. font-size:14px;
  4249. text-align:left;
  4250. }
  4251. #u126949 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 10px 2px 10px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u126949_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u126950_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:153px;
  4270. height:37px;
  4271. }
  4272. #u126950 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:644px;
  4276. top:256px;
  4277. width:153px;
  4278. height:37px;
  4279. display:flex;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. text-align:left;
  4284. }
  4285. #u126950 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 10px 2px 10px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u126950_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u126951_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:119px;
  4304. height:37px;
  4305. }
  4306. #u126951 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:797px;
  4310. top:256px;
  4311. width:119px;
  4312. height:37px;
  4313. display:flex;
  4314. font-size:14px;
  4315. text-align:left;
  4316. }
  4317. #u126951 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 10px 2px 10px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u126951_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. visibility:hidden;
  4329. }
  4330. #u126952_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:123px;
  4336. height:37px;
  4337. }
  4338. #u126952 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:916px;
  4342. top:256px;
  4343. width:123px;
  4344. height:37px;
  4345. display:flex;
  4346. font-size:14px;
  4347. text-align:left;
  4348. }
  4349. #u126952 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:2px 10px 2px 10px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u126952_text {
  4357. border-width:0px;
  4358. word-wrap:break-word;
  4359. text-transform:none;
  4360. visibility:hidden;
  4361. }
  4362. #u126953_img {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:0px;
  4366. top:0px;
  4367. width:181px;
  4368. height:37px;
  4369. }
  4370. #u126953 {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:1039px;
  4374. top:256px;
  4375. width:181px;
  4376. height:37px;
  4377. display:flex;
  4378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4379. font-weight:400;
  4380. font-style:normal;
  4381. font-size:14px;
  4382. color:#1890FF;
  4383. text-align:left;
  4384. }
  4385. #u126953 .text {
  4386. position:absolute;
  4387. align-self:center;
  4388. padding:2px 10px 2px 10px;
  4389. box-sizing:border-box;
  4390. width:100%;
  4391. }
  4392. #u126953_text {
  4393. border-width:0px;
  4394. word-wrap:break-word;
  4395. text-transform:none;
  4396. visibility:hidden;
  4397. }
  4398. #u126954_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:55px;
  4404. height:30px;
  4405. background:inherit;
  4406. background-color:rgba(255, 255, 255, 1);
  4407. box-sizing:border-box;
  4408. border-width:1px;
  4409. border-style:solid;
  4410. border-color:rgba(170, 170, 170, 1);
  4411. border-radius:4px;
  4412. -moz-box-shadow:none;
  4413. -webkit-box-shadow:none;
  4414. box-shadow:none;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:12px;
  4419. color:#555555;
  4420. }
  4421. #u126954 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:571px;
  4425. top:156px;
  4426. width:55px;
  4427. height:30px;
  4428. display:flex;
  4429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:12px;
  4433. color:#555555;
  4434. }
  4435. #u126954 .text {
  4436. position:absolute;
  4437. align-self:center;
  4438. padding:5px 15px 5px 15px;
  4439. box-sizing:border-box;
  4440. width:100%;
  4441. }
  4442. #u126954_text {
  4443. border-width:0px;
  4444. white-space:nowrap;
  4445. text-transform:none;
  4446. }
  4447. #u126955 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:0px;
  4453. height:0px;
  4454. }
  4455. #u126956_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:140px;
  4461. height:30px;
  4462. background:inherit;
  4463. background-color:rgba(255, 255, 255, 1);
  4464. box-sizing:border-box;
  4465. border-width:1px;
  4466. border-style:solid;
  4467. border-color:rgba(201, 201, 201, 1);
  4468. border-radius:4px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. font-family:'Microsoft YaHei', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:14px;
  4476. color:#CCCCCC;
  4477. text-align:left;
  4478. }
  4479. #u126956 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:352px;
  4483. top:156px;
  4484. width:140px;
  4485. height:30px;
  4486. display:flex;
  4487. font-family:'Microsoft YaHei', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:14px;
  4491. color:#CCCCCC;
  4492. text-align:left;
  4493. }
  4494. #u126956 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:2px 8px 2px 8px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u126956_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. visibility:hidden;
  4506. }
  4507. #u126957_input {
  4508. position:absolute;
  4509. left:0px;
  4510. top:0px;
  4511. width:127px;
  4512. height:25px;
  4513. padding:2px 2px 2px 2px;
  4514. font-family:'Microsoft YaHei', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:10px;
  4518. letter-spacing:normal;
  4519. color:#000000;
  4520. vertical-align:none;
  4521. text-align:left;
  4522. text-transform:none;
  4523. background-color:transparent;
  4524. border-color:transparent;
  4525. }
  4526. #u126957_input.disabled {
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:127px;
  4531. height:25px;
  4532. padding:2px 2px 2px 2px;
  4533. font-family:'Microsoft YaHei', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:10px;
  4537. letter-spacing:normal;
  4538. color:#000000;
  4539. vertical-align:none;
  4540. text-align:left;
  4541. text-transform:none;
  4542. background-color:transparent;
  4543. border-color:transparent;
  4544. }
  4545. #u126957_div {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:127px;
  4551. height:25px;
  4552. background:inherit;
  4553. background-color:rgba(255, 255, 255, 1);
  4554. border:none;
  4555. border-radius:0px;
  4556. -moz-box-shadow:none;
  4557. -webkit-box-shadow:none;
  4558. box-shadow:none;
  4559. font-family:'Microsoft YaHei', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:10px;
  4563. }
  4564. #u126957 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:360px;
  4568. top:157px;
  4569. width:127px;
  4570. height:25px;
  4571. display:flex;
  4572. font-family:'Microsoft YaHei', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:10px;
  4576. }
  4577. #u126957 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:2px 2px 2px 2px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u126957_div.disabled {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:127px;
  4590. height:25px;
  4591. background:inherit;
  4592. background-color:rgba(240, 240, 240, 1);
  4593. border:none;
  4594. border-radius:0px;
  4595. -moz-box-shadow:none;
  4596. -webkit-box-shadow:none;
  4597. box-shadow:none;
  4598. font-family:'Microsoft YaHei', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:10px;
  4602. }
  4603. #u126957.disabled {
  4604. }
  4605. #u126958_div {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:59px;
  4611. height:30px;
  4612. background:inherit;
  4613. background-color:rgba(0, 153, 255, 1);
  4614. box-sizing:border-box;
  4615. border-width:1px;
  4616. border-style:solid;
  4617. border-color:rgba(0, 153, 255, 1);
  4618. border-radius:4px;
  4619. -moz-box-shadow:none;
  4620. -webkit-box-shadow:none;
  4621. box-shadow:none;
  4622. font-family:'Microsoft YaHei', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:14px;
  4626. color:#FFFFFF;
  4627. }
  4628. #u126958 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:502px;
  4632. top:156px;
  4633. width:59px;
  4634. height:30px;
  4635. display:flex;
  4636. font-family:'Microsoft YaHei', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:14px;
  4640. color:#FFFFFF;
  4641. }
  4642. #u126958 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:5px 15px 5px 15px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u126958_text {
  4650. border-width:0px;
  4651. white-space:nowrap;
  4652. text-transform:none;
  4653. }
  4654. #u126959 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:0px;
  4660. height:0px;
  4661. }
  4662. #u126960_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(201, 201, 201, 1);
  4675. border-radius:4px;
  4676. -moz-box-shadow:none;
  4677. -webkit-box-shadow:none;
  4678. box-shadow:none;
  4679. font-family:'Microsoft YaHei', sans-serif;
  4680. font-weight:400;
  4681. font-style:normal;
  4682. font-size:14px;
  4683. color:#CCCCCC;
  4684. text-align:left;
  4685. }
  4686. #u126960 {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:1102px;
  4690. top:116px;
  4691. width:140px;
  4692. height:30px;
  4693. display:flex;
  4694. font-family:'Microsoft YaHei', sans-serif;
  4695. font-weight:400;
  4696. font-style:normal;
  4697. font-size:14px;
  4698. color:#CCCCCC;
  4699. text-align:left;
  4700. }
  4701. #u126960 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:2px 8px 2px 8px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u126960_text {
  4709. border-width:0px;
  4710. word-wrap:break-word;
  4711. text-transform:none;
  4712. visibility:hidden;
  4713. }
  4714. #u126961_input {
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:127px;
  4719. height:25px;
  4720. padding:2px 2px 2px 2px;
  4721. font-family:'Microsoft YaHei', sans-serif;
  4722. font-weight:400;
  4723. font-style:normal;
  4724. font-size:10px;
  4725. letter-spacing:normal;
  4726. color:#000000;
  4727. vertical-align:none;
  4728. text-align:left;
  4729. text-transform:none;
  4730. background-color:transparent;
  4731. border-color:transparent;
  4732. }
  4733. #u126961_input.disabled {
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:127px;
  4738. height:25px;
  4739. padding:2px 2px 2px 2px;
  4740. font-family:'Microsoft YaHei', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:10px;
  4744. letter-spacing:normal;
  4745. color:#000000;
  4746. vertical-align:none;
  4747. text-align:left;
  4748. text-transform:none;
  4749. background-color:transparent;
  4750. border-color:transparent;
  4751. }
  4752. #u126961_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:127px;
  4758. height:25px;
  4759. background:inherit;
  4760. background-color:rgba(255, 255, 255, 1);
  4761. border:none;
  4762. border-radius:0px;
  4763. -moz-box-shadow:none;
  4764. -webkit-box-shadow:none;
  4765. box-shadow:none;
  4766. font-family:'Microsoft YaHei', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:10px;
  4770. }
  4771. #u126961 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:1110px;
  4775. top:117px;
  4776. width:127px;
  4777. height:25px;
  4778. display:flex;
  4779. font-family:'Microsoft YaHei', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:10px;
  4783. }
  4784. #u126961 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 2px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u126961_div.disabled {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:127px;
  4797. height:25px;
  4798. background:inherit;
  4799. background-color:rgba(240, 240, 240, 1);
  4800. border:none;
  4801. border-radius:0px;
  4802. -moz-box-shadow:none;
  4803. -webkit-box-shadow:none;
  4804. box-shadow:none;
  4805. font-family:'Microsoft YaHei', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:10px;
  4809. }
  4810. #u126961.disabled {
  4811. }
  4812. #u126962 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:0px;
  4818. height:0px;
  4819. }
  4820. #u126963_div {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:140px;
  4826. height:30px;
  4827. background:inherit;
  4828. background-color:rgba(255, 255, 255, 1);
  4829. box-sizing:border-box;
  4830. border-width:1px;
  4831. border-style:solid;
  4832. border-color:rgba(215, 215, 215, 1);
  4833. border-radius:4px;
  4834. -moz-box-shadow:none;
  4835. -webkit-box-shadow:none;
  4836. box-shadow:none;
  4837. font-size:11px;
  4838. }
  4839. #u126963 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:502px;
  4843. top:116px;
  4844. width:140px;
  4845. height:30px;
  4846. display:flex;
  4847. font-size:11px;
  4848. }
  4849. #u126963 .text {
  4850. position:absolute;
  4851. align-self:center;
  4852. padding:2px 2px 2px 2px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u126963_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. visibility:hidden;
  4861. }
  4862. #u126964_input {
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:123px;
  4867. height:23px;
  4868. padding:2px 2px 2px 2px;
  4869. font-family:'ArialMT', 'Arial', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. font-size:11px;
  4873. letter-spacing:normal;
  4874. color:#AAAAAA;
  4875. vertical-align:none;
  4876. text-align:left;
  4877. text-transform:none;
  4878. background-color:transparent;
  4879. border-color:transparent;
  4880. }
  4881. #u126964_input.disabled {
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:123px;
  4886. height:23px;
  4887. padding:2px 2px 2px 2px;
  4888. font-family:'ArialMT', 'Arial', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:11px;
  4892. letter-spacing:normal;
  4893. color:#AAAAAA;
  4894. vertical-align:none;
  4895. text-align:left;
  4896. text-transform:none;
  4897. background-color:transparent;
  4898. border-color:transparent;
  4899. }
  4900. #u126964_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:123px;
  4906. height:23px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 1);
  4909. border:none;
  4910. border-radius:0px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. font-size:11px;
  4915. color:#AAAAAA;
  4916. }
  4917. #u126964 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:508px;
  4921. top:118px;
  4922. width:123px;
  4923. height:23px;
  4924. display:flex;
  4925. font-size:11px;
  4926. color:#AAAAAA;
  4927. }
  4928. #u126964 .text {
  4929. position:absolute;
  4930. align-self:flex-start;
  4931. padding:2px 2px 2px 2px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u126964_div.disabled {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:123px;
  4941. height:23px;
  4942. background:inherit;
  4943. background-color:rgba(240, 240, 240, 1);
  4944. border:none;
  4945. border-radius:0px;
  4946. -moz-box-shadow:none;
  4947. -webkit-box-shadow:none;
  4948. box-shadow:none;
  4949. font-size:11px;
  4950. color:#AAAAAA;
  4951. }
  4952. #u126964.disabled {
  4953. }
  4954. .u126964_input_option {
  4955. font-size:11px;
  4956. }
  4957. #u126965 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:0px;
  4963. height:0px;
  4964. }
  4965. #u126966_div {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:140px;
  4971. height:30px;
  4972. background:inherit;
  4973. background-color:rgba(255, 255, 255, 1);
  4974. box-sizing:border-box;
  4975. border-width:1px;
  4976. border-style:solid;
  4977. border-color:rgba(215, 215, 215, 1);
  4978. border-radius:4px;
  4979. -moz-box-shadow:none;
  4980. -webkit-box-shadow:none;
  4981. box-shadow:none;
  4982. font-size:11px;
  4983. }
  4984. #u126966 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:652px;
  4988. top:116px;
  4989. width:140px;
  4990. height:30px;
  4991. display:flex;
  4992. font-size:11px;
  4993. }
  4994. #u126966 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:2px 2px 2px 2px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u126966_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. visibility:hidden;
  5006. }
  5007. #u126967_input {
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:123px;
  5012. height:23px;
  5013. padding:2px 2px 2px 2px;
  5014. font-family:'ArialMT', 'Arial', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:11px;
  5018. letter-spacing:normal;
  5019. color:#AAAAAA;
  5020. vertical-align:none;
  5021. text-align:left;
  5022. text-transform:none;
  5023. background-color:transparent;
  5024. border-color:transparent;
  5025. }
  5026. #u126967_input.disabled {
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:123px;
  5031. height:23px;
  5032. padding:2px 2px 2px 2px;
  5033. font-family:'ArialMT', 'Arial', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:11px;
  5037. letter-spacing:normal;
  5038. color:#AAAAAA;
  5039. vertical-align:none;
  5040. text-align:left;
  5041. text-transform:none;
  5042. background-color:transparent;
  5043. border-color:transparent;
  5044. }
  5045. #u126967_div {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:123px;
  5051. height:23px;
  5052. background:inherit;
  5053. background-color:rgba(255, 255, 255, 1);
  5054. border:none;
  5055. border-radius:0px;
  5056. -moz-box-shadow:none;
  5057. -webkit-box-shadow:none;
  5058. box-shadow:none;
  5059. font-size:11px;
  5060. color:#AAAAAA;
  5061. }
  5062. #u126967 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:658px;
  5066. top:118px;
  5067. width:123px;
  5068. height:23px;
  5069. display:flex;
  5070. font-size:11px;
  5071. color:#AAAAAA;
  5072. }
  5073. #u126967 .text {
  5074. position:absolute;
  5075. align-self:flex-start;
  5076. padding:2px 2px 2px 2px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u126967_div.disabled {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:123px;
  5086. height:23px;
  5087. background:inherit;
  5088. background-color:rgba(240, 240, 240, 1);
  5089. border:none;
  5090. border-radius:0px;
  5091. -moz-box-shadow:none;
  5092. -webkit-box-shadow:none;
  5093. box-shadow:none;
  5094. font-size:11px;
  5095. color:#AAAAAA;
  5096. }
  5097. #u126967.disabled {
  5098. }
  5099. .u126967_input_option {
  5100. font-size:11px;
  5101. }
  5102. #u126968 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:0px;
  5108. height:0px;
  5109. }
  5110. #u126969_div {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:140px;
  5116. height:30px;
  5117. background:inherit;
  5118. background-color:rgba(255, 255, 255, 1);
  5119. box-sizing:border-box;
  5120. border-width:1px;
  5121. border-style:solid;
  5122. border-color:rgba(215, 215, 215, 1);
  5123. border-radius:4px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. font-size:11px;
  5128. }
  5129. #u126969 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:352px;
  5133. top:115px;
  5134. width:140px;
  5135. height:30px;
  5136. display:flex;
  5137. font-size:11px;
  5138. }
  5139. #u126969 .text {
  5140. position:absolute;
  5141. align-self:center;
  5142. padding:2px 2px 2px 2px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u126969_text {
  5147. border-width:0px;
  5148. word-wrap:break-word;
  5149. text-transform:none;
  5150. visibility:hidden;
  5151. }
  5152. #u126970_input {
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:123px;
  5157. height:23px;
  5158. padding:2px 2px 2px 2px;
  5159. font-family:'ArialMT', 'Arial', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:11px;
  5163. letter-spacing:normal;
  5164. color:#AAAAAA;
  5165. vertical-align:none;
  5166. text-align:left;
  5167. text-transform:none;
  5168. background-color:transparent;
  5169. border-color:transparent;
  5170. }
  5171. #u126970_input.disabled {
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:123px;
  5176. height:23px;
  5177. padding:2px 2px 2px 2px;
  5178. font-family:'ArialMT', 'Arial', sans-serif;
  5179. font-weight:400;
  5180. font-style:normal;
  5181. font-size:11px;
  5182. letter-spacing:normal;
  5183. color:#AAAAAA;
  5184. vertical-align:none;
  5185. text-align:left;
  5186. text-transform:none;
  5187. background-color:transparent;
  5188. border-color:transparent;
  5189. }
  5190. #u126970_div {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:123px;
  5196. height:23px;
  5197. background:inherit;
  5198. background-color:rgba(255, 255, 255, 1);
  5199. border:none;
  5200. border-radius:0px;
  5201. -moz-box-shadow:none;
  5202. -webkit-box-shadow:none;
  5203. box-shadow:none;
  5204. font-size:11px;
  5205. color:#AAAAAA;
  5206. }
  5207. #u126970 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:358px;
  5211. top:117px;
  5212. width:123px;
  5213. height:23px;
  5214. display:flex;
  5215. font-size:11px;
  5216. color:#AAAAAA;
  5217. }
  5218. #u126970 .text {
  5219. position:absolute;
  5220. align-self:flex-start;
  5221. padding:2px 2px 2px 2px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u126970_div.disabled {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:123px;
  5231. height:23px;
  5232. background:inherit;
  5233. background-color:rgba(240, 240, 240, 1);
  5234. border:none;
  5235. border-radius:0px;
  5236. -moz-box-shadow:none;
  5237. -webkit-box-shadow:none;
  5238. box-shadow:none;
  5239. font-size:11px;
  5240. color:#AAAAAA;
  5241. }
  5242. #u126970.disabled {
  5243. }
  5244. .u126970_input_option {
  5245. font-size:11px;
  5246. }
  5247. #u126971 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:0px;
  5253. height:0px;
  5254. }
  5255. #u126972_div {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:140px;
  5261. height:30px;
  5262. background:inherit;
  5263. background-color:rgba(255, 255, 255, 1);
  5264. box-sizing:border-box;
  5265. border-width:1px;
  5266. border-style:solid;
  5267. border-color:rgba(201, 201, 201, 1);
  5268. border-radius:4px;
  5269. -moz-box-shadow:none;
  5270. -webkit-box-shadow:none;
  5271. box-shadow:none;
  5272. font-family:'Microsoft YaHei', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:14px;
  5276. color:#CCCCCC;
  5277. text-align:left;
  5278. }
  5279. #u126972 {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:1252px;
  5283. top:116px;
  5284. width:140px;
  5285. height:30px;
  5286. display:flex;
  5287. font-family:'Microsoft YaHei', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:14px;
  5291. color:#CCCCCC;
  5292. text-align:left;
  5293. }
  5294. #u126972 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:2px 8px 2px 8px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u126972_text {
  5302. border-width:0px;
  5303. word-wrap:break-word;
  5304. text-transform:none;
  5305. visibility:hidden;
  5306. }
  5307. #u126973_input {
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:127px;
  5312. height:25px;
  5313. padding:2px 2px 2px 2px;
  5314. font-family:'Microsoft YaHei', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. font-size:10px;
  5318. letter-spacing:normal;
  5319. color:#000000;
  5320. vertical-align:none;
  5321. text-align:left;
  5322. text-transform:none;
  5323. background-color:transparent;
  5324. border-color:transparent;
  5325. }
  5326. #u126973_input.disabled {
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:127px;
  5331. height:25px;
  5332. padding:2px 2px 2px 2px;
  5333. font-family:'Microsoft YaHei', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:10px;
  5337. letter-spacing:normal;
  5338. color:#000000;
  5339. vertical-align:none;
  5340. text-align:left;
  5341. text-transform:none;
  5342. background-color:transparent;
  5343. border-color:transparent;
  5344. }
  5345. #u126973_div {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:127px;
  5351. height:25px;
  5352. background:inherit;
  5353. background-color:rgba(255, 255, 255, 1);
  5354. border:none;
  5355. border-radius:0px;
  5356. -moz-box-shadow:none;
  5357. -webkit-box-shadow:none;
  5358. box-shadow:none;
  5359. font-family:'Microsoft YaHei', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:10px;
  5363. }
  5364. #u126973 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:1260px;
  5368. top:117px;
  5369. width:127px;
  5370. height:25px;
  5371. display:flex;
  5372. font-family:'Microsoft YaHei', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:10px;
  5376. }
  5377. #u126973 .text {
  5378. position:absolute;
  5379. align-self:center;
  5380. padding:2px 2px 2px 2px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u126973_div.disabled {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:127px;
  5390. height:25px;
  5391. background:inherit;
  5392. background-color:rgba(240, 240, 240, 1);
  5393. border:none;
  5394. border-radius:0px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. font-family:'Microsoft YaHei', sans-serif;
  5399. font-weight:400;
  5400. font-style:normal;
  5401. font-size:10px;
  5402. }
  5403. #u126973.disabled {
  5404. }
  5405. #u126974_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:55px;
  5411. height:30px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 1);
  5414. box-sizing:border-box;
  5415. border-width:1px;
  5416. border-style:solid;
  5417. border-color:rgba(170, 170, 170, 1);
  5418. border-radius:4px;
  5419. -moz-box-shadow:none;
  5420. -webkit-box-shadow:none;
  5421. box-shadow:none;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:12px;
  5426. color:#555555;
  5427. }
  5428. #u126974 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:352px;
  5432. top:205px;
  5433. width:55px;
  5434. height:30px;
  5435. display:flex;
  5436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5437. font-weight:400;
  5438. font-style:normal;
  5439. font-size:12px;
  5440. color:#555555;
  5441. }
  5442. #u126974 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:5px 15px 5px 15px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u126974_text {
  5450. border-width:0px;
  5451. white-space:nowrap;
  5452. text-transform:none;
  5453. }
  5454. #u126975 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:0px;
  5460. height:0px;
  5461. }
  5462. #u126976_div {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:140px;
  5468. height:30px;
  5469. background:inherit;
  5470. background-color:rgba(255, 255, 255, 1);
  5471. box-sizing:border-box;
  5472. border-width:1px;
  5473. border-style:solid;
  5474. border-color:rgba(215, 215, 215, 1);
  5475. border-radius:4px;
  5476. -moz-box-shadow:none;
  5477. -webkit-box-shadow:none;
  5478. box-shadow:none;
  5479. font-size:11px;
  5480. }
  5481. #u126976 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:802px;
  5485. top:116px;
  5486. width:140px;
  5487. height:30px;
  5488. display:flex;
  5489. font-size:11px;
  5490. }
  5491. #u126976 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:2px 2px 2px 2px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u126976_text {
  5499. border-width:0px;
  5500. word-wrap:break-word;
  5501. text-transform:none;
  5502. visibility:hidden;
  5503. }
  5504. #u126977_input {
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:123px;
  5509. height:23px;
  5510. padding:2px 2px 2px 2px;
  5511. font-family:'ArialMT', 'Arial', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:11px;
  5515. letter-spacing:normal;
  5516. color:#AAAAAA;
  5517. vertical-align:none;
  5518. text-align:left;
  5519. text-transform:none;
  5520. background-color:transparent;
  5521. border-color:transparent;
  5522. }
  5523. #u126977_input.disabled {
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:123px;
  5528. height:23px;
  5529. padding:2px 2px 2px 2px;
  5530. font-family:'ArialMT', 'Arial', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:11px;
  5534. letter-spacing:normal;
  5535. color:#AAAAAA;
  5536. vertical-align:none;
  5537. text-align:left;
  5538. text-transform:none;
  5539. background-color:transparent;
  5540. border-color:transparent;
  5541. }
  5542. #u126977_div {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:123px;
  5548. height:23px;
  5549. background:inherit;
  5550. background-color:rgba(255, 255, 255, 1);
  5551. border:none;
  5552. border-radius:0px;
  5553. -moz-box-shadow:none;
  5554. -webkit-box-shadow:none;
  5555. box-shadow:none;
  5556. font-size:11px;
  5557. color:#AAAAAA;
  5558. }
  5559. #u126977 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:808px;
  5563. top:118px;
  5564. width:123px;
  5565. height:23px;
  5566. display:flex;
  5567. font-size:11px;
  5568. color:#AAAAAA;
  5569. }
  5570. #u126977 .text {
  5571. position:absolute;
  5572. align-self:flex-start;
  5573. padding:2px 2px 2px 2px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u126977_div.disabled {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:123px;
  5583. height:23px;
  5584. background:inherit;
  5585. background-color:rgba(240, 240, 240, 1);
  5586. border:none;
  5587. border-radius:0px;
  5588. -moz-box-shadow:none;
  5589. -webkit-box-shadow:none;
  5590. box-shadow:none;
  5591. font-size:11px;
  5592. color:#AAAAAA;
  5593. }
  5594. #u126977.disabled {
  5595. }
  5596. .u126977_input_option {
  5597. font-size:11px;
  5598. }
  5599. #u126978 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:0px;
  5605. height:0px;
  5606. }
  5607. #u126979_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:140px;
  5613. height:30px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 1);
  5616. box-sizing:border-box;
  5617. border-width:1px;
  5618. border-style:solid;
  5619. border-color:rgba(215, 215, 215, 1);
  5620. border-radius:4px;
  5621. -moz-box-shadow:none;
  5622. -webkit-box-shadow:none;
  5623. box-shadow:none;
  5624. font-size:11px;
  5625. }
  5626. #u126979 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:952px;
  5630. top:116px;
  5631. width:140px;
  5632. height:30px;
  5633. display:flex;
  5634. font-size:11px;
  5635. }
  5636. #u126979 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 2px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u126979_text {
  5644. border-width:0px;
  5645. word-wrap:break-word;
  5646. text-transform:none;
  5647. visibility:hidden;
  5648. }
  5649. #u126980_input {
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:123px;
  5654. height:23px;
  5655. padding:2px 2px 2px 2px;
  5656. font-family:'ArialMT', 'Arial', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:11px;
  5660. letter-spacing:normal;
  5661. color:#AAAAAA;
  5662. vertical-align:none;
  5663. text-align:left;
  5664. text-transform:none;
  5665. background-color:transparent;
  5666. border-color:transparent;
  5667. }
  5668. #u126980_input.disabled {
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:123px;
  5673. height:23px;
  5674. padding:2px 2px 2px 2px;
  5675. font-family:'ArialMT', 'Arial', sans-serif;
  5676. font-weight:400;
  5677. font-style:normal;
  5678. font-size:11px;
  5679. letter-spacing:normal;
  5680. color:#AAAAAA;
  5681. vertical-align:none;
  5682. text-align:left;
  5683. text-transform:none;
  5684. background-color:transparent;
  5685. border-color:transparent;
  5686. }
  5687. #u126980_div {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:123px;
  5693. height:23px;
  5694. background:inherit;
  5695. background-color:rgba(255, 255, 255, 1);
  5696. border:none;
  5697. border-radius:0px;
  5698. -moz-box-shadow:none;
  5699. -webkit-box-shadow:none;
  5700. box-shadow:none;
  5701. font-size:11px;
  5702. color:#AAAAAA;
  5703. }
  5704. #u126980 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:958px;
  5708. top:118px;
  5709. width:123px;
  5710. height:23px;
  5711. display:flex;
  5712. font-size:11px;
  5713. color:#AAAAAA;
  5714. }
  5715. #u126980 .text {
  5716. position:absolute;
  5717. align-self:flex-start;
  5718. padding:2px 2px 2px 2px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u126980_div.disabled {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:123px;
  5728. height:23px;
  5729. background:inherit;
  5730. background-color:rgba(240, 240, 240, 1);
  5731. border:none;
  5732. border-radius:0px;
  5733. -moz-box-shadow:none;
  5734. -webkit-box-shadow:none;
  5735. box-shadow:none;
  5736. font-size:11px;
  5737. color:#AAAAAA;
  5738. }
  5739. #u126980.disabled {
  5740. }
  5741. .u126980_input_option {
  5742. font-size:11px;
  5743. }
  5744. #u126982 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:0px;
  5750. height:0px;
  5751. }
  5752. #u126983_img {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:200px;
  5758. height:1191px;
  5759. }
  5760. #u126983 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:120px;
  5764. top:50px;
  5765. width:200px;
  5766. height:1191px;
  5767. display:flex;
  5768. }
  5769. #u126983 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 2px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u126983_text {
  5777. border-width:0px;
  5778. word-wrap:break-word;
  5779. text-transform:none;
  5780. visibility:hidden;
  5781. }
  5782. #u126984_div {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:200px;
  5788. height:60px;
  5789. background:inherit;
  5790. background-color:rgba(224, 231, 247, 1);
  5791. border:none;
  5792. border-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5797. font-weight:500;
  5798. font-style:normal;
  5799. font-size:18px;
  5800. }
  5801. #u126984 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:120px;
  5805. top:50px;
  5806. width:200px;
  5807. height:60px;
  5808. display:flex;
  5809. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5810. font-weight:500;
  5811. font-style:normal;
  5812. font-size:18px;
  5813. }
  5814. #u126984 .text {
  5815. position:absolute;
  5816. align-self:center;
  5817. padding:0px 0px 0px 20px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u126984_text {
  5822. border-width:0px;
  5823. word-wrap:break-word;
  5824. text-transform:none;
  5825. }
  5826. #u126985 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:120px;
  5830. top:130px;
  5831. width:200px;
  5832. height:1078px;
  5833. }
  5834. #u126985_state0 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:200px;
  5840. height:1078px;
  5841. overflow:auto;
  5842. -webkit-overflow-scrolling:touch;
  5843. -ms-overflow-x:hidden;
  5844. overflow-x:hidden;
  5845. background-image:none;
  5846. border:none;
  5847. border-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. }
  5852. #u126985_state0_content {
  5853. border-width:0px;
  5854. position:absolute;
  5855. left:0px;
  5856. top:0px;
  5857. width:1px;
  5858. height:1px;
  5859. }
  5860. #u126986_div {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:97px;
  5866. height:22px;
  5867. background:inherit;
  5868. background-color:rgba(255, 255, 255, 0);
  5869. border:none;
  5870. border-radius:0px;
  5871. -moz-box-shadow:none;
  5872. -webkit-box-shadow:none;
  5873. box-shadow:none;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:16px;
  5878. }
  5879. #u126986 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:30px;
  5883. top:0px;
  5884. width:97px;
  5885. height:22px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:16px;
  5891. }
  5892. #u126986 .text {
  5893. position:absolute;
  5894. align-self:flex-start;
  5895. padding:0px 0px 0px 0px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u126986_text {
  5900. border-width:0px;
  5901. word-wrap:break-word;
  5902. text-transform:none;
  5903. }
  5904. #u126987_div {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:0px;
  5908. top:0px;
  5909. width:65px;
  5910. height:22px;
  5911. background:inherit;
  5912. background-color:rgba(255, 255, 255, 0);
  5913. border:none;
  5914. border-radius:0px;
  5915. -moz-box-shadow:none;
  5916. -webkit-box-shadow:none;
  5917. box-shadow:none;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:16px;
  5922. }
  5923. #u126987 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:30px;
  5927. top:42px;
  5928. width:65px;
  5929. height:22px;
  5930. display:flex;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:16px;
  5935. }
  5936. #u126987 .text {
  5937. position:absolute;
  5938. align-self:flex-start;
  5939. padding:0px 0px 0px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u126987_text {
  5944. border-width:0px;
  5945. white-space:nowrap;
  5946. text-transform:none;
  5947. }
  5948. #u126988_div {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:49px;
  5954. height:22px;
  5955. background:inherit;
  5956. background-color:rgba(255, 255, 255, 0);
  5957. border:none;
  5958. border-radius:0px;
  5959. -moz-box-shadow:none;
  5960. -webkit-box-shadow:none;
  5961. box-shadow:none;
  5962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:16px;
  5966. }
  5967. #u126988 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:30px;
  5971. top:145px;
  5972. width:49px;
  5973. height:22px;
  5974. display:flex;
  5975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5976. font-weight:400;
  5977. font-style:normal;
  5978. font-size:16px;
  5979. }
  5980. #u126988 .text {
  5981. position:absolute;
  5982. align-self:flex-start;
  5983. padding:0px 0px 0px 0px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u126988_text {
  5988. border-width:0px;
  5989. white-space:nowrap;
  5990. text-transform:none;
  5991. }
  5992. #u126989_div {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:97px;
  5998. height:22px;
  5999. background:inherit;
  6000. background-color:rgba(255, 255, 255, 0);
  6001. border:none;
  6002. border-radius:0px;
  6003. -moz-box-shadow:none;
  6004. -webkit-box-shadow:none;
  6005. box-shadow:none;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:16px;
  6010. }
  6011. #u126989 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:30px;
  6015. top:187px;
  6016. width:97px;
  6017. height:22px;
  6018. display:flex;
  6019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:16px;
  6023. }
  6024. #u126989 .text {
  6025. position:absolute;
  6026. align-self:flex-start;
  6027. padding:0px 0px 0px 0px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u126989_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. }
  6036. #u126990_img {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:201px;
  6042. height:2px;
  6043. }
  6044. #u126990 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:84px;
  6049. width:200px;
  6050. height:1px;
  6051. display:flex;
  6052. }
  6053. #u126990 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:2px 2px 2px 2px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u126990_text {
  6061. border-width:0px;
  6062. word-wrap:break-word;
  6063. text-transform:none;
  6064. visibility:hidden;
  6065. }
  6066. #u126991_div {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:49px;
  6072. height:17px;
  6073. background:inherit;
  6074. background-color:rgba(255, 255, 255, 0);
  6075. border:none;
  6076. border-radius:0px;
  6077. -moz-box-shadow:none;
  6078. -webkit-box-shadow:none;
  6079. box-shadow:none;
  6080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:12px;
  6084. color:#AAAAAA;
  6085. }
  6086. #u126991 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:30px;
  6090. top:105px;
  6091. width:49px;
  6092. height:17px;
  6093. display:flex;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:12px;
  6098. color:#AAAAAA;
  6099. }
  6100. #u126991 .text {
  6101. position:absolute;
  6102. align-self:flex-start;
  6103. padding:0px 0px 0px 0px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u126991_text {
  6108. border-width:0px;
  6109. white-space:nowrap;
  6110. text-transform:none;
  6111. }
  6112. #u126992_div {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:97px;
  6118. height:22px;
  6119. background:inherit;
  6120. background-color:rgba(255, 255, 255, 0);
  6121. border:none;
  6122. border-radius:0px;
  6123. -moz-box-shadow:none;
  6124. -webkit-box-shadow:none;
  6125. box-shadow:none;
  6126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6127. font-weight:400;
  6128. font-style:normal;
  6129. font-size:16px;
  6130. }
  6131. #u126992 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:30px;
  6135. top:229px;
  6136. width:97px;
  6137. height:22px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:16px;
  6143. }
  6144. #u126992 .text {
  6145. position:absolute;
  6146. align-self:flex-start;
  6147. padding:0px 0px 0px 0px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u126992_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. }
  6156. #u126993_div {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:65px;
  6162. height:22px;
  6163. background:inherit;
  6164. background-color:rgba(255, 255, 255, 0);
  6165. border:none;
  6166. border-radius:0px;
  6167. -moz-box-shadow:none;
  6168. -webkit-box-shadow:none;
  6169. box-shadow:none;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:16px;
  6174. }
  6175. #u126993 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:30px;
  6179. top:271px;
  6180. width:65px;
  6181. height:22px;
  6182. display:flex;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:16px;
  6187. }
  6188. #u126993 .text {
  6189. position:absolute;
  6190. align-self:flex-start;
  6191. padding:0px 0px 0px 0px;
  6192. box-sizing:border-box;
  6193. width:100%;
  6194. }
  6195. #u126993_text {
  6196. border-width:0px;
  6197. white-space:nowrap;
  6198. text-transform:none;
  6199. }
  6200. #u126994_img {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:201px;
  6206. height:2px;
  6207. }
  6208. #u126994 {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:313px;
  6213. width:200px;
  6214. height:1px;
  6215. display:flex;
  6216. }
  6217. #u126994 .text {
  6218. position:absolute;
  6219. align-self:center;
  6220. padding:2px 2px 2px 2px;
  6221. box-sizing:border-box;
  6222. width:100%;
  6223. }
  6224. #u126994_text {
  6225. border-width:0px;
  6226. word-wrap:break-word;
  6227. text-transform:none;
  6228. visibility:hidden;
  6229. }
  6230. #u126995_div {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:65px;
  6236. height:22px;
  6237. background:inherit;
  6238. background-color:rgba(255, 255, 255, 0);
  6239. border:none;
  6240. border-radius:0px;
  6241. -moz-box-shadow:none;
  6242. -webkit-box-shadow:none;
  6243. box-shadow:none;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:16px;
  6248. }
  6249. #u126995 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:30px;
  6253. top:370px;
  6254. width:65px;
  6255. height:22px;
  6256. display:flex;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:16px;
  6261. }
  6262. #u126995 .text {
  6263. position:absolute;
  6264. align-self:flex-start;
  6265. padding:0px 0px 0px 0px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u126995_text {
  6270. border-width:0px;
  6271. white-space:nowrap;
  6272. text-transform:none;
  6273. }
  6274. #u126996_div {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:49px;
  6280. height:17px;
  6281. background:inherit;
  6282. background-color:rgba(255, 255, 255, 0);
  6283. border:none;
  6284. border-radius:0px;
  6285. -moz-box-shadow:none;
  6286. -webkit-box-shadow:none;
  6287. box-shadow:none;
  6288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6289. font-weight:400;
  6290. font-style:normal;
  6291. font-size:12px;
  6292. color:#AAAAAA;
  6293. }
  6294. #u126996 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:30px;
  6298. top:334px;
  6299. width:49px;
  6300. height:17px;
  6301. display:flex;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:12px;
  6306. color:#AAAAAA;
  6307. }
  6308. #u126996 .text {
  6309. position:absolute;
  6310. align-self:flex-start;
  6311. padding:0px 0px 0px 0px;
  6312. box-sizing:border-box;
  6313. width:100%;
  6314. }
  6315. #u126996_text {
  6316. border-width:0px;
  6317. white-space:nowrap;
  6318. text-transform:none;
  6319. }
  6320. #u126997_div {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:0px;
  6324. top:0px;
  6325. width:65px;
  6326. height:22px;
  6327. background:inherit;
  6328. background-color:rgba(255, 255, 255, 0);
  6329. border:none;
  6330. border-radius:0px;
  6331. -moz-box-shadow:none;
  6332. -webkit-box-shadow:none;
  6333. box-shadow:none;
  6334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:16px;
  6338. }
  6339. #u126997 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:30px;
  6343. top:412px;
  6344. width:65px;
  6345. height:22px;
  6346. display:flex;
  6347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:16px;
  6351. }
  6352. #u126997 .text {
  6353. position:absolute;
  6354. align-self:flex-start;
  6355. padding:0px 0px 0px 0px;
  6356. box-sizing:border-box;
  6357. width:100%;
  6358. }
  6359. #u126997_text {
  6360. border-width:0px;
  6361. white-space:nowrap;
  6362. text-transform:none;
  6363. }
  6364. #u126998_div {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:65px;
  6370. height:22px;
  6371. background:inherit;
  6372. background-color:rgba(255, 255, 255, 0);
  6373. border:none;
  6374. border-radius:0px;
  6375. -moz-box-shadow:none;
  6376. -webkit-box-shadow:none;
  6377. box-shadow:none;
  6378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6379. font-weight:400;
  6380. font-style:normal;
  6381. font-size:16px;
  6382. }
  6383. #u126998 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:30px;
  6387. top:454px;
  6388. width:65px;
  6389. height:22px;
  6390. display:flex;
  6391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:16px;
  6395. }
  6396. #u126998 .text {
  6397. position:absolute;
  6398. align-self:flex-start;
  6399. padding:0px 0px 0px 0px;
  6400. box-sizing:border-box;
  6401. width:100%;
  6402. }
  6403. #u126998_text {
  6404. border-width:0px;
  6405. white-space:nowrap;
  6406. text-transform:none;
  6407. }
  6408. #u126999_div {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:65px;
  6414. height:22px;
  6415. background:inherit;
  6416. background-color:rgba(255, 255, 255, 0);
  6417. border:none;
  6418. border-radius:0px;
  6419. -moz-box-shadow:none;
  6420. -webkit-box-shadow:none;
  6421. box-shadow:none;
  6422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:16px;
  6426. }
  6427. #u126999 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:30px;
  6431. top:496px;
  6432. width:65px;
  6433. height:22px;
  6434. display:flex;
  6435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. font-size:16px;
  6439. }
  6440. #u126999 .text {
  6441. position:absolute;
  6442. align-self:flex-start;
  6443. padding:0px 0px 0px 0px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u126999_text {
  6448. border-width:0px;
  6449. white-space:nowrap;
  6450. text-transform:none;
  6451. }
  6452. #u127000_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:65px;
  6458. height:22px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 0);
  6461. border:none;
  6462. border-radius:0px;
  6463. -moz-box-shadow:none;
  6464. -webkit-box-shadow:none;
  6465. box-shadow:none;
  6466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:16px;
  6470. }
  6471. #u127000 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:30px;
  6475. top:538px;
  6476. width:65px;
  6477. height:22px;
  6478. display:flex;
  6479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6480. font-weight:400;
  6481. font-style:normal;
  6482. font-size:16px;
  6483. }
  6484. #u127000 .text {
  6485. position:absolute;
  6486. align-self:flex-start;
  6487. padding:0px 0px 0px 0px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u127000_text {
  6492. border-width:0px;
  6493. white-space:nowrap;
  6494. text-transform:none;
  6495. }
  6496. #u127001_div {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:65px;
  6502. height:22px;
  6503. background:inherit;
  6504. background-color:rgba(255, 255, 255, 0);
  6505. border:none;
  6506. border-radius:0px;
  6507. -moz-box-shadow:none;
  6508. -webkit-box-shadow:none;
  6509. box-shadow:none;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:16px;
  6514. }
  6515. #u127001 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:30px;
  6519. top:580px;
  6520. width:65px;
  6521. height:22px;
  6522. display:flex;
  6523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:16px;
  6527. }
  6528. #u127001 .text {
  6529. position:absolute;
  6530. align-self:flex-start;
  6531. padding:0px 0px 0px 0px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u127001_text {
  6536. border-width:0px;
  6537. white-space:nowrap;
  6538. text-transform:none;
  6539. }
  6540. #u127002_img {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:201px;
  6546. height:2px;
  6547. }
  6548. #u127002 {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:1209px;
  6553. width:200px;
  6554. height:1px;
  6555. display:flex;
  6556. }
  6557. #u127002 .text {
  6558. position:absolute;
  6559. align-self:center;
  6560. padding:2px 2px 2px 2px;
  6561. box-sizing:border-box;
  6562. width:100%;
  6563. }
  6564. #u127002_text {
  6565. border-width:0px;
  6566. word-wrap:break-word;
  6567. text-transform:none;
  6568. visibility:hidden;
  6569. }
  6570. #u127003_div {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:65px;
  6576. height:22px;
  6577. background:inherit;
  6578. background-color:rgba(255, 255, 255, 0);
  6579. border:none;
  6580. border-radius:0px;
  6581. -moz-box-shadow:none;
  6582. -webkit-box-shadow:none;
  6583. box-shadow:none;
  6584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. font-size:16px;
  6588. }
  6589. #u127003 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:30px;
  6593. top:1266px;
  6594. width:65px;
  6595. height:22px;
  6596. display:flex;
  6597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6598. font-weight:400;
  6599. font-style:normal;
  6600. font-size:16px;
  6601. }
  6602. #u127003 .text {
  6603. position:absolute;
  6604. align-self:flex-start;
  6605. padding:0px 0px 0px 0px;
  6606. box-sizing:border-box;
  6607. width:100%;
  6608. }
  6609. #u127003_text {
  6610. border-width:0px;
  6611. white-space:nowrap;
  6612. text-transform:none;
  6613. }
  6614. #u127004_div {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:49px;
  6620. height:17px;
  6621. background:inherit;
  6622. background-color:rgba(255, 255, 255, 0);
  6623. border:none;
  6624. border-radius:0px;
  6625. -moz-box-shadow:none;
  6626. -webkit-box-shadow:none;
  6627. box-shadow:none;
  6628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:12px;
  6632. color:#AAAAAA;
  6633. }
  6634. #u127004 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:30px;
  6638. top:1230px;
  6639. width:49px;
  6640. height:17px;
  6641. display:flex;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:12px;
  6646. color:#AAAAAA;
  6647. }
  6648. #u127004 .text {
  6649. position:absolute;
  6650. align-self:flex-start;
  6651. padding:0px 0px 0px 0px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u127004_text {
  6656. border-width:0px;
  6657. white-space:nowrap;
  6658. text-transform:none;
  6659. }
  6660. #u127005_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:65px;
  6666. height:22px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 0);
  6669. border:none;
  6670. border-radius:0px;
  6671. -moz-box-shadow:none;
  6672. -webkit-box-shadow:none;
  6673. box-shadow:none;
  6674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:16px;
  6678. }
  6679. #u127005 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:30px;
  6683. top:1308px;
  6684. width:65px;
  6685. height:22px;
  6686. display:flex;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:16px;
  6691. }
  6692. #u127005 .text {
  6693. position:absolute;
  6694. align-self:flex-start;
  6695. padding:0px 0px 0px 0px;
  6696. box-sizing:border-box;
  6697. width:100%;
  6698. }
  6699. #u127005_text {
  6700. border-width:0px;
  6701. white-space:nowrap;
  6702. text-transform:none;
  6703. }
  6704. #u127006_div {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:65px;
  6710. height:22px;
  6711. background:inherit;
  6712. background-color:rgba(255, 255, 255, 0);
  6713. border:none;
  6714. border-radius:0px;
  6715. -moz-box-shadow:none;
  6716. -webkit-box-shadow:none;
  6717. box-shadow:none;
  6718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6719. font-weight:400;
  6720. font-style:normal;
  6721. font-size:16px;
  6722. }
  6723. #u127006 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:30px;
  6727. top:1392px;
  6728. width:65px;
  6729. height:22px;
  6730. display:flex;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:16px;
  6735. }
  6736. #u127006 .text {
  6737. position:absolute;
  6738. align-self:flex-start;
  6739. padding:0px 0px 0px 0px;
  6740. box-sizing:border-box;
  6741. width:100%;
  6742. }
  6743. #u127006_text {
  6744. border-width:0px;
  6745. white-space:nowrap;
  6746. text-transform:none;
  6747. }
  6748. #u127007_img {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:201px;
  6754. height:2px;
  6755. }
  6756. #u127007 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:1434px;
  6761. width:200px;
  6762. height:1px;
  6763. display:flex;
  6764. }
  6765. #u127007 .text {
  6766. position:absolute;
  6767. align-self:center;
  6768. padding:2px 2px 2px 2px;
  6769. box-sizing:border-box;
  6770. width:100%;
  6771. }
  6772. #u127007_text {
  6773. border-width:0px;
  6774. word-wrap:break-word;
  6775. text-transform:none;
  6776. visibility:hidden;
  6777. }
  6778. #u127008_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:49px;
  6784. height:22px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 0);
  6787. border:none;
  6788. border-radius:0px;
  6789. -moz-box-shadow:none;
  6790. -webkit-box-shadow:none;
  6791. box-shadow:none;
  6792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:16px;
  6796. }
  6797. #u127008 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:30px;
  6801. top:1491px;
  6802. width:49px;
  6803. height:22px;
  6804. display:flex;
  6805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:16px;
  6809. }
  6810. #u127008 .text {
  6811. position:absolute;
  6812. align-self:flex-start;
  6813. padding:0px 0px 0px 0px;
  6814. box-sizing:border-box;
  6815. width:100%;
  6816. }
  6817. #u127008_text {
  6818. border-width:0px;
  6819. white-space:nowrap;
  6820. text-transform:none;
  6821. }
  6822. #u127009_div {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:49px;
  6828. height:17px;
  6829. background:inherit;
  6830. background-color:rgba(255, 255, 255, 0);
  6831. border:none;
  6832. border-radius:0px;
  6833. -moz-box-shadow:none;
  6834. -webkit-box-shadow:none;
  6835. box-shadow:none;
  6836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6837. font-weight:400;
  6838. font-style:normal;
  6839. font-size:12px;
  6840. color:#AAAAAA;
  6841. }
  6842. #u127009 {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:30px;
  6846. top:1455px;
  6847. width:49px;
  6848. height:17px;
  6849. display:flex;
  6850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6851. font-weight:400;
  6852. font-style:normal;
  6853. font-size:12px;
  6854. color:#AAAAAA;
  6855. }
  6856. #u127009 .text {
  6857. position:absolute;
  6858. align-self:flex-start;
  6859. padding:0px 0px 0px 0px;
  6860. box-sizing:border-box;
  6861. width:100%;
  6862. }
  6863. #u127009_text {
  6864. border-width:0px;
  6865. white-space:nowrap;
  6866. text-transform:none;
  6867. }
  6868. #u127010_div {
  6869. border-width:0px;
  6870. position:absolute;
  6871. left:0px;
  6872. top:0px;
  6873. width:49px;
  6874. height:22px;
  6875. background:inherit;
  6876. background-color:rgba(255, 255, 255, 0);
  6877. border:none;
  6878. border-radius:0px;
  6879. -moz-box-shadow:none;
  6880. -webkit-box-shadow:none;
  6881. box-shadow:none;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:16px;
  6886. }
  6887. #u127010 {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:30px;
  6891. top:1533px;
  6892. width:49px;
  6893. height:22px;
  6894. display:flex;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:16px;
  6899. }
  6900. #u127010 .text {
  6901. position:absolute;
  6902. align-self:flex-start;
  6903. padding:0px 0px 0px 0px;
  6904. box-sizing:border-box;
  6905. width:100%;
  6906. }
  6907. #u127010_text {
  6908. border-width:0px;
  6909. white-space:nowrap;
  6910. text-transform:none;
  6911. }
  6912. #u127011_div {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:0px;
  6916. top:0px;
  6917. width:65px;
  6918. height:22px;
  6919. background:inherit;
  6920. background-color:rgba(255, 255, 255, 0);
  6921. border:none;
  6922. border-radius:0px;
  6923. -moz-box-shadow:none;
  6924. -webkit-box-shadow:none;
  6925. box-shadow:none;
  6926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:16px;
  6930. }
  6931. #u127011 {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:30px;
  6935. top:1575px;
  6936. width:65px;
  6937. height:22px;
  6938. display:flex;
  6939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:16px;
  6943. }
  6944. #u127011 .text {
  6945. position:absolute;
  6946. align-self:flex-start;
  6947. padding:0px 0px 0px 0px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u127011_text {
  6952. border-width:0px;
  6953. white-space:nowrap;
  6954. text-transform:none;
  6955. }
  6956. #u127012_img {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:201px;
  6962. height:2px;
  6963. }
  6964. #u127012 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:1617px;
  6969. width:200px;
  6970. height:1px;
  6971. display:flex;
  6972. }
  6973. #u127012 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:2px 2px 2px 2px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u127012_text {
  6981. border-width:0px;
  6982. word-wrap:break-word;
  6983. text-transform:none;
  6984. visibility:hidden;
  6985. }
  6986. #u127013_div {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:0px;
  6990. top:0px;
  6991. width:81px;
  6992. height:22px;
  6993. background:inherit;
  6994. background-color:rgba(255, 255, 255, 0);
  6995. border:none;
  6996. border-radius:0px;
  6997. -moz-box-shadow:none;
  6998. -webkit-box-shadow:none;
  6999. box-shadow:none;
  7000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:16px;
  7004. }
  7005. #u127013 {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:30px;
  7009. top:1674px;
  7010. width:81px;
  7011. height:22px;
  7012. display:flex;
  7013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:16px;
  7017. }
  7018. #u127013 .text {
  7019. position:absolute;
  7020. align-self:flex-start;
  7021. padding:0px 0px 0px 0px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u127013_text {
  7026. border-width:0px;
  7027. white-space:nowrap;
  7028. text-transform:none;
  7029. }
  7030. #u127014_div {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:49px;
  7036. height:17px;
  7037. background:inherit;
  7038. background-color:rgba(255, 255, 255, 0);
  7039. border:none;
  7040. border-radius:0px;
  7041. -moz-box-shadow:none;
  7042. -webkit-box-shadow:none;
  7043. box-shadow:none;
  7044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:12px;
  7048. color:#AAAAAA;
  7049. }
  7050. #u127014 {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:30px;
  7054. top:1638px;
  7055. width:49px;
  7056. height:17px;
  7057. display:flex;
  7058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:12px;
  7062. color:#AAAAAA;
  7063. }
  7064. #u127014 .text {
  7065. position:absolute;
  7066. align-self:flex-start;
  7067. padding:0px 0px 0px 0px;
  7068. box-sizing:border-box;
  7069. width:100%;
  7070. }
  7071. #u127014_text {
  7072. border-width:0px;
  7073. white-space:nowrap;
  7074. text-transform:none;
  7075. }
  7076. #u127015_div {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:81px;
  7082. height:22px;
  7083. background:inherit;
  7084. background-color:rgba(255, 255, 255, 0);
  7085. border:none;
  7086. border-radius:0px;
  7087. -moz-box-shadow:none;
  7088. -webkit-box-shadow:none;
  7089. box-shadow:none;
  7090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7091. font-weight:400;
  7092. font-style:normal;
  7093. font-size:16px;
  7094. }
  7095. #u127015 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:30px;
  7099. top:1716px;
  7100. width:81px;
  7101. height:22px;
  7102. display:flex;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:16px;
  7107. }
  7108. #u127015 .text {
  7109. position:absolute;
  7110. align-self:flex-start;
  7111. padding:0px 0px 0px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u127015_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u127016_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:81px;
  7126. height:22px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 0);
  7129. border:none;
  7130. border-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:16px;
  7138. }
  7139. #u127016 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:30px;
  7143. top:1758px;
  7144. width:81px;
  7145. height:22px;
  7146. display:flex;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:16px;
  7151. }
  7152. #u127016 .text {
  7153. position:absolute;
  7154. align-self:flex-start;
  7155. padding:0px 0px 0px 0px;
  7156. box-sizing:border-box;
  7157. width:100%;
  7158. }
  7159. #u127016_text {
  7160. border-width:0px;
  7161. white-space:nowrap;
  7162. text-transform:none;
  7163. }
  7164. #u127017_div {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:65px;
  7170. height:22px;
  7171. background:inherit;
  7172. background-color:rgba(255, 255, 255, 0);
  7173. border:none;
  7174. border-radius:0px;
  7175. -moz-box-shadow:none;
  7176. -webkit-box-shadow:none;
  7177. box-shadow:none;
  7178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. font-size:16px;
  7182. }
  7183. #u127017 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:30px;
  7187. top:1350px;
  7188. width:65px;
  7189. height:22px;
  7190. display:flex;
  7191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:16px;
  7195. }
  7196. #u127017 .text {
  7197. position:absolute;
  7198. align-self:flex-start;
  7199. padding:0px 0px 0px 0px;
  7200. box-sizing:border-box;
  7201. width:100%;
  7202. }
  7203. #u127017_text {
  7204. border-width:0px;
  7205. white-space:nowrap;
  7206. text-transform:none;
  7207. }
  7208. #u127018_img {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:201px;
  7214. height:2px;
  7215. }
  7216. #u127018 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:629px;
  7221. width:200px;
  7222. height:1px;
  7223. display:flex;
  7224. }
  7225. #u127018 .text {
  7226. position:absolute;
  7227. align-self:center;
  7228. padding:2px 2px 2px 2px;
  7229. box-sizing:border-box;
  7230. width:100%;
  7231. }
  7232. #u127018_text {
  7233. border-width:0px;
  7234. word-wrap:break-word;
  7235. text-transform:none;
  7236. visibility:hidden;
  7237. }
  7238. #u127019_div {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:0px;
  7242. top:0px;
  7243. width:65px;
  7244. height:22px;
  7245. background:inherit;
  7246. background-color:rgba(255, 255, 255, 0);
  7247. border:none;
  7248. border-radius:0px;
  7249. -moz-box-shadow:none;
  7250. -webkit-box-shadow:none;
  7251. box-shadow:none;
  7252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:16px;
  7256. }
  7257. #u127019 {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:30px;
  7261. top:686px;
  7262. width:65px;
  7263. height:22px;
  7264. display:flex;
  7265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7266. font-weight:400;
  7267. font-style:normal;
  7268. font-size:16px;
  7269. }
  7270. #u127019 .text {
  7271. position:absolute;
  7272. align-self:flex-start;
  7273. padding:0px 0px 0px 0px;
  7274. box-sizing:border-box;
  7275. width:100%;
  7276. }
  7277. #u127019_text {
  7278. border-width:0px;
  7279. white-space:nowrap;
  7280. text-transform:none;
  7281. }
  7282. #u127020_div {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:0px;
  7287. width:49px;
  7288. height:17px;
  7289. background:inherit;
  7290. background-color:rgba(255, 255, 255, 0);
  7291. border:none;
  7292. border-radius:0px;
  7293. -moz-box-shadow:none;
  7294. -webkit-box-shadow:none;
  7295. box-shadow:none;
  7296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7297. font-weight:400;
  7298. font-style:normal;
  7299. font-size:12px;
  7300. color:#AAAAAA;
  7301. }
  7302. #u127020 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:30px;
  7306. top:650px;
  7307. width:49px;
  7308. height:17px;
  7309. display:flex;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:#AAAAAA;
  7315. }
  7316. #u127020 .text {
  7317. position:absolute;
  7318. align-self:flex-start;
  7319. padding:0px 0px 0px 0px;
  7320. box-sizing:border-box;
  7321. width:100%;
  7322. }
  7323. #u127020_text {
  7324. border-width:0px;
  7325. white-space:nowrap;
  7326. text-transform:none;
  7327. }
  7328. #u127021_div {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:65px;
  7334. height:22px;
  7335. background:inherit;
  7336. background-color:rgba(255, 255, 255, 0);
  7337. border:none;
  7338. border-radius:0px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:16px;
  7346. }
  7347. #u127021 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:30px;
  7351. top:728px;
  7352. width:65px;
  7353. height:22px;
  7354. display:flex;
  7355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7356. font-weight:400;
  7357. font-style:normal;
  7358. font-size:16px;
  7359. }
  7360. #u127021 .text {
  7361. position:absolute;
  7362. align-self:flex-start;
  7363. padding:0px 0px 0px 0px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u127021_text {
  7368. border-width:0px;
  7369. white-space:nowrap;
  7370. text-transform:none;
  7371. }
  7372. #u127022_div {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:65px;
  7378. height:22px;
  7379. background:inherit;
  7380. background-color:rgba(255, 255, 255, 0);
  7381. border:none;
  7382. border-radius:0px;
  7383. -moz-box-shadow:none;
  7384. -webkit-box-shadow:none;
  7385. box-shadow:none;
  7386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. font-size:16px;
  7390. }
  7391. #u127022 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:30px;
  7395. top:812px;
  7396. width:65px;
  7397. height:22px;
  7398. display:flex;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:16px;
  7403. }
  7404. #u127022 .text {
  7405. position:absolute;
  7406. align-self:flex-start;
  7407. padding:0px 0px 0px 0px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u127022_text {
  7412. border-width:0px;
  7413. white-space:nowrap;
  7414. text-transform:none;
  7415. }
  7416. #u127023_div {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:65px;
  7422. height:22px;
  7423. background:inherit;
  7424. background-color:rgba(255, 255, 255, 0);
  7425. border:none;
  7426. border-radius:0px;
  7427. -moz-box-shadow:none;
  7428. -webkit-box-shadow:none;
  7429. box-shadow:none;
  7430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7431. font-weight:400;
  7432. font-style:normal;
  7433. font-size:16px;
  7434. }
  7435. #u127023 {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:30px;
  7439. top:770px;
  7440. width:65px;
  7441. height:22px;
  7442. display:flex;
  7443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7444. font-weight:400;
  7445. font-style:normal;
  7446. font-size:16px;
  7447. }
  7448. #u127023 .text {
  7449. position:absolute;
  7450. align-self:flex-start;
  7451. padding:0px 0px 0px 0px;
  7452. box-sizing:border-box;
  7453. width:100%;
  7454. }
  7455. #u127023_text {
  7456. border-width:0px;
  7457. white-space:nowrap;
  7458. text-transform:none;
  7459. }
  7460. #u127024_div {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:65px;
  7466. height:22px;
  7467. background:inherit;
  7468. background-color:rgba(255, 255, 255, 0);
  7469. border:none;
  7470. border-radius:0px;
  7471. -moz-box-shadow:none;
  7472. -webkit-box-shadow:none;
  7473. box-shadow:none;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:16px;
  7478. }
  7479. #u127024 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:30px;
  7483. top:854px;
  7484. width:65px;
  7485. height:22px;
  7486. display:flex;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:16px;
  7491. }
  7492. #u127024 .text {
  7493. position:absolute;
  7494. align-self:flex-start;
  7495. padding:0px 0px 0px 0px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u127024_text {
  7500. border-width:0px;
  7501. white-space:nowrap;
  7502. text-transform:none;
  7503. }
  7504. #u127025_div {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:65px;
  7510. height:22px;
  7511. background:inherit;
  7512. background-color:rgba(255, 255, 255, 0);
  7513. border:none;
  7514. border-radius:0px;
  7515. -moz-box-shadow:none;
  7516. -webkit-box-shadow:none;
  7517. box-shadow:none;
  7518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:16px;
  7522. }
  7523. #u127025 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:30px;
  7527. top:896px;
  7528. width:65px;
  7529. height:22px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:16px;
  7535. }
  7536. #u127025 .text {
  7537. position:absolute;
  7538. align-self:flex-start;
  7539. padding:0px 0px 0px 0px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u127025_text {
  7544. border-width:0px;
  7545. white-space:nowrap;
  7546. text-transform:none;
  7547. }
  7548. #u127026_img {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:0px;
  7552. top:0px;
  7553. width:201px;
  7554. height:2px;
  7555. }
  7556. #u127026 {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:938px;
  7561. width:200px;
  7562. height:1px;
  7563. display:flex;
  7564. }
  7565. #u127026 .text {
  7566. position:absolute;
  7567. align-self:center;
  7568. padding:2px 2px 2px 2px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u127026_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. visibility:hidden;
  7577. }
  7578. #u127027_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:65px;
  7584. height:22px;
  7585. background:inherit;
  7586. background-color:rgba(255, 255, 255, 0);
  7587. border:none;
  7588. border-radius:0px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:16px;
  7596. }
  7597. #u127027 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:30px;
  7601. top:995px;
  7602. width:65px;
  7603. height:22px;
  7604. display:flex;
  7605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:16px;
  7609. }
  7610. #u127027 .text {
  7611. position:absolute;
  7612. align-self:flex-start;
  7613. padding:0px 0px 0px 0px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u127027_text {
  7618. border-width:0px;
  7619. white-space:nowrap;
  7620. text-transform:none;
  7621. }
  7622. #u127028_div {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:49px;
  7628. height:17px;
  7629. background:inherit;
  7630. background-color:rgba(255, 255, 255, 0);
  7631. border:none;
  7632. border-radius:0px;
  7633. -moz-box-shadow:none;
  7634. -webkit-box-shadow:none;
  7635. box-shadow:none;
  7636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7637. font-weight:400;
  7638. font-style:normal;
  7639. font-size:12px;
  7640. color:#AAAAAA;
  7641. }
  7642. #u127028 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:30px;
  7646. top:959px;
  7647. width:49px;
  7648. height:17px;
  7649. display:flex;
  7650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:12px;
  7654. color:#AAAAAA;
  7655. }
  7656. #u127028 .text {
  7657. position:absolute;
  7658. align-self:flex-start;
  7659. padding:0px 0px 0px 0px;
  7660. box-sizing:border-box;
  7661. width:100%;
  7662. }
  7663. #u127028_text {
  7664. border-width:0px;
  7665. white-space:nowrap;
  7666. text-transform:none;
  7667. }
  7668. #u127029_div {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:65px;
  7674. height:22px;
  7675. background:inherit;
  7676. background-color:rgba(255, 255, 255, 0);
  7677. border:none;
  7678. border-radius:0px;
  7679. -moz-box-shadow:none;
  7680. -webkit-box-shadow:none;
  7681. box-shadow:none;
  7682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7683. font-weight:400;
  7684. font-style:normal;
  7685. font-size:16px;
  7686. }
  7687. #u127029 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:30px;
  7691. top:1037px;
  7692. width:65px;
  7693. height:22px;
  7694. display:flex;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:16px;
  7699. }
  7700. #u127029 .text {
  7701. position:absolute;
  7702. align-self:flex-start;
  7703. padding:0px 0px 0px 0px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u127029_text {
  7708. border-width:0px;
  7709. white-space:nowrap;
  7710. text-transform:none;
  7711. }
  7712. #u127030_div {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:65px;
  7718. height:22px;
  7719. background:inherit;
  7720. background-color:rgba(255, 255, 255, 0);
  7721. border:none;
  7722. border-radius:0px;
  7723. -moz-box-shadow:none;
  7724. -webkit-box-shadow:none;
  7725. box-shadow:none;
  7726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7727. font-weight:400;
  7728. font-style:normal;
  7729. font-size:16px;
  7730. }
  7731. #u127030 {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:30px;
  7735. top:1121px;
  7736. width:65px;
  7737. height:22px;
  7738. display:flex;
  7739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7740. font-weight:400;
  7741. font-style:normal;
  7742. font-size:16px;
  7743. }
  7744. #u127030 .text {
  7745. position:absolute;
  7746. align-self:flex-start;
  7747. padding:0px 0px 0px 0px;
  7748. box-sizing:border-box;
  7749. width:100%;
  7750. }
  7751. #u127030_text {
  7752. border-width:0px;
  7753. white-space:nowrap;
  7754. text-transform:none;
  7755. }
  7756. #u127031_div {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:65px;
  7762. height:22px;
  7763. background:inherit;
  7764. background-color:rgba(255, 255, 255, 0);
  7765. border:none;
  7766. border-radius:0px;
  7767. -moz-box-shadow:none;
  7768. -webkit-box-shadow:none;
  7769. box-shadow:none;
  7770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7771. font-weight:400;
  7772. font-style:normal;
  7773. font-size:16px;
  7774. }
  7775. #u127031 {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:30px;
  7779. top:1079px;
  7780. width:65px;
  7781. height:22px;
  7782. display:flex;
  7783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7784. font-weight:400;
  7785. font-style:normal;
  7786. font-size:16px;
  7787. }
  7788. #u127031 .text {
  7789. position:absolute;
  7790. align-self:flex-start;
  7791. padding:0px 0px 0px 0px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u127031_text {
  7796. border-width:0px;
  7797. white-space:nowrap;
  7798. text-transform:none;
  7799. }
  7800. #u127032_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:65px;
  7806. height:22px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 0);
  7809. border:none;
  7810. border-radius:0px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:16px;
  7818. }
  7819. #u127032 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:30px;
  7823. top:1163px;
  7824. width:65px;
  7825. height:22px;
  7826. display:flex;
  7827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:16px;
  7831. }
  7832. #u127032 .text {
  7833. position:absolute;
  7834. align-self:flex-start;
  7835. padding:0px 0px 0px 0px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u127032_text {
  7840. border-width:0px;
  7841. white-space:nowrap;
  7842. text-transform:none;
  7843. }