styles.css 171 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1861px;
  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. #u42647_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. #u42647 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u42647 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u42647_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u42648_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. #u42648 {
  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. #u42648 .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. #u42648_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u42649_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. #u42649 {
  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. #u42649 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u42649_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u42650 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u42651_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u42651 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u42651 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u42651_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u42652_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. #u42652 {
  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. #u42652 .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. #u42652_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u42653_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. #u42653 {
  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. #u42653 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u42653_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u42654 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u42655_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. #u42655_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. #u42655_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. #u42655 {
  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. #u42655 .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. #u42655_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. #u42655.disabled {
  356. }
  357. .u42655_input_option {
  358. font-size:14px;
  359. }
  360. #u42656_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u42656 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u42656 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u42656_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u42657_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. #u42657 {
  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. #u42657 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u42657_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u42658_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. #u42658 {
  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. #u42658 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u42658_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u42659 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u42660_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. #u42660 {
  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. #u42660 .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. #u42660_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u42661_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u42661 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u42661 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u42661_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u42662 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u42663_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. #u42663 {
  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. #u42663 .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. #u42663_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u42664_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u42664 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u42664 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u42664_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u42665 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u42666_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. #u42666 {
  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. #u42666 .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. #u42666_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u42667_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u42667 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u42667 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u42667_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u42668 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u42669_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. #u42669 {
  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. #u42669 .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. #u42669_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u42670_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u42670 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u42670 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u42670_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u42671 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u42672_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. #u42672 {
  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. #u42672 .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. #u42672_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u42673_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u42673 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u42673 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u42673_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u42674 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u42675_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. #u42675 {
  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. #u42675 .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. #u42675_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u42676_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u42676 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u42676 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u42676_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u42677 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u42678_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. #u42678 {
  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. #u42678 .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. #u42678_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u42679_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u42679 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u42679 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u42679_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u42680 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u42681_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. #u42681 {
  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. #u42681 .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. #u42681_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u42682_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u42682 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u42682 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u42682_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u42683 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u42684_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. #u42684 {
  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. #u42684 .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. #u42684_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u42685_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u42685 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u42685 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u42685_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u42686 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u42687_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. #u42687 {
  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. #u42687 .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. #u42687_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u42688_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u42688 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u42688 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u42688_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u42689_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. #u42689 {
  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. #u42689 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u42689_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u42690_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u42690 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u42690 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u42690_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u42691_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. #u42691 {
  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. #u42691 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u42691_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u42692_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u42692 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u42692 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u42692_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u42693 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u42694_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. #u42694 {
  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. #u42694 .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. #u42694_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u42695_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u42695 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u42695 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u42695_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u42696 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u42697_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. #u42697 {
  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. #u42697 .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. #u42697_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u42698_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u42698 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u42698 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u42698_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u42699_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1257px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u42699 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1257px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u42699 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u42699_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u42700_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:87px;
  1681. height:30px;
  1682. background:inherit;
  1683. background-color:rgba(41, 143, 255, 1);
  1684. border:none;
  1685. border-radius:4px;
  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:14px;
  1693. color:#FFFFFF;
  1694. }
  1695. #u42700 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:647px;
  1699. top:191px;
  1700. width:87px;
  1701. height:30px;
  1702. display:flex;
  1703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1704. font-weight:400;
  1705. font-style:normal;
  1706. font-size:14px;
  1707. color:#FFFFFF;
  1708. }
  1709. #u42700 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:5px 15px 5px 15px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u42700_text {
  1717. border-width:0px;
  1718. white-space:nowrap;
  1719. text-transform:none;
  1720. }
  1721. #u42701 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:0px;
  1727. height:0px;
  1728. }
  1729. #u42702_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:59px;
  1735. height:30px;
  1736. background:inherit;
  1737. background-color:rgba(24, 144, 255, 1);
  1738. box-sizing:border-box;
  1739. border-width:1px;
  1740. border-style:solid;
  1741. border-color:rgba(0, 153, 255, 1);
  1742. border-radius:4px;
  1743. -moz-box-shadow:none;
  1744. -webkit-box-shadow:none;
  1745. box-shadow:none;
  1746. font-family:'Microsoft YaHei', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:14px;
  1750. color:#FFFFFF;
  1751. }
  1752. #u42702 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:1098px;
  1756. top:142px;
  1757. width:59px;
  1758. height:30px;
  1759. display:flex;
  1760. font-family:'Microsoft YaHei', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:14px;
  1764. color:#FFFFFF;
  1765. }
  1766. #u42702 .text {
  1767. position:absolute;
  1768. align-self:center;
  1769. padding:5px 15px 5px 15px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u42702_text {
  1774. border-width:0px;
  1775. white-space:nowrap;
  1776. text-transform:none;
  1777. }
  1778. #u42703_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:55px;
  1784. height:30px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 1);
  1787. box-sizing:border-box;
  1788. border-width:1px;
  1789. border-style:solid;
  1790. border-color:rgba(170, 170, 170, 1);
  1791. border-radius:4px;
  1792. -moz-box-shadow:none;
  1793. -webkit-box-shadow:none;
  1794. box-shadow:none;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:12px;
  1799. color:#555555;
  1800. }
  1801. #u42703 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:1167px;
  1805. top:142px;
  1806. width:55px;
  1807. height:30px;
  1808. display:flex;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:12px;
  1813. color:#555555;
  1814. }
  1815. #u42703 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:5px 15px 5px 15px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u42703_text {
  1823. border-width:0px;
  1824. white-space:nowrap;
  1825. text-transform:none;
  1826. }
  1827. #u42704 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:647px;
  1831. top:231px;
  1832. width:1214px;
  1833. height:328px;
  1834. }
  1835. #u42705_img {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:84px;
  1841. height:44px;
  1842. }
  1843. #u42705 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:84px;
  1849. height:44px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:12px;
  1855. color:#FFFFFF;
  1856. }
  1857. #u42705 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 2px 2px 0px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u42705_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u42706_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:93px;
  1875. height:44px;
  1876. }
  1877. #u42706 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:84px;
  1881. top:0px;
  1882. width:93px;
  1883. height:44px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:12px;
  1889. color:#FFFFFF;
  1890. }
  1891. #u42706 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 0px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u42706_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. }
  1903. #u42707_img {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:94px;
  1909. height:44px;
  1910. }
  1911. #u42707 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:177px;
  1915. top:0px;
  1916. width:94px;
  1917. height:44px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:12px;
  1923. color:#FFFFFF;
  1924. }
  1925. #u42707 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 0px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u42707_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. }
  1937. #u42708_img {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:84px;
  1943. height:44px;
  1944. }
  1945. #u42708 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:271px;
  1949. top:0px;
  1950. width:84px;
  1951. height:44px;
  1952. display:flex;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. color:#FFFFFF;
  1958. }
  1959. #u42708 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 0px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u42708_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. }
  1971. #u42709_img {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:98px;
  1977. height:44px;
  1978. }
  1979. #u42709 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:355px;
  1983. top:0px;
  1984. width:98px;
  1985. height:44px;
  1986. display:flex;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:12px;
  1991. color:#FFFFFF;
  1992. }
  1993. #u42709 .text {
  1994. position:absolute;
  1995. align-self:center;
  1996. padding:2px 2px 2px 0px;
  1997. box-sizing:border-box;
  1998. width:100%;
  1999. }
  2000. #u42709_text {
  2001. border-width:0px;
  2002. word-wrap:break-word;
  2003. text-transform:none;
  2004. }
  2005. #u42710_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:84px;
  2011. height:44px;
  2012. }
  2013. #u42710 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:453px;
  2017. top:0px;
  2018. width:84px;
  2019. height:44px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:12px;
  2025. color:#FFFFFF;
  2026. }
  2027. #u42710 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:2px 2px 2px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u42710_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. }
  2039. #u42711_img {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:98px;
  2045. height:44px;
  2046. }
  2047. #u42711 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:537px;
  2051. top:0px;
  2052. width:98px;
  2053. height:44px;
  2054. display:flex;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:12px;
  2059. color:#FFFFFF;
  2060. }
  2061. #u42711 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u42711_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. }
  2073. #u42712_img {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:98px;
  2079. height:44px;
  2080. }
  2081. #u42712 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:635px;
  2085. top:0px;
  2086. width:98px;
  2087. height:44px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:12px;
  2093. color:#FFFFFF;
  2094. }
  2095. #u42712 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u42712_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. }
  2107. #u42713_img {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:92px;
  2113. height:44px;
  2114. }
  2115. #u42713 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:733px;
  2119. top:0px;
  2120. width:92px;
  2121. height:44px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:12px;
  2127. color:#FFFFFF;
  2128. }
  2129. #u42713 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u42713_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. }
  2141. #u42714_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:98px;
  2147. height:44px;
  2148. }
  2149. #u42714 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:825px;
  2153. top:0px;
  2154. width:98px;
  2155. height:44px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. color:#FFFFFF;
  2162. }
  2163. #u42714 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u42714_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. }
  2175. #u42715_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:98px;
  2181. height:44px;
  2182. }
  2183. #u42715 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:923px;
  2187. top:0px;
  2188. width:98px;
  2189. height:44px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. color:#FFFFFF;
  2196. }
  2197. #u42715 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u42715_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. }
  2209. #u42716_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:98px;
  2215. height:44px;
  2216. }
  2217. #u42716 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:1021px;
  2221. top:0px;
  2222. width:98px;
  2223. height:44px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. color:#FFFFFF;
  2230. }
  2231. #u42716 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 0px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u42716_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. }
  2243. #u42717_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:95px;
  2249. height:44px;
  2250. }
  2251. #u42717 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:1119px;
  2255. top:0px;
  2256. width:95px;
  2257. height:44px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. color:#FFFFFF;
  2264. }
  2265. #u42717 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 0px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u42717_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. }
  2277. #u42718_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:84px;
  2283. height:38px;
  2284. }
  2285. #u42718 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:44px;
  2290. width:84px;
  2291. height:38px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. color:#333333;
  2298. }
  2299. #u42718 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u42718_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. visibility:hidden;
  2311. }
  2312. #u42719_img {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:93px;
  2318. height:38px;
  2319. }
  2320. #u42719 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:84px;
  2324. top:44px;
  2325. width:93px;
  2326. height:38px;
  2327. display:flex;
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:12px;
  2332. color:#333333;
  2333. }
  2334. #u42719 .text {
  2335. position:absolute;
  2336. align-self:center;
  2337. padding:2px 2px 2px 0px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u42719_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. visibility:hidden;
  2346. }
  2347. #u42720_img {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:94px;
  2353. height:38px;
  2354. }
  2355. #u42720 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:177px;
  2359. top:44px;
  2360. width:94px;
  2361. height:38px;
  2362. display:flex;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. color:#333333;
  2368. }
  2369. #u42720 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 0px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u42720_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. visibility:hidden;
  2381. }
  2382. #u42721_img {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:84px;
  2388. height:38px;
  2389. }
  2390. #u42721 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:271px;
  2394. top:44px;
  2395. width:84px;
  2396. height:38px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:12px;
  2402. color:#333333;
  2403. }
  2404. #u42721 .text {
  2405. position:absolute;
  2406. align-self:center;
  2407. padding:2px 2px 2px 0px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u42721_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. visibility:hidden;
  2416. }
  2417. #u42722_img {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:98px;
  2423. height:38px;
  2424. }
  2425. #u42722 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:355px;
  2429. top:44px;
  2430. width:98px;
  2431. height:38px;
  2432. display:flex;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:12px;
  2437. color:#333333;
  2438. }
  2439. #u42722 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:2px 2px 2px 0px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u42722_text {
  2447. border-width:0px;
  2448. word-wrap:break-word;
  2449. text-transform:none;
  2450. visibility:hidden;
  2451. }
  2452. #u42723_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:84px;
  2458. height:38px;
  2459. }
  2460. #u42723 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:453px;
  2464. top:44px;
  2465. width:84px;
  2466. height:38px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:12px;
  2472. color:#333333;
  2473. }
  2474. #u42723 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:2px 2px 2px 0px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u42723_text {
  2482. border-width:0px;
  2483. word-wrap:break-word;
  2484. text-transform:none;
  2485. visibility:hidden;
  2486. }
  2487. #u42724_img {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:98px;
  2493. height:38px;
  2494. }
  2495. #u42724 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:537px;
  2499. top:44px;
  2500. width:98px;
  2501. height:38px;
  2502. display:flex;
  2503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:12px;
  2507. color:#333333;
  2508. }
  2509. #u42724 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 2px 2px 0px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u42724_text {
  2517. border-width:0px;
  2518. word-wrap:break-word;
  2519. text-transform:none;
  2520. visibility:hidden;
  2521. }
  2522. #u42725_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:98px;
  2528. height:38px;
  2529. }
  2530. #u42725 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:635px;
  2534. top:44px;
  2535. width:98px;
  2536. height:38px;
  2537. display:flex;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. color:#333333;
  2543. }
  2544. #u42725 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:2px 2px 2px 0px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u42725_text {
  2552. border-width:0px;
  2553. word-wrap:break-word;
  2554. text-transform:none;
  2555. visibility:hidden;
  2556. }
  2557. #u42726_img {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:92px;
  2563. height:38px;
  2564. }
  2565. #u42726 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:733px;
  2569. top:44px;
  2570. width:92px;
  2571. height:38px;
  2572. display:flex;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:12px;
  2577. color:#333333;
  2578. }
  2579. #u42726 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u42726_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. visibility:hidden;
  2591. }
  2592. #u42727_img {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:98px;
  2598. height:38px;
  2599. }
  2600. #u42727 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:825px;
  2604. top:44px;
  2605. width:98px;
  2606. height:38px;
  2607. display:flex;
  2608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2609. font-weight:400;
  2610. font-style:normal;
  2611. font-size:12px;
  2612. color:#333333;
  2613. }
  2614. #u42727 .text {
  2615. position:absolute;
  2616. align-self:center;
  2617. padding:2px 2px 2px 0px;
  2618. box-sizing:border-box;
  2619. width:100%;
  2620. }
  2621. #u42727_text {
  2622. border-width:0px;
  2623. word-wrap:break-word;
  2624. text-transform:none;
  2625. visibility:hidden;
  2626. }
  2627. #u42728_img {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:98px;
  2633. height:38px;
  2634. }
  2635. #u42728 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:923px;
  2639. top:44px;
  2640. width:98px;
  2641. height:38px;
  2642. display:flex;
  2643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:12px;
  2647. color:#333333;
  2648. }
  2649. #u42728 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 0px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u42728_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. visibility:hidden;
  2661. }
  2662. #u42729_img {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:0px;
  2666. top:0px;
  2667. width:98px;
  2668. height:38px;
  2669. }
  2670. #u42729 {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:1021px;
  2674. top:44px;
  2675. width:98px;
  2676. height:38px;
  2677. display:flex;
  2678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2679. font-weight:400;
  2680. font-style:normal;
  2681. font-size:12px;
  2682. color:#333333;
  2683. }
  2684. #u42729 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:2px 2px 2px 0px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u42729_text {
  2692. border-width:0px;
  2693. word-wrap:break-word;
  2694. text-transform:none;
  2695. visibility:hidden;
  2696. }
  2697. #u42730_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:95px;
  2703. height:38px;
  2704. }
  2705. #u42730 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:1119px;
  2709. top:44px;
  2710. width:95px;
  2711. height:38px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. color:#0089FE;
  2718. }
  2719. #u42730 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 0px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u42730_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. }
  2731. #u42731_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:84px;
  2737. height:38px;
  2738. }
  2739. #u42731 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:82px;
  2744. width:84px;
  2745. height:38px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:12px;
  2751. color:#333333;
  2752. }
  2753. #u42731 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 0px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u42731_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. visibility:hidden;
  2765. }
  2766. #u42732_img {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:93px;
  2772. height:38px;
  2773. }
  2774. #u42732 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:84px;
  2778. top:82px;
  2779. width:93px;
  2780. height:38px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. color:#333333;
  2787. }
  2788. #u42732 .text {
  2789. position:absolute;
  2790. align-self:center;
  2791. padding:2px 2px 2px 0px;
  2792. box-sizing:border-box;
  2793. width:100%;
  2794. }
  2795. #u42732_text {
  2796. border-width:0px;
  2797. word-wrap:break-word;
  2798. text-transform:none;
  2799. visibility:hidden;
  2800. }
  2801. #u42733_img {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:94px;
  2807. height:38px;
  2808. }
  2809. #u42733 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:177px;
  2813. top:82px;
  2814. width:94px;
  2815. height:38px;
  2816. display:flex;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:12px;
  2821. color:#333333;
  2822. }
  2823. #u42733 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 2px 2px 0px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u42733_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. visibility:hidden;
  2835. }
  2836. #u42734_img {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:84px;
  2842. height:38px;
  2843. }
  2844. #u42734 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:271px;
  2848. top:82px;
  2849. width:84px;
  2850. height:38px;
  2851. display:flex;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:12px;
  2856. color:#333333;
  2857. }
  2858. #u42734 .text {
  2859. position:absolute;
  2860. align-self:center;
  2861. padding:2px 2px 2px 0px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u42734_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. visibility:hidden;
  2870. }
  2871. #u42735_img {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:98px;
  2877. height:38px;
  2878. }
  2879. #u42735 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:355px;
  2883. top:82px;
  2884. width:98px;
  2885. height:38px;
  2886. display:flex;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:12px;
  2891. color:#333333;
  2892. }
  2893. #u42735 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:2px 2px 2px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u42735_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. visibility:hidden;
  2905. }
  2906. #u42736_img {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:84px;
  2912. height:38px;
  2913. }
  2914. #u42736 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:453px;
  2918. top:82px;
  2919. width:84px;
  2920. height:38px;
  2921. display:flex;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:12px;
  2926. color:#333333;
  2927. }
  2928. #u42736 .text {
  2929. position:absolute;
  2930. align-self:center;
  2931. padding:2px 2px 2px 0px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u42736_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u42737_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:98px;
  2947. height:38px;
  2948. }
  2949. #u42737 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:537px;
  2953. top:82px;
  2954. width:98px;
  2955. height:38px;
  2956. display:flex;
  2957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2958. font-weight:400;
  2959. font-style:normal;
  2960. font-size:12px;
  2961. color:#333333;
  2962. }
  2963. #u42737 .text {
  2964. position:absolute;
  2965. align-self:center;
  2966. padding:2px 2px 2px 0px;
  2967. box-sizing:border-box;
  2968. width:100%;
  2969. }
  2970. #u42737_text {
  2971. border-width:0px;
  2972. word-wrap:break-word;
  2973. text-transform:none;
  2974. visibility:hidden;
  2975. }
  2976. #u42738_img {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:98px;
  2982. height:38px;
  2983. }
  2984. #u42738 {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:635px;
  2988. top:82px;
  2989. width:98px;
  2990. height:38px;
  2991. display:flex;
  2992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2993. font-weight:400;
  2994. font-style:normal;
  2995. font-size:12px;
  2996. color:#333333;
  2997. }
  2998. #u42738 .text {
  2999. position:absolute;
  3000. align-self:center;
  3001. padding:2px 2px 2px 0px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u42738_text {
  3006. border-width:0px;
  3007. word-wrap:break-word;
  3008. text-transform:none;
  3009. visibility:hidden;
  3010. }
  3011. #u42739_img {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:92px;
  3017. height:38px;
  3018. }
  3019. #u42739 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:733px;
  3023. top:82px;
  3024. width:92px;
  3025. height:38px;
  3026. display:flex;
  3027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. color:#333333;
  3032. }
  3033. #u42739 .text {
  3034. position:absolute;
  3035. align-self:center;
  3036. padding:2px 2px 2px 0px;
  3037. box-sizing:border-box;
  3038. width:100%;
  3039. }
  3040. #u42739_text {
  3041. border-width:0px;
  3042. word-wrap:break-word;
  3043. text-transform:none;
  3044. visibility:hidden;
  3045. }
  3046. #u42740_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:98px;
  3052. height:38px;
  3053. }
  3054. #u42740 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:825px;
  3058. top:82px;
  3059. width:98px;
  3060. height:38px;
  3061. display:flex;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. color:#333333;
  3067. }
  3068. #u42740 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 0px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u42740_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. visibility:hidden;
  3080. }
  3081. #u42741_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:98px;
  3087. height:38px;
  3088. }
  3089. #u42741 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:923px;
  3093. top:82px;
  3094. width:98px;
  3095. height:38px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. color:#333333;
  3102. }
  3103. #u42741 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u42741_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u42742_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:98px;
  3122. height:38px;
  3123. }
  3124. #u42742 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:1021px;
  3128. top:82px;
  3129. width:98px;
  3130. height:38px;
  3131. display:flex;
  3132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3133. font-weight:400;
  3134. font-style:normal;
  3135. font-size:12px;
  3136. color:#333333;
  3137. }
  3138. #u42742 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 0px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u42742_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u42743_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:95px;
  3157. height:38px;
  3158. }
  3159. #u42743 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:1119px;
  3163. top:82px;
  3164. width:95px;
  3165. height:38px;
  3166. display:flex;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:12px;
  3171. color:#0089FE;
  3172. }
  3173. #u42743 .text {
  3174. position:absolute;
  3175. align-self:center;
  3176. padding:2px 2px 2px 0px;
  3177. box-sizing:border-box;
  3178. width:100%;
  3179. }
  3180. #u42743_text {
  3181. border-width:0px;
  3182. word-wrap:break-word;
  3183. text-transform:none;
  3184. }
  3185. #u42744_img {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:84px;
  3191. height:38px;
  3192. }
  3193. #u42744 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:120px;
  3198. width:84px;
  3199. height:38px;
  3200. display:flex;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:12px;
  3205. color:#333333;
  3206. }
  3207. #u42744 .text {
  3208. position:absolute;
  3209. align-self:center;
  3210. padding:2px 2px 2px 0px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u42744_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u42745_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:93px;
  3226. height:38px;
  3227. }
  3228. #u42745 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:84px;
  3232. top:120px;
  3233. width:93px;
  3234. height:38px;
  3235. display:flex;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:12px;
  3240. color:#333333;
  3241. }
  3242. #u42745 .text {
  3243. position:absolute;
  3244. align-self:center;
  3245. padding:2px 2px 2px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u42745_text {
  3250. border-width:0px;
  3251. word-wrap:break-word;
  3252. text-transform:none;
  3253. visibility:hidden;
  3254. }
  3255. #u42746_img {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:94px;
  3261. height:38px;
  3262. }
  3263. #u42746 {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:177px;
  3267. top:120px;
  3268. width:94px;
  3269. height:38px;
  3270. display:flex;
  3271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:12px;
  3275. color:#333333;
  3276. }
  3277. #u42746 .text {
  3278. position:absolute;
  3279. align-self:center;
  3280. padding:2px 2px 2px 0px;
  3281. box-sizing:border-box;
  3282. width:100%;
  3283. }
  3284. #u42746_text {
  3285. border-width:0px;
  3286. word-wrap:break-word;
  3287. text-transform:none;
  3288. visibility:hidden;
  3289. }
  3290. #u42747_img {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:84px;
  3296. height:38px;
  3297. }
  3298. #u42747 {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:271px;
  3302. top:120px;
  3303. width:84px;
  3304. height:38px;
  3305. display:flex;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:12px;
  3310. color:#333333;
  3311. }
  3312. #u42747 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 0px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u42747_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u42748_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:98px;
  3331. height:38px;
  3332. }
  3333. #u42748 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:355px;
  3337. top:120px;
  3338. width:98px;
  3339. height:38px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:12px;
  3345. color:#333333;
  3346. }
  3347. #u42748 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 0px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u42748_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u42749_img {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:84px;
  3366. height:38px;
  3367. }
  3368. #u42749 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:453px;
  3372. top:120px;
  3373. width:84px;
  3374. height:38px;
  3375. display:flex;
  3376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:12px;
  3380. color:#333333;
  3381. }
  3382. #u42749 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 0px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u42749_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. visibility:hidden;
  3394. }
  3395. #u42750_img {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:98px;
  3401. height:38px;
  3402. }
  3403. #u42750 {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:537px;
  3407. top:120px;
  3408. width:98px;
  3409. height:38px;
  3410. display:flex;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:12px;
  3415. color:#333333;
  3416. }
  3417. #u42750 .text {
  3418. position:absolute;
  3419. align-self:center;
  3420. padding:2px 2px 2px 0px;
  3421. box-sizing:border-box;
  3422. width:100%;
  3423. }
  3424. #u42750_text {
  3425. border-width:0px;
  3426. word-wrap:break-word;
  3427. text-transform:none;
  3428. visibility:hidden;
  3429. }
  3430. #u42751_img {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:98px;
  3436. height:38px;
  3437. }
  3438. #u42751 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:635px;
  3442. top:120px;
  3443. width:98px;
  3444. height:38px;
  3445. display:flex;
  3446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:12px;
  3450. color:#333333;
  3451. }
  3452. #u42751 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 2px 2px 0px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u42751_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. visibility:hidden;
  3464. }
  3465. #u42752_img {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:92px;
  3471. height:38px;
  3472. }
  3473. #u42752 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:733px;
  3477. top:120px;
  3478. width:92px;
  3479. height:38px;
  3480. display:flex;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:12px;
  3485. color:#333333;
  3486. }
  3487. #u42752 .text {
  3488. position:absolute;
  3489. align-self:center;
  3490. padding:2px 2px 2px 0px;
  3491. box-sizing:border-box;
  3492. width:100%;
  3493. }
  3494. #u42752_text {
  3495. border-width:0px;
  3496. word-wrap:break-word;
  3497. text-transform:none;
  3498. visibility:hidden;
  3499. }
  3500. #u42753_img {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:0px;
  3504. top:0px;
  3505. width:98px;
  3506. height:38px;
  3507. }
  3508. #u42753 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:825px;
  3512. top:120px;
  3513. width:98px;
  3514. height:38px;
  3515. display:flex;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:12px;
  3520. color:#333333;
  3521. }
  3522. #u42753 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 2px 2px 0px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u42753_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. visibility:hidden;
  3534. }
  3535. #u42754_img {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:98px;
  3541. height:38px;
  3542. }
  3543. #u42754 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:923px;
  3547. top:120px;
  3548. width:98px;
  3549. height:38px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:12px;
  3555. color:#333333;
  3556. }
  3557. #u42754 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u42754_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. visibility:hidden;
  3569. }
  3570. #u42755_img {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:98px;
  3576. height:38px;
  3577. }
  3578. #u42755 {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:1021px;
  3582. top:120px;
  3583. width:98px;
  3584. height:38px;
  3585. display:flex;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:12px;
  3590. color:#333333;
  3591. }
  3592. #u42755 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 2px 2px 0px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u42755_text {
  3600. border-width:0px;
  3601. word-wrap:break-word;
  3602. text-transform:none;
  3603. visibility:hidden;
  3604. }
  3605. #u42756_img {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:95px;
  3611. height:38px;
  3612. }
  3613. #u42756 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:1119px;
  3617. top:120px;
  3618. width:95px;
  3619. height:38px;
  3620. display:flex;
  3621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:12px;
  3625. color:#0089FE;
  3626. }
  3627. #u42756 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u42756_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. visibility:hidden;
  3639. }
  3640. #u42757_img {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:84px;
  3646. height:38px;
  3647. }
  3648. #u42757 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:158px;
  3653. width:84px;
  3654. height:38px;
  3655. display:flex;
  3656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:12px;
  3660. color:#333333;
  3661. }
  3662. #u42757 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:2px 2px 2px 0px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u42757_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. visibility:hidden;
  3674. }
  3675. #u42758_img {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:93px;
  3681. height:38px;
  3682. }
  3683. #u42758 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:84px;
  3687. top:158px;
  3688. width:93px;
  3689. height:38px;
  3690. display:flex;
  3691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:12px;
  3695. color:#333333;
  3696. }
  3697. #u42758 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:2px 2px 2px 0px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u42758_text {
  3705. border-width:0px;
  3706. word-wrap:break-word;
  3707. text-transform:none;
  3708. visibility:hidden;
  3709. }
  3710. #u42759_img {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:0px;
  3714. top:0px;
  3715. width:94px;
  3716. height:38px;
  3717. }
  3718. #u42759 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:177px;
  3722. top:158px;
  3723. width:94px;
  3724. height:38px;
  3725. display:flex;
  3726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3727. font-weight:400;
  3728. font-style:normal;
  3729. font-size:12px;
  3730. color:#333333;
  3731. }
  3732. #u42759 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:2px 2px 2px 0px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u42759_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. visibility:hidden;
  3744. }
  3745. #u42760_img {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:84px;
  3751. height:38px;
  3752. }
  3753. #u42760 {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:271px;
  3757. top:158px;
  3758. width:84px;
  3759. height:38px;
  3760. display:flex;
  3761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3762. font-weight:400;
  3763. font-style:normal;
  3764. font-size:12px;
  3765. color:#333333;
  3766. }
  3767. #u42760 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:2px 2px 2px 0px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u42760_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u42761_img {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:98px;
  3786. height:38px;
  3787. }
  3788. #u42761 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:355px;
  3792. top:158px;
  3793. width:98px;
  3794. height:38px;
  3795. display:flex;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:12px;
  3800. color:#333333;
  3801. }
  3802. #u42761 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 0px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u42761_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. visibility:hidden;
  3814. }
  3815. #u42762_img {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:84px;
  3821. height:38px;
  3822. }
  3823. #u42762 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:453px;
  3827. top:158px;
  3828. width:84px;
  3829. height:38px;
  3830. display:flex;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:12px;
  3835. color:#333333;
  3836. }
  3837. #u42762 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 0px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u42762_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u42763_img {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:98px;
  3856. height:38px;
  3857. }
  3858. #u42763 {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:537px;
  3862. top:158px;
  3863. width:98px;
  3864. height:38px;
  3865. display:flex;
  3866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:12px;
  3870. color:#333333;
  3871. }
  3872. #u42763 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 2px 2px 0px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u42763_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. visibility:hidden;
  3884. }
  3885. #u42764_img {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:98px;
  3891. height:38px;
  3892. }
  3893. #u42764 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:635px;
  3897. top:158px;
  3898. width:98px;
  3899. height:38px;
  3900. display:flex;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:12px;
  3905. color:#333333;
  3906. }
  3907. #u42764 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u42764_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u42765_img {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:92px;
  3926. height:38px;
  3927. }
  3928. #u42765 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:733px;
  3932. top:158px;
  3933. width:92px;
  3934. height:38px;
  3935. display:flex;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. color:#333333;
  3941. }
  3942. #u42765 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:2px 2px 2px 0px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u42765_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u42766_img {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:98px;
  3961. height:38px;
  3962. }
  3963. #u42766 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:825px;
  3967. top:158px;
  3968. width:98px;
  3969. height:38px;
  3970. display:flex;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:12px;
  3975. color:#333333;
  3976. }
  3977. #u42766 .text {
  3978. position:absolute;
  3979. align-self:center;
  3980. padding:2px 2px 2px 0px;
  3981. box-sizing:border-box;
  3982. width:100%;
  3983. }
  3984. #u42766_text {
  3985. border-width:0px;
  3986. word-wrap:break-word;
  3987. text-transform:none;
  3988. visibility:hidden;
  3989. }
  3990. #u42767_img {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:98px;
  3996. height:38px;
  3997. }
  3998. #u42767 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:923px;
  4002. top:158px;
  4003. width:98px;
  4004. height:38px;
  4005. display:flex;
  4006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:12px;
  4010. color:#333333;
  4011. }
  4012. #u42767 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u42767_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. visibility:hidden;
  4024. }
  4025. #u42768_img {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:98px;
  4031. height:38px;
  4032. }
  4033. #u42768 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:1021px;
  4037. top:158px;
  4038. width:98px;
  4039. height:38px;
  4040. display:flex;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:12px;
  4045. color:#333333;
  4046. }
  4047. #u42768 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:2px 2px 2px 0px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u42768_text {
  4055. border-width:0px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. visibility:hidden;
  4059. }
  4060. #u42769_img {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:95px;
  4066. height:38px;
  4067. }
  4068. #u42769 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:1119px;
  4072. top:158px;
  4073. width:95px;
  4074. height:38px;
  4075. display:flex;
  4076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4077. font-weight:400;
  4078. font-style:normal;
  4079. font-size:12px;
  4080. color:#AAAAAA;
  4081. }
  4082. #u42769 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 0px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u42769_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. visibility:hidden;
  4094. }
  4095. #u42770_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:84px;
  4101. height:35px;
  4102. }
  4103. #u42770 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:196px;
  4108. width:84px;
  4109. height:35px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:12px;
  4115. color:#333333;
  4116. }
  4117. #u42770 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 0px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u42770_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u42771_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:93px;
  4136. height:35px;
  4137. }
  4138. #u42771 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:84px;
  4142. top:196px;
  4143. width:93px;
  4144. height:35px;
  4145. display:flex;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:12px;
  4150. color:#333333;
  4151. }
  4152. #u42771 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 0px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u42771_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u42772_img {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:94px;
  4171. height:35px;
  4172. }
  4173. #u42772 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:177px;
  4177. top:196px;
  4178. width:94px;
  4179. height:35px;
  4180. display:flex;
  4181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:12px;
  4185. color:#333333;
  4186. }
  4187. #u42772 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 0px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u42772_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. visibility:hidden;
  4199. }
  4200. #u42773_img {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:0px;
  4204. top:0px;
  4205. width:84px;
  4206. height:35px;
  4207. }
  4208. #u42773 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:271px;
  4212. top:196px;
  4213. width:84px;
  4214. height:35px;
  4215. display:flex;
  4216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:12px;
  4220. color:#333333;
  4221. }
  4222. #u42773 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 0px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u42773_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u42774_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:98px;
  4241. height:35px;
  4242. }
  4243. #u42774 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:355px;
  4247. top:196px;
  4248. width:98px;
  4249. height:35px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:12px;
  4255. color:#333333;
  4256. }
  4257. #u42774 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:2px 2px 2px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u42774_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. visibility:hidden;
  4269. }
  4270. #u42775_img {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:84px;
  4276. height:35px;
  4277. }
  4278. #u42775 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:453px;
  4282. top:196px;
  4283. width:84px;
  4284. height:35px;
  4285. display:flex;
  4286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:12px;
  4290. color:#333333;
  4291. }
  4292. #u42775 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 0px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u42775_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u42776_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:98px;
  4311. height:35px;
  4312. }
  4313. #u42776 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:537px;
  4317. top:196px;
  4318. width:98px;
  4319. height:35px;
  4320. display:flex;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:12px;
  4325. color:#333333;
  4326. }
  4327. #u42776 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u42776_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u42777_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:98px;
  4346. height:35px;
  4347. }
  4348. #u42777 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:635px;
  4352. top:196px;
  4353. width:98px;
  4354. height:35px;
  4355. display:flex;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:12px;
  4360. color:#333333;
  4361. }
  4362. #u42777 .text {
  4363. position:absolute;
  4364. align-self:center;
  4365. padding:2px 2px 2px 0px;
  4366. box-sizing:border-box;
  4367. width:100%;
  4368. }
  4369. #u42777_text {
  4370. border-width:0px;
  4371. word-wrap:break-word;
  4372. text-transform:none;
  4373. visibility:hidden;
  4374. }
  4375. #u42778_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:92px;
  4381. height:35px;
  4382. }
  4383. #u42778 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:733px;
  4387. top:196px;
  4388. width:92px;
  4389. height:35px;
  4390. display:flex;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:12px;
  4395. color:#333333;
  4396. }
  4397. #u42778 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 0px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u42778_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u42779_img {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:98px;
  4416. height:35px;
  4417. }
  4418. #u42779 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:825px;
  4422. top:196px;
  4423. width:98px;
  4424. height:35px;
  4425. display:flex;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. color:#333333;
  4431. }
  4432. #u42779 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u42779_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. visibility:hidden;
  4444. }
  4445. #u42780_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:98px;
  4451. height:35px;
  4452. }
  4453. #u42780 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:923px;
  4457. top:196px;
  4458. width:98px;
  4459. height:35px;
  4460. display:flex;
  4461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4462. font-weight:400;
  4463. font-style:normal;
  4464. font-size:12px;
  4465. color:#333333;
  4466. }
  4467. #u42780 .text {
  4468. position:absolute;
  4469. align-self:center;
  4470. padding:2px 2px 2px 0px;
  4471. box-sizing:border-box;
  4472. width:100%;
  4473. }
  4474. #u42780_text {
  4475. border-width:0px;
  4476. word-wrap:break-word;
  4477. text-transform:none;
  4478. visibility:hidden;
  4479. }
  4480. #u42781_img {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:98px;
  4486. height:35px;
  4487. }
  4488. #u42781 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:1021px;
  4492. top:196px;
  4493. width:98px;
  4494. height:35px;
  4495. display:flex;
  4496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4497. font-weight:400;
  4498. font-style:normal;
  4499. font-size:12px;
  4500. color:#333333;
  4501. }
  4502. #u42781 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:2px 2px 2px 0px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u42781_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. visibility:hidden;
  4514. }
  4515. #u42782_img {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:95px;
  4521. height:35px;
  4522. }
  4523. #u42782 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:1119px;
  4527. top:196px;
  4528. width:95px;
  4529. height:35px;
  4530. display:flex;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:12px;
  4535. color:#AAAAAA;
  4536. }
  4537. #u42782 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 0px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u42782_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u42783_img {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:84px;
  4556. height:35px;
  4557. }
  4558. #u42783 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:231px;
  4563. width:84px;
  4564. height:35px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:12px;
  4570. color:#333333;
  4571. }
  4572. #u42783 .text {
  4573. position:absolute;
  4574. align-self:center;
  4575. padding:2px 2px 2px 0px;
  4576. box-sizing:border-box;
  4577. width:100%;
  4578. }
  4579. #u42783_text {
  4580. border-width:0px;
  4581. word-wrap:break-word;
  4582. text-transform:none;
  4583. visibility:hidden;
  4584. }
  4585. #u42784_img {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:93px;
  4591. height:35px;
  4592. }
  4593. #u42784 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:84px;
  4597. top:231px;
  4598. width:93px;
  4599. height:35px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:12px;
  4605. color:#333333;
  4606. }
  4607. #u42784 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 0px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u42784_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u42785_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:94px;
  4626. height:35px;
  4627. }
  4628. #u42785 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:177px;
  4632. top:231px;
  4633. width:94px;
  4634. height:35px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:12px;
  4640. color:#333333;
  4641. }
  4642. #u42785 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:2px 2px 2px 0px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u42785_text {
  4650. border-width:0px;
  4651. word-wrap:break-word;
  4652. text-transform:none;
  4653. visibility:hidden;
  4654. }
  4655. #u42786_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:84px;
  4661. height:35px;
  4662. }
  4663. #u42786 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:271px;
  4667. top:231px;
  4668. width:84px;
  4669. height:35px;
  4670. display:flex;
  4671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4672. font-weight:400;
  4673. font-style:normal;
  4674. font-size:12px;
  4675. color:#333333;
  4676. }
  4677. #u42786 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 0px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u42786_text {
  4685. border-width:0px;
  4686. word-wrap:break-word;
  4687. text-transform:none;
  4688. visibility:hidden;
  4689. }
  4690. #u42787_img {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:98px;
  4696. height:35px;
  4697. }
  4698. #u42787 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:355px;
  4702. top:231px;
  4703. width:98px;
  4704. height:35px;
  4705. display:flex;
  4706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:12px;
  4710. color:#333333;
  4711. }
  4712. #u42787 .text {
  4713. position:absolute;
  4714. align-self:center;
  4715. padding:2px 2px 2px 0px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u42787_text {
  4720. border-width:0px;
  4721. word-wrap:break-word;
  4722. text-transform:none;
  4723. visibility:hidden;
  4724. }
  4725. #u42788_img {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:0px;
  4729. top:0px;
  4730. width:84px;
  4731. height:35px;
  4732. }
  4733. #u42788 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:453px;
  4737. top:231px;
  4738. width:84px;
  4739. height:35px;
  4740. display:flex;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:12px;
  4745. color:#333333;
  4746. }
  4747. #u42788 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u42788_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. visibility:hidden;
  4759. }
  4760. #u42789_img {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:0px;
  4764. top:0px;
  4765. width:98px;
  4766. height:35px;
  4767. }
  4768. #u42789 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:537px;
  4772. top:231px;
  4773. width:98px;
  4774. height:35px;
  4775. display:flex;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:12px;
  4780. color:#333333;
  4781. }
  4782. #u42789 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 0px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u42789_text {
  4790. border-width:0px;
  4791. word-wrap:break-word;
  4792. text-transform:none;
  4793. visibility:hidden;
  4794. }
  4795. #u42790_img {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:98px;
  4801. height:35px;
  4802. }
  4803. #u42790 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:635px;
  4807. top:231px;
  4808. width:98px;
  4809. height:35px;
  4810. display:flex;
  4811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:12px;
  4815. color:#333333;
  4816. }
  4817. #u42790 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 0px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u42790_text {
  4825. border-width:0px;
  4826. word-wrap:break-word;
  4827. text-transform:none;
  4828. visibility:hidden;
  4829. }
  4830. #u42791_img {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:92px;
  4836. height:35px;
  4837. }
  4838. #u42791 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:733px;
  4842. top:231px;
  4843. width:92px;
  4844. height:35px;
  4845. display:flex;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:12px;
  4850. color:#333333;
  4851. }
  4852. #u42791 .text {
  4853. position:absolute;
  4854. align-self:center;
  4855. padding:2px 2px 2px 0px;
  4856. box-sizing:border-box;
  4857. width:100%;
  4858. }
  4859. #u42791_text {
  4860. border-width:0px;
  4861. word-wrap:break-word;
  4862. text-transform:none;
  4863. visibility:hidden;
  4864. }
  4865. #u42792_img {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:98px;
  4871. height:35px;
  4872. }
  4873. #u42792 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:825px;
  4877. top:231px;
  4878. width:98px;
  4879. height:35px;
  4880. display:flex;
  4881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4882. font-weight:400;
  4883. font-style:normal;
  4884. font-size:12px;
  4885. color:#333333;
  4886. }
  4887. #u42792 .text {
  4888. position:absolute;
  4889. align-self:center;
  4890. padding:2px 2px 2px 0px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u42792_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. visibility:hidden;
  4899. }
  4900. #u42793_img {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:98px;
  4906. height:35px;
  4907. }
  4908. #u42793 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:923px;
  4912. top:231px;
  4913. width:98px;
  4914. height:35px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:12px;
  4920. color:#333333;
  4921. }
  4922. #u42793 .text {
  4923. position:absolute;
  4924. align-self:center;
  4925. padding:2px 2px 2px 0px;
  4926. box-sizing:border-box;
  4927. width:100%;
  4928. }
  4929. #u42793_text {
  4930. border-width:0px;
  4931. word-wrap:break-word;
  4932. text-transform:none;
  4933. visibility:hidden;
  4934. }
  4935. #u42794_img {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:98px;
  4941. height:35px;
  4942. }
  4943. #u42794 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:1021px;
  4947. top:231px;
  4948. width:98px;
  4949. height:35px;
  4950. display:flex;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:12px;
  4955. color:#333333;
  4956. }
  4957. #u42794 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 0px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u42794_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u42795_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:95px;
  4976. height:35px;
  4977. }
  4978. #u42795 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:1119px;
  4982. top:231px;
  4983. width:95px;
  4984. height:35px;
  4985. display:flex;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#333333;
  4991. }
  4992. #u42795 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 0px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u42795_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u42796_img {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:84px;
  5011. height:32px;
  5012. }
  5013. #u42796 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:266px;
  5018. width:84px;
  5019. height:32px;
  5020. display:flex;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:12px;
  5025. color:#333333;
  5026. }
  5027. #u42796 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:2px 2px 2px 0px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u42796_text {
  5035. border-width:0px;
  5036. word-wrap:break-word;
  5037. text-transform:none;
  5038. visibility:hidden;
  5039. }
  5040. #u42797_img {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:93px;
  5046. height:32px;
  5047. }
  5048. #u42797 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:84px;
  5052. top:266px;
  5053. width:93px;
  5054. height:32px;
  5055. display:flex;
  5056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5057. font-weight:400;
  5058. font-style:normal;
  5059. font-size:12px;
  5060. color:#333333;
  5061. }
  5062. #u42797 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 0px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u42797_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u42798_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:94px;
  5081. height:32px;
  5082. }
  5083. #u42798 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:177px;
  5087. top:266px;
  5088. width:94px;
  5089. height:32px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:12px;
  5095. color:#333333;
  5096. }
  5097. #u42798 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 0px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u42798_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u42799_img {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:84px;
  5116. height:32px;
  5117. }
  5118. #u42799 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:271px;
  5122. top:266px;
  5123. width:84px;
  5124. height:32px;
  5125. display:flex;
  5126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5127. font-weight:400;
  5128. font-style:normal;
  5129. font-size:12px;
  5130. color:#333333;
  5131. }
  5132. #u42799 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 0px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u42799_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. visibility:hidden;
  5144. }
  5145. #u42800_img {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:98px;
  5151. height:32px;
  5152. }
  5153. #u42800 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:355px;
  5157. top:266px;
  5158. width:98px;
  5159. height:32px;
  5160. display:flex;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:12px;
  5165. color:#333333;
  5166. }
  5167. #u42800 .text {
  5168. position:absolute;
  5169. align-self:center;
  5170. padding:2px 2px 2px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u42800_text {
  5175. border-width:0px;
  5176. word-wrap:break-word;
  5177. text-transform:none;
  5178. visibility:hidden;
  5179. }
  5180. #u42801_img {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:84px;
  5186. height:32px;
  5187. }
  5188. #u42801 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:453px;
  5192. top:266px;
  5193. width:84px;
  5194. height:32px;
  5195. display:flex;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:12px;
  5200. color:#333333;
  5201. }
  5202. #u42801 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 0px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u42801_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. visibility:hidden;
  5214. }
  5215. #u42802_img {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:98px;
  5221. height:32px;
  5222. }
  5223. #u42802 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:537px;
  5227. top:266px;
  5228. width:98px;
  5229. height:32px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:12px;
  5235. color:#333333;
  5236. }
  5237. #u42802 .text {
  5238. position:absolute;
  5239. align-self:center;
  5240. padding:2px 2px 2px 0px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u42802_text {
  5245. border-width:0px;
  5246. word-wrap:break-word;
  5247. text-transform:none;
  5248. visibility:hidden;
  5249. }
  5250. #u42803_img {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:0px;
  5254. top:0px;
  5255. width:98px;
  5256. height:32px;
  5257. }
  5258. #u42803 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:635px;
  5262. top:266px;
  5263. width:98px;
  5264. height:32px;
  5265. display:flex;
  5266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:12px;
  5270. color:#333333;
  5271. }
  5272. #u42803 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 0px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u42803_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u42804_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:92px;
  5291. height:32px;
  5292. }
  5293. #u42804 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:733px;
  5297. top:266px;
  5298. width:92px;
  5299. height:32px;
  5300. display:flex;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:12px;
  5305. color:#333333;
  5306. }
  5307. #u42804 .text {
  5308. position:absolute;
  5309. align-self:center;
  5310. padding:2px 2px 2px 0px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u42804_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. visibility:hidden;
  5319. }
  5320. #u42805_img {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:98px;
  5326. height:32px;
  5327. }
  5328. #u42805 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:825px;
  5332. top:266px;
  5333. width:98px;
  5334. height:32px;
  5335. display:flex;
  5336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:12px;
  5340. color:#333333;
  5341. }
  5342. #u42805 .text {
  5343. position:absolute;
  5344. align-self:center;
  5345. padding:2px 2px 2px 0px;
  5346. box-sizing:border-box;
  5347. width:100%;
  5348. }
  5349. #u42805_text {
  5350. border-width:0px;
  5351. word-wrap:break-word;
  5352. text-transform:none;
  5353. visibility:hidden;
  5354. }
  5355. #u42806_img {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:98px;
  5361. height:32px;
  5362. }
  5363. #u42806 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:923px;
  5367. top:266px;
  5368. width:98px;
  5369. height:32px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:12px;
  5375. color:#333333;
  5376. }
  5377. #u42806 .text {
  5378. position:absolute;
  5379. align-self:center;
  5380. padding:2px 2px 2px 0px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u42806_text {
  5385. border-width:0px;
  5386. word-wrap:break-word;
  5387. text-transform:none;
  5388. visibility:hidden;
  5389. }
  5390. #u42807_img {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:98px;
  5396. height:32px;
  5397. }
  5398. #u42807 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:1021px;
  5402. top:266px;
  5403. width:98px;
  5404. height:32px;
  5405. display:flex;
  5406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:12px;
  5410. color:#333333;
  5411. }
  5412. #u42807 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 0px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u42807_text {
  5420. border-width:0px;
  5421. word-wrap:break-word;
  5422. text-transform:none;
  5423. visibility:hidden;
  5424. }
  5425. #u42808_img {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:95px;
  5431. height:32px;
  5432. }
  5433. #u42808 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:1119px;
  5437. top:266px;
  5438. width:95px;
  5439. height:32px;
  5440. display:flex;
  5441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:12px;
  5445. color:#333333;
  5446. }
  5447. #u42808 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:2px 2px 2px 0px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u42808_text {
  5455. border-width:0px;
  5456. word-wrap:break-word;
  5457. text-transform:none;
  5458. visibility:hidden;
  5459. }
  5460. #u42809_img {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:84px;
  5466. height:30px;
  5467. }
  5468. #u42809 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:298px;
  5473. width:84px;
  5474. height:30px;
  5475. display:flex;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:12px;
  5480. color:#333333;
  5481. }
  5482. #u42809 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:2px 2px 2px 0px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u42809_text {
  5490. border-width:0px;
  5491. word-wrap:break-word;
  5492. text-transform:none;
  5493. visibility:hidden;
  5494. }
  5495. #u42810_img {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:93px;
  5501. height:30px;
  5502. }
  5503. #u42810 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:84px;
  5507. top:298px;
  5508. width:93px;
  5509. height:30px;
  5510. display:flex;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:12px;
  5515. color:#333333;
  5516. }
  5517. #u42810 .text {
  5518. position:absolute;
  5519. align-self:center;
  5520. padding:2px 2px 2px 0px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u42810_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. visibility:hidden;
  5529. }
  5530. #u42811_img {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:0px;
  5534. top:0px;
  5535. width:94px;
  5536. height:30px;
  5537. }
  5538. #u42811 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:177px;
  5542. top:298px;
  5543. width:94px;
  5544. height:30px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:12px;
  5550. color:#333333;
  5551. }
  5552. #u42811 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u42811_text {
  5560. border-width:0px;
  5561. word-wrap:break-word;
  5562. text-transform:none;
  5563. visibility:hidden;
  5564. }
  5565. #u42812_img {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:84px;
  5571. height:30px;
  5572. }
  5573. #u42812 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:271px;
  5577. top:298px;
  5578. width:84px;
  5579. height:30px;
  5580. display:flex;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:12px;
  5585. color:#333333;
  5586. }
  5587. #u42812 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 2px 2px 0px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u42812_text {
  5595. border-width:0px;
  5596. word-wrap:break-word;
  5597. text-transform:none;
  5598. visibility:hidden;
  5599. }
  5600. #u42813_img {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:98px;
  5606. height:30px;
  5607. }
  5608. #u42813 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:355px;
  5612. top:298px;
  5613. width:98px;
  5614. height:30px;
  5615. display:flex;
  5616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:12px;
  5620. color:#333333;
  5621. }
  5622. #u42813 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 0px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u42813_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. visibility:hidden;
  5634. }
  5635. #u42814_img {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:0px;
  5639. top:0px;
  5640. width:84px;
  5641. height:30px;
  5642. }
  5643. #u42814 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:453px;
  5647. top:298px;
  5648. width:84px;
  5649. height:30px;
  5650. display:flex;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:12px;
  5655. color:#333333;
  5656. }
  5657. #u42814 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u42814_text {
  5665. border-width:0px;
  5666. word-wrap:break-word;
  5667. text-transform:none;
  5668. visibility:hidden;
  5669. }
  5670. #u42815_img {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:98px;
  5676. height:30px;
  5677. }
  5678. #u42815 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:537px;
  5682. top:298px;
  5683. width:98px;
  5684. height:30px;
  5685. display:flex;
  5686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:12px;
  5690. color:#333333;
  5691. }
  5692. #u42815 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 0px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u42815_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. visibility:hidden;
  5704. }
  5705. #u42816_img {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:98px;
  5711. height:30px;
  5712. }
  5713. #u42816 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:635px;
  5717. top:298px;
  5718. width:98px;
  5719. height:30px;
  5720. display:flex;
  5721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5722. font-weight:400;
  5723. font-style:normal;
  5724. font-size:12px;
  5725. color:#333333;
  5726. }
  5727. #u42816 .text {
  5728. position:absolute;
  5729. align-self:center;
  5730. padding:2px 2px 2px 0px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u42816_text {
  5735. border-width:0px;
  5736. word-wrap:break-word;
  5737. text-transform:none;
  5738. visibility:hidden;
  5739. }
  5740. #u42817_img {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:92px;
  5746. height:30px;
  5747. }
  5748. #u42817 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:733px;
  5752. top:298px;
  5753. width:92px;
  5754. height:30px;
  5755. display:flex;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:12px;
  5760. color:#333333;
  5761. }
  5762. #u42817 .text {
  5763. position:absolute;
  5764. align-self:center;
  5765. padding:2px 2px 2px 0px;
  5766. box-sizing:border-box;
  5767. width:100%;
  5768. }
  5769. #u42817_text {
  5770. border-width:0px;
  5771. word-wrap:break-word;
  5772. text-transform:none;
  5773. visibility:hidden;
  5774. }
  5775. #u42818_img {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:98px;
  5781. height:30px;
  5782. }
  5783. #u42818 {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:825px;
  5787. top:298px;
  5788. width:98px;
  5789. height:30px;
  5790. display:flex;
  5791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:12px;
  5795. color:#333333;
  5796. }
  5797. #u42818 .text {
  5798. position:absolute;
  5799. align-self:center;
  5800. padding:2px 2px 2px 0px;
  5801. box-sizing:border-box;
  5802. width:100%;
  5803. }
  5804. #u42818_text {
  5805. border-width:0px;
  5806. word-wrap:break-word;
  5807. text-transform:none;
  5808. visibility:hidden;
  5809. }
  5810. #u42819_img {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:98px;
  5816. height:30px;
  5817. }
  5818. #u42819 {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:923px;
  5822. top:298px;
  5823. width:98px;
  5824. height:30px;
  5825. display:flex;
  5826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:12px;
  5830. color:#333333;
  5831. }
  5832. #u42819 .text {
  5833. position:absolute;
  5834. align-self:center;
  5835. padding:2px 2px 2px 0px;
  5836. box-sizing:border-box;
  5837. width:100%;
  5838. }
  5839. #u42819_text {
  5840. border-width:0px;
  5841. word-wrap:break-word;
  5842. text-transform:none;
  5843. visibility:hidden;
  5844. }
  5845. #u42820_img {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:98px;
  5851. height:30px;
  5852. }
  5853. #u42820 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:1021px;
  5857. top:298px;
  5858. width:98px;
  5859. height:30px;
  5860. display:flex;
  5861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5862. font-weight:400;
  5863. font-style:normal;
  5864. font-size:12px;
  5865. color:#333333;
  5866. }
  5867. #u42820 .text {
  5868. position:absolute;
  5869. align-self:center;
  5870. padding:2px 2px 2px 0px;
  5871. box-sizing:border-box;
  5872. width:100%;
  5873. }
  5874. #u42820_text {
  5875. border-width:0px;
  5876. word-wrap:break-word;
  5877. text-transform:none;
  5878. visibility:hidden;
  5879. }
  5880. #u42821_img {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:95px;
  5886. height:30px;
  5887. }
  5888. #u42821 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:1119px;
  5892. top:298px;
  5893. width:95px;
  5894. height:30px;
  5895. display:flex;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:12px;
  5900. color:#333333;
  5901. }
  5902. #u42821 .text {
  5903. position:absolute;
  5904. align-self:center;
  5905. padding:2px 2px 2px 0px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u42821_text {
  5910. border-width:0px;
  5911. word-wrap:break-word;
  5912. text-transform:none;
  5913. visibility:hidden;
  5914. }
  5915. #u42822_div {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:0px;
  5919. top:0px;
  5920. width:59px;
  5921. height:30px;
  5922. background:inherit;
  5923. background-color:rgba(255, 255, 255, 1);
  5924. box-sizing:border-box;
  5925. border-width:1px;
  5926. border-style:solid;
  5927. border-color:rgba(170, 170, 170, 1);
  5928. border-radius:4px;
  5929. -moz-box-shadow:none;
  5930. -webkit-box-shadow:none;
  5931. box-shadow:none;
  5932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:14px;
  5936. color:#555555;
  5937. }
  5938. #u42822 {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:1007px;
  5942. top:191px;
  5943. width:59px;
  5944. height:30px;
  5945. display:flex;
  5946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5947. font-weight:400;
  5948. font-style:normal;
  5949. font-size:14px;
  5950. color:#555555;
  5951. }
  5952. #u42822 .text {
  5953. position:absolute;
  5954. align-self:center;
  5955. padding:5px 15px 5px 15px;
  5956. box-sizing:border-box;
  5957. width:100%;
  5958. }
  5959. #u42822_text {
  5960. border-width:0px;
  5961. white-space:nowrap;
  5962. text-transform:none;
  5963. }
  5964. #u42823_div {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:145px;
  5970. height:50px;
  5971. background:inherit;
  5972. background-color:rgba(255, 255, 255, 0);
  5973. border:none;
  5974. border-left:0px;
  5975. border-top:0px;
  5976. border-right:0px;
  5977. border-radius:0px;
  5978. border-bottom-right-radius:0px;
  5979. border-bottom-left-radius:0px;
  5980. -moz-box-shadow:none;
  5981. -webkit-box-shadow:none;
  5982. box-shadow:none;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:18px;
  5987. color:#000000;
  5988. line-height:40px;
  5989. }
  5990. #u42823 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:648px;
  5994. top:51px;
  5995. width:145px;
  5996. height:50px;
  5997. display:flex;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:18px;
  6002. color:#000000;
  6003. line-height:40px;
  6004. }
  6005. #u42823 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:0px 0px 0px 0px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u42823_text {
  6013. border-width:0px;
  6014. white-space:nowrap;
  6015. text-transform:none;
  6016. }
  6017. #u42824 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:0px;
  6023. height:0px;
  6024. }
  6025. #u42825_div {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:140px;
  6031. height:30px;
  6032. background:inherit;
  6033. background-color:rgba(255, 255, 255, 1);
  6034. box-sizing:border-box;
  6035. border-width:1px;
  6036. border-style:solid;
  6037. border-color:rgba(215, 215, 215, 1);
  6038. border-radius:4px;
  6039. -moz-box-shadow:none;
  6040. -webkit-box-shadow:none;
  6041. box-shadow:none;
  6042. font-size:11px;
  6043. }
  6044. #u42825 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:1248px;
  6048. top:101px;
  6049. width:140px;
  6050. height:30px;
  6051. display:flex;
  6052. font-size:11px;
  6053. }
  6054. #u42825 .text {
  6055. position:absolute;
  6056. align-self:center;
  6057. padding:2px 2px 2px 2px;
  6058. box-sizing:border-box;
  6059. width:100%;
  6060. }
  6061. #u42825_text {
  6062. border-width:0px;
  6063. word-wrap:break-word;
  6064. text-transform:none;
  6065. visibility:hidden;
  6066. }
  6067. #u42826_input {
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:126px;
  6072. height:23px;
  6073. padding:2px 2px 2px 2px;
  6074. font-family:'ArialMT', 'Arial', sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:11px;
  6078. letter-spacing:normal;
  6079. color:#AAAAAA;
  6080. vertical-align:none;
  6081. text-align:left;
  6082. text-transform:none;
  6083. background-color:transparent;
  6084. border-color:transparent;
  6085. }
  6086. #u42826_input.disabled {
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:126px;
  6091. height:23px;
  6092. padding:2px 2px 2px 2px;
  6093. font-family:'ArialMT', 'Arial', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:11px;
  6097. letter-spacing:normal;
  6098. color:#AAAAAA;
  6099. vertical-align:none;
  6100. text-align:left;
  6101. text-transform:none;
  6102. background-color:transparent;
  6103. border-color:transparent;
  6104. }
  6105. #u42826_div {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:126px;
  6111. height:23px;
  6112. background:inherit;
  6113. background-color:rgba(255, 255, 255, 1);
  6114. border:none;
  6115. border-radius:0px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-size:11px;
  6120. color:#AAAAAA;
  6121. }
  6122. #u42826 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:1255px;
  6126. top:103px;
  6127. width:126px;
  6128. height:23px;
  6129. display:flex;
  6130. font-size:11px;
  6131. color:#AAAAAA;
  6132. }
  6133. #u42826 .text {
  6134. position:absolute;
  6135. align-self:flex-start;
  6136. padding:2px 2px 2px 2px;
  6137. box-sizing:border-box;
  6138. width:100%;
  6139. }
  6140. #u42826_div.disabled {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:126px;
  6146. height:23px;
  6147. background:inherit;
  6148. background-color:rgba(240, 240, 240, 1);
  6149. border:none;
  6150. border-radius:0px;
  6151. -moz-box-shadow:none;
  6152. -webkit-box-shadow:none;
  6153. box-shadow:none;
  6154. font-size:11px;
  6155. color:#AAAAAA;
  6156. }
  6157. #u42826.disabled {
  6158. }
  6159. .u42826_input_option {
  6160. font-size:11px;
  6161. }
  6162. #u42827 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:0px;
  6168. height:0px;
  6169. }
  6170. #u42828_div {
  6171. border-width:0px;
  6172. position:absolute;
  6173. left:0px;
  6174. top:0px;
  6175. width:100px;
  6176. height:100px;
  6177. background:inherit;
  6178. background-color:rgba(255, 255, 255, 1);
  6179. box-sizing:border-box;
  6180. border-width:1px;
  6181. border-style:solid;
  6182. border-color:rgba(242, 242, 242, 1);
  6183. border-radius:4px;
  6184. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6185. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6186. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:14px;
  6191. text-align:left;
  6192. }
  6193. #u42828 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:1734px;
  6197. top:336px;
  6198. width:100px;
  6199. height:100px;
  6200. display:flex;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:14px;
  6205. text-align:left;
  6206. }
  6207. #u42828 .text {
  6208. position:absolute;
  6209. align-self:center;
  6210. padding:2px 2px 2px 2px;
  6211. box-sizing:border-box;
  6212. width:100%;
  6213. }
  6214. #u42828_text {
  6215. border-width:0px;
  6216. word-wrap:break-word;
  6217. text-transform:none;
  6218. visibility:hidden;
  6219. }
  6220. #u42829_div {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:85px;
  6226. height:40px;
  6227. background:inherit;
  6228. background-color:rgba(255, 255, 255, 1);
  6229. box-sizing:border-box;
  6230. border-width:1px;
  6231. border-style:solid;
  6232. border-color:rgba(215, 215, 215, 1);
  6233. border-left:0px;
  6234. border-top:0px;
  6235. border-right:0px;
  6236. border-radius:0px;
  6237. border-bottom-right-radius:0px;
  6238. border-bottom-left-radius:0px;
  6239. -moz-box-shadow:none;
  6240. -webkit-box-shadow:none;
  6241. box-shadow:none;
  6242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:14px;
  6246. }
  6247. #u42829 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:1742px;
  6251. top:346px;
  6252. width:85px;
  6253. height:40px;
  6254. display:flex;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. }
  6260. #u42829 .text {
  6261. position:absolute;
  6262. align-self:center;
  6263. padding:2px 2px 2px 2px;
  6264. box-sizing:border-box;
  6265. width:100%;
  6266. }
  6267. #u42829_text {
  6268. border-width:0px;
  6269. word-wrap:break-word;
  6270. text-transform:none;
  6271. }
  6272. #u42830_div {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:85px;
  6278. height:40px;
  6279. background:inherit;
  6280. background-color:rgba(255, 255, 255, 1);
  6281. border:none;
  6282. border-left:0px;
  6283. border-top:0px;
  6284. border-right:0px;
  6285. border-radius:0px;
  6286. border-bottom-right-radius:0px;
  6287. border-bottom-left-radius:0px;
  6288. -moz-box-shadow:none;
  6289. -webkit-box-shadow:none;
  6290. box-shadow:none;
  6291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6292. font-weight:400;
  6293. font-style:normal;
  6294. font-size:14px;
  6295. }
  6296. #u42830 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:1742px;
  6300. top:386px;
  6301. width:85px;
  6302. height:40px;
  6303. display:flex;
  6304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6305. font-weight:400;
  6306. font-style:normal;
  6307. font-size:14px;
  6308. }
  6309. #u42830 .text {
  6310. position:absolute;
  6311. align-self:center;
  6312. padding:2px 2px 2px 2px;
  6313. box-sizing:border-box;
  6314. width:100%;
  6315. }
  6316. #u42830_text {
  6317. border-width:0px;
  6318. word-wrap:break-word;
  6319. text-transform:none;
  6320. }
  6321. #u42831 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:0px;
  6327. height:0px;
  6328. }
  6329. #u42832_div {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:140px;
  6335. height:30px;
  6336. background:inherit;
  6337. background-color:rgba(255, 255, 255, 1);
  6338. box-sizing:border-box;
  6339. border-width:1px;
  6340. border-style:solid;
  6341. border-color:rgba(201, 201, 201, 1);
  6342. border-radius:4px;
  6343. -moz-box-shadow:none;
  6344. -webkit-box-shadow:none;
  6345. box-shadow:none;
  6346. font-family:'Microsoft YaHei', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:14px;
  6350. color:#CCCCCC;
  6351. text-align:left;
  6352. }
  6353. #u42832 {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:798px;
  6357. top:141px;
  6358. width:140px;
  6359. height:30px;
  6360. display:flex;
  6361. font-family:'Microsoft YaHei', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:14px;
  6365. color:#CCCCCC;
  6366. text-align:left;
  6367. }
  6368. #u42832 .text {
  6369. position:absolute;
  6370. align-self:center;
  6371. padding:2px 8px 2px 8px;
  6372. box-sizing:border-box;
  6373. width:100%;
  6374. }
  6375. #u42832_text {
  6376. border-width:0px;
  6377. word-wrap:break-word;
  6378. text-transform:none;
  6379. visibility:hidden;
  6380. }
  6381. #u42833_input {
  6382. position:absolute;
  6383. left:0px;
  6384. top:0px;
  6385. width:127px;
  6386. height:25px;
  6387. padding:2px 2px 2px 2px;
  6388. font-family:'Microsoft YaHei', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:10px;
  6392. letter-spacing:normal;
  6393. color:#000000;
  6394. vertical-align:none;
  6395. text-align:left;
  6396. text-transform:none;
  6397. background-color:transparent;
  6398. border-color:transparent;
  6399. }
  6400. #u42833_input.disabled {
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:127px;
  6405. height:25px;
  6406. padding:2px 2px 2px 2px;
  6407. font-family:'Microsoft YaHei', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:10px;
  6411. letter-spacing:normal;
  6412. color:#000000;
  6413. vertical-align:none;
  6414. text-align:left;
  6415. text-transform:none;
  6416. background-color:transparent;
  6417. border-color:transparent;
  6418. }
  6419. #u42833_div {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:127px;
  6425. height:25px;
  6426. background:inherit;
  6427. background-color:rgba(255, 255, 255, 1);
  6428. border:none;
  6429. border-radius:0px;
  6430. -moz-box-shadow:none;
  6431. -webkit-box-shadow:none;
  6432. box-shadow:none;
  6433. font-family:'Microsoft YaHei', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:10px;
  6437. }
  6438. #u42833 {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:806px;
  6442. top:142px;
  6443. width:127px;
  6444. height:25px;
  6445. display:flex;
  6446. font-family:'Microsoft YaHei', sans-serif;
  6447. font-weight:400;
  6448. font-style:normal;
  6449. font-size:10px;
  6450. }
  6451. #u42833 .text {
  6452. position:absolute;
  6453. align-self:center;
  6454. padding:2px 2px 2px 2px;
  6455. box-sizing:border-box;
  6456. width:100%;
  6457. }
  6458. #u42833_div.disabled {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:127px;
  6464. height:25px;
  6465. background:inherit;
  6466. background-color:rgba(240, 240, 240, 1);
  6467. border:none;
  6468. border-radius:0px;
  6469. -moz-box-shadow:none;
  6470. -webkit-box-shadow:none;
  6471. box-shadow:none;
  6472. font-family:'Microsoft YaHei', sans-serif;
  6473. font-weight:400;
  6474. font-style:normal;
  6475. font-size:10px;
  6476. }
  6477. #u42833.disabled {
  6478. }
  6479. #u42834 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:0px;
  6485. height:0px;
  6486. }
  6487. #u42835_div {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:140px;
  6493. height:30px;
  6494. background:inherit;
  6495. background-color:rgba(255, 255, 255, 1);
  6496. box-sizing:border-box;
  6497. border-width:1px;
  6498. border-style:solid;
  6499. border-color:rgba(201, 201, 201, 1);
  6500. border-radius:4px;
  6501. -moz-box-shadow:none;
  6502. -webkit-box-shadow:none;
  6503. box-shadow:none;
  6504. font-family:'Microsoft YaHei', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:14px;
  6508. color:#CCCCCC;
  6509. text-align:left;
  6510. }
  6511. #u42835 {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:948px;
  6515. top:141px;
  6516. width:140px;
  6517. height:30px;
  6518. display:flex;
  6519. font-family:'Microsoft YaHei', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:14px;
  6523. color:#CCCCCC;
  6524. text-align:left;
  6525. }
  6526. #u42835 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:2px 8px 2px 8px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u42835_text {
  6534. border-width:0px;
  6535. word-wrap:break-word;
  6536. text-transform:none;
  6537. visibility:hidden;
  6538. }
  6539. #u42836_input {
  6540. position:absolute;
  6541. left:0px;
  6542. top:0px;
  6543. width:127px;
  6544. height:25px;
  6545. padding:2px 2px 2px 2px;
  6546. font-family:'Microsoft YaHei', sans-serif;
  6547. font-weight:400;
  6548. font-style:normal;
  6549. font-size:10px;
  6550. letter-spacing:normal;
  6551. color:#000000;
  6552. vertical-align:none;
  6553. text-align:left;
  6554. text-transform:none;
  6555. background-color:transparent;
  6556. border-color:transparent;
  6557. }
  6558. #u42836_input.disabled {
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:127px;
  6563. height:25px;
  6564. padding:2px 2px 2px 2px;
  6565. font-family:'Microsoft YaHei', sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:10px;
  6569. letter-spacing:normal;
  6570. color:#000000;
  6571. vertical-align:none;
  6572. text-align:left;
  6573. text-transform:none;
  6574. background-color:transparent;
  6575. border-color:transparent;
  6576. }
  6577. #u42836_div {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:0px;
  6581. top:0px;
  6582. width:127px;
  6583. height:25px;
  6584. background:inherit;
  6585. background-color:rgba(255, 255, 255, 1);
  6586. border:none;
  6587. border-radius:0px;
  6588. -moz-box-shadow:none;
  6589. -webkit-box-shadow:none;
  6590. box-shadow:none;
  6591. font-family:'Microsoft YaHei', sans-serif;
  6592. font-weight:400;
  6593. font-style:normal;
  6594. font-size:10px;
  6595. }
  6596. #u42836 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:956px;
  6600. top:142px;
  6601. width:127px;
  6602. height:25px;
  6603. display:flex;
  6604. font-family:'Microsoft YaHei', sans-serif;
  6605. font-weight:400;
  6606. font-style:normal;
  6607. font-size:10px;
  6608. }
  6609. #u42836 .text {
  6610. position:absolute;
  6611. align-self:center;
  6612. padding:2px 2px 2px 2px;
  6613. box-sizing:border-box;
  6614. width:100%;
  6615. }
  6616. #u42836_div.disabled {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:0px;
  6620. top:0px;
  6621. width:127px;
  6622. height:25px;
  6623. background:inherit;
  6624. background-color:rgba(240, 240, 240, 1);
  6625. border:none;
  6626. border-radius:0px;
  6627. -moz-box-shadow:none;
  6628. -webkit-box-shadow:none;
  6629. box-shadow:none;
  6630. font-family:'Microsoft YaHei', sans-serif;
  6631. font-weight:400;
  6632. font-style:normal;
  6633. font-size:10px;
  6634. }
  6635. #u42836.disabled {
  6636. }
  6637. #u42837 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:0px;
  6641. top:0px;
  6642. width:0px;
  6643. height:0px;
  6644. }
  6645. #u42838_div {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:140px;
  6651. height:30px;
  6652. background:inherit;
  6653. background-color:rgba(255, 255, 255, 1);
  6654. box-sizing:border-box;
  6655. border-width:1px;
  6656. border-style:solid;
  6657. border-color:rgba(215, 215, 215, 1);
  6658. border-radius:4px;
  6659. -moz-box-shadow:none;
  6660. -webkit-box-shadow:none;
  6661. box-shadow:none;
  6662. font-size:11px;
  6663. }
  6664. #u42838 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:1398px;
  6668. top:100px;
  6669. width:140px;
  6670. height:30px;
  6671. display:flex;
  6672. font-size:11px;
  6673. }
  6674. #u42838 .text {
  6675. position:absolute;
  6676. align-self:center;
  6677. padding:2px 2px 2px 2px;
  6678. box-sizing:border-box;
  6679. width:100%;
  6680. }
  6681. #u42838_text {
  6682. border-width:0px;
  6683. word-wrap:break-word;
  6684. text-transform:none;
  6685. visibility:hidden;
  6686. }
  6687. #u42839_input {
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:126px;
  6692. height:23px;
  6693. padding:2px 2px 2px 2px;
  6694. font-family:'ArialMT', 'Arial', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:11px;
  6698. letter-spacing:normal;
  6699. color:#AAAAAA;
  6700. vertical-align:none;
  6701. text-align:left;
  6702. text-transform:none;
  6703. background-color:transparent;
  6704. border-color:transparent;
  6705. }
  6706. #u42839_input.disabled {
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:126px;
  6711. height:23px;
  6712. padding:2px 2px 2px 2px;
  6713. font-family:'ArialMT', 'Arial', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:11px;
  6717. letter-spacing:normal;
  6718. color:#AAAAAA;
  6719. vertical-align:none;
  6720. text-align:left;
  6721. text-transform:none;
  6722. background-color:transparent;
  6723. border-color:transparent;
  6724. }
  6725. #u42839_div {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:126px;
  6731. height:23px;
  6732. background:inherit;
  6733. background-color:rgba(255, 255, 255, 1);
  6734. border:none;
  6735. border-radius:0px;
  6736. -moz-box-shadow:none;
  6737. -webkit-box-shadow:none;
  6738. box-shadow:none;
  6739. font-size:11px;
  6740. color:#AAAAAA;
  6741. }
  6742. #u42839 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:1405px;
  6746. top:102px;
  6747. width:126px;
  6748. height:23px;
  6749. display:flex;
  6750. font-size:11px;
  6751. color:#AAAAAA;
  6752. }
  6753. #u42839 .text {
  6754. position:absolute;
  6755. align-self:flex-start;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u42839_div.disabled {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:126px;
  6766. height:23px;
  6767. background:inherit;
  6768. background-color:rgba(240, 240, 240, 1);
  6769. border:none;
  6770. border-radius:0px;
  6771. -moz-box-shadow:none;
  6772. -webkit-box-shadow:none;
  6773. box-shadow:none;
  6774. font-size:11px;
  6775. color:#AAAAAA;
  6776. }
  6777. #u42839.disabled {
  6778. }
  6779. .u42839_input_option {
  6780. font-size:11px;
  6781. }
  6782. #u42840_div {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:0px;
  6787. width:59px;
  6788. height:30px;
  6789. background:inherit;
  6790. background-color:rgba(255, 255, 255, 1);
  6791. box-sizing:border-box;
  6792. border-width:1px;
  6793. border-style:solid;
  6794. border-color:rgba(170, 170, 170, 1);
  6795. border-radius:4px;
  6796. -moz-box-shadow:none;
  6797. -webkit-box-shadow:none;
  6798. box-shadow:none;
  6799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6800. font-weight:400;
  6801. font-style:normal;
  6802. font-size:14px;
  6803. color:#555555;
  6804. }
  6805. #u42840 {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:938px;
  6809. top:191px;
  6810. width:59px;
  6811. height:30px;
  6812. display:flex;
  6813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:14px;
  6817. color:#555555;
  6818. }
  6819. #u42840 .text {
  6820. position:absolute;
  6821. align-self:center;
  6822. padding:5px 15px 5px 15px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u42840_text {
  6827. border-width:0px;
  6828. white-space:nowrap;
  6829. text-transform:none;
  6830. }
  6831. #u42841 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:0px;
  6837. height:0px;
  6838. }
  6839. #u42842 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:0px;
  6845. height:0px;
  6846. }
  6847. #u42843_div {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:142px;
  6853. height:100px;
  6854. background:inherit;
  6855. background-color:rgba(255, 255, 255, 1);
  6856. box-sizing:border-box;
  6857. border-width:1px;
  6858. border-style:solid;
  6859. border-color:rgba(242, 242, 242, 1);
  6860. border-radius:4px;
  6861. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6862. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6863. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:14px;
  6868. text-align:left;
  6869. }
  6870. #u42843 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:1096px;
  6874. top:707px;
  6875. width:142px;
  6876. height:100px;
  6877. display:flex;
  6878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6879. font-weight:400;
  6880. font-style:normal;
  6881. font-size:14px;
  6882. text-align:left;
  6883. }
  6884. #u42843 .text {
  6885. position:absolute;
  6886. align-self:center;
  6887. padding:2px 2px 2px 2px;
  6888. box-sizing:border-box;
  6889. width:100%;
  6890. }
  6891. #u42843_text {
  6892. border-width:0px;
  6893. word-wrap:break-word;
  6894. text-transform:none;
  6895. visibility:hidden;
  6896. }
  6897. #u42844_div {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:121px;
  6903. height:40px;
  6904. background:inherit;
  6905. background-color:rgba(255, 255, 255, 1);
  6906. box-sizing:border-box;
  6907. border-width:1px;
  6908. border-style:solid;
  6909. border-color:rgba(215, 215, 215, 1);
  6910. border-left:0px;
  6911. border-top:0px;
  6912. border-right:0px;
  6913. border-radius:0px;
  6914. border-bottom-right-radius:0px;
  6915. border-bottom-left-radius:0px;
  6916. -moz-box-shadow:none;
  6917. -webkit-box-shadow:none;
  6918. box-shadow:none;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:14px;
  6923. }
  6924. #u42844 {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:1107px;
  6928. top:717px;
  6929. width:121px;
  6930. height:40px;
  6931. display:flex;
  6932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. font-size:14px;
  6936. }
  6937. #u42844 .text {
  6938. position:absolute;
  6939. align-self:center;
  6940. padding:2px 2px 2px 2px;
  6941. box-sizing:border-box;
  6942. width:100%;
  6943. }
  6944. #u42844_text {
  6945. border-width:0px;
  6946. word-wrap:break-word;
  6947. text-transform:none;
  6948. }
  6949. #u42845_div {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:121px;
  6955. height:40px;
  6956. background:inherit;
  6957. background-color:rgba(255, 255, 255, 1);
  6958. border:none;
  6959. border-left:0px;
  6960. border-top:0px;
  6961. border-right:0px;
  6962. border-radius:0px;
  6963. border-bottom-right-radius:0px;
  6964. border-bottom-left-radius:0px;
  6965. -moz-box-shadow:none;
  6966. -webkit-box-shadow:none;
  6967. box-shadow:none;
  6968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6969. font-weight:400;
  6970. font-style:normal;
  6971. font-size:14px;
  6972. }
  6973. #u42845 {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:1107px;
  6977. top:757px;
  6978. width:121px;
  6979. height:40px;
  6980. display:flex;
  6981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:14px;
  6985. }
  6986. #u42845 .text {
  6987. position:absolute;
  6988. align-self:center;
  6989. padding:2px 2px 2px 2px;
  6990. box-sizing:border-box;
  6991. width:100%;
  6992. }
  6993. #u42845_text {
  6994. border-width:0px;
  6995. word-wrap:break-word;
  6996. text-transform:none;
  6997. }
  6998. #u42846_div {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:59px;
  7004. height:30px;
  7005. background:inherit;
  7006. background-color:rgba(255, 255, 255, 1);
  7007. box-sizing:border-box;
  7008. border-width:1px;
  7009. border-style:solid;
  7010. border-color:rgba(170, 170, 170, 1);
  7011. border-radius:4px;
  7012. -moz-box-shadow:none;
  7013. -webkit-box-shadow:none;
  7014. box-shadow:none;
  7015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7016. font-weight:400;
  7017. font-style:normal;
  7018. font-size:14px;
  7019. color:#555555;
  7020. }
  7021. #u42846 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:1179px;
  7025. top:670px;
  7026. width:59px;
  7027. height:30px;
  7028. display:flex;
  7029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7030. font-weight:400;
  7031. font-style:normal;
  7032. font-size:14px;
  7033. color:#555555;
  7034. }
  7035. #u42846 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:5px 15px 5px 15px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u42846_text {
  7043. border-width:0px;
  7044. white-space:nowrap;
  7045. text-transform:none;
  7046. }
  7047. #u42847 {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:0px;
  7053. height:0px;
  7054. }
  7055. #u42848_div {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:140px;
  7061. height:30px;
  7062. background:inherit;
  7063. background-color:rgba(255, 255, 255, 1);
  7064. box-sizing:border-box;
  7065. border-width:1px;
  7066. border-style:solid;
  7067. border-color:rgba(215, 215, 215, 1);
  7068. border-radius:4px;
  7069. -moz-box-shadow:none;
  7070. -webkit-box-shadow:none;
  7071. box-shadow:none;
  7072. font-size:11px;
  7073. }
  7074. #u42848 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:647px;
  7078. top:141px;
  7079. width:140px;
  7080. height:30px;
  7081. display:flex;
  7082. font-size:11px;
  7083. }
  7084. #u42848 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 2px 2px 2px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u42848_text {
  7092. border-width:0px;
  7093. word-wrap:break-word;
  7094. text-transform:none;
  7095. visibility:hidden;
  7096. }
  7097. #u42849_input {
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:126px;
  7102. height:23px;
  7103. padding:2px 2px 2px 2px;
  7104. font-family:'ArialMT', 'Arial', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:11px;
  7108. letter-spacing:normal;
  7109. color:#AAAAAA;
  7110. vertical-align:none;
  7111. text-align:left;
  7112. text-transform:none;
  7113. background-color:transparent;
  7114. border-color:transparent;
  7115. }
  7116. #u42849_input.disabled {
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:126px;
  7121. height:23px;
  7122. padding:2px 2px 2px 2px;
  7123. font-family:'ArialMT', 'Arial', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:11px;
  7127. letter-spacing:normal;
  7128. color:#AAAAAA;
  7129. vertical-align:none;
  7130. text-align:left;
  7131. text-transform:none;
  7132. background-color:transparent;
  7133. border-color:transparent;
  7134. }
  7135. #u42849_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:126px;
  7141. height:23px;
  7142. background:inherit;
  7143. background-color:rgba(255, 255, 255, 1);
  7144. border:none;
  7145. border-radius:0px;
  7146. -moz-box-shadow:none;
  7147. -webkit-box-shadow:none;
  7148. box-shadow:none;
  7149. font-size:11px;
  7150. color:#AAAAAA;
  7151. }
  7152. #u42849 {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:654px;
  7156. top:143px;
  7157. width:126px;
  7158. height:23px;
  7159. display:flex;
  7160. font-size:11px;
  7161. color:#AAAAAA;
  7162. }
  7163. #u42849 .text {
  7164. position:absolute;
  7165. align-self:flex-start;
  7166. padding:2px 2px 2px 2px;
  7167. box-sizing:border-box;
  7168. width:100%;
  7169. }
  7170. #u42849_div.disabled {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:126px;
  7176. height:23px;
  7177. background:inherit;
  7178. background-color:rgba(240, 240, 240, 1);
  7179. border:none;
  7180. border-radius:0px;
  7181. -moz-box-shadow:none;
  7182. -webkit-box-shadow:none;
  7183. box-shadow:none;
  7184. font-size:11px;
  7185. color:#AAAAAA;
  7186. }
  7187. #u42849.disabled {
  7188. }
  7189. .u42849_input_option {
  7190. font-size:11px;
  7191. }
  7192. #u42850 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:0px;
  7198. height:0px;
  7199. }
  7200. #u42851_div {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:140px;
  7206. height:30px;
  7207. background:inherit;
  7208. background-color:rgba(255, 255, 255, 1);
  7209. box-sizing:border-box;
  7210. border-width:1px;
  7211. border-style:solid;
  7212. border-color:rgba(215, 215, 215, 1);
  7213. border-radius:4px;
  7214. -moz-box-shadow:none;
  7215. -webkit-box-shadow:none;
  7216. box-shadow:none;
  7217. font-size:11px;
  7218. }
  7219. #u42851 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:1098px;
  7223. top:101px;
  7224. width:140px;
  7225. height:30px;
  7226. display:flex;
  7227. font-size:11px;
  7228. }
  7229. #u42851 .text {
  7230. position:absolute;
  7231. align-self:center;
  7232. padding:2px 2px 2px 2px;
  7233. box-sizing:border-box;
  7234. width:100%;
  7235. }
  7236. #u42851_text {
  7237. border-width:0px;
  7238. word-wrap:break-word;
  7239. text-transform:none;
  7240. visibility:hidden;
  7241. }
  7242. #u42852_input {
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:126px;
  7247. height:23px;
  7248. padding:2px 2px 2px 2px;
  7249. font-family:'ArialMT', 'Arial', sans-serif;
  7250. font-weight:400;
  7251. font-style:normal;
  7252. font-size:11px;
  7253. letter-spacing:normal;
  7254. color:#AAAAAA;
  7255. vertical-align:none;
  7256. text-align:left;
  7257. text-transform:none;
  7258. background-color:transparent;
  7259. border-color:transparent;
  7260. }
  7261. #u42852_input.disabled {
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:126px;
  7266. height:23px;
  7267. padding:2px 2px 2px 2px;
  7268. font-family:'ArialMT', 'Arial', sans-serif;
  7269. font-weight:400;
  7270. font-style:normal;
  7271. font-size:11px;
  7272. letter-spacing:normal;
  7273. color:#AAAAAA;
  7274. vertical-align:none;
  7275. text-align:left;
  7276. text-transform:none;
  7277. background-color:transparent;
  7278. border-color:transparent;
  7279. }
  7280. #u42852_div {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:0px;
  7284. top:0px;
  7285. width:126px;
  7286. height:23px;
  7287. background:inherit;
  7288. background-color:rgba(255, 255, 255, 1);
  7289. border:none;
  7290. border-radius:0px;
  7291. -moz-box-shadow:none;
  7292. -webkit-box-shadow:none;
  7293. box-shadow:none;
  7294. font-size:11px;
  7295. color:#AAAAAA;
  7296. }
  7297. #u42852 {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:1105px;
  7301. top:103px;
  7302. width:126px;
  7303. height:23px;
  7304. display:flex;
  7305. font-size:11px;
  7306. color:#AAAAAA;
  7307. }
  7308. #u42852 .text {
  7309. position:absolute;
  7310. align-self:flex-start;
  7311. padding:2px 2px 2px 2px;
  7312. box-sizing:border-box;
  7313. width:100%;
  7314. }
  7315. #u42852_div.disabled {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:126px;
  7321. height:23px;
  7322. background:inherit;
  7323. background-color:rgba(240, 240, 240, 1);
  7324. border:none;
  7325. border-radius:0px;
  7326. -moz-box-shadow:none;
  7327. -webkit-box-shadow:none;
  7328. box-shadow:none;
  7329. font-size:11px;
  7330. color:#AAAAAA;
  7331. }
  7332. #u42852.disabled {
  7333. }
  7334. .u42852_input_option {
  7335. font-size:11px;
  7336. }
  7337. #u42853 {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:0px;
  7343. height:0px;
  7344. }
  7345. #u42854_div {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:140px;
  7351. height:30px;
  7352. background:inherit;
  7353. background-color:rgba(255, 255, 255, 1);
  7354. box-sizing:border-box;
  7355. border-width:1px;
  7356. border-style:solid;
  7357. border-color:rgba(201, 201, 201, 1);
  7358. border-radius:4px;
  7359. -moz-box-shadow:none;
  7360. -webkit-box-shadow:none;
  7361. box-shadow:none;
  7362. font-family:'Microsoft YaHei', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:14px;
  7366. color:#CCCCCC;
  7367. text-align:left;
  7368. }
  7369. #u42854 {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:798px;
  7373. top:101px;
  7374. width:140px;
  7375. height:30px;
  7376. display:flex;
  7377. font-family:'Microsoft YaHei', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:14px;
  7381. color:#CCCCCC;
  7382. text-align:left;
  7383. }
  7384. #u42854 .text {
  7385. position:absolute;
  7386. align-self:center;
  7387. padding:2px 8px 2px 8px;
  7388. box-sizing:border-box;
  7389. width:100%;
  7390. }
  7391. #u42854_text {
  7392. border-width:0px;
  7393. word-wrap:break-word;
  7394. text-transform:none;
  7395. visibility:hidden;
  7396. }
  7397. #u42855_input {
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:127px;
  7402. height:25px;
  7403. padding:2px 2px 2px 2px;
  7404. font-family:'Microsoft YaHei', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:10px;
  7408. letter-spacing:normal;
  7409. color:#000000;
  7410. vertical-align:none;
  7411. text-align:left;
  7412. text-transform:none;
  7413. background-color:transparent;
  7414. border-color:transparent;
  7415. }
  7416. #u42855_input.disabled {
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:127px;
  7421. height:25px;
  7422. padding:2px 2px 2px 2px;
  7423. font-family:'Microsoft YaHei', sans-serif;
  7424. font-weight:400;
  7425. font-style:normal;
  7426. font-size:10px;
  7427. letter-spacing:normal;
  7428. color:#000000;
  7429. vertical-align:none;
  7430. text-align:left;
  7431. text-transform:none;
  7432. background-color:transparent;
  7433. border-color:transparent;
  7434. }
  7435. #u42855_div {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:127px;
  7441. height:25px;
  7442. background:inherit;
  7443. background-color:rgba(255, 255, 255, 1);
  7444. border:none;
  7445. border-radius:0px;
  7446. -moz-box-shadow:none;
  7447. -webkit-box-shadow:none;
  7448. box-shadow:none;
  7449. font-family:'Microsoft YaHei', sans-serif;
  7450. font-weight:400;
  7451. font-style:normal;
  7452. font-size:10px;
  7453. }
  7454. #u42855 {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:806px;
  7458. top:102px;
  7459. width:127px;
  7460. height:25px;
  7461. display:flex;
  7462. font-family:'Microsoft YaHei', sans-serif;
  7463. font-weight:400;
  7464. font-style:normal;
  7465. font-size:10px;
  7466. }
  7467. #u42855 .text {
  7468. position:absolute;
  7469. align-self:center;
  7470. padding:2px 2px 2px 2px;
  7471. box-sizing:border-box;
  7472. width:100%;
  7473. }
  7474. #u42855_div.disabled {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:127px;
  7480. height:25px;
  7481. background:inherit;
  7482. background-color:rgba(240, 240, 240, 1);
  7483. border:none;
  7484. border-radius:0px;
  7485. -moz-box-shadow:none;
  7486. -webkit-box-shadow:none;
  7487. box-shadow:none;
  7488. font-family:'Microsoft YaHei', sans-serif;
  7489. font-weight:400;
  7490. font-style:normal;
  7491. font-size:10px;
  7492. }
  7493. #u42855.disabled {
  7494. }
  7495. #u42856 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:0px;
  7499. top:0px;
  7500. width:0px;
  7501. height:0px;
  7502. }
  7503. #u42857_div {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:140px;
  7509. height:30px;
  7510. background:inherit;
  7511. background-color:rgba(255, 255, 255, 1);
  7512. box-sizing:border-box;
  7513. border-width:1px;
  7514. border-style:solid;
  7515. border-color:rgba(201, 201, 201, 1);
  7516. border-radius:4px;
  7517. -moz-box-shadow:none;
  7518. -webkit-box-shadow:none;
  7519. box-shadow:none;
  7520. font-family:'Microsoft YaHei', sans-serif;
  7521. font-weight:400;
  7522. font-style:normal;
  7523. font-size:14px;
  7524. color:#CCCCCC;
  7525. text-align:left;
  7526. }
  7527. #u42857 {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:948px;
  7531. top:101px;
  7532. width:140px;
  7533. height:30px;
  7534. display:flex;
  7535. font-family:'Microsoft YaHei', sans-serif;
  7536. font-weight:400;
  7537. font-style:normal;
  7538. font-size:14px;
  7539. color:#CCCCCC;
  7540. text-align:left;
  7541. }
  7542. #u42857 .text {
  7543. position:absolute;
  7544. align-self:center;
  7545. padding:2px 8px 2px 8px;
  7546. box-sizing:border-box;
  7547. width:100%;
  7548. }
  7549. #u42857_text {
  7550. border-width:0px;
  7551. word-wrap:break-word;
  7552. text-transform:none;
  7553. visibility:hidden;
  7554. }
  7555. #u42858_input {
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:127px;
  7560. height:25px;
  7561. padding:2px 2px 2px 2px;
  7562. font-family:'Microsoft YaHei', sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. font-size:10px;
  7566. letter-spacing:normal;
  7567. color:#000000;
  7568. vertical-align:none;
  7569. text-align:left;
  7570. text-transform:none;
  7571. background-color:transparent;
  7572. border-color:transparent;
  7573. }
  7574. #u42858_input.disabled {
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:127px;
  7579. height:25px;
  7580. padding:2px 2px 2px 2px;
  7581. font-family:'Microsoft YaHei', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:10px;
  7585. letter-spacing:normal;
  7586. color:#000000;
  7587. vertical-align:none;
  7588. text-align:left;
  7589. text-transform:none;
  7590. background-color:transparent;
  7591. border-color:transparent;
  7592. }
  7593. #u42858_div {
  7594. border-width:0px;
  7595. position:absolute;
  7596. left:0px;
  7597. top:0px;
  7598. width:127px;
  7599. height:25px;
  7600. background:inherit;
  7601. background-color:rgba(255, 255, 255, 1);
  7602. border:none;
  7603. border-radius:0px;
  7604. -moz-box-shadow:none;
  7605. -webkit-box-shadow:none;
  7606. box-shadow:none;
  7607. font-family:'Microsoft YaHei', sans-serif;
  7608. font-weight:400;
  7609. font-style:normal;
  7610. font-size:10px;
  7611. }
  7612. #u42858 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:956px;
  7616. top:102px;
  7617. width:127px;
  7618. height:25px;
  7619. display:flex;
  7620. font-family:'Microsoft YaHei', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:10px;
  7624. }
  7625. #u42858 .text {
  7626. position:absolute;
  7627. align-self:center;
  7628. padding:2px 2px 2px 2px;
  7629. box-sizing:border-box;
  7630. width:100%;
  7631. }
  7632. #u42858_div.disabled {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:127px;
  7638. height:25px;
  7639. background:inherit;
  7640. background-color:rgba(240, 240, 240, 1);
  7641. border:none;
  7642. border-radius:0px;
  7643. -moz-box-shadow:none;
  7644. -webkit-box-shadow:none;
  7645. box-shadow:none;
  7646. font-family:'Microsoft YaHei', sans-serif;
  7647. font-weight:400;
  7648. font-style:normal;
  7649. font-size:10px;
  7650. }
  7651. #u42858.disabled {
  7652. }
  7653. #u42859 {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:0px;
  7657. top:0px;
  7658. width:0px;
  7659. height:0px;
  7660. }
  7661. #u42860_div {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:140px;
  7667. height:30px;
  7668. background:inherit;
  7669. background-color:rgba(255, 255, 255, 1);
  7670. box-sizing:border-box;
  7671. border-width:1px;
  7672. border-style:solid;
  7673. border-color:rgba(215, 215, 215, 1);
  7674. border-radius:4px;
  7675. -moz-box-shadow:none;
  7676. -webkit-box-shadow:none;
  7677. box-shadow:none;
  7678. font-size:11px;
  7679. }
  7680. #u42860 {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:648px;
  7684. top:101px;
  7685. width:140px;
  7686. height:30px;
  7687. display:flex;
  7688. font-size:11px;
  7689. }
  7690. #u42860 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:2px 2px 2px 2px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u42860_text {
  7698. border-width:0px;
  7699. word-wrap:break-word;
  7700. text-transform:none;
  7701. visibility:hidden;
  7702. }
  7703. #u42861_input {
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:126px;
  7708. height:23px;
  7709. padding:2px 2px 2px 2px;
  7710. font-family:'ArialMT', 'Arial', sans-serif;
  7711. font-weight:400;
  7712. font-style:normal;
  7713. font-size:11px;
  7714. letter-spacing:normal;
  7715. color:#AAAAAA;
  7716. vertical-align:none;
  7717. text-align:left;
  7718. text-transform:none;
  7719. background-color:transparent;
  7720. border-color:transparent;
  7721. }
  7722. #u42861_input.disabled {
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:126px;
  7727. height:23px;
  7728. padding:2px 2px 2px 2px;
  7729. font-family:'ArialMT', 'Arial', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. font-size:11px;
  7733. letter-spacing:normal;
  7734. color:#AAAAAA;
  7735. vertical-align:none;
  7736. text-align:left;
  7737. text-transform:none;
  7738. background-color:transparent;
  7739. border-color:transparent;
  7740. }
  7741. #u42861_div {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:126px;
  7747. height:23px;
  7748. background:inherit;
  7749. background-color:rgba(255, 255, 255, 1);
  7750. border:none;
  7751. border-radius:0px;
  7752. -moz-box-shadow:none;
  7753. -webkit-box-shadow:none;
  7754. box-shadow:none;
  7755. font-size:11px;
  7756. color:#AAAAAA;
  7757. }
  7758. #u42861 {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:655px;
  7762. top:103px;
  7763. width:126px;
  7764. height:23px;
  7765. display:flex;
  7766. font-size:11px;
  7767. color:#AAAAAA;
  7768. }
  7769. #u42861 .text {
  7770. position:absolute;
  7771. align-self:flex-start;
  7772. padding:2px 2px 2px 2px;
  7773. box-sizing:border-box;
  7774. width:100%;
  7775. }
  7776. #u42861_div.disabled {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:126px;
  7782. height:23px;
  7783. background:inherit;
  7784. background-color:rgba(240, 240, 240, 1);
  7785. border:none;
  7786. border-radius:0px;
  7787. -moz-box-shadow:none;
  7788. -webkit-box-shadow:none;
  7789. box-shadow:none;
  7790. font-size:11px;
  7791. color:#AAAAAA;
  7792. }
  7793. #u42861.disabled {
  7794. }
  7795. .u42861_input_option {
  7796. font-size:11px;
  7797. }
  7798. #u42862 {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:0px;
  7804. height:0px;
  7805. }
  7806. #u42863_div {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:0px;
  7810. top:0px;
  7811. width:200px;
  7812. height:1187px;
  7813. background:inherit;
  7814. background-color:rgba(255, 255, 255, 1);
  7815. border:none;
  7816. border-radius:0px;
  7817. -moz-box-shadow:none;
  7818. -webkit-box-shadow:none;
  7819. box-shadow:none;
  7820. }
  7821. #u42863 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:120px;
  7825. top:50px;
  7826. width:200px;
  7827. height:1187px;
  7828. display:flex;
  7829. }
  7830. #u42863 .text {
  7831. position:absolute;
  7832. align-self:center;
  7833. padding:2px 2px 2px 2px;
  7834. box-sizing:border-box;
  7835. width:100%;
  7836. }
  7837. #u42863_text {
  7838. border-width:0px;
  7839. word-wrap:break-word;
  7840. text-transform:none;
  7841. visibility:hidden;
  7842. }
  7843. #u42864_div {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:0px;
  7847. top:0px;
  7848. width:200px;
  7849. height:60px;
  7850. background:inherit;
  7851. background-color:rgba(224, 231, 247, 1);
  7852. border:none;
  7853. border-radius:0px;
  7854. -moz-box-shadow:none;
  7855. -webkit-box-shadow:none;
  7856. box-shadow:none;
  7857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7858. font-weight:500;
  7859. font-style:normal;
  7860. font-size:18px;
  7861. }
  7862. #u42864 {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:120px;
  7866. top:50px;
  7867. width:200px;
  7868. height:60px;
  7869. display:flex;
  7870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7871. font-weight:500;
  7872. font-style:normal;
  7873. font-size:18px;
  7874. }
  7875. #u42864 .text {
  7876. position:absolute;
  7877. align-self:center;
  7878. padding:0px 0px 0px 20px;
  7879. box-sizing:border-box;
  7880. width:100%;
  7881. }
  7882. #u42864_text {
  7883. border-width:0px;
  7884. word-wrap:break-word;
  7885. text-transform:none;
  7886. }
  7887. #u42865_div {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:65px;
  7893. height:22px;
  7894. background:inherit;
  7895. background-color:rgba(255, 255, 255, 0);
  7896. border:none;
  7897. border-radius:0px;
  7898. -moz-box-shadow:none;
  7899. -webkit-box-shadow:none;
  7900. box-shadow:none;
  7901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:16px;
  7905. }
  7906. #u42865 {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:147px;
  7910. top:204px;
  7911. width:65px;
  7912. height:22px;
  7913. display:flex;
  7914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. font-size:16px;
  7918. }
  7919. #u42865 .text {
  7920. position:absolute;
  7921. align-self:flex-start;
  7922. padding:0px 0px 0px 0px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u42865_text {
  7927. border-width:0px;
  7928. white-space:nowrap;
  7929. text-transform:none;
  7930. }
  7931. #u42866_div {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:0px;
  7935. top:0px;
  7936. width:65px;
  7937. height:22px;
  7938. background:inherit;
  7939. background-color:rgba(255, 255, 255, 0);
  7940. border:none;
  7941. border-radius:0px;
  7942. -moz-box-shadow:none;
  7943. -webkit-box-shadow:none;
  7944. box-shadow:none;
  7945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7946. font-weight:400;
  7947. font-style:normal;
  7948. font-size:16px;
  7949. }
  7950. #u42866 {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:147px;
  7954. top:248px;
  7955. width:65px;
  7956. height:22px;
  7957. display:flex;
  7958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7959. font-weight:400;
  7960. font-style:normal;
  7961. font-size:16px;
  7962. }
  7963. #u42866 .text {
  7964. position:absolute;
  7965. align-self:flex-start;
  7966. padding:0px 0px 0px 0px;
  7967. box-sizing:border-box;
  7968. width:100%;
  7969. }
  7970. #u42866_text {
  7971. border-width:0px;
  7972. white-space:nowrap;
  7973. text-transform:none;
  7974. }
  7975. #u42867_div {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:65px;
  7981. height:22px;
  7982. background:inherit;
  7983. background-color:rgba(255, 255, 255, 0);
  7984. border:none;
  7985. border-radius:0px;
  7986. -moz-box-shadow:none;
  7987. -webkit-box-shadow:none;
  7988. box-shadow:none;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:16px;
  7993. }
  7994. #u42867 {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:147px;
  7998. top:290px;
  7999. width:65px;
  8000. height:22px;
  8001. display:flex;
  8002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8003. font-weight:400;
  8004. font-style:normal;
  8005. font-size:16px;
  8006. }
  8007. #u42867 .text {
  8008. position:absolute;
  8009. align-self:flex-start;
  8010. padding:0px 0px 0px 0px;
  8011. box-sizing:border-box;
  8012. width:100%;
  8013. }
  8014. #u42867_text {
  8015. border-width:0px;
  8016. white-space:nowrap;
  8017. text-transform:none;
  8018. }
  8019. #u42868_div {
  8020. border-width:0px;
  8021. position:absolute;
  8022. left:0px;
  8023. top:0px;
  8024. width:49px;
  8025. height:17px;
  8026. background:inherit;
  8027. background-color:rgba(255, 255, 255, 0);
  8028. border:none;
  8029. border-radius:0px;
  8030. -moz-box-shadow:none;
  8031. -webkit-box-shadow:none;
  8032. box-shadow:none;
  8033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8034. font-weight:400;
  8035. font-style:normal;
  8036. font-size:12px;
  8037. color:#AAAAAA;
  8038. }
  8039. #u42868 {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:147px;
  8043. top:125px;
  8044. width:49px;
  8045. height:17px;
  8046. display:flex;
  8047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8048. font-weight:400;
  8049. font-style:normal;
  8050. font-size:12px;
  8051. color:#AAAAAA;
  8052. }
  8053. #u42868 .text {
  8054. position:absolute;
  8055. align-self:flex-start;
  8056. padding:0px 0px 0px 0px;
  8057. box-sizing:border-box;
  8058. width:100%;
  8059. }
  8060. #u42868_text {
  8061. border-width:0px;
  8062. white-space:nowrap;
  8063. text-transform:none;
  8064. }
  8065. #u42869_div {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:0px;
  8069. top:0px;
  8070. width:49px;
  8071. height:17px;
  8072. background:inherit;
  8073. background-color:rgba(255, 255, 255, 0);
  8074. border:none;
  8075. border-radius:0px;
  8076. -moz-box-shadow:none;
  8077. -webkit-box-shadow:none;
  8078. box-shadow:none;
  8079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8080. font-weight:400;
  8081. font-style:normal;
  8082. font-size:12px;
  8083. color:#AAAAAA;
  8084. }
  8085. #u42869 {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:147px;
  8089. top:451px;
  8090. width:49px;
  8091. height:17px;
  8092. display:flex;
  8093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8094. font-weight:400;
  8095. font-style:normal;
  8096. font-size:12px;
  8097. color:#AAAAAA;
  8098. }
  8099. #u42869 .text {
  8100. position:absolute;
  8101. align-self:flex-start;
  8102. padding:0px 0px 0px 0px;
  8103. box-sizing:border-box;
  8104. width:100%;
  8105. }
  8106. #u42869_text {
  8107. border-width:0px;
  8108. white-space:nowrap;
  8109. text-transform:none;
  8110. }
  8111. #u42870_img {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:201px;
  8117. height:2px;
  8118. }
  8119. #u42870 {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:120px;
  8123. top:429px;
  8124. width:200px;
  8125. height:1px;
  8126. display:flex;
  8127. }
  8128. #u42870 .text {
  8129. position:absolute;
  8130. align-self:center;
  8131. padding:2px 2px 2px 2px;
  8132. box-sizing:border-box;
  8133. width:100%;
  8134. }
  8135. #u42870_text {
  8136. border-width:0px;
  8137. word-wrap:break-word;
  8138. text-transform:none;
  8139. visibility:hidden;
  8140. }
  8141. #u42871_div {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:0px;
  8145. top:0px;
  8146. width:65px;
  8147. height:22px;
  8148. background:inherit;
  8149. background-color:rgba(255, 255, 255, 0);
  8150. border:none;
  8151. border-radius:0px;
  8152. -moz-box-shadow:none;
  8153. -webkit-box-shadow:none;
  8154. box-shadow:none;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:16px;
  8159. }
  8160. #u42871 {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:147px;
  8164. top:389px;
  8165. width:65px;
  8166. height:22px;
  8167. display:flex;
  8168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8169. font-weight:400;
  8170. font-style:normal;
  8171. font-size:16px;
  8172. }
  8173. #u42871 .text {
  8174. position:absolute;
  8175. align-self:flex-start;
  8176. padding:0px 0px 0px 0px;
  8177. box-sizing:border-box;
  8178. width:100%;
  8179. }
  8180. #u42871_text {
  8181. border-width:0px;
  8182. white-space:nowrap;
  8183. text-transform:none;
  8184. }
  8185. #u42872_div {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:49px;
  8191. height:17px;
  8192. background:inherit;
  8193. background-color:rgba(255, 255, 255, 0);
  8194. border:none;
  8195. border-radius:0px;
  8196. -moz-box-shadow:none;
  8197. -webkit-box-shadow:none;
  8198. box-shadow:none;
  8199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8200. font-weight:400;
  8201. font-style:normal;
  8202. font-size:12px;
  8203. color:#AAAAAA;
  8204. }
  8205. #u42872 {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:147px;
  8209. top:353px;
  8210. width:49px;
  8211. height:17px;
  8212. display:flex;
  8213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8214. font-weight:400;
  8215. font-style:normal;
  8216. font-size:12px;
  8217. color:#AAAAAA;
  8218. }
  8219. #u42872 .text {
  8220. position:absolute;
  8221. align-self:flex-start;
  8222. padding:0px 0px 0px 0px;
  8223. box-sizing:border-box;
  8224. width:100%;
  8225. }
  8226. #u42872_text {
  8227. border-width:0px;
  8228. white-space:nowrap;
  8229. text-transform:none;
  8230. }
  8231. #u42873_img {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:0px;
  8235. top:0px;
  8236. width:201px;
  8237. height:2px;
  8238. }
  8239. #u42873 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:120px;
  8243. top:331px;
  8244. width:200px;
  8245. height:1px;
  8246. display:flex;
  8247. }
  8248. #u42873 .text {
  8249. position:absolute;
  8250. align-self:center;
  8251. padding:2px 2px 2px 2px;
  8252. box-sizing:border-box;
  8253. width:100%;
  8254. }
  8255. #u42873_text {
  8256. border-width:0px;
  8257. word-wrap:break-word;
  8258. text-transform:none;
  8259. visibility:hidden;
  8260. }
  8261. #u42874_div {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:0px;
  8265. top:0px;
  8266. width:65px;
  8267. height:22px;
  8268. background:inherit;
  8269. background-color:rgba(255, 255, 255, 0);
  8270. border:none;
  8271. border-radius:0px;
  8272. -moz-box-shadow:none;
  8273. -webkit-box-shadow:none;
  8274. box-shadow:none;
  8275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8276. font-weight:400;
  8277. font-style:normal;
  8278. font-size:16px;
  8279. }
  8280. #u42874 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:147px;
  8284. top:162px;
  8285. width:65px;
  8286. height:22px;
  8287. display:flex;
  8288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8289. font-weight:400;
  8290. font-style:normal;
  8291. font-size:16px;
  8292. }
  8293. #u42874 .text {
  8294. position:absolute;
  8295. align-self:flex-start;
  8296. padding:0px 0px 0px 0px;
  8297. box-sizing:border-box;
  8298. width:100%;
  8299. }
  8300. #u42874_text {
  8301. border-width:0px;
  8302. white-space:nowrap;
  8303. text-transform:none;
  8304. }
  8305. #u42875_div {
  8306. border-width:0px;
  8307. position:absolute;
  8308. left:0px;
  8309. top:0px;
  8310. width:65px;
  8311. height:22px;
  8312. background:inherit;
  8313. background-color:rgba(255, 255, 255, 0);
  8314. border:none;
  8315. border-radius:0px;
  8316. -moz-box-shadow:none;
  8317. -webkit-box-shadow:none;
  8318. box-shadow:none;
  8319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8320. font-weight:400;
  8321. font-style:normal;
  8322. font-size:16px;
  8323. }
  8324. #u42875 {
  8325. border-width:0px;
  8326. position:absolute;
  8327. left:148px;
  8328. top:528px;
  8329. width:65px;
  8330. height:22px;
  8331. display:flex;
  8332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8333. font-weight:400;
  8334. font-style:normal;
  8335. font-size:16px;
  8336. }
  8337. #u42875 .text {
  8338. position:absolute;
  8339. align-self:flex-start;
  8340. padding:0px 0px 0px 0px;
  8341. box-sizing:border-box;
  8342. width:100%;
  8343. }
  8344. #u42875_text {
  8345. border-width:0px;
  8346. white-space:nowrap;
  8347. text-transform:none;
  8348. }
  8349. #u42876_div {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:65px;
  8355. height:22px;
  8356. background:inherit;
  8357. background-color:rgba(255, 255, 255, 0);
  8358. border:none;
  8359. border-radius:0px;
  8360. -moz-box-shadow:none;
  8361. -webkit-box-shadow:none;
  8362. box-shadow:none;
  8363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8364. font-weight:400;
  8365. font-style:normal;
  8366. font-size:16px;
  8367. }
  8368. #u42876 {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:148px;
  8372. top:486px;
  8373. width:65px;
  8374. height:22px;
  8375. display:flex;
  8376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8377. font-weight:400;
  8378. font-style:normal;
  8379. font-size:16px;
  8380. }
  8381. #u42876 .text {
  8382. position:absolute;
  8383. align-self:flex-start;
  8384. padding:0px 0px 0px 0px;
  8385. box-sizing:border-box;
  8386. width:100%;
  8387. }
  8388. #u42876_text {
  8389. border-width:0px;
  8390. white-space:nowrap;
  8391. text-transform:none;
  8392. }
  8393. #u42877_div {
  8394. border-width:0px;
  8395. position:absolute;
  8396. left:0px;
  8397. top:0px;
  8398. width:300px;
  8399. height:1080px;
  8400. background:inherit;
  8401. background-color:rgba(242, 242, 242, 1);
  8402. border:none;
  8403. border-radius:4px;
  8404. -moz-box-shadow:none;
  8405. -webkit-box-shadow:none;
  8406. box-shadow:none;
  8407. }
  8408. #u42877 {
  8409. border-width:0px;
  8410. position:absolute;
  8411. left:330px;
  8412. top:50px;
  8413. width:300px;
  8414. height:1080px;
  8415. display:flex;
  8416. }
  8417. #u42877 .text {
  8418. position:absolute;
  8419. align-self:center;
  8420. padding:2px 2px 2px 2px;
  8421. box-sizing:border-box;
  8422. width:100%;
  8423. }
  8424. #u42877_text {
  8425. border-width:0px;
  8426. word-wrap:break-word;
  8427. text-transform:none;
  8428. visibility:hidden;
  8429. }
  8430. #u42878_div {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:0px;
  8434. top:0px;
  8435. width:73px;
  8436. height:30px;
  8437. background:inherit;
  8438. background-color:rgba(255, 255, 255, 0);
  8439. border:none;
  8440. border-radius:0px;
  8441. -moz-box-shadow:none;
  8442. -webkit-box-shadow:none;
  8443. box-shadow:none;
  8444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8445. font-weight:400;
  8446. font-style:normal;
  8447. font-size:18px;
  8448. color:#000000;
  8449. line-height:30px;
  8450. }
  8451. #u42878 {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:350px;
  8455. top:70px;
  8456. width:73px;
  8457. height:30px;
  8458. display:flex;
  8459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8460. font-weight:400;
  8461. font-style:normal;
  8462. font-size:18px;
  8463. color:#000000;
  8464. line-height:30px;
  8465. }
  8466. #u42878 .text {
  8467. position:absolute;
  8468. align-self:flex-start;
  8469. padding:0px 0px 0px 0px;
  8470. box-sizing:border-box;
  8471. width:100%;
  8472. }
  8473. #u42878_text {
  8474. border-width:0px;
  8475. white-space:nowrap;
  8476. text-transform:none;
  8477. }
  8478. #u42879 {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:0px;
  8484. height:0px;
  8485. }
  8486. #u42880_div {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:0px;
  8490. top:0px;
  8491. width:300px;
  8492. height:60px;
  8493. background:inherit;
  8494. background-color:rgba(0, 153, 255, 0.0980392156862745);
  8495. border:none;
  8496. border-radius:4px;
  8497. -moz-box-shadow:none;
  8498. -webkit-box-shadow:none;
  8499. box-shadow:none;
  8500. font-family:'Microsoft YaHei', sans-serif;
  8501. font-weight:400;
  8502. font-style:normal;
  8503. font-size:14px;
  8504. color:#CCCCCC;
  8505. text-align:left;
  8506. }
  8507. #u42880 {
  8508. border-width:0px;
  8509. position:absolute;
  8510. left:330px;
  8511. top:120px;
  8512. width:300px;
  8513. height:60px;
  8514. display:flex;
  8515. font-family:'Microsoft YaHei', sans-serif;
  8516. font-weight:400;
  8517. font-style:normal;
  8518. font-size:14px;
  8519. color:#CCCCCC;
  8520. text-align:left;
  8521. }
  8522. #u42880 .text {
  8523. position:absolute;
  8524. align-self:center;
  8525. padding:2px 8px 2px 8px;
  8526. box-sizing:border-box;
  8527. width:100%;
  8528. }
  8529. #u42880_text {
  8530. border-width:0px;
  8531. word-wrap:break-word;
  8532. text-transform:none;
  8533. visibility:hidden;
  8534. }
  8535. #u42881_div {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:0px;
  8539. top:0px;
  8540. width:153px;
  8541. height:20px;
  8542. background:inherit;
  8543. background-color:rgba(51, 51, 51, 0);
  8544. border:none;
  8545. border-radius:4px;
  8546. -moz-box-shadow:none;
  8547. -webkit-box-shadow:none;
  8548. box-shadow:none;
  8549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8550. font-weight:400;
  8551. font-style:normal;
  8552. font-size:14px;
  8553. text-align:left;
  8554. }
  8555. #u42881 {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:365px;
  8559. top:140px;
  8560. width:153px;
  8561. height:20px;
  8562. display:flex;
  8563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8564. font-weight:400;
  8565. font-style:normal;
  8566. font-size:14px;
  8567. text-align:left;
  8568. }
  8569. #u42881 .text {
  8570. position:absolute;
  8571. align-self:center;
  8572. padding:0px 0px 0px 0px;
  8573. box-sizing:border-box;
  8574. width:100%;
  8575. }
  8576. #u42881_text {
  8577. border-width:0px;
  8578. word-wrap:break-word;
  8579. text-transform:none;
  8580. }
  8581. #u42882_div {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:37px;
  8587. height:30px;
  8588. background:inherit;
  8589. background-color:rgba(255, 255, 255, 0);
  8590. border:none;
  8591. border-radius:0px;
  8592. -moz-box-shadow:none;
  8593. -webkit-box-shadow:none;
  8594. box-shadow:none;
  8595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8596. font-weight:400;
  8597. font-style:normal;
  8598. font-size:14px;
  8599. color:#298FFF;
  8600. line-height:30px;
  8601. }
  8602. #u42882 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:580px;
  8606. top:70px;
  8607. width:37px;
  8608. height:30px;
  8609. display:flex;
  8610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8611. font-weight:400;
  8612. font-style:normal;
  8613. font-size:14px;
  8614. color:#298FFF;
  8615. line-height:30px;
  8616. }
  8617. #u42882 .text {
  8618. position:absolute;
  8619. align-self:flex-start;
  8620. padding:0px 0px 0px 0px;
  8621. box-sizing:border-box;
  8622. width:100%;
  8623. }
  8624. #u42882_text {
  8625. border-width:0px;
  8626. white-space:nowrap;
  8627. text-transform:none;
  8628. }
  8629. #u42883 {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:0px;
  8633. top:0px;
  8634. width:0px;
  8635. height:0px;
  8636. }
  8637. #u42884_div {
  8638. border-width:0px;
  8639. position:absolute;
  8640. left:0px;
  8641. top:0px;
  8642. width:300px;
  8643. height:60px;
  8644. background:inherit;
  8645. background-color:rgba(255, 255, 255, 0.0980392156862745);
  8646. border:none;
  8647. border-radius:4px;
  8648. -moz-box-shadow:none;
  8649. -webkit-box-shadow:none;
  8650. box-shadow:none;
  8651. font-family:'Microsoft YaHei', sans-serif;
  8652. font-weight:400;
  8653. font-style:normal;
  8654. font-size:14px;
  8655. color:#CCCCCC;
  8656. text-align:left;
  8657. }
  8658. #u42884 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:330px;
  8662. top:180px;
  8663. width:300px;
  8664. height:60px;
  8665. display:flex;
  8666. font-family:'Microsoft YaHei', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:14px;
  8670. color:#CCCCCC;
  8671. text-align:left;
  8672. }
  8673. #u42884 .text {
  8674. position:absolute;
  8675. align-self:center;
  8676. padding:2px 8px 2px 8px;
  8677. box-sizing:border-box;
  8678. width:100%;
  8679. }
  8680. #u42884_text {
  8681. border-width:0px;
  8682. word-wrap:break-word;
  8683. text-transform:none;
  8684. visibility:hidden;
  8685. }
  8686. #u42885_div {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:0px;
  8690. top:0px;
  8691. width:153px;
  8692. height:20px;
  8693. background:inherit;
  8694. background-color:rgba(51, 51, 51, 0);
  8695. border:none;
  8696. border-radius:4px;
  8697. -moz-box-shadow:none;
  8698. -webkit-box-shadow:none;
  8699. box-shadow:none;
  8700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8701. font-weight:400;
  8702. font-style:normal;
  8703. font-size:14px;
  8704. text-align:left;
  8705. }
  8706. #u42885 {
  8707. border-width:0px;
  8708. position:absolute;
  8709. left:365px;
  8710. top:200px;
  8711. width:153px;
  8712. height:20px;
  8713. display:flex;
  8714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8715. font-weight:400;
  8716. font-style:normal;
  8717. font-size:14px;
  8718. text-align:left;
  8719. }
  8720. #u42885 .text {
  8721. position:absolute;
  8722. align-self:center;
  8723. padding:0px 0px 0px 0px;
  8724. box-sizing:border-box;
  8725. width:100%;
  8726. }
  8727. #u42885_text {
  8728. border-width:0px;
  8729. word-wrap:break-word;
  8730. text-transform:none;
  8731. }
  8732. #u42886 {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:0px;
  8736. top:0px;
  8737. width:0px;
  8738. height:0px;
  8739. }
  8740. #u42887_div {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:0px;
  8744. top:0px;
  8745. width:300px;
  8746. height:60px;
  8747. background:inherit;
  8748. background-color:rgba(255, 255, 255, 0.0980392156862745);
  8749. border:none;
  8750. border-radius:4px;
  8751. -moz-box-shadow:none;
  8752. -webkit-box-shadow:none;
  8753. box-shadow:none;
  8754. font-family:'Microsoft YaHei', sans-serif;
  8755. font-weight:400;
  8756. font-style:normal;
  8757. font-size:14px;
  8758. color:#CCCCCC;
  8759. text-align:left;
  8760. }
  8761. #u42887 {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:330px;
  8765. top:240px;
  8766. width:300px;
  8767. height:60px;
  8768. display:flex;
  8769. font-family:'Microsoft YaHei', sans-serif;
  8770. font-weight:400;
  8771. font-style:normal;
  8772. font-size:14px;
  8773. color:#CCCCCC;
  8774. text-align:left;
  8775. }
  8776. #u42887 .text {
  8777. position:absolute;
  8778. align-self:center;
  8779. padding:2px 8px 2px 8px;
  8780. box-sizing:border-box;
  8781. width:100%;
  8782. }
  8783. #u42887_text {
  8784. border-width:0px;
  8785. word-wrap:break-word;
  8786. text-transform:none;
  8787. visibility:hidden;
  8788. }
  8789. #u42888_div {
  8790. border-width:0px;
  8791. position:absolute;
  8792. left:0px;
  8793. top:0px;
  8794. width:153px;
  8795. height:20px;
  8796. background:inherit;
  8797. background-color:rgba(51, 51, 51, 0);
  8798. border:none;
  8799. border-radius:4px;
  8800. -moz-box-shadow:none;
  8801. -webkit-box-shadow:none;
  8802. box-shadow:none;
  8803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8804. font-weight:400;
  8805. font-style:normal;
  8806. font-size:14px;
  8807. text-align:left;
  8808. }
  8809. #u42888 {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:365px;
  8813. top:260px;
  8814. width:153px;
  8815. height:20px;
  8816. display:flex;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:14px;
  8821. text-align:left;
  8822. }
  8823. #u42888 .text {
  8824. position:absolute;
  8825. align-self:center;
  8826. padding:0px 0px 0px 0px;
  8827. box-sizing:border-box;
  8828. width:100%;
  8829. }
  8830. #u42888_text {
  8831. border-width:0px;
  8832. word-wrap:break-word;
  8833. text-transform:none;
  8834. }
  8835. #u42889 {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:0px;
  8839. top:0px;
  8840. width:0px;
  8841. height:0px;
  8842. }
  8843. #u42890_img {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:15px;
  8849. height:4px;
  8850. }
  8851. #u42890 {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:595px;
  8855. top:152px;
  8856. width:15px;
  8857. height:4px;
  8858. display:flex;
  8859. }
  8860. #u42890 .text {
  8861. position:absolute;
  8862. align-self:center;
  8863. padding:2px 2px 2px 2px;
  8864. box-sizing:border-box;
  8865. width:100%;
  8866. }
  8867. #u42890_text {
  8868. border-width:0px;
  8869. word-wrap:break-word;
  8870. text-transform:none;
  8871. visibility:hidden;
  8872. }
  8873. #u42891 {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:0px;
  8877. top:0px;
  8878. width:0px;
  8879. height:0px;
  8880. }
  8881. #u42892_div {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:0px;
  8885. top:0px;
  8886. width:100px;
  8887. height:140px;
  8888. background:inherit;
  8889. background-color:rgba(255, 255, 255, 1);
  8890. box-sizing:border-box;
  8891. border-width:1px;
  8892. border-style:solid;
  8893. border-color:rgba(242, 242, 242, 1);
  8894. border-radius:4px;
  8895. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8896. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8897. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8899. font-weight:400;
  8900. font-style:normal;
  8901. font-size:14px;
  8902. text-align:left;
  8903. }
  8904. #u42892 {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:510px;
  8908. top:160px;
  8909. width:100px;
  8910. height:140px;
  8911. display:flex;
  8912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8913. font-weight:400;
  8914. font-style:normal;
  8915. font-size:14px;
  8916. text-align:left;
  8917. }
  8918. #u42892 .text {
  8919. position:absolute;
  8920. align-self:center;
  8921. padding:2px 2px 2px 2px;
  8922. box-sizing:border-box;
  8923. width:100%;
  8924. }
  8925. #u42892_text {
  8926. border-width:0px;
  8927. word-wrap:break-word;
  8928. text-transform:none;
  8929. visibility:hidden;
  8930. }
  8931. #u42893_div {
  8932. border-width:0px;
  8933. position:absolute;
  8934. left:0px;
  8935. top:0px;
  8936. width:85px;
  8937. height:40px;
  8938. background:inherit;
  8939. background-color:rgba(255, 255, 255, 1);
  8940. box-sizing:border-box;
  8941. border-width:1px;
  8942. border-style:solid;
  8943. border-color:rgba(215, 215, 215, 1);
  8944. border-left:0px;
  8945. border-top:0px;
  8946. border-right:0px;
  8947. border-radius:0px;
  8948. border-bottom-right-radius:0px;
  8949. border-bottom-left-radius:0px;
  8950. -moz-box-shadow:none;
  8951. -webkit-box-shadow:none;
  8952. box-shadow:none;
  8953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8954. font-weight:400;
  8955. font-style:normal;
  8956. font-size:14px;
  8957. }
  8958. #u42893 {
  8959. border-width:0px;
  8960. position:absolute;
  8961. left:518px;
  8962. top:210px;
  8963. width:85px;
  8964. height:40px;
  8965. display:flex;
  8966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8967. font-weight:400;
  8968. font-style:normal;
  8969. font-size:14px;
  8970. }
  8971. #u42893 .text {
  8972. position:absolute;
  8973. align-self:center;
  8974. padding:2px 2px 2px 2px;
  8975. box-sizing:border-box;
  8976. width:100%;
  8977. }
  8978. #u42893_text {
  8979. border-width:0px;
  8980. word-wrap:break-word;
  8981. text-transform:none;
  8982. }
  8983. #u42894_div {
  8984. border-width:0px;
  8985. position:absolute;
  8986. left:0px;
  8987. top:0px;
  8988. width:85px;
  8989. height:40px;
  8990. background:inherit;
  8991. background-color:rgba(255, 255, 255, 1);
  8992. border:none;
  8993. border-left:0px;
  8994. border-top:0px;
  8995. border-right:0px;
  8996. border-radius:0px;
  8997. border-bottom-right-radius:0px;
  8998. border-bottom-left-radius:0px;
  8999. -moz-box-shadow:none;
  9000. -webkit-box-shadow:none;
  9001. box-shadow:none;
  9002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9003. font-weight:400;
  9004. font-style:normal;
  9005. font-size:14px;
  9006. }
  9007. #u42894 {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:518px;
  9011. top:250px;
  9012. width:85px;
  9013. height:40px;
  9014. display:flex;
  9015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9016. font-weight:400;
  9017. font-style:normal;
  9018. font-size:14px;
  9019. }
  9020. #u42894 .text {
  9021. position:absolute;
  9022. align-self:center;
  9023. padding:2px 2px 2px 2px;
  9024. box-sizing:border-box;
  9025. width:100%;
  9026. }
  9027. #u42894_text {
  9028. border-width:0px;
  9029. word-wrap:break-word;
  9030. text-transform:none;
  9031. }
  9032. #u42895_div {
  9033. border-width:0px;
  9034. position:absolute;
  9035. left:0px;
  9036. top:0px;
  9037. width:85px;
  9038. height:40px;
  9039. background:inherit;
  9040. background-color:rgba(255, 255, 255, 1);
  9041. box-sizing:border-box;
  9042. border-width:1px;
  9043. border-style:solid;
  9044. border-color:rgba(215, 215, 215, 1);
  9045. border-left:0px;
  9046. border-top:0px;
  9047. border-right:0px;
  9048. border-radius:0px;
  9049. border-bottom-right-radius:0px;
  9050. border-bottom-left-radius:0px;
  9051. -moz-box-shadow:none;
  9052. -webkit-box-shadow:none;
  9053. box-shadow:none;
  9054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9055. font-weight:400;
  9056. font-style:normal;
  9057. font-size:14px;
  9058. }
  9059. #u42895 {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:518px;
  9063. top:170px;
  9064. width:85px;
  9065. height:40px;
  9066. display:flex;
  9067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9068. font-weight:400;
  9069. font-style:normal;
  9070. font-size:14px;
  9071. }
  9072. #u42895 .text {
  9073. position:absolute;
  9074. align-self:center;
  9075. padding:2px 2px 2px 2px;
  9076. box-sizing:border-box;
  9077. width:100%;
  9078. }
  9079. #u42895_text {
  9080. border-width:0px;
  9081. word-wrap:break-word;
  9082. text-transform:none;
  9083. }
  9084. #u42896_img {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:0px;
  9088. top:0px;
  9089. width:6px;
  9090. height:9px;
  9091. }
  9092. #u42896 {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:608px;
  9096. top:156px;
  9097. width:6px;
  9098. height:9px;
  9099. display:flex;
  9100. }
  9101. #u42896 .text {
  9102. position:absolute;
  9103. align-self:center;
  9104. padding:2px 2px 2px 2px;
  9105. box-sizing:border-box;
  9106. width:100%;
  9107. }
  9108. #u42896_text {
  9109. border-width:0px;
  9110. word-wrap:break-word;
  9111. text-transform:none;
  9112. visibility:hidden;
  9113. }
  9114. #u42897 {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:0px;
  9118. top:0px;
  9119. width:0px;
  9120. height:0px;
  9121. }
  9122. #u42898_div {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:0px;
  9126. top:0px;
  9127. width:600px;
  9128. height:217px;
  9129. background:inherit;
  9130. background-color:rgba(255, 255, 255, 1);
  9131. box-sizing:border-box;
  9132. border-width:1px;
  9133. border-style:solid;
  9134. border-color:rgba(215, 215, 215, 1);
  9135. border-radius:0px;
  9136. -moz-box-shadow:none;
  9137. -webkit-box-shadow:none;
  9138. box-shadow:none;
  9139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9140. font-weight:400;
  9141. font-style:normal;
  9142. font-size:14px;
  9143. color:#AAAAAA;
  9144. text-align:center;
  9145. line-height:30px;
  9146. }
  9147. #u42898 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:407px;
  9151. top:641px;
  9152. width:600px;
  9153. height:217px;
  9154. display:flex;
  9155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9156. font-weight:400;
  9157. font-style:normal;
  9158. font-size:14px;
  9159. color:#AAAAAA;
  9160. text-align:center;
  9161. line-height:30px;
  9162. }
  9163. #u42898 .text {
  9164. position:absolute;
  9165. align-self:center;
  9166. padding:5px 10px 5px 10px;
  9167. box-sizing:border-box;
  9168. width:100%;
  9169. }
  9170. #u42898_text {
  9171. border-width:0px;
  9172. word-wrap:break-word;
  9173. text-transform:none;
  9174. visibility:hidden;
  9175. }
  9176. #u42899_div {
  9177. border-width:0px;
  9178. position:absolute;
  9179. left:0px;
  9180. top:0px;
  9181. width:83px;
  9182. height:35px;
  9183. background:inherit;
  9184. background-color:rgba(255, 255, 255, 0);
  9185. border:none;
  9186. border-top:0px;
  9187. border-right:0px;
  9188. border-bottom:0px;
  9189. border-radius:0px;
  9190. border-top-left-radius:0px;
  9191. border-bottom-left-radius:0px;
  9192. -moz-box-shadow:none;
  9193. -webkit-box-shadow:none;
  9194. box-shadow:none;
  9195. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9196. font-weight:500;
  9197. font-style:normal;
  9198. font-size:18px;
  9199. }
  9200. #u42899 {
  9201. border-width:0px;
  9202. position:absolute;
  9203. left:427px;
  9204. top:659px;
  9205. width:83px;
  9206. height:35px;
  9207. display:flex;
  9208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9209. font-weight:500;
  9210. font-style:normal;
  9211. font-size:18px;
  9212. }
  9213. #u42899 .text {
  9214. position:absolute;
  9215. align-self:center;
  9216. padding:5px 10px 5px 0px;
  9217. box-sizing:border-box;
  9218. width:100%;
  9219. }
  9220. #u42899_text {
  9221. border-width:0px;
  9222. white-space:nowrap;
  9223. text-transform:none;
  9224. }
  9225. #u42900 {
  9226. border-width:0px;
  9227. position:absolute;
  9228. left:0px;
  9229. top:0px;
  9230. width:0px;
  9231. height:0px;
  9232. }
  9233. #u42901_div {
  9234. border-width:0px;
  9235. position:absolute;
  9236. left:0px;
  9237. top:0px;
  9238. width:600px;
  9239. height:60px;
  9240. background:inherit;
  9241. background-color:rgba(255, 255, 255, 1);
  9242. box-sizing:border-box;
  9243. border-width:1px;
  9244. border-style:solid;
  9245. border-color:rgba(215, 215, 215, 1);
  9246. border-radius:0px;
  9247. -moz-box-shadow:none;
  9248. -webkit-box-shadow:none;
  9249. box-shadow:none;
  9250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9251. font-weight:400;
  9252. font-style:normal;
  9253. font-size:14px;
  9254. color:#AAAAAA;
  9255. text-align:center;
  9256. line-height:30px;
  9257. }
  9258. #u42901 {
  9259. border-width:0px;
  9260. position:absolute;
  9261. left:407px;
  9262. top:798px;
  9263. width:600px;
  9264. height:60px;
  9265. display:flex;
  9266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9267. font-weight:400;
  9268. font-style:normal;
  9269. font-size:14px;
  9270. color:#AAAAAA;
  9271. text-align:center;
  9272. line-height:30px;
  9273. }
  9274. #u42901 .text {
  9275. position:absolute;
  9276. align-self:center;
  9277. padding:5px 10px 5px 10px;
  9278. box-sizing:border-box;
  9279. width:100%;
  9280. }
  9281. #u42901_text {
  9282. border-width:0px;
  9283. word-wrap:break-word;
  9284. text-transform:none;
  9285. visibility:hidden;
  9286. }
  9287. #u42902_div {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:80px;
  9293. height:30px;
  9294. background:inherit;
  9295. background-color:rgba(24, 144, 255, 1);
  9296. border:none;
  9297. border-radius:4px;
  9298. -moz-box-shadow:none;
  9299. -webkit-box-shadow:none;
  9300. box-shadow:none;
  9301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9302. font-weight:400;
  9303. font-style:normal;
  9304. font-size:14px;
  9305. color:#FFFFFF;
  9306. }
  9307. #u42902 {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:872px;
  9311. top:813px;
  9312. width:80px;
  9313. height:30px;
  9314. display:flex;
  9315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9316. font-weight:400;
  9317. font-style:normal;
  9318. font-size:14px;
  9319. color:#FFFFFF;
  9320. }
  9321. #u42902 .text {
  9322. position:absolute;
  9323. align-self:center;
  9324. padding:2px 2px 2px 2px;
  9325. box-sizing:border-box;
  9326. width:100%;
  9327. }
  9328. #u42902_text {
  9329. border-width:0px;
  9330. word-wrap:break-word;
  9331. text-transform:none;
  9332. }
  9333. #u42903_div {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:80px;
  9339. height:30px;
  9340. background:inherit;
  9341. background-color:rgba(255, 255, 255, 1);
  9342. box-sizing:border-box;
  9343. border-width:1px;
  9344. border-style:solid;
  9345. border-color:rgba(170, 170, 170, 1);
  9346. border-radius:4px;
  9347. -moz-box-shadow:none;
  9348. -webkit-box-shadow:none;
  9349. box-shadow:none;
  9350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9351. font-weight:400;
  9352. font-style:normal;
  9353. font-size:14px;
  9354. }
  9355. #u42903 {
  9356. border-width:0px;
  9357. position:absolute;
  9358. left:772px;
  9359. top:813px;
  9360. width:80px;
  9361. height:30px;
  9362. display:flex;
  9363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9364. font-weight:400;
  9365. font-style:normal;
  9366. font-size:14px;
  9367. }
  9368. #u42903 .text {
  9369. position:absolute;
  9370. align-self:center;
  9371. padding:2px 2px 2px 2px;
  9372. box-sizing:border-box;
  9373. width:100%;
  9374. }
  9375. #u42903_text {
  9376. border-width:0px;
  9377. word-wrap:break-word;
  9378. text-transform:none;
  9379. }
  9380. #u42904_div {
  9381. border-width:0px;
  9382. position:absolute;
  9383. left:0px;
  9384. top:0px;
  9385. width:60px;
  9386. height:40px;
  9387. background:inherit;
  9388. background-color:rgba(255, 255, 255, 0);
  9389. border:none;
  9390. border-top:0px;
  9391. border-right:0px;
  9392. border-bottom:0px;
  9393. border-radius:0px;
  9394. border-top-left-radius:0px;
  9395. border-bottom-left-radius:0px;
  9396. -moz-box-shadow:none;
  9397. -webkit-box-shadow:none;
  9398. box-shadow:none;
  9399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9400. font-weight:400;
  9401. font-style:normal;
  9402. font-size:14px;
  9403. color:#7F7F7F;
  9404. text-align:right;
  9405. }
  9406. #u42904 {
  9407. border-width:0px;
  9408. position:absolute;
  9409. left:468px;
  9410. top:717px;
  9411. width:60px;
  9412. height:40px;
  9413. display:flex;
  9414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9415. font-weight:400;
  9416. font-style:normal;
  9417. font-size:14px;
  9418. color:#7F7F7F;
  9419. text-align:right;
  9420. }
  9421. #u42904 .text {
  9422. position:absolute;
  9423. align-self:center;
  9424. padding:5px 10px 5px 0px;
  9425. box-sizing:border-box;
  9426. width:100%;
  9427. }
  9428. #u42904_text {
  9429. border-width:0px;
  9430. white-space:nowrap;
  9431. text-transform:none;
  9432. }
  9433. #u42905 {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:0px;
  9437. top:0px;
  9438. width:0px;
  9439. height:0px;
  9440. }
  9441. #u42906_div {
  9442. border-width:0px;
  9443. position:absolute;
  9444. left:0px;
  9445. top:0px;
  9446. width:400px;
  9447. height:40px;
  9448. background:inherit;
  9449. background-color:rgba(255, 255, 255, 1);
  9450. box-sizing:border-box;
  9451. border-width:1px;
  9452. border-style:solid;
  9453. border-color:rgba(201, 201, 201, 1);
  9454. border-radius:4px;
  9455. -moz-box-shadow:none;
  9456. -webkit-box-shadow:none;
  9457. box-shadow:none;
  9458. font-family:'Microsoft YaHei', sans-serif;
  9459. font-weight:400;
  9460. font-style:normal;
  9461. font-size:14px;
  9462. color:#CCCCCC;
  9463. text-align:left;
  9464. }
  9465. #u42906 {
  9466. border-width:0px;
  9467. position:absolute;
  9468. left:538px;
  9469. top:718px;
  9470. width:400px;
  9471. height:40px;
  9472. display:flex;
  9473. font-family:'Microsoft YaHei', sans-serif;
  9474. font-weight:400;
  9475. font-style:normal;
  9476. font-size:14px;
  9477. color:#CCCCCC;
  9478. text-align:left;
  9479. }
  9480. #u42906 .text {
  9481. position:absolute;
  9482. align-self:center;
  9483. padding:2px 8px 2px 8px;
  9484. box-sizing:border-box;
  9485. width:100%;
  9486. }
  9487. #u42906_text {
  9488. border-width:0px;
  9489. word-wrap:break-word;
  9490. text-transform:none;
  9491. visibility:hidden;
  9492. }
  9493. #u42907_input {
  9494. position:absolute;
  9495. left:0px;
  9496. top:0px;
  9497. width:380px;
  9498. height:38px;
  9499. padding:2px 2px 2px 2px;
  9500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9501. font-weight:400;
  9502. font-style:normal;
  9503. font-size:14px;
  9504. letter-spacing:normal;
  9505. color:#000000;
  9506. vertical-align:none;
  9507. text-align:left;
  9508. text-transform:none;
  9509. background-color:transparent;
  9510. border-color:transparent;
  9511. }
  9512. #u42907_input.disabled {
  9513. position:absolute;
  9514. left:0px;
  9515. top:0px;
  9516. width:380px;
  9517. height:38px;
  9518. padding:2px 2px 2px 2px;
  9519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9520. font-weight:400;
  9521. font-style:normal;
  9522. font-size:14px;
  9523. letter-spacing:normal;
  9524. color:#000000;
  9525. vertical-align:none;
  9526. text-align:left;
  9527. text-transform:none;
  9528. background-color:transparent;
  9529. border-color:transparent;
  9530. }
  9531. #u42907_div {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:0px;
  9535. top:0px;
  9536. width:380px;
  9537. height:38px;
  9538. background:inherit;
  9539. background-color:rgba(255, 255, 255, 1);
  9540. border:none;
  9541. border-radius:0px;
  9542. -moz-box-shadow:none;
  9543. -webkit-box-shadow:none;
  9544. box-shadow:none;
  9545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9546. font-weight:400;
  9547. font-style:normal;
  9548. font-size:14px;
  9549. }
  9550. #u42907 {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:549px;
  9554. top:719px;
  9555. width:380px;
  9556. height:38px;
  9557. display:flex;
  9558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9559. font-weight:400;
  9560. font-style:normal;
  9561. font-size:14px;
  9562. }
  9563. #u42907 .text {
  9564. position:absolute;
  9565. align-self:center;
  9566. padding:2px 2px 2px 2px;
  9567. box-sizing:border-box;
  9568. width:100%;
  9569. }
  9570. #u42907_div.disabled {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:0px;
  9574. top:0px;
  9575. width:380px;
  9576. height:38px;
  9577. background:inherit;
  9578. background-color:rgba(240, 240, 240, 1);
  9579. border:none;
  9580. border-radius:0px;
  9581. -moz-box-shadow:none;
  9582. -webkit-box-shadow:none;
  9583. box-shadow:none;
  9584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9585. font-weight:400;
  9586. font-style:normal;
  9587. font-size:14px;
  9588. }
  9589. #u42907.disabled {
  9590. }
  9591. #u42908_div {
  9592. border-width:0px;
  9593. position:absolute;
  9594. left:0px;
  9595. top:0px;
  9596. width:87px;
  9597. height:30px;
  9598. background:inherit;
  9599. background-color:rgba(255, 255, 255, 1);
  9600. box-sizing:border-box;
  9601. border-width:1px;
  9602. border-style:solid;
  9603. border-color:rgba(170, 170, 170, 1);
  9604. border-radius:4px;
  9605. -moz-box-shadow:none;
  9606. -webkit-box-shadow:none;
  9607. box-shadow:none;
  9608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9609. font-weight:400;
  9610. font-style:normal;
  9611. font-size:14px;
  9612. color:#555555;
  9613. }
  9614. #u42908 {
  9615. border-width:0px;
  9616. position:absolute;
  9617. left:744px;
  9618. top:191px;
  9619. width:87px;
  9620. height:30px;
  9621. display:flex;
  9622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:14px;
  9626. color:#555555;
  9627. }
  9628. #u42908 .text {
  9629. position:absolute;
  9630. align-self:center;
  9631. padding:5px 15px 5px 15px;
  9632. box-sizing:border-box;
  9633. width:100%;
  9634. }
  9635. #u42908_text {
  9636. border-width:0px;
  9637. white-space:nowrap;
  9638. text-transform:none;
  9639. }
  9640. #u42909_div {
  9641. border-width:0px;
  9642. position:absolute;
  9643. left:0px;
  9644. top:0px;
  9645. width:87px;
  9646. height:30px;
  9647. background:inherit;
  9648. background-color:rgba(255, 255, 255, 1);
  9649. box-sizing:border-box;
  9650. border-width:1px;
  9651. border-style:solid;
  9652. border-color:rgba(170, 170, 170, 1);
  9653. border-radius:4px;
  9654. -moz-box-shadow:none;
  9655. -webkit-box-shadow:none;
  9656. box-shadow:none;
  9657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9658. font-weight:400;
  9659. font-style:normal;
  9660. font-size:14px;
  9661. color:#555555;
  9662. }
  9663. #u42909 {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:841px;
  9667. top:191px;
  9668. width:87px;
  9669. height:30px;
  9670. display:flex;
  9671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9672. font-weight:400;
  9673. font-style:normal;
  9674. font-size:14px;
  9675. color:#555555;
  9676. }
  9677. #u42909 .text {
  9678. position:absolute;
  9679. align-self:center;
  9680. padding:5px 15px 5px 15px;
  9681. box-sizing:border-box;
  9682. width:100%;
  9683. }
  9684. #u42909_text {
  9685. border-width:0px;
  9686. white-space:nowrap;
  9687. text-transform:none;
  9688. }