styles.css 192 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u41006_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. #u41006 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u41006 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u41006_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u41007_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. #u41007 {
  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. #u41007 .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. #u41007_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u41008_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. #u41008 {
  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. #u41008 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u41008_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u41009 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u41010_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u41010 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u41010 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u41010_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u41011_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. #u41011 {
  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. #u41011 .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. #u41011_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u41012_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. #u41012 {
  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. #u41012 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u41012_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u41013 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u41014_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. #u41014_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. #u41014_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. #u41014 {
  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. #u41014 .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. #u41014_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. #u41014.disabled {
  356. }
  357. .u41014_input_option {
  358. font-size:14px;
  359. }
  360. #u41015_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u41015 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u41015 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u41015_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u41016_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. #u41016 {
  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. #u41016 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u41016_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u41017_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. #u41017 {
  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. #u41017 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u41017_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u41018 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u41019_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. #u41019 {
  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. #u41019 .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. #u41019_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u41020_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u41020 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u41020 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u41020_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u41021 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u41022_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. #u41022 {
  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. #u41022 .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. #u41022_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u41023_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u41023 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u41023 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u41023_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u41024 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u41025_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. #u41025 {
  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. #u41025 .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. #u41025_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u41026_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u41026 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u41026 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u41026_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u41027 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u41028_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. #u41028 {
  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. #u41028 .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. #u41028_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u41029_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u41029 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u41029 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u41029_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u41030 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u41031_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. #u41031 {
  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. #u41031 .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. #u41031_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u41032_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u41032 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u41032 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u41032_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u41033 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u41034_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. #u41034 {
  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. #u41034 .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. #u41034_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u41035_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u41035 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u41035 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u41035_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u41036 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u41037_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. #u41037 {
  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. #u41037 .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. #u41037_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u41038_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u41038 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u41038 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u41038_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u41039 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u41040_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. #u41040 {
  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. #u41040 .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. #u41040_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u41041_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u41041 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u41041 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u41041_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u41042 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u41043_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. #u41043 {
  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. #u41043 .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. #u41043_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u41044_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u41044 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u41044 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u41044_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u41045 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u41046_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. #u41046 {
  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. #u41046 .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. #u41046_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u41047_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u41047 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u41047 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u41047_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u41048_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. #u41048 {
  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. #u41048 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u41048_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u41049_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u41049 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u41049 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u41049_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u41050_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. #u41050 {
  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. #u41050 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u41050_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u41051_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u41051 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u41051 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u41051_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u41052 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u41053_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. #u41053 {
  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. #u41053 .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. #u41053_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u41054_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u41054 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u41054 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u41054_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u41055 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u41056_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. #u41056 {
  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. #u41056 .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. #u41056_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u41057_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u41057 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u41057 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u41057_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u41058_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1261px;
  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. #u41058 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1261px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u41058 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u41058_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u41059 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:0px;
  1681. height:0px;
  1682. }
  1683. #u41060_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:59px;
  1689. height:30px;
  1690. background:inherit;
  1691. background-color:rgba(24, 144, 255, 1);
  1692. box-sizing:border-box;
  1693. border-width:1px;
  1694. border-style:solid;
  1695. border-color:rgba(0, 153, 255, 1);
  1696. border-radius:4px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'Microsoft YaHei', sans-serif;
  1701. font-weight:400;
  1702. font-style:normal;
  1703. font-size:14px;
  1704. color:#FFFFFF;
  1705. }
  1706. #u41060 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:656px;
  1710. top:154px;
  1711. width:59px;
  1712. height:30px;
  1713. display:flex;
  1714. font-family:'Microsoft YaHei', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:14px;
  1718. color:#FFFFFF;
  1719. }
  1720. #u41060 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:5px 15px 5px 15px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u41060_text {
  1728. border-width:0px;
  1729. white-space:nowrap;
  1730. text-transform:none;
  1731. }
  1732. #u41061_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:55px;
  1738. height:30px;
  1739. background:inherit;
  1740. background-color:rgba(255, 255, 255, 1);
  1741. box-sizing:border-box;
  1742. border-width:1px;
  1743. border-style:solid;
  1744. border-color:rgba(170, 170, 170, 1);
  1745. border-radius:4px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:12px;
  1753. color:#555555;
  1754. }
  1755. #u41061 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:725px;
  1759. top:154px;
  1760. width:55px;
  1761. height:30px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#555555;
  1768. }
  1769. #u41061 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:5px 15px 5px 15px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u41061_text {
  1777. border-width:0px;
  1778. white-space:nowrap;
  1779. text-transform:none;
  1780. }
  1781. #u41062 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:356px;
  1785. top:251px;
  1786. width:1218px;
  1787. height:328px;
  1788. }
  1789. #u41063_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:76px;
  1795. height:44px;
  1796. }
  1797. #u41063 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:76px;
  1803. height:44px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:12px;
  1809. color:#FFFFFF;
  1810. }
  1811. #u41063 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 0px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u41063_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u41064_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:86px;
  1829. height:44px;
  1830. }
  1831. #u41064 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:76px;
  1835. top:0px;
  1836. width:86px;
  1837. height:44px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:12px;
  1843. color:#FFFFFF;
  1844. }
  1845. #u41064 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u41064_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u41065_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:87px;
  1863. height:44px;
  1864. }
  1865. #u41065 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:162px;
  1869. top:0px;
  1870. width:87px;
  1871. height:44px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:12px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u41065 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u41065_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u41066_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:87px;
  1897. height:44px;
  1898. }
  1899. #u41066 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:249px;
  1903. top:0px;
  1904. width:87px;
  1905. height:44px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:12px;
  1911. color:#FFFFFF;
  1912. }
  1913. #u41066 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u41066_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u41067_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:76px;
  1931. height:44px;
  1932. }
  1933. #u41067 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:336px;
  1937. top:0px;
  1938. width:76px;
  1939. height:44px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. color:#FFFFFF;
  1946. }
  1947. #u41067 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u41067_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u41068_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:76px;
  1965. height:44px;
  1966. }
  1967. #u41068 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:412px;
  1971. top:0px;
  1972. width:76px;
  1973. height:44px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u41068 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u41068_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u41069_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:76px;
  1999. height:44px;
  2000. }
  2001. #u41069 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:488px;
  2005. top:0px;
  2006. width:76px;
  2007. height:44px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#FFFFFF;
  2014. }
  2015. #u41069 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u41069_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u41070_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:76px;
  2033. height:44px;
  2034. }
  2035. #u41070 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:564px;
  2039. top:0px;
  2040. width:76px;
  2041. height:44px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. color:#FFFFFF;
  2048. }
  2049. #u41070 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u41070_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. }
  2061. #u41071_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:85px;
  2067. height:44px;
  2068. }
  2069. #u41071 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:640px;
  2073. top:0px;
  2074. width:85px;
  2075. height:44px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#FFFFFF;
  2082. }
  2083. #u41071 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u41071_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u41072_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:76px;
  2101. height:44px;
  2102. }
  2103. #u41072 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:725px;
  2107. top:0px;
  2108. width:76px;
  2109. height:44px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. color:#FFFFFF;
  2116. }
  2117. #u41072 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 0px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u41072_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. }
  2129. #u41073_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:109px;
  2135. height:44px;
  2136. }
  2137. #u41073 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:801px;
  2141. top:0px;
  2142. width:109px;
  2143. height:44px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:12px;
  2149. color:#FFFFFF;
  2150. }
  2151. #u41073 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u41073_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. }
  2163. #u41074_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:109px;
  2169. height:44px;
  2170. }
  2171. #u41074 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:910px;
  2175. top:0px;
  2176. width:109px;
  2177. height:44px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#FFFFFF;
  2184. }
  2185. #u41074 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u41074_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. }
  2197. #u41075_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:102px;
  2203. height:44px;
  2204. }
  2205. #u41075 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:1019px;
  2209. top:0px;
  2210. width:102px;
  2211. height:44px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. color:#FFFFFF;
  2218. }
  2219. #u41075 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u41075_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u41076_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:97px;
  2237. height:44px;
  2238. }
  2239. #u41076 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:1121px;
  2243. top:0px;
  2244. width:97px;
  2245. height:44px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. color:#FFFFFF;
  2252. }
  2253. #u41076 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u41076_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. }
  2265. #u41077_img {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:76px;
  2271. height:38px;
  2272. }
  2273. #u41077 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:44px;
  2278. width:76px;
  2279. height:38px;
  2280. display:flex;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:12px;
  2285. color:#333333;
  2286. }
  2287. #u41077 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u41077_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. visibility:hidden;
  2299. }
  2300. #u41078_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:86px;
  2306. height:38px;
  2307. }
  2308. #u41078 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:76px;
  2312. top:44px;
  2313. width:86px;
  2314. height:38px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. color:#333333;
  2321. }
  2322. #u41078 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u41078_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. visibility:hidden;
  2334. }
  2335. #u41079_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:87px;
  2341. height:38px;
  2342. }
  2343. #u41079 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:162px;
  2347. top:44px;
  2348. width:87px;
  2349. height:38px;
  2350. display:flex;
  2351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2352. font-weight:400;
  2353. font-style:normal;
  2354. font-size:12px;
  2355. color:#333333;
  2356. }
  2357. #u41079 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 2px 2px 0px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u41079_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. visibility:hidden;
  2369. }
  2370. #u41080_img {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:87px;
  2376. height:38px;
  2377. }
  2378. #u41080 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:249px;
  2382. top:44px;
  2383. width:87px;
  2384. height:38px;
  2385. display:flex;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:12px;
  2390. color:#333333;
  2391. }
  2392. #u41080 .text {
  2393. position:absolute;
  2394. align-self:center;
  2395. padding:2px 2px 2px 0px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u41080_text {
  2400. border-width:0px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. visibility:hidden;
  2404. }
  2405. #u41081_img {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:76px;
  2411. height:38px;
  2412. }
  2413. #u41081 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:336px;
  2417. top:44px;
  2418. width:76px;
  2419. height:38px;
  2420. display:flex;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:12px;
  2425. color:#333333;
  2426. }
  2427. #u41081 .text {
  2428. position:absolute;
  2429. align-self:center;
  2430. padding:2px 2px 2px 0px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u41081_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. visibility:hidden;
  2439. }
  2440. #u41082_img {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:76px;
  2446. height:38px;
  2447. }
  2448. #u41082 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:412px;
  2452. top:44px;
  2453. width:76px;
  2454. height:38px;
  2455. display:flex;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:12px;
  2460. color:#333333;
  2461. }
  2462. #u41082 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 0px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u41082_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. visibility:hidden;
  2474. }
  2475. #u41083_img {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:76px;
  2481. height:38px;
  2482. }
  2483. #u41083 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:488px;
  2487. top:44px;
  2488. width:76px;
  2489. height:38px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:12px;
  2495. color:#333333;
  2496. }
  2497. #u41083 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u41083_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u41084_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:76px;
  2516. height:38px;
  2517. }
  2518. #u41084 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:564px;
  2522. top:44px;
  2523. width:76px;
  2524. height:38px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:12px;
  2530. color:#333333;
  2531. }
  2532. #u41084 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 0px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u41084_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. visibility:hidden;
  2544. }
  2545. #u41085_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:85px;
  2551. height:38px;
  2552. }
  2553. #u41085 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:640px;
  2557. top:44px;
  2558. width:85px;
  2559. height:38px;
  2560. display:flex;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. color:#333333;
  2566. }
  2567. #u41085 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 0px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u41085_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. visibility:hidden;
  2579. }
  2580. #u41086_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:76px;
  2586. height:38px;
  2587. }
  2588. #u41086 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:725px;
  2592. top:44px;
  2593. width:76px;
  2594. height:38px;
  2595. display:flex;
  2596. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:12px;
  2600. color:#333333;
  2601. }
  2602. #u41086 .text {
  2603. position:absolute;
  2604. align-self:center;
  2605. padding:2px 2px 2px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u41086_text {
  2610. border-width:0px;
  2611. word-wrap:break-word;
  2612. text-transform:none;
  2613. visibility:hidden;
  2614. }
  2615. #u41087_img {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:0px;
  2619. top:0px;
  2620. width:109px;
  2621. height:38px;
  2622. }
  2623. #u41087 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:801px;
  2627. top:44px;
  2628. width:109px;
  2629. height:38px;
  2630. display:flex;
  2631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2632. font-weight:400;
  2633. font-style:normal;
  2634. font-size:12px;
  2635. color:#333333;
  2636. }
  2637. #u41087 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 0px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u41087_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u41088_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:109px;
  2656. height:38px;
  2657. }
  2658. #u41088 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:910px;
  2662. top:44px;
  2663. width:109px;
  2664. height:38px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:12px;
  2670. color:#333333;
  2671. }
  2672. #u41088 .text {
  2673. position:absolute;
  2674. align-self:center;
  2675. padding:2px 2px 2px 0px;
  2676. box-sizing:border-box;
  2677. width:100%;
  2678. }
  2679. #u41088_text {
  2680. border-width:0px;
  2681. word-wrap:break-word;
  2682. text-transform:none;
  2683. visibility:hidden;
  2684. }
  2685. #u41089_img {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:102px;
  2691. height:38px;
  2692. }
  2693. #u41089 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:1019px;
  2697. top:44px;
  2698. width:102px;
  2699. height:38px;
  2700. display:flex;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:12px;
  2705. color:#333333;
  2706. }
  2707. #u41089 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 0px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u41089_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u41090_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:97px;
  2726. height:38px;
  2727. }
  2728. #u41090 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:1121px;
  2732. top:44px;
  2733. width:97px;
  2734. height:38px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:12px;
  2740. color:#0089FE;
  2741. }
  2742. #u41090 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u41090_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. }
  2754. #u41091_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:76px;
  2760. height:38px;
  2761. }
  2762. #u41091 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:82px;
  2767. width:76px;
  2768. height:38px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:12px;
  2774. color:#333333;
  2775. }
  2776. #u41091 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u41091_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. visibility:hidden;
  2788. }
  2789. #u41092_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:86px;
  2795. height:38px;
  2796. }
  2797. #u41092 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:76px;
  2801. top:82px;
  2802. width:86px;
  2803. height:38px;
  2804. display:flex;
  2805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2806. font-weight:400;
  2807. font-style:normal;
  2808. font-size:12px;
  2809. color:#333333;
  2810. }
  2811. #u41092 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 0px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u41092_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u41093_img {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:87px;
  2830. height:38px;
  2831. }
  2832. #u41093 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:162px;
  2836. top:82px;
  2837. width:87px;
  2838. height:38px;
  2839. display:flex;
  2840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2841. font-weight:400;
  2842. font-style:normal;
  2843. font-size:12px;
  2844. color:#333333;
  2845. }
  2846. #u41093 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 0px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u41093_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u41094_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:87px;
  2865. height:38px;
  2866. }
  2867. #u41094 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:249px;
  2871. top:82px;
  2872. width:87px;
  2873. height:38px;
  2874. display:flex;
  2875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:12px;
  2879. color:#333333;
  2880. }
  2881. #u41094 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u41094_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. visibility:hidden;
  2893. }
  2894. #u41095_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:76px;
  2900. height:38px;
  2901. }
  2902. #u41095 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:336px;
  2906. top:82px;
  2907. width:76px;
  2908. height:38px;
  2909. display:flex;
  2910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2911. font-weight:400;
  2912. font-style:normal;
  2913. font-size:12px;
  2914. color:#333333;
  2915. }
  2916. #u41095 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 0px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u41095_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u41096_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:76px;
  2935. height:38px;
  2936. }
  2937. #u41096 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:412px;
  2941. top:82px;
  2942. width:76px;
  2943. height:38px;
  2944. display:flex;
  2945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:12px;
  2949. color:#333333;
  2950. }
  2951. #u41096 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u41096_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. visibility:hidden;
  2963. }
  2964. #u41097_img {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:76px;
  2970. height:38px;
  2971. }
  2972. #u41097 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:488px;
  2976. top:82px;
  2977. width:76px;
  2978. height:38px;
  2979. display:flex;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. color:#333333;
  2985. }
  2986. #u41097 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 0px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u41097_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u41098_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:76px;
  3005. height:38px;
  3006. }
  3007. #u41098 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:564px;
  3011. top:82px;
  3012. width:76px;
  3013. height:38px;
  3014. display:flex;
  3015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3016. font-weight:400;
  3017. font-style:normal;
  3018. font-size:12px;
  3019. color:#333333;
  3020. }
  3021. #u41098 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u41098_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u41099_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:85px;
  3040. height:38px;
  3041. }
  3042. #u41099 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:640px;
  3046. top:82px;
  3047. width:85px;
  3048. height:38px;
  3049. display:flex;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:12px;
  3054. color:#333333;
  3055. }
  3056. #u41099 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 0px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u41099_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u41100_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:76px;
  3075. height:38px;
  3076. }
  3077. #u41100 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:725px;
  3081. top:82px;
  3082. width:76px;
  3083. height:38px;
  3084. display:flex;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:12px;
  3089. color:#333333;
  3090. }
  3091. #u41100 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u41100_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u41101_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:109px;
  3110. height:38px;
  3111. }
  3112. #u41101 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:801px;
  3116. top:82px;
  3117. width:109px;
  3118. height:38px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#333333;
  3125. }
  3126. #u41101 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u41101_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. visibility:hidden;
  3138. }
  3139. #u41102_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:109px;
  3145. height:38px;
  3146. }
  3147. #u41102 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:910px;
  3151. top:82px;
  3152. width:109px;
  3153. height:38px;
  3154. display:flex;
  3155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3156. font-weight:400;
  3157. font-style:normal;
  3158. font-size:12px;
  3159. color:#333333;
  3160. }
  3161. #u41102 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 0px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u41102_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u41103_img {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:102px;
  3180. height:38px;
  3181. }
  3182. #u41103 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:1019px;
  3186. top:82px;
  3187. width:102px;
  3188. height:38px;
  3189. display:flex;
  3190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:12px;
  3194. color:#333333;
  3195. }
  3196. #u41103 .text {
  3197. position:absolute;
  3198. align-self:center;
  3199. padding:2px 2px 2px 0px;
  3200. box-sizing:border-box;
  3201. width:100%;
  3202. }
  3203. #u41103_text {
  3204. border-width:0px;
  3205. word-wrap:break-word;
  3206. text-transform:none;
  3207. visibility:hidden;
  3208. }
  3209. #u41104_img {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:0px;
  3213. top:0px;
  3214. width:97px;
  3215. height:38px;
  3216. }
  3217. #u41104 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:1121px;
  3221. top:82px;
  3222. width:97px;
  3223. height:38px;
  3224. display:flex;
  3225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3226. font-weight:400;
  3227. font-style:normal;
  3228. font-size:12px;
  3229. color:#0089FE;
  3230. }
  3231. #u41104 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 0px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u41104_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. }
  3243. #u41105_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:76px;
  3249. height:38px;
  3250. }
  3251. #u41105 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:120px;
  3256. width:76px;
  3257. height:38px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. color:#333333;
  3264. }
  3265. #u41105 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u41105_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u41106_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:86px;
  3284. height:38px;
  3285. }
  3286. #u41106 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:76px;
  3290. top:120px;
  3291. width:86px;
  3292. height:38px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. color:#333333;
  3299. }
  3300. #u41106 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u41106_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u41107_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:87px;
  3319. height:38px;
  3320. }
  3321. #u41107 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:162px;
  3325. top:120px;
  3326. width:87px;
  3327. height:38px;
  3328. display:flex;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:12px;
  3333. color:#333333;
  3334. }
  3335. #u41107 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u41107_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u41108_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:87px;
  3354. height:38px;
  3355. }
  3356. #u41108 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:249px;
  3360. top:120px;
  3361. width:87px;
  3362. height:38px;
  3363. display:flex;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. color:#333333;
  3369. }
  3370. #u41108 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u41108_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u41109_img {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:76px;
  3389. height:38px;
  3390. }
  3391. #u41109 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:336px;
  3395. top:120px;
  3396. width:76px;
  3397. height:38px;
  3398. display:flex;
  3399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. font-size:12px;
  3403. color:#333333;
  3404. }
  3405. #u41109 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 0px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u41109_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u41110_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:76px;
  3424. height:38px;
  3425. }
  3426. #u41110 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:412px;
  3430. top:120px;
  3431. width:76px;
  3432. height:38px;
  3433. display:flex;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. color:#333333;
  3439. }
  3440. #u41110 .text {
  3441. position:absolute;
  3442. align-self:center;
  3443. padding:2px 2px 2px 0px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u41110_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u41111_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:76px;
  3459. height:38px;
  3460. }
  3461. #u41111 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:488px;
  3465. top:120px;
  3466. width:76px;
  3467. height:38px;
  3468. display:flex;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#333333;
  3474. }
  3475. #u41111 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 0px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u41111_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u41112_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:76px;
  3494. height:38px;
  3495. }
  3496. #u41112 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:564px;
  3500. top:120px;
  3501. width:76px;
  3502. height:38px;
  3503. display:flex;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:12px;
  3508. color:#333333;
  3509. }
  3510. #u41112 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u41112_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u41113_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:85px;
  3529. height:38px;
  3530. }
  3531. #u41113 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:640px;
  3535. top:120px;
  3536. width:85px;
  3537. height:38px;
  3538. display:flex;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#333333;
  3544. }
  3545. #u41113 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u41113_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u41114_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:76px;
  3564. height:38px;
  3565. }
  3566. #u41114 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:725px;
  3570. top:120px;
  3571. width:76px;
  3572. height:38px;
  3573. display:flex;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#333333;
  3579. }
  3580. #u41114 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u41114_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u41115_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:109px;
  3599. height:38px;
  3600. }
  3601. #u41115 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:801px;
  3605. top:120px;
  3606. width:109px;
  3607. height:38px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#333333;
  3614. }
  3615. #u41115 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u41115_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. visibility:hidden;
  3627. }
  3628. #u41116_img {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:109px;
  3634. height:38px;
  3635. }
  3636. #u41116 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:910px;
  3640. top:120px;
  3641. width:109px;
  3642. height:38px;
  3643. display:flex;
  3644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:12px;
  3648. color:#333333;
  3649. }
  3650. #u41116 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 2px 2px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u41116_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. visibility:hidden;
  3662. }
  3663. #u41117_img {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:102px;
  3669. height:38px;
  3670. }
  3671. #u41117 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:1019px;
  3675. top:120px;
  3676. width:102px;
  3677. height:38px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. color:#333333;
  3684. }
  3685. #u41117 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u41117_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u41118_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:97px;
  3704. height:38px;
  3705. }
  3706. #u41118 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:1121px;
  3710. top:120px;
  3711. width:97px;
  3712. height:38px;
  3713. display:flex;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:12px;
  3718. color:#0089FE;
  3719. }
  3720. #u41118 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u41118_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u41119_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:76px;
  3739. height:38px;
  3740. }
  3741. #u41119 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:158px;
  3746. width:76px;
  3747. height:38px;
  3748. display:flex;
  3749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:12px;
  3753. color:#333333;
  3754. }
  3755. #u41119 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 0px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u41119_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u41120_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:86px;
  3774. height:38px;
  3775. }
  3776. #u41120 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:76px;
  3780. top:158px;
  3781. width:86px;
  3782. height:38px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:12px;
  3788. color:#333333;
  3789. }
  3790. #u41120 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u41120_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. visibility:hidden;
  3802. }
  3803. #u41121_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:87px;
  3809. height:38px;
  3810. }
  3811. #u41121 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:162px;
  3815. top:158px;
  3816. width:87px;
  3817. height:38px;
  3818. display:flex;
  3819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:12px;
  3823. color:#333333;
  3824. }
  3825. #u41121 .text {
  3826. position:absolute;
  3827. align-self:center;
  3828. padding:2px 2px 2px 0px;
  3829. box-sizing:border-box;
  3830. width:100%;
  3831. }
  3832. #u41121_text {
  3833. border-width:0px;
  3834. word-wrap:break-word;
  3835. text-transform:none;
  3836. visibility:hidden;
  3837. }
  3838. #u41122_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:87px;
  3844. height:38px;
  3845. }
  3846. #u41122 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:249px;
  3850. top:158px;
  3851. width:87px;
  3852. height:38px;
  3853. display:flex;
  3854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:12px;
  3858. color:#333333;
  3859. }
  3860. #u41122 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u41122_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u41123_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:76px;
  3879. height:38px;
  3880. }
  3881. #u41123 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:336px;
  3885. top:158px;
  3886. width:76px;
  3887. height:38px;
  3888. display:flex;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. color:#333333;
  3894. }
  3895. #u41123 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:2px 2px 2px 0px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u41123_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. visibility:hidden;
  3907. }
  3908. #u41124_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:76px;
  3914. height:38px;
  3915. }
  3916. #u41124 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:412px;
  3920. top:158px;
  3921. width:76px;
  3922. height:38px;
  3923. display:flex;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:12px;
  3928. color:#333333;
  3929. }
  3930. #u41124 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 2px 2px 0px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u41124_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. visibility:hidden;
  3942. }
  3943. #u41125_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:76px;
  3949. height:38px;
  3950. }
  3951. #u41125 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:488px;
  3955. top:158px;
  3956. width:76px;
  3957. height:38px;
  3958. display:flex;
  3959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:12px;
  3963. color:#333333;
  3964. }
  3965. #u41125 .text {
  3966. position:absolute;
  3967. align-self:center;
  3968. padding:2px 2px 2px 0px;
  3969. box-sizing:border-box;
  3970. width:100%;
  3971. }
  3972. #u41125_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. visibility:hidden;
  3977. }
  3978. #u41126_img {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:76px;
  3984. height:38px;
  3985. }
  3986. #u41126 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:564px;
  3990. top:158px;
  3991. width:76px;
  3992. height:38px;
  3993. display:flex;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:12px;
  3998. color:#333333;
  3999. }
  4000. #u41126 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 0px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u41126_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u41127_img {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:85px;
  4019. height:38px;
  4020. }
  4021. #u41127 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:640px;
  4025. top:158px;
  4026. width:85px;
  4027. height:38px;
  4028. display:flex;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:12px;
  4033. color:#333333;
  4034. }
  4035. #u41127 .text {
  4036. position:absolute;
  4037. align-self:center;
  4038. padding:2px 2px 2px 0px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u41127_text {
  4043. border-width:0px;
  4044. word-wrap:break-word;
  4045. text-transform:none;
  4046. visibility:hidden;
  4047. }
  4048. #u41128_img {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:76px;
  4054. height:38px;
  4055. }
  4056. #u41128 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:725px;
  4060. top:158px;
  4061. width:76px;
  4062. height:38px;
  4063. display:flex;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:12px;
  4068. color:#333333;
  4069. }
  4070. #u41128 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 0px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u41128_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. visibility:hidden;
  4082. }
  4083. #u41129_img {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:109px;
  4089. height:38px;
  4090. }
  4091. #u41129 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:801px;
  4095. top:158px;
  4096. width:109px;
  4097. height:38px;
  4098. display:flex;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#333333;
  4104. }
  4105. #u41129 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 2px 2px 0px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u41129_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. visibility:hidden;
  4117. }
  4118. #u41130_img {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:109px;
  4124. height:38px;
  4125. }
  4126. #u41130 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:910px;
  4130. top:158px;
  4131. width:109px;
  4132. height:38px;
  4133. display:flex;
  4134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4135. font-weight:400;
  4136. font-style:normal;
  4137. font-size:12px;
  4138. color:#333333;
  4139. }
  4140. #u41130 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 0px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u41130_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u41131_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:102px;
  4159. height:38px;
  4160. }
  4161. #u41131 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:1019px;
  4165. top:158px;
  4166. width:102px;
  4167. height:38px;
  4168. display:flex;
  4169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:12px;
  4173. color:#333333;
  4174. }
  4175. #u41131 .text {
  4176. position:absolute;
  4177. align-self:center;
  4178. padding:2px 2px 2px 0px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u41131_text {
  4183. border-width:0px;
  4184. word-wrap:break-word;
  4185. text-transform:none;
  4186. visibility:hidden;
  4187. }
  4188. #u41132_img {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:97px;
  4194. height:38px;
  4195. }
  4196. #u41132 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:1121px;
  4200. top:158px;
  4201. width:97px;
  4202. height:38px;
  4203. display:flex;
  4204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4205. font-weight:400;
  4206. font-style:normal;
  4207. font-size:12px;
  4208. color:#AAAAAA;
  4209. }
  4210. #u41132 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:2px 2px 2px 0px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u41132_text {
  4218. border-width:0px;
  4219. word-wrap:break-word;
  4220. text-transform:none;
  4221. visibility:hidden;
  4222. }
  4223. #u41133_img {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:76px;
  4229. height:35px;
  4230. }
  4231. #u41133 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:196px;
  4236. width:76px;
  4237. height:35px;
  4238. display:flex;
  4239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:12px;
  4243. color:#333333;
  4244. }
  4245. #u41133 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 0px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u41133_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u41134_img {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:86px;
  4264. height:35px;
  4265. }
  4266. #u41134 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:76px;
  4270. top:196px;
  4271. width:86px;
  4272. height:35px;
  4273. display:flex;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:12px;
  4278. color:#333333;
  4279. }
  4280. #u41134 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:2px 2px 2px 0px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u41134_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. visibility:hidden;
  4292. }
  4293. #u41135_img {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:87px;
  4299. height:35px;
  4300. }
  4301. #u41135 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:162px;
  4305. top:196px;
  4306. width:87px;
  4307. height:35px;
  4308. display:flex;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:12px;
  4313. color:#333333;
  4314. }
  4315. #u41135 .text {
  4316. position:absolute;
  4317. align-self:center;
  4318. padding:2px 2px 2px 0px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u41135_text {
  4323. border-width:0px;
  4324. word-wrap:break-word;
  4325. text-transform:none;
  4326. visibility:hidden;
  4327. }
  4328. #u41136_img {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:0px;
  4332. top:0px;
  4333. width:87px;
  4334. height:35px;
  4335. }
  4336. #u41136 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:249px;
  4340. top:196px;
  4341. width:87px;
  4342. height:35px;
  4343. display:flex;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:12px;
  4348. color:#333333;
  4349. }
  4350. #u41136 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 0px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u41136_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. visibility:hidden;
  4362. }
  4363. #u41137_img {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:76px;
  4369. height:35px;
  4370. }
  4371. #u41137 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:336px;
  4375. top:196px;
  4376. width:76px;
  4377. height:35px;
  4378. display:flex;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:12px;
  4383. color:#333333;
  4384. }
  4385. #u41137 .text {
  4386. position:absolute;
  4387. align-self:center;
  4388. padding:2px 2px 2px 0px;
  4389. box-sizing:border-box;
  4390. width:100%;
  4391. }
  4392. #u41137_text {
  4393. border-width:0px;
  4394. word-wrap:break-word;
  4395. text-transform:none;
  4396. visibility:hidden;
  4397. }
  4398. #u41138_img {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:76px;
  4404. height:35px;
  4405. }
  4406. #u41138 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:412px;
  4410. top:196px;
  4411. width:76px;
  4412. height:35px;
  4413. display:flex;
  4414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4415. font-weight:400;
  4416. font-style:normal;
  4417. font-size:12px;
  4418. color:#333333;
  4419. }
  4420. #u41138 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u41138_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. visibility:hidden;
  4432. }
  4433. #u41139_img {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:76px;
  4439. height:35px;
  4440. }
  4441. #u41139 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:488px;
  4445. top:196px;
  4446. width:76px;
  4447. height:35px;
  4448. display:flex;
  4449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:12px;
  4453. color:#333333;
  4454. }
  4455. #u41139 .text {
  4456. position:absolute;
  4457. align-self:center;
  4458. padding:2px 2px 2px 0px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u41139_text {
  4463. border-width:0px;
  4464. word-wrap:break-word;
  4465. text-transform:none;
  4466. visibility:hidden;
  4467. }
  4468. #u41140_img {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:76px;
  4474. height:35px;
  4475. }
  4476. #u41140 {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:564px;
  4480. top:196px;
  4481. width:76px;
  4482. height:35px;
  4483. display:flex;
  4484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4485. font-weight:400;
  4486. font-style:normal;
  4487. font-size:12px;
  4488. color:#333333;
  4489. }
  4490. #u41140 .text {
  4491. position:absolute;
  4492. align-self:center;
  4493. padding:2px 2px 2px 0px;
  4494. box-sizing:border-box;
  4495. width:100%;
  4496. }
  4497. #u41140_text {
  4498. border-width:0px;
  4499. word-wrap:break-word;
  4500. text-transform:none;
  4501. visibility:hidden;
  4502. }
  4503. #u41141_img {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:85px;
  4509. height:35px;
  4510. }
  4511. #u41141 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:640px;
  4515. top:196px;
  4516. width:85px;
  4517. height:35px;
  4518. display:flex;
  4519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4520. font-weight:400;
  4521. font-style:normal;
  4522. font-size:12px;
  4523. color:#333333;
  4524. }
  4525. #u41141 .text {
  4526. position:absolute;
  4527. align-self:center;
  4528. padding:2px 2px 2px 0px;
  4529. box-sizing:border-box;
  4530. width:100%;
  4531. }
  4532. #u41141_text {
  4533. border-width:0px;
  4534. word-wrap:break-word;
  4535. text-transform:none;
  4536. visibility:hidden;
  4537. }
  4538. #u41142_img {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:76px;
  4544. height:35px;
  4545. }
  4546. #u41142 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:725px;
  4550. top:196px;
  4551. width:76px;
  4552. height:35px;
  4553. display:flex;
  4554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:12px;
  4558. color:#333333;
  4559. }
  4560. #u41142 .text {
  4561. position:absolute;
  4562. align-self:center;
  4563. padding:2px 2px 2px 0px;
  4564. box-sizing:border-box;
  4565. width:100%;
  4566. }
  4567. #u41142_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. visibility:hidden;
  4572. }
  4573. #u41143_img {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:109px;
  4579. height:35px;
  4580. }
  4581. #u41143 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:801px;
  4585. top:196px;
  4586. width:109px;
  4587. height:35px;
  4588. display:flex;
  4589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:12px;
  4593. color:#333333;
  4594. }
  4595. #u41143 .text {
  4596. position:absolute;
  4597. align-self:center;
  4598. padding:2px 2px 2px 0px;
  4599. box-sizing:border-box;
  4600. width:100%;
  4601. }
  4602. #u41143_text {
  4603. border-width:0px;
  4604. word-wrap:break-word;
  4605. text-transform:none;
  4606. visibility:hidden;
  4607. }
  4608. #u41144_img {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:109px;
  4614. height:35px;
  4615. }
  4616. #u41144 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:910px;
  4620. top:196px;
  4621. width:109px;
  4622. height:35px;
  4623. display:flex;
  4624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4625. font-weight:400;
  4626. font-style:normal;
  4627. font-size:12px;
  4628. color:#333333;
  4629. }
  4630. #u41144 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:2px 2px 2px 0px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u41144_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. visibility:hidden;
  4642. }
  4643. #u41145_img {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:102px;
  4649. height:35px;
  4650. }
  4651. #u41145 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:1019px;
  4655. top:196px;
  4656. width:102px;
  4657. height:35px;
  4658. display:flex;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:12px;
  4663. color:#333333;
  4664. }
  4665. #u41145 .text {
  4666. position:absolute;
  4667. align-self:center;
  4668. padding:2px 2px 2px 0px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u41145_text {
  4673. border-width:0px;
  4674. word-wrap:break-word;
  4675. text-transform:none;
  4676. visibility:hidden;
  4677. }
  4678. #u41146_img {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:97px;
  4684. height:35px;
  4685. }
  4686. #u41146 {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:1121px;
  4690. top:196px;
  4691. width:97px;
  4692. height:35px;
  4693. display:flex;
  4694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4695. font-weight:400;
  4696. font-style:normal;
  4697. font-size:12px;
  4698. color:#AAAAAA;
  4699. }
  4700. #u41146 .text {
  4701. position:absolute;
  4702. align-self:center;
  4703. padding:2px 2px 2px 0px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u41146_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u41147_img {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:76px;
  4719. height:35px;
  4720. }
  4721. #u41147 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:231px;
  4726. width:76px;
  4727. height:35px;
  4728. display:flex;
  4729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:12px;
  4733. color:#333333;
  4734. }
  4735. #u41147 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:2px 2px 2px 0px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u41147_text {
  4743. border-width:0px;
  4744. word-wrap:break-word;
  4745. text-transform:none;
  4746. visibility:hidden;
  4747. }
  4748. #u41148_img {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:86px;
  4754. height:35px;
  4755. }
  4756. #u41148 {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:76px;
  4760. top:231px;
  4761. width:86px;
  4762. height:35px;
  4763. display:flex;
  4764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:12px;
  4768. color:#333333;
  4769. }
  4770. #u41148 .text {
  4771. position:absolute;
  4772. align-self:center;
  4773. padding:2px 2px 2px 0px;
  4774. box-sizing:border-box;
  4775. width:100%;
  4776. }
  4777. #u41148_text {
  4778. border-width:0px;
  4779. word-wrap:break-word;
  4780. text-transform:none;
  4781. visibility:hidden;
  4782. }
  4783. #u41149_img {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:87px;
  4789. height:35px;
  4790. }
  4791. #u41149 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:162px;
  4795. top:231px;
  4796. width:87px;
  4797. height:35px;
  4798. display:flex;
  4799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4800. font-weight:400;
  4801. font-style:normal;
  4802. font-size:12px;
  4803. color:#333333;
  4804. }
  4805. #u41149 .text {
  4806. position:absolute;
  4807. align-self:center;
  4808. padding:2px 2px 2px 0px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u41149_text {
  4813. border-width:0px;
  4814. word-wrap:break-word;
  4815. text-transform:none;
  4816. visibility:hidden;
  4817. }
  4818. #u41150_img {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:87px;
  4824. height:35px;
  4825. }
  4826. #u41150 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:249px;
  4830. top:231px;
  4831. width:87px;
  4832. height:35px;
  4833. display:flex;
  4834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4835. font-weight:400;
  4836. font-style:normal;
  4837. font-size:12px;
  4838. color:#333333;
  4839. }
  4840. #u41150 .text {
  4841. position:absolute;
  4842. align-self:center;
  4843. padding:2px 2px 2px 0px;
  4844. box-sizing:border-box;
  4845. width:100%;
  4846. }
  4847. #u41150_text {
  4848. border-width:0px;
  4849. word-wrap:break-word;
  4850. text-transform:none;
  4851. visibility:hidden;
  4852. }
  4853. #u41151_img {
  4854. border-width:0px;
  4855. position:absolute;
  4856. left:0px;
  4857. top:0px;
  4858. width:76px;
  4859. height:35px;
  4860. }
  4861. #u41151 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:336px;
  4865. top:231px;
  4866. width:76px;
  4867. height:35px;
  4868. display:flex;
  4869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. font-size:12px;
  4873. color:#333333;
  4874. }
  4875. #u41151 .text {
  4876. position:absolute;
  4877. align-self:center;
  4878. padding:2px 2px 2px 0px;
  4879. box-sizing:border-box;
  4880. width:100%;
  4881. }
  4882. #u41151_text {
  4883. border-width:0px;
  4884. word-wrap:break-word;
  4885. text-transform:none;
  4886. visibility:hidden;
  4887. }
  4888. #u41152_img {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:76px;
  4894. height:35px;
  4895. }
  4896. #u41152 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:412px;
  4900. top:231px;
  4901. width:76px;
  4902. height:35px;
  4903. display:flex;
  4904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:12px;
  4908. color:#333333;
  4909. }
  4910. #u41152 .text {
  4911. position:absolute;
  4912. align-self:center;
  4913. padding:2px 2px 2px 0px;
  4914. box-sizing:border-box;
  4915. width:100%;
  4916. }
  4917. #u41152_text {
  4918. border-width:0px;
  4919. word-wrap:break-word;
  4920. text-transform:none;
  4921. visibility:hidden;
  4922. }
  4923. #u41153_img {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:0px;
  4927. top:0px;
  4928. width:76px;
  4929. height:35px;
  4930. }
  4931. #u41153 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:488px;
  4935. top:231px;
  4936. width:76px;
  4937. height:35px;
  4938. display:flex;
  4939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4940. font-weight:400;
  4941. font-style:normal;
  4942. font-size:12px;
  4943. color:#333333;
  4944. }
  4945. #u41153 .text {
  4946. position:absolute;
  4947. align-self:center;
  4948. padding:2px 2px 2px 0px;
  4949. box-sizing:border-box;
  4950. width:100%;
  4951. }
  4952. #u41153_text {
  4953. border-width:0px;
  4954. word-wrap:break-word;
  4955. text-transform:none;
  4956. visibility:hidden;
  4957. }
  4958. #u41154_img {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:76px;
  4964. height:35px;
  4965. }
  4966. #u41154 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:564px;
  4970. top:231px;
  4971. width:76px;
  4972. height:35px;
  4973. display:flex;
  4974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:12px;
  4978. color:#333333;
  4979. }
  4980. #u41154 .text {
  4981. position:absolute;
  4982. align-self:center;
  4983. padding:2px 2px 2px 0px;
  4984. box-sizing:border-box;
  4985. width:100%;
  4986. }
  4987. #u41154_text {
  4988. border-width:0px;
  4989. word-wrap:break-word;
  4990. text-transform:none;
  4991. visibility:hidden;
  4992. }
  4993. #u41155_img {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:85px;
  4999. height:35px;
  5000. }
  5001. #u41155 {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:640px;
  5005. top:231px;
  5006. width:85px;
  5007. height:35px;
  5008. display:flex;
  5009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5010. font-weight:400;
  5011. font-style:normal;
  5012. font-size:12px;
  5013. color:#333333;
  5014. }
  5015. #u41155 .text {
  5016. position:absolute;
  5017. align-self:center;
  5018. padding:2px 2px 2px 0px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u41155_text {
  5023. border-width:0px;
  5024. word-wrap:break-word;
  5025. text-transform:none;
  5026. visibility:hidden;
  5027. }
  5028. #u41156_img {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:76px;
  5034. height:35px;
  5035. }
  5036. #u41156 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:725px;
  5040. top:231px;
  5041. width:76px;
  5042. height:35px;
  5043. display:flex;
  5044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:12px;
  5048. color:#333333;
  5049. }
  5050. #u41156 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:2px 2px 2px 0px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u41156_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. visibility:hidden;
  5062. }
  5063. #u41157_img {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:109px;
  5069. height:35px;
  5070. }
  5071. #u41157 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:801px;
  5075. top:231px;
  5076. width:109px;
  5077. height:35px;
  5078. display:flex;
  5079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5080. font-weight:400;
  5081. font-style:normal;
  5082. font-size:12px;
  5083. color:#333333;
  5084. }
  5085. #u41157 .text {
  5086. position:absolute;
  5087. align-self:center;
  5088. padding:2px 2px 2px 0px;
  5089. box-sizing:border-box;
  5090. width:100%;
  5091. }
  5092. #u41157_text {
  5093. border-width:0px;
  5094. word-wrap:break-word;
  5095. text-transform:none;
  5096. visibility:hidden;
  5097. }
  5098. #u41158_img {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:109px;
  5104. height:35px;
  5105. }
  5106. #u41158 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:910px;
  5110. top:231px;
  5111. width:109px;
  5112. height:35px;
  5113. display:flex;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:12px;
  5118. color:#333333;
  5119. }
  5120. #u41158 .text {
  5121. position:absolute;
  5122. align-self:center;
  5123. padding:2px 2px 2px 0px;
  5124. box-sizing:border-box;
  5125. width:100%;
  5126. }
  5127. #u41158_text {
  5128. border-width:0px;
  5129. word-wrap:break-word;
  5130. text-transform:none;
  5131. visibility:hidden;
  5132. }
  5133. #u41159_img {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:102px;
  5139. height:35px;
  5140. }
  5141. #u41159 {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:1019px;
  5145. top:231px;
  5146. width:102px;
  5147. height:35px;
  5148. display:flex;
  5149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5150. font-weight:400;
  5151. font-style:normal;
  5152. font-size:12px;
  5153. color:#333333;
  5154. }
  5155. #u41159 .text {
  5156. position:absolute;
  5157. align-self:center;
  5158. padding:2px 2px 2px 0px;
  5159. box-sizing:border-box;
  5160. width:100%;
  5161. }
  5162. #u41159_text {
  5163. border-width:0px;
  5164. word-wrap:break-word;
  5165. text-transform:none;
  5166. visibility:hidden;
  5167. }
  5168. #u41160_img {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:97px;
  5174. height:35px;
  5175. }
  5176. #u41160 {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:1121px;
  5180. top:231px;
  5181. width:97px;
  5182. height:35px;
  5183. display:flex;
  5184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5185. font-weight:400;
  5186. font-style:normal;
  5187. font-size:12px;
  5188. color:#333333;
  5189. }
  5190. #u41160 .text {
  5191. position:absolute;
  5192. align-self:center;
  5193. padding:2px 2px 2px 0px;
  5194. box-sizing:border-box;
  5195. width:100%;
  5196. }
  5197. #u41160_text {
  5198. border-width:0px;
  5199. word-wrap:break-word;
  5200. text-transform:none;
  5201. visibility:hidden;
  5202. }
  5203. #u41161_img {
  5204. border-width:0px;
  5205. position:absolute;
  5206. left:0px;
  5207. top:0px;
  5208. width:76px;
  5209. height:32px;
  5210. }
  5211. #u41161 {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:266px;
  5216. width:76px;
  5217. height:32px;
  5218. display:flex;
  5219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5220. font-weight:400;
  5221. font-style:normal;
  5222. font-size:12px;
  5223. color:#333333;
  5224. }
  5225. #u41161 .text {
  5226. position:absolute;
  5227. align-self:center;
  5228. padding:2px 2px 2px 0px;
  5229. box-sizing:border-box;
  5230. width:100%;
  5231. }
  5232. #u41161_text {
  5233. border-width:0px;
  5234. word-wrap:break-word;
  5235. text-transform:none;
  5236. visibility:hidden;
  5237. }
  5238. #u41162_img {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:86px;
  5244. height:32px;
  5245. }
  5246. #u41162 {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:76px;
  5250. top:266px;
  5251. width:86px;
  5252. height:32px;
  5253. display:flex;
  5254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5255. font-weight:400;
  5256. font-style:normal;
  5257. font-size:12px;
  5258. color:#333333;
  5259. }
  5260. #u41162 .text {
  5261. position:absolute;
  5262. align-self:center;
  5263. padding:2px 2px 2px 0px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u41162_text {
  5268. border-width:0px;
  5269. word-wrap:break-word;
  5270. text-transform:none;
  5271. visibility:hidden;
  5272. }
  5273. #u41163_img {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:87px;
  5279. height:32px;
  5280. }
  5281. #u41163 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:162px;
  5285. top:266px;
  5286. width:87px;
  5287. height:32px;
  5288. display:flex;
  5289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:12px;
  5293. color:#333333;
  5294. }
  5295. #u41163 .text {
  5296. position:absolute;
  5297. align-self:center;
  5298. padding:2px 2px 2px 0px;
  5299. box-sizing:border-box;
  5300. width:100%;
  5301. }
  5302. #u41163_text {
  5303. border-width:0px;
  5304. word-wrap:break-word;
  5305. text-transform:none;
  5306. visibility:hidden;
  5307. }
  5308. #u41164_img {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:87px;
  5314. height:32px;
  5315. }
  5316. #u41164 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:249px;
  5320. top:266px;
  5321. width:87px;
  5322. height:32px;
  5323. display:flex;
  5324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5325. font-weight:400;
  5326. font-style:normal;
  5327. font-size:12px;
  5328. color:#333333;
  5329. }
  5330. #u41164 .text {
  5331. position:absolute;
  5332. align-self:center;
  5333. padding:2px 2px 2px 0px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u41164_text {
  5338. border-width:0px;
  5339. word-wrap:break-word;
  5340. text-transform:none;
  5341. visibility:hidden;
  5342. }
  5343. #u41165_img {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:76px;
  5349. height:32px;
  5350. }
  5351. #u41165 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:336px;
  5355. top:266px;
  5356. width:76px;
  5357. height:32px;
  5358. display:flex;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:12px;
  5363. color:#333333;
  5364. }
  5365. #u41165 .text {
  5366. position:absolute;
  5367. align-self:center;
  5368. padding:2px 2px 2px 0px;
  5369. box-sizing:border-box;
  5370. width:100%;
  5371. }
  5372. #u41165_text {
  5373. border-width:0px;
  5374. word-wrap:break-word;
  5375. text-transform:none;
  5376. visibility:hidden;
  5377. }
  5378. #u41166_img {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:76px;
  5384. height:32px;
  5385. }
  5386. #u41166 {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:412px;
  5390. top:266px;
  5391. width:76px;
  5392. height:32px;
  5393. display:flex;
  5394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:12px;
  5398. color:#333333;
  5399. }
  5400. #u41166 .text {
  5401. position:absolute;
  5402. align-self:center;
  5403. padding:2px 2px 2px 0px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u41166_text {
  5408. border-width:0px;
  5409. word-wrap:break-word;
  5410. text-transform:none;
  5411. visibility:hidden;
  5412. }
  5413. #u41167_img {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:76px;
  5419. height:32px;
  5420. }
  5421. #u41167 {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:488px;
  5425. top:266px;
  5426. width:76px;
  5427. height:32px;
  5428. display:flex;
  5429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5430. font-weight:400;
  5431. font-style:normal;
  5432. font-size:12px;
  5433. color:#333333;
  5434. }
  5435. #u41167 .text {
  5436. position:absolute;
  5437. align-self:center;
  5438. padding:2px 2px 2px 0px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u41167_text {
  5443. border-width:0px;
  5444. word-wrap:break-word;
  5445. text-transform:none;
  5446. visibility:hidden;
  5447. }
  5448. #u41168_img {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:76px;
  5454. height:32px;
  5455. }
  5456. #u41168 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:564px;
  5460. top:266px;
  5461. width:76px;
  5462. height:32px;
  5463. display:flex;
  5464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:12px;
  5468. color:#333333;
  5469. }
  5470. #u41168 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 0px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u41168_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u41169_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:85px;
  5489. height:32px;
  5490. }
  5491. #u41169 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:640px;
  5495. top:266px;
  5496. width:85px;
  5497. height:32px;
  5498. display:flex;
  5499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:12px;
  5503. color:#333333;
  5504. }
  5505. #u41169 .text {
  5506. position:absolute;
  5507. align-self:center;
  5508. padding:2px 2px 2px 0px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u41169_text {
  5513. border-width:0px;
  5514. word-wrap:break-word;
  5515. text-transform:none;
  5516. visibility:hidden;
  5517. }
  5518. #u41170_img {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:0px;
  5522. top:0px;
  5523. width:76px;
  5524. height:32px;
  5525. }
  5526. #u41170 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:725px;
  5530. top:266px;
  5531. width:76px;
  5532. height:32px;
  5533. display:flex;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:12px;
  5538. color:#333333;
  5539. }
  5540. #u41170 .text {
  5541. position:absolute;
  5542. align-self:center;
  5543. padding:2px 2px 2px 0px;
  5544. box-sizing:border-box;
  5545. width:100%;
  5546. }
  5547. #u41170_text {
  5548. border-width:0px;
  5549. word-wrap:break-word;
  5550. text-transform:none;
  5551. visibility:hidden;
  5552. }
  5553. #u41171_img {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:109px;
  5559. height:32px;
  5560. }
  5561. #u41171 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:801px;
  5565. top:266px;
  5566. width:109px;
  5567. height:32px;
  5568. display:flex;
  5569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:12px;
  5573. color:#333333;
  5574. }
  5575. #u41171 .text {
  5576. position:absolute;
  5577. align-self:center;
  5578. padding:2px 2px 2px 0px;
  5579. box-sizing:border-box;
  5580. width:100%;
  5581. }
  5582. #u41171_text {
  5583. border-width:0px;
  5584. word-wrap:break-word;
  5585. text-transform:none;
  5586. visibility:hidden;
  5587. }
  5588. #u41172_img {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:109px;
  5594. height:32px;
  5595. }
  5596. #u41172 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:910px;
  5600. top:266px;
  5601. width:109px;
  5602. height:32px;
  5603. display:flex;
  5604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5605. font-weight:400;
  5606. font-style:normal;
  5607. font-size:12px;
  5608. color:#333333;
  5609. }
  5610. #u41172 .text {
  5611. position:absolute;
  5612. align-self:center;
  5613. padding:2px 2px 2px 0px;
  5614. box-sizing:border-box;
  5615. width:100%;
  5616. }
  5617. #u41172_text {
  5618. border-width:0px;
  5619. word-wrap:break-word;
  5620. text-transform:none;
  5621. visibility:hidden;
  5622. }
  5623. #u41173_img {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:102px;
  5629. height:32px;
  5630. }
  5631. #u41173 {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:1019px;
  5635. top:266px;
  5636. width:102px;
  5637. height:32px;
  5638. display:flex;
  5639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5640. font-weight:400;
  5641. font-style:normal;
  5642. font-size:12px;
  5643. color:#333333;
  5644. }
  5645. #u41173 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:2px 2px 2px 0px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u41173_text {
  5653. border-width:0px;
  5654. word-wrap:break-word;
  5655. text-transform:none;
  5656. visibility:hidden;
  5657. }
  5658. #u41174_img {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:97px;
  5664. height:32px;
  5665. }
  5666. #u41174 {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:1121px;
  5670. top:266px;
  5671. width:97px;
  5672. height:32px;
  5673. display:flex;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:12px;
  5678. color:#333333;
  5679. }
  5680. #u41174 .text {
  5681. position:absolute;
  5682. align-self:center;
  5683. padding:2px 2px 2px 0px;
  5684. box-sizing:border-box;
  5685. width:100%;
  5686. }
  5687. #u41174_text {
  5688. border-width:0px;
  5689. word-wrap:break-word;
  5690. text-transform:none;
  5691. visibility:hidden;
  5692. }
  5693. #u41175_img {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:0px;
  5697. top:0px;
  5698. width:76px;
  5699. height:30px;
  5700. }
  5701. #u41175 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:298px;
  5706. width:76px;
  5707. height:30px;
  5708. display:flex;
  5709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:12px;
  5713. color:#333333;
  5714. }
  5715. #u41175 .text {
  5716. position:absolute;
  5717. align-self:center;
  5718. padding:2px 2px 2px 0px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u41175_text {
  5723. border-width:0px;
  5724. word-wrap:break-word;
  5725. text-transform:none;
  5726. visibility:hidden;
  5727. }
  5728. #u41176_img {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:86px;
  5734. height:30px;
  5735. }
  5736. #u41176 {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:76px;
  5740. top:298px;
  5741. width:86px;
  5742. height:30px;
  5743. display:flex;
  5744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:12px;
  5748. color:#333333;
  5749. }
  5750. #u41176 .text {
  5751. position:absolute;
  5752. align-self:center;
  5753. padding:2px 2px 2px 0px;
  5754. box-sizing:border-box;
  5755. width:100%;
  5756. }
  5757. #u41176_text {
  5758. border-width:0px;
  5759. word-wrap:break-word;
  5760. text-transform:none;
  5761. visibility:hidden;
  5762. }
  5763. #u41177_img {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:87px;
  5769. height:30px;
  5770. }
  5771. #u41177 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:162px;
  5775. top:298px;
  5776. width:87px;
  5777. height:30px;
  5778. display:flex;
  5779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:12px;
  5783. color:#333333;
  5784. }
  5785. #u41177 .text {
  5786. position:absolute;
  5787. align-self:center;
  5788. padding:2px 2px 2px 0px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u41177_text {
  5793. border-width:0px;
  5794. word-wrap:break-word;
  5795. text-transform:none;
  5796. visibility:hidden;
  5797. }
  5798. #u41178_img {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:87px;
  5804. height:30px;
  5805. }
  5806. #u41178 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:249px;
  5810. top:298px;
  5811. width:87px;
  5812. height:30px;
  5813. display:flex;
  5814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:12px;
  5818. color:#333333;
  5819. }
  5820. #u41178 .text {
  5821. position:absolute;
  5822. align-self:center;
  5823. padding:2px 2px 2px 0px;
  5824. box-sizing:border-box;
  5825. width:100%;
  5826. }
  5827. #u41178_text {
  5828. border-width:0px;
  5829. word-wrap:break-word;
  5830. text-transform:none;
  5831. visibility:hidden;
  5832. }
  5833. #u41179_img {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:0px;
  5837. top:0px;
  5838. width:76px;
  5839. height:30px;
  5840. }
  5841. #u41179 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:336px;
  5845. top:298px;
  5846. width:76px;
  5847. height:30px;
  5848. display:flex;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:12px;
  5853. color:#333333;
  5854. }
  5855. #u41179 .text {
  5856. position:absolute;
  5857. align-self:center;
  5858. padding:2px 2px 2px 0px;
  5859. box-sizing:border-box;
  5860. width:100%;
  5861. }
  5862. #u41179_text {
  5863. border-width:0px;
  5864. word-wrap:break-word;
  5865. text-transform:none;
  5866. visibility:hidden;
  5867. }
  5868. #u41180_img {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:76px;
  5874. height:30px;
  5875. }
  5876. #u41180 {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:412px;
  5880. top:298px;
  5881. width:76px;
  5882. height:30px;
  5883. display:flex;
  5884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5885. font-weight:400;
  5886. font-style:normal;
  5887. font-size:12px;
  5888. color:#333333;
  5889. }
  5890. #u41180 .text {
  5891. position:absolute;
  5892. align-self:center;
  5893. padding:2px 2px 2px 0px;
  5894. box-sizing:border-box;
  5895. width:100%;
  5896. }
  5897. #u41180_text {
  5898. border-width:0px;
  5899. word-wrap:break-word;
  5900. text-transform:none;
  5901. visibility:hidden;
  5902. }
  5903. #u41181_img {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:0px;
  5907. top:0px;
  5908. width:76px;
  5909. height:30px;
  5910. }
  5911. #u41181 {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:488px;
  5915. top:298px;
  5916. width:76px;
  5917. height:30px;
  5918. display:flex;
  5919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:12px;
  5923. color:#333333;
  5924. }
  5925. #u41181 .text {
  5926. position:absolute;
  5927. align-self:center;
  5928. padding:2px 2px 2px 0px;
  5929. box-sizing:border-box;
  5930. width:100%;
  5931. }
  5932. #u41181_text {
  5933. border-width:0px;
  5934. word-wrap:break-word;
  5935. text-transform:none;
  5936. visibility:hidden;
  5937. }
  5938. #u41182_img {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:0px;
  5942. top:0px;
  5943. width:76px;
  5944. height:30px;
  5945. }
  5946. #u41182 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:564px;
  5950. top:298px;
  5951. width:76px;
  5952. height:30px;
  5953. display:flex;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:12px;
  5958. color:#333333;
  5959. }
  5960. #u41182 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:2px 2px 2px 0px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u41182_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. visibility:hidden;
  5972. }
  5973. #u41183_img {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:85px;
  5979. height:30px;
  5980. }
  5981. #u41183 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:640px;
  5985. top:298px;
  5986. width:85px;
  5987. height:30px;
  5988. display:flex;
  5989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5990. font-weight:400;
  5991. font-style:normal;
  5992. font-size:12px;
  5993. color:#333333;
  5994. }
  5995. #u41183 .text {
  5996. position:absolute;
  5997. align-self:center;
  5998. padding:2px 2px 2px 0px;
  5999. box-sizing:border-box;
  6000. width:100%;
  6001. }
  6002. #u41183_text {
  6003. border-width:0px;
  6004. word-wrap:break-word;
  6005. text-transform:none;
  6006. visibility:hidden;
  6007. }
  6008. #u41184_img {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:76px;
  6014. height:30px;
  6015. }
  6016. #u41184 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:725px;
  6020. top:298px;
  6021. width:76px;
  6022. height:30px;
  6023. display:flex;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:12px;
  6028. color:#333333;
  6029. }
  6030. #u41184 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:2px 2px 2px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u41184_text {
  6038. border-width:0px;
  6039. word-wrap:break-word;
  6040. text-transform:none;
  6041. visibility:hidden;
  6042. }
  6043. #u41185_img {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:109px;
  6049. height:30px;
  6050. }
  6051. #u41185 {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:801px;
  6055. top:298px;
  6056. width:109px;
  6057. height:30px;
  6058. display:flex;
  6059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:12px;
  6063. color:#333333;
  6064. }
  6065. #u41185 .text {
  6066. position:absolute;
  6067. align-self:center;
  6068. padding:2px 2px 2px 0px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u41185_text {
  6073. border-width:0px;
  6074. word-wrap:break-word;
  6075. text-transform:none;
  6076. visibility:hidden;
  6077. }
  6078. #u41186_img {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:0px;
  6082. top:0px;
  6083. width:109px;
  6084. height:30px;
  6085. }
  6086. #u41186 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:910px;
  6090. top:298px;
  6091. width:109px;
  6092. height:30px;
  6093. display:flex;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:12px;
  6098. color:#333333;
  6099. }
  6100. #u41186 .text {
  6101. position:absolute;
  6102. align-self:center;
  6103. padding:2px 2px 2px 0px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u41186_text {
  6108. border-width:0px;
  6109. word-wrap:break-word;
  6110. text-transform:none;
  6111. visibility:hidden;
  6112. }
  6113. #u41187_img {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:102px;
  6119. height:30px;
  6120. }
  6121. #u41187 {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:1019px;
  6125. top:298px;
  6126. width:102px;
  6127. height:30px;
  6128. display:flex;
  6129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:12px;
  6133. color:#333333;
  6134. }
  6135. #u41187 .text {
  6136. position:absolute;
  6137. align-self:center;
  6138. padding:2px 2px 2px 0px;
  6139. box-sizing:border-box;
  6140. width:100%;
  6141. }
  6142. #u41187_text {
  6143. border-width:0px;
  6144. word-wrap:break-word;
  6145. text-transform:none;
  6146. visibility:hidden;
  6147. }
  6148. #u41188_img {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:0px;
  6153. width:97px;
  6154. height:30px;
  6155. }
  6156. #u41188 {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:1121px;
  6160. top:298px;
  6161. width:97px;
  6162. height:30px;
  6163. display:flex;
  6164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6165. font-weight:400;
  6166. font-style:normal;
  6167. font-size:12px;
  6168. color:#333333;
  6169. }
  6170. #u41188 .text {
  6171. position:absolute;
  6172. align-self:center;
  6173. padding:2px 2px 2px 0px;
  6174. box-sizing:border-box;
  6175. width:100%;
  6176. }
  6177. #u41188_text {
  6178. border-width:0px;
  6179. word-wrap:break-word;
  6180. text-transform:none;
  6181. visibility:hidden;
  6182. }
  6183. #u41189_div {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:0px;
  6187. top:0px;
  6188. width:59px;
  6189. height:30px;
  6190. background:inherit;
  6191. background-color:rgba(255, 255, 255, 1);
  6192. box-sizing:border-box;
  6193. border-width:1px;
  6194. border-style:solid;
  6195. border-color:rgba(170, 170, 170, 1);
  6196. border-radius:4px;
  6197. -moz-box-shadow:none;
  6198. -webkit-box-shadow:none;
  6199. box-shadow:none;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:14px;
  6204. color:#555555;
  6205. }
  6206. #u41189 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:356px;
  6210. top:203px;
  6211. width:59px;
  6212. height:30px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6215. font-weight:400;
  6216. font-style:normal;
  6217. font-size:14px;
  6218. color:#555555;
  6219. }
  6220. #u41189 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:5px 15px 5px 15px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u41189_text {
  6228. border-width:0px;
  6229. white-space:nowrap;
  6230. text-transform:none;
  6231. }
  6232. #u41190_div {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:73px;
  6238. height:50px;
  6239. background:inherit;
  6240. background-color:rgba(255, 255, 255, 0);
  6241. border:none;
  6242. border-left:0px;
  6243. border-top:0px;
  6244. border-right:0px;
  6245. border-radius:0px;
  6246. border-bottom-right-radius:0px;
  6247. border-bottom-left-radius:0px;
  6248. -moz-box-shadow:none;
  6249. -webkit-box-shadow:none;
  6250. box-shadow:none;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:18px;
  6255. color:#000000;
  6256. line-height:40px;
  6257. }
  6258. #u41190 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:356px;
  6262. top:63px;
  6263. width:73px;
  6264. height:50px;
  6265. display:flex;
  6266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:18px;
  6270. color:#000000;
  6271. line-height:40px;
  6272. }
  6273. #u41190 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:0px 0px 0px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u41190_text {
  6281. border-width:0px;
  6282. white-space:nowrap;
  6283. text-transform:none;
  6284. }
  6285. #u41191 {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:0px;
  6291. height:0px;
  6292. }
  6293. #u41192_div {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:140px;
  6299. height:30px;
  6300. background:inherit;
  6301. background-color:rgba(255, 255, 255, 1);
  6302. box-sizing:border-box;
  6303. border-width:1px;
  6304. border-style:solid;
  6305. border-color:rgba(215, 215, 215, 1);
  6306. border-radius:4px;
  6307. -moz-box-shadow:none;
  6308. -webkit-box-shadow:none;
  6309. box-shadow:none;
  6310. font-size:11px;
  6311. }
  6312. #u41192 {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:1106px;
  6316. top:113px;
  6317. width:140px;
  6318. height:30px;
  6319. display:flex;
  6320. font-size:11px;
  6321. }
  6322. #u41192 .text {
  6323. position:absolute;
  6324. align-self:center;
  6325. padding:2px 2px 2px 2px;
  6326. box-sizing:border-box;
  6327. width:100%;
  6328. }
  6329. #u41192_text {
  6330. border-width:0px;
  6331. word-wrap:break-word;
  6332. text-transform:none;
  6333. visibility:hidden;
  6334. }
  6335. #u41193_input {
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:126px;
  6340. height:23px;
  6341. padding:2px 2px 2px 2px;
  6342. font-family:'ArialMT', 'Arial', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:11px;
  6346. letter-spacing:normal;
  6347. color:#AAAAAA;
  6348. vertical-align:none;
  6349. text-align:left;
  6350. text-transform:none;
  6351. background-color:transparent;
  6352. border-color:transparent;
  6353. }
  6354. #u41193_input.disabled {
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:126px;
  6359. height:23px;
  6360. padding:2px 2px 2px 2px;
  6361. font-family:'ArialMT', 'Arial', sans-serif;
  6362. font-weight:400;
  6363. font-style:normal;
  6364. font-size:11px;
  6365. letter-spacing:normal;
  6366. color:#AAAAAA;
  6367. vertical-align:none;
  6368. text-align:left;
  6369. text-transform:none;
  6370. background-color:transparent;
  6371. border-color:transparent;
  6372. }
  6373. #u41193_div {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:0px;
  6377. top:0px;
  6378. width:126px;
  6379. height:23px;
  6380. background:inherit;
  6381. background-color:rgba(255, 255, 255, 1);
  6382. border:none;
  6383. border-radius:0px;
  6384. -moz-box-shadow:none;
  6385. -webkit-box-shadow:none;
  6386. box-shadow:none;
  6387. font-size:11px;
  6388. color:#AAAAAA;
  6389. }
  6390. #u41193 {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:1113px;
  6394. top:115px;
  6395. width:126px;
  6396. height:23px;
  6397. display:flex;
  6398. font-size:11px;
  6399. color:#AAAAAA;
  6400. }
  6401. #u41193 .text {
  6402. position:absolute;
  6403. align-self:flex-start;
  6404. padding:2px 2px 2px 2px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u41193_div.disabled {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:126px;
  6414. height:23px;
  6415. background:inherit;
  6416. background-color:rgba(240, 240, 240, 1);
  6417. border:none;
  6418. border-radius:0px;
  6419. -moz-box-shadow:none;
  6420. -webkit-box-shadow:none;
  6421. box-shadow:none;
  6422. font-size:11px;
  6423. color:#AAAAAA;
  6424. }
  6425. #u41193.disabled {
  6426. }
  6427. .u41193_input_option {
  6428. font-size:11px;
  6429. }
  6430. #u41194 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:0px;
  6436. height:0px;
  6437. }
  6438. #u41195_div {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:140px;
  6444. height:30px;
  6445. background:inherit;
  6446. background-color:rgba(255, 255, 255, 1);
  6447. box-sizing:border-box;
  6448. border-width:1px;
  6449. border-style:solid;
  6450. border-color:rgba(201, 201, 201, 1);
  6451. border-radius:4px;
  6452. -moz-box-shadow:none;
  6453. -webkit-box-shadow:none;
  6454. box-shadow:none;
  6455. font-family:'Microsoft YaHei', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:14px;
  6459. color:#CCCCCC;
  6460. text-align:left;
  6461. }
  6462. #u41195 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:356px;
  6466. top:153px;
  6467. width:140px;
  6468. height:30px;
  6469. display:flex;
  6470. font-family:'Microsoft YaHei', sans-serif;
  6471. font-weight:400;
  6472. font-style:normal;
  6473. font-size:14px;
  6474. color:#CCCCCC;
  6475. text-align:left;
  6476. }
  6477. #u41195 .text {
  6478. position:absolute;
  6479. align-self:center;
  6480. padding:2px 8px 2px 8px;
  6481. box-sizing:border-box;
  6482. width:100%;
  6483. }
  6484. #u41195_text {
  6485. border-width:0px;
  6486. word-wrap:break-word;
  6487. text-transform:none;
  6488. visibility:hidden;
  6489. }
  6490. #u41196_input {
  6491. position:absolute;
  6492. left:0px;
  6493. top:0px;
  6494. width:127px;
  6495. height:25px;
  6496. padding:2px 2px 2px 2px;
  6497. font-family:'Microsoft YaHei', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:10px;
  6501. letter-spacing:normal;
  6502. color:#000000;
  6503. vertical-align:none;
  6504. text-align:left;
  6505. text-transform:none;
  6506. background-color:transparent;
  6507. border-color:transparent;
  6508. }
  6509. #u41196_input.disabled {
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:127px;
  6514. height:25px;
  6515. padding:2px 2px 2px 2px;
  6516. font-family:'Microsoft YaHei', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:10px;
  6520. letter-spacing:normal;
  6521. color:#000000;
  6522. vertical-align:none;
  6523. text-align:left;
  6524. text-transform:none;
  6525. background-color:transparent;
  6526. border-color:transparent;
  6527. }
  6528. #u41196_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:127px;
  6534. height:25px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 1);
  6537. border:none;
  6538. border-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. font-family:'Microsoft YaHei', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:10px;
  6546. }
  6547. #u41196 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:364px;
  6551. top:154px;
  6552. width:127px;
  6553. height:25px;
  6554. display:flex;
  6555. font-family:'Microsoft YaHei', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:10px;
  6559. }
  6560. #u41196 .text {
  6561. position:absolute;
  6562. align-self:center;
  6563. padding:2px 2px 2px 2px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u41196_div.disabled {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:127px;
  6573. height:25px;
  6574. background:inherit;
  6575. background-color:rgba(240, 240, 240, 1);
  6576. border:none;
  6577. border-radius:0px;
  6578. -moz-box-shadow:none;
  6579. -webkit-box-shadow:none;
  6580. box-shadow:none;
  6581. font-family:'Microsoft YaHei', sans-serif;
  6582. font-weight:400;
  6583. font-style:normal;
  6584. font-size:10px;
  6585. }
  6586. #u41196.disabled {
  6587. }
  6588. #u41197 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:0px;
  6592. top:0px;
  6593. width:0px;
  6594. height:0px;
  6595. }
  6596. #u41198_div {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:140px;
  6602. height:30px;
  6603. background:inherit;
  6604. background-color:rgba(255, 255, 255, 1);
  6605. box-sizing:border-box;
  6606. border-width:1px;
  6607. border-style:solid;
  6608. border-color:rgba(201, 201, 201, 1);
  6609. border-radius:4px;
  6610. -moz-box-shadow:none;
  6611. -webkit-box-shadow:none;
  6612. box-shadow:none;
  6613. font-family:'Microsoft YaHei', sans-serif;
  6614. font-weight:400;
  6615. font-style:normal;
  6616. font-size:14px;
  6617. color:#CCCCCC;
  6618. text-align:left;
  6619. }
  6620. #u41198 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:506px;
  6624. top:153px;
  6625. width:140px;
  6626. height:30px;
  6627. display:flex;
  6628. font-family:'Microsoft YaHei', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:14px;
  6632. color:#CCCCCC;
  6633. text-align:left;
  6634. }
  6635. #u41198 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:2px 8px 2px 8px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u41198_text {
  6643. border-width:0px;
  6644. word-wrap:break-word;
  6645. text-transform:none;
  6646. visibility:hidden;
  6647. }
  6648. #u41199_input {
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:127px;
  6653. height:25px;
  6654. padding:2px 2px 2px 2px;
  6655. font-family:'Microsoft YaHei', sans-serif;
  6656. font-weight:400;
  6657. font-style:normal;
  6658. font-size:10px;
  6659. letter-spacing:normal;
  6660. color:#000000;
  6661. vertical-align:none;
  6662. text-align:left;
  6663. text-transform:none;
  6664. background-color:transparent;
  6665. border-color:transparent;
  6666. }
  6667. #u41199_input.disabled {
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:127px;
  6672. height:25px;
  6673. padding:2px 2px 2px 2px;
  6674. font-family:'Microsoft YaHei', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:10px;
  6678. letter-spacing:normal;
  6679. color:#000000;
  6680. vertical-align:none;
  6681. text-align:left;
  6682. text-transform:none;
  6683. background-color:transparent;
  6684. border-color:transparent;
  6685. }
  6686. #u41199_div {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:127px;
  6692. height:25px;
  6693. background:inherit;
  6694. background-color:rgba(255, 255, 255, 1);
  6695. border:none;
  6696. border-radius:0px;
  6697. -moz-box-shadow:none;
  6698. -webkit-box-shadow:none;
  6699. box-shadow:none;
  6700. font-family:'Microsoft YaHei', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. font-size:10px;
  6704. }
  6705. #u41199 {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:514px;
  6709. top:154px;
  6710. width:127px;
  6711. height:25px;
  6712. display:flex;
  6713. font-family:'Microsoft YaHei', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:10px;
  6717. }
  6718. #u41199 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:2px 2px 2px 2px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u41199_div.disabled {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:127px;
  6731. height:25px;
  6732. background:inherit;
  6733. background-color:rgba(240, 240, 240, 1);
  6734. border:none;
  6735. border-radius:0px;
  6736. -moz-box-shadow:none;
  6737. -webkit-box-shadow:none;
  6738. box-shadow:none;
  6739. font-family:'Microsoft YaHei', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:10px;
  6743. }
  6744. #u41199.disabled {
  6745. }
  6746. #u41200 {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:0px;
  6752. height:0px;
  6753. }
  6754. #u41201_div {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:140px;
  6760. height:30px;
  6761. background:inherit;
  6762. background-color:rgba(255, 255, 255, 1);
  6763. box-sizing:border-box;
  6764. border-width:1px;
  6765. border-style:solid;
  6766. border-color:rgba(215, 215, 215, 1);
  6767. border-radius:4px;
  6768. -moz-box-shadow:none;
  6769. -webkit-box-shadow:none;
  6770. box-shadow:none;
  6771. font-size:11px;
  6772. }
  6773. #u41201 {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:1256px;
  6777. top:112px;
  6778. width:140px;
  6779. height:30px;
  6780. display:flex;
  6781. font-size:11px;
  6782. }
  6783. #u41201 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 2px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u41201_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. visibility:hidden;
  6795. }
  6796. #u41202_input {
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:126px;
  6801. height:23px;
  6802. padding:2px 2px 2px 2px;
  6803. font-family:'ArialMT', 'Arial', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:11px;
  6807. letter-spacing:normal;
  6808. color:#AAAAAA;
  6809. vertical-align:none;
  6810. text-align:left;
  6811. text-transform:none;
  6812. background-color:transparent;
  6813. border-color:transparent;
  6814. }
  6815. #u41202_input.disabled {
  6816. position:absolute;
  6817. left:0px;
  6818. top:0px;
  6819. width:126px;
  6820. height:23px;
  6821. padding:2px 2px 2px 2px;
  6822. font-family:'ArialMT', 'Arial', sans-serif;
  6823. font-weight:400;
  6824. font-style:normal;
  6825. font-size:11px;
  6826. letter-spacing:normal;
  6827. color:#AAAAAA;
  6828. vertical-align:none;
  6829. text-align:left;
  6830. text-transform:none;
  6831. background-color:transparent;
  6832. border-color:transparent;
  6833. }
  6834. #u41202_div {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:126px;
  6840. height:23px;
  6841. background:inherit;
  6842. background-color:rgba(255, 255, 255, 1);
  6843. border:none;
  6844. border-radius:0px;
  6845. -moz-box-shadow:none;
  6846. -webkit-box-shadow:none;
  6847. box-shadow:none;
  6848. font-size:11px;
  6849. color:#AAAAAA;
  6850. }
  6851. #u41202 {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:1263px;
  6855. top:114px;
  6856. width:126px;
  6857. height:23px;
  6858. display:flex;
  6859. font-size:11px;
  6860. color:#AAAAAA;
  6861. }
  6862. #u41202 .text {
  6863. position:absolute;
  6864. align-self:flex-start;
  6865. padding:2px 2px 2px 2px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u41202_div.disabled {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:126px;
  6875. height:23px;
  6876. background:inherit;
  6877. background-color:rgba(240, 240, 240, 1);
  6878. border:none;
  6879. border-radius:0px;
  6880. -moz-box-shadow:none;
  6881. -webkit-box-shadow:none;
  6882. box-shadow:none;
  6883. font-size:11px;
  6884. color:#AAAAAA;
  6885. }
  6886. #u41202.disabled {
  6887. }
  6888. .u41202_input_option {
  6889. font-size:11px;
  6890. }
  6891. #u41203 {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:0px;
  6897. height:0px;
  6898. }
  6899. #u41204_div {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:0px;
  6903. top:0px;
  6904. width:140px;
  6905. height:30px;
  6906. background:inherit;
  6907. background-color:rgba(255, 255, 255, 1);
  6908. box-sizing:border-box;
  6909. border-width:1px;
  6910. border-style:solid;
  6911. border-color:rgba(215, 215, 215, 1);
  6912. border-radius:4px;
  6913. -moz-box-shadow:none;
  6914. -webkit-box-shadow:none;
  6915. box-shadow:none;
  6916. font-size:11px;
  6917. }
  6918. #u41204 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:956px;
  6922. top:113px;
  6923. width:140px;
  6924. height:30px;
  6925. display:flex;
  6926. font-size:11px;
  6927. }
  6928. #u41204 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:2px 2px 2px 2px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u41204_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. visibility:hidden;
  6940. }
  6941. #u41205_input {
  6942. position:absolute;
  6943. left:0px;
  6944. top:0px;
  6945. width:126px;
  6946. height:23px;
  6947. padding:2px 2px 2px 2px;
  6948. font-family:'ArialMT', 'Arial', sans-serif;
  6949. font-weight:400;
  6950. font-style:normal;
  6951. font-size:11px;
  6952. letter-spacing:normal;
  6953. color:#AAAAAA;
  6954. vertical-align:none;
  6955. text-align:left;
  6956. text-transform:none;
  6957. background-color:transparent;
  6958. border-color:transparent;
  6959. }
  6960. #u41205_input.disabled {
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:126px;
  6965. height:23px;
  6966. padding:2px 2px 2px 2px;
  6967. font-family:'ArialMT', 'Arial', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:11px;
  6971. letter-spacing:normal;
  6972. color:#AAAAAA;
  6973. vertical-align:none;
  6974. text-align:left;
  6975. text-transform:none;
  6976. background-color:transparent;
  6977. border-color:transparent;
  6978. }
  6979. #u41205_div {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:0px;
  6983. top:0px;
  6984. width:126px;
  6985. height:23px;
  6986. background:inherit;
  6987. background-color:rgba(255, 255, 255, 1);
  6988. border:none;
  6989. border-radius:0px;
  6990. -moz-box-shadow:none;
  6991. -webkit-box-shadow:none;
  6992. box-shadow:none;
  6993. font-size:11px;
  6994. color:#AAAAAA;
  6995. }
  6996. #u41205 {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:963px;
  7000. top:115px;
  7001. width:126px;
  7002. height:23px;
  7003. display:flex;
  7004. font-size:11px;
  7005. color:#AAAAAA;
  7006. }
  7007. #u41205 .text {
  7008. position:absolute;
  7009. align-self:flex-start;
  7010. padding:2px 2px 2px 2px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u41205_div.disabled {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:126px;
  7020. height:23px;
  7021. background:inherit;
  7022. background-color:rgba(240, 240, 240, 1);
  7023. border:none;
  7024. border-radius:0px;
  7025. -moz-box-shadow:none;
  7026. -webkit-box-shadow:none;
  7027. box-shadow:none;
  7028. font-size:11px;
  7029. color:#AAAAAA;
  7030. }
  7031. #u41205.disabled {
  7032. }
  7033. .u41205_input_option {
  7034. font-size:11px;
  7035. }
  7036. #u41206 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:0px;
  7042. height:0px;
  7043. }
  7044. #u41207_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:140px;
  7050. height:30px;
  7051. background:inherit;
  7052. background-color:rgba(255, 255, 255, 1);
  7053. box-sizing:border-box;
  7054. border-width:1px;
  7055. border-style:solid;
  7056. border-color:rgba(201, 201, 201, 1);
  7057. border-radius:4px;
  7058. -moz-box-shadow:none;
  7059. -webkit-box-shadow:none;
  7060. box-shadow:none;
  7061. font-family:'Microsoft YaHei', sans-serif;
  7062. font-weight:400;
  7063. font-style:normal;
  7064. font-size:14px;
  7065. color:#CCCCCC;
  7066. text-align:left;
  7067. }
  7068. #u41207 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:506px;
  7072. top:113px;
  7073. width:140px;
  7074. height:30px;
  7075. display:flex;
  7076. font-family:'Microsoft YaHei', sans-serif;
  7077. font-weight:400;
  7078. font-style:normal;
  7079. font-size:14px;
  7080. color:#CCCCCC;
  7081. text-align:left;
  7082. }
  7083. #u41207 .text {
  7084. position:absolute;
  7085. align-self:center;
  7086. padding:2px 8px 2px 8px;
  7087. box-sizing:border-box;
  7088. width:100%;
  7089. }
  7090. #u41207_text {
  7091. border-width:0px;
  7092. word-wrap:break-word;
  7093. text-transform:none;
  7094. visibility:hidden;
  7095. }
  7096. #u41208_input {
  7097. position:absolute;
  7098. left:0px;
  7099. top:0px;
  7100. width:127px;
  7101. height:25px;
  7102. padding:2px 2px 2px 2px;
  7103. font-family:'Microsoft YaHei', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:10px;
  7107. letter-spacing:normal;
  7108. color:#000000;
  7109. vertical-align:none;
  7110. text-align:left;
  7111. text-transform:none;
  7112. background-color:transparent;
  7113. border-color:transparent;
  7114. }
  7115. #u41208_input.disabled {
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:127px;
  7120. height:25px;
  7121. padding:2px 2px 2px 2px;
  7122. font-family:'Microsoft YaHei', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:10px;
  7126. letter-spacing:normal;
  7127. color:#000000;
  7128. vertical-align:none;
  7129. text-align:left;
  7130. text-transform:none;
  7131. background-color:transparent;
  7132. border-color:transparent;
  7133. }
  7134. #u41208_div {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:127px;
  7140. height:25px;
  7141. background:inherit;
  7142. background-color:rgba(255, 255, 255, 1);
  7143. border:none;
  7144. border-radius:0px;
  7145. -moz-box-shadow:none;
  7146. -webkit-box-shadow:none;
  7147. box-shadow:none;
  7148. font-family:'Microsoft YaHei', sans-serif;
  7149. font-weight:400;
  7150. font-style:normal;
  7151. font-size:10px;
  7152. }
  7153. #u41208 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:514px;
  7157. top:114px;
  7158. width:127px;
  7159. height:25px;
  7160. display:flex;
  7161. font-family:'Microsoft YaHei', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:10px;
  7165. }
  7166. #u41208 .text {
  7167. position:absolute;
  7168. align-self:center;
  7169. padding:2px 2px 2px 2px;
  7170. box-sizing:border-box;
  7171. width:100%;
  7172. }
  7173. #u41208_div.disabled {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:127px;
  7179. height:25px;
  7180. background:inherit;
  7181. background-color:rgba(240, 240, 240, 1);
  7182. border:none;
  7183. border-radius:0px;
  7184. -moz-box-shadow:none;
  7185. -webkit-box-shadow:none;
  7186. box-shadow:none;
  7187. font-family:'Microsoft YaHei', sans-serif;
  7188. font-weight:400;
  7189. font-style:normal;
  7190. font-size:10px;
  7191. }
  7192. #u41208.disabled {
  7193. }
  7194. #u41209 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:0px;
  7200. height:0px;
  7201. }
  7202. #u41210_div {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:140px;
  7208. height:30px;
  7209. background:inherit;
  7210. background-color:rgba(255, 255, 255, 1);
  7211. box-sizing:border-box;
  7212. border-width:1px;
  7213. border-style:solid;
  7214. border-color:rgba(201, 201, 201, 1);
  7215. border-radius:4px;
  7216. -moz-box-shadow:none;
  7217. -webkit-box-shadow:none;
  7218. box-shadow:none;
  7219. font-family:'Microsoft YaHei', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:14px;
  7223. color:#CCCCCC;
  7224. text-align:left;
  7225. }
  7226. #u41210 {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:806px;
  7230. top:113px;
  7231. width:140px;
  7232. height:30px;
  7233. display:flex;
  7234. font-family:'Microsoft YaHei', sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:14px;
  7238. color:#CCCCCC;
  7239. text-align:left;
  7240. }
  7241. #u41210 .text {
  7242. position:absolute;
  7243. align-self:center;
  7244. padding:2px 8px 2px 8px;
  7245. box-sizing:border-box;
  7246. width:100%;
  7247. }
  7248. #u41210_text {
  7249. border-width:0px;
  7250. word-wrap:break-word;
  7251. text-transform:none;
  7252. visibility:hidden;
  7253. }
  7254. #u41211_input {
  7255. position:absolute;
  7256. left:0px;
  7257. top:0px;
  7258. width:127px;
  7259. height:25px;
  7260. padding:2px 2px 2px 2px;
  7261. font-family:'Microsoft YaHei', sans-serif;
  7262. font-weight:400;
  7263. font-style:normal;
  7264. font-size:10px;
  7265. letter-spacing:normal;
  7266. color:#000000;
  7267. vertical-align:none;
  7268. text-align:left;
  7269. text-transform:none;
  7270. background-color:transparent;
  7271. border-color:transparent;
  7272. }
  7273. #u41211_input.disabled {
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:127px;
  7278. height:25px;
  7279. padding:2px 2px 2px 2px;
  7280. font-family:'Microsoft YaHei', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. font-size:10px;
  7284. letter-spacing:normal;
  7285. color:#000000;
  7286. vertical-align:none;
  7287. text-align:left;
  7288. text-transform:none;
  7289. background-color:transparent;
  7290. border-color:transparent;
  7291. }
  7292. #u41211_div {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:127px;
  7298. height:25px;
  7299. background:inherit;
  7300. background-color:rgba(255, 255, 255, 1);
  7301. border:none;
  7302. border-radius:0px;
  7303. -moz-box-shadow:none;
  7304. -webkit-box-shadow:none;
  7305. box-shadow:none;
  7306. font-family:'Microsoft YaHei', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:10px;
  7310. }
  7311. #u41211 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:814px;
  7315. top:114px;
  7316. width:127px;
  7317. height:25px;
  7318. display:flex;
  7319. font-family:'Microsoft YaHei', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:10px;
  7323. }
  7324. #u41211 .text {
  7325. position:absolute;
  7326. align-self:center;
  7327. padding:2px 2px 2px 2px;
  7328. box-sizing:border-box;
  7329. width:100%;
  7330. }
  7331. #u41211_div.disabled {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:127px;
  7337. height:25px;
  7338. background:inherit;
  7339. background-color:rgba(240, 240, 240, 1);
  7340. border:none;
  7341. border-radius:0px;
  7342. -moz-box-shadow:none;
  7343. -webkit-box-shadow:none;
  7344. box-shadow:none;
  7345. font-family:'Microsoft YaHei', sans-serif;
  7346. font-weight:400;
  7347. font-style:normal;
  7348. font-size:10px;
  7349. }
  7350. #u41211.disabled {
  7351. }
  7352. #u41212 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:0px;
  7358. height:0px;
  7359. }
  7360. #u41213_div {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:140px;
  7366. height:30px;
  7367. background:inherit;
  7368. background-color:rgba(255, 255, 255, 1);
  7369. box-sizing:border-box;
  7370. border-width:1px;
  7371. border-style:solid;
  7372. border-color:rgba(215, 215, 215, 1);
  7373. border-radius:4px;
  7374. -moz-box-shadow:none;
  7375. -webkit-box-shadow:none;
  7376. box-shadow:none;
  7377. font-size:11px;
  7378. }
  7379. #u41213 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:356px;
  7383. top:113px;
  7384. width:140px;
  7385. height:30px;
  7386. display:flex;
  7387. font-size:11px;
  7388. }
  7389. #u41213 .text {
  7390. position:absolute;
  7391. align-self:center;
  7392. padding:2px 2px 2px 2px;
  7393. box-sizing:border-box;
  7394. width:100%;
  7395. }
  7396. #u41213_text {
  7397. border-width:0px;
  7398. word-wrap:break-word;
  7399. text-transform:none;
  7400. visibility:hidden;
  7401. }
  7402. #u41214_input {
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:126px;
  7407. height:23px;
  7408. padding:2px 2px 2px 2px;
  7409. font-family:'ArialMT', 'Arial', sans-serif;
  7410. font-weight:400;
  7411. font-style:normal;
  7412. font-size:11px;
  7413. letter-spacing:normal;
  7414. color:#AAAAAA;
  7415. vertical-align:none;
  7416. text-align:left;
  7417. text-transform:none;
  7418. background-color:transparent;
  7419. border-color:transparent;
  7420. }
  7421. #u41214_input.disabled {
  7422. position:absolute;
  7423. left:0px;
  7424. top:0px;
  7425. width:126px;
  7426. height:23px;
  7427. padding:2px 2px 2px 2px;
  7428. font-family:'ArialMT', 'Arial', sans-serif;
  7429. font-weight:400;
  7430. font-style:normal;
  7431. font-size:11px;
  7432. letter-spacing:normal;
  7433. color:#AAAAAA;
  7434. vertical-align:none;
  7435. text-align:left;
  7436. text-transform:none;
  7437. background-color:transparent;
  7438. border-color:transparent;
  7439. }
  7440. #u41214_div {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:126px;
  7446. height:23px;
  7447. background:inherit;
  7448. background-color:rgba(255, 255, 255, 1);
  7449. border:none;
  7450. border-radius:0px;
  7451. -moz-box-shadow:none;
  7452. -webkit-box-shadow:none;
  7453. box-shadow:none;
  7454. font-size:11px;
  7455. color:#AAAAAA;
  7456. }
  7457. #u41214 {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:363px;
  7461. top:115px;
  7462. width:126px;
  7463. height:23px;
  7464. display:flex;
  7465. font-size:11px;
  7466. color:#AAAAAA;
  7467. }
  7468. #u41214 .text {
  7469. position:absolute;
  7470. align-self:flex-start;
  7471. padding:2px 2px 2px 2px;
  7472. box-sizing:border-box;
  7473. width:100%;
  7474. }
  7475. #u41214_div.disabled {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:126px;
  7481. height:23px;
  7482. background:inherit;
  7483. background-color:rgba(240, 240, 240, 1);
  7484. border:none;
  7485. border-radius:0px;
  7486. -moz-box-shadow:none;
  7487. -webkit-box-shadow:none;
  7488. box-shadow:none;
  7489. font-size:11px;
  7490. color:#AAAAAA;
  7491. }
  7492. #u41214.disabled {
  7493. }
  7494. .u41214_input_option {
  7495. font-size:11px;
  7496. }
  7497. #u41215 {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:0px;
  7503. height:0px;
  7504. }
  7505. #u41216_div {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:140px;
  7511. height:30px;
  7512. background:inherit;
  7513. background-color:rgba(255, 255, 255, 1);
  7514. box-sizing:border-box;
  7515. border-width:1px;
  7516. border-style:solid;
  7517. border-color:rgba(215, 215, 215, 1);
  7518. border-radius:4px;
  7519. -moz-box-shadow:none;
  7520. -webkit-box-shadow:none;
  7521. box-shadow:none;
  7522. font-size:11px;
  7523. }
  7524. #u41216 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:1406px;
  7528. top:112px;
  7529. width:140px;
  7530. height:30px;
  7531. display:flex;
  7532. font-size:11px;
  7533. }
  7534. #u41216 .text {
  7535. position:absolute;
  7536. align-self:center;
  7537. padding:2px 2px 2px 2px;
  7538. box-sizing:border-box;
  7539. width:100%;
  7540. }
  7541. #u41216_text {
  7542. border-width:0px;
  7543. word-wrap:break-word;
  7544. text-transform:none;
  7545. visibility:hidden;
  7546. }
  7547. #u41217_input {
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:126px;
  7552. height:23px;
  7553. padding:2px 2px 2px 2px;
  7554. font-family:'ArialMT', 'Arial', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:11px;
  7558. letter-spacing:normal;
  7559. color:#AAAAAA;
  7560. vertical-align:none;
  7561. text-align:left;
  7562. text-transform:none;
  7563. background-color:transparent;
  7564. border-color:transparent;
  7565. }
  7566. #u41217_input.disabled {
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:126px;
  7571. height:23px;
  7572. padding:2px 2px 2px 2px;
  7573. font-family:'ArialMT', 'Arial', sans-serif;
  7574. font-weight:400;
  7575. font-style:normal;
  7576. font-size:11px;
  7577. letter-spacing:normal;
  7578. color:#AAAAAA;
  7579. vertical-align:none;
  7580. text-align:left;
  7581. text-transform:none;
  7582. background-color:transparent;
  7583. border-color:transparent;
  7584. }
  7585. #u41217_div {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:0px;
  7589. top:0px;
  7590. width:126px;
  7591. height:23px;
  7592. background:inherit;
  7593. background-color:rgba(255, 255, 255, 1);
  7594. border:none;
  7595. border-radius:0px;
  7596. -moz-box-shadow:none;
  7597. -webkit-box-shadow:none;
  7598. box-shadow:none;
  7599. font-size:11px;
  7600. color:#AAAAAA;
  7601. }
  7602. #u41217 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:1413px;
  7606. top:114px;
  7607. width:126px;
  7608. height:23px;
  7609. display:flex;
  7610. font-size:11px;
  7611. color:#AAAAAA;
  7612. }
  7613. #u41217 .text {
  7614. position:absolute;
  7615. align-self:flex-start;
  7616. padding:2px 2px 2px 2px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u41217_div.disabled {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:0px;
  7624. top:0px;
  7625. width:126px;
  7626. height:23px;
  7627. background:inherit;
  7628. background-color:rgba(240, 240, 240, 1);
  7629. border:none;
  7630. border-radius:0px;
  7631. -moz-box-shadow:none;
  7632. -webkit-box-shadow:none;
  7633. box-shadow:none;
  7634. font-size:11px;
  7635. color:#AAAAAA;
  7636. }
  7637. #u41217.disabled {
  7638. }
  7639. .u41217_input_option {
  7640. font-size:11px;
  7641. }
  7642. #u41218 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:0px;
  7646. top:0px;
  7647. width:0px;
  7648. height:0px;
  7649. }
  7650. #u41219_div {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:0px;
  7654. top:0px;
  7655. width:140px;
  7656. height:30px;
  7657. background:inherit;
  7658. background-color:rgba(255, 255, 255, 1);
  7659. box-sizing:border-box;
  7660. border-width:1px;
  7661. border-style:solid;
  7662. border-color:rgba(215, 215, 215, 1);
  7663. border-radius:4px;
  7664. -moz-box-shadow:none;
  7665. -webkit-box-shadow:none;
  7666. box-shadow:none;
  7667. font-size:11px;
  7668. }
  7669. #u41219 {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:656px;
  7673. top:113px;
  7674. width:140px;
  7675. height:30px;
  7676. display:flex;
  7677. font-size:11px;
  7678. }
  7679. #u41219 .text {
  7680. position:absolute;
  7681. align-self:center;
  7682. padding:2px 2px 2px 2px;
  7683. box-sizing:border-box;
  7684. width:100%;
  7685. }
  7686. #u41219_text {
  7687. border-width:0px;
  7688. word-wrap:break-word;
  7689. text-transform:none;
  7690. visibility:hidden;
  7691. }
  7692. #u41220_input {
  7693. position:absolute;
  7694. left:0px;
  7695. top:0px;
  7696. width:126px;
  7697. height:23px;
  7698. padding:2px 2px 2px 2px;
  7699. font-family:'ArialMT', 'Arial', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:11px;
  7703. letter-spacing:normal;
  7704. color:#AAAAAA;
  7705. vertical-align:none;
  7706. text-align:left;
  7707. text-transform:none;
  7708. background-color:transparent;
  7709. border-color:transparent;
  7710. }
  7711. #u41220_input.disabled {
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:126px;
  7716. height:23px;
  7717. padding:2px 2px 2px 2px;
  7718. font-family:'ArialMT', 'Arial', sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:11px;
  7722. letter-spacing:normal;
  7723. color:#AAAAAA;
  7724. vertical-align:none;
  7725. text-align:left;
  7726. text-transform:none;
  7727. background-color:transparent;
  7728. border-color:transparent;
  7729. }
  7730. #u41220_div {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:0px;
  7734. top:0px;
  7735. width:126px;
  7736. height:23px;
  7737. background:inherit;
  7738. background-color:rgba(255, 255, 255, 1);
  7739. border:none;
  7740. border-radius:0px;
  7741. -moz-box-shadow:none;
  7742. -webkit-box-shadow:none;
  7743. box-shadow:none;
  7744. font-size:11px;
  7745. color:#AAAAAA;
  7746. }
  7747. #u41220 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:663px;
  7751. top:115px;
  7752. width:126px;
  7753. height:23px;
  7754. display:flex;
  7755. font-size:11px;
  7756. color:#AAAAAA;
  7757. }
  7758. #u41220 .text {
  7759. position:absolute;
  7760. align-self:flex-start;
  7761. padding:2px 2px 2px 2px;
  7762. box-sizing:border-box;
  7763. width:100%;
  7764. }
  7765. #u41220_div.disabled {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:126px;
  7771. height:23px;
  7772. background:inherit;
  7773. background-color:rgba(240, 240, 240, 1);
  7774. border:none;
  7775. border-radius:0px;
  7776. -moz-box-shadow:none;
  7777. -webkit-box-shadow:none;
  7778. box-shadow:none;
  7779. font-size:11px;
  7780. color:#AAAAAA;
  7781. }
  7782. #u41220.disabled {
  7783. }
  7784. .u41220_input_option {
  7785. font-size:11px;
  7786. }
  7787. #u41221 {
  7788. border-width:0px;
  7789. position:absolute;
  7790. left:0px;
  7791. top:0px;
  7792. width:0px;
  7793. height:0px;
  7794. }
  7795. #u41222_div {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:680px;
  7801. height:1198px;
  7802. background:inherit;
  7803. background-color:rgba(255, 255, 255, 1);
  7804. box-sizing:border-box;
  7805. border-width:1px;
  7806. border-style:solid;
  7807. border-color:rgba(215, 215, 215, 1);
  7808. border-radius:0px;
  7809. -moz-box-shadow:none;
  7810. -webkit-box-shadow:none;
  7811. box-shadow:none;
  7812. }
  7813. #u41222 {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:1653px;
  7817. top:32px;
  7818. width:680px;
  7819. height:1198px;
  7820. display:flex;
  7821. }
  7822. #u41222 .text {
  7823. position:absolute;
  7824. align-self:center;
  7825. padding:2px 2px 2px 2px;
  7826. box-sizing:border-box;
  7827. width:100%;
  7828. }
  7829. #u41222_text {
  7830. border-width:0px;
  7831. word-wrap:break-word;
  7832. text-transform:none;
  7833. visibility:hidden;
  7834. }
  7835. #u41223_div {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:109px;
  7841. height:30px;
  7842. background:inherit;
  7843. background-color:rgba(255, 255, 255, 0);
  7844. border:none;
  7845. border-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7850. font-weight:400;
  7851. font-style:normal;
  7852. font-size:18px;
  7853. color:#000000;
  7854. line-height:30px;
  7855. }
  7856. #u41223 {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:1673px;
  7860. top:52px;
  7861. width:109px;
  7862. height:30px;
  7863. display:flex;
  7864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7865. font-weight:400;
  7866. font-style:normal;
  7867. font-size:18px;
  7868. color:#000000;
  7869. line-height:30px;
  7870. }
  7871. #u41223 .text {
  7872. position:absolute;
  7873. align-self:flex-start;
  7874. padding:0px 0px 0px 0px;
  7875. box-sizing:border-box;
  7876. width:100%;
  7877. }
  7878. #u41223_text {
  7879. border-width:0px;
  7880. white-space:nowrap;
  7881. text-transform:none;
  7882. }
  7883. #u41224 {
  7884. border-width:0px;
  7885. position:absolute;
  7886. left:0px;
  7887. top:0px;
  7888. width:0px;
  7889. height:0px;
  7890. }
  7891. #u41225_div {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:0px;
  7895. top:0px;
  7896. width:40px;
  7897. height:40px;
  7898. background:inherit;
  7899. background-color:rgba(255, 255, 255, 0);
  7900. border:none;
  7901. border-top:0px;
  7902. border-right:0px;
  7903. border-bottom:0px;
  7904. border-radius:0px;
  7905. border-top-left-radius:0px;
  7906. border-bottom-left-radius:0px;
  7907. -moz-box-shadow:none;
  7908. -webkit-box-shadow:none;
  7909. box-shadow:none;
  7910. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7911. font-weight:500;
  7912. font-style:normal;
  7913. font-size:18px;
  7914. text-align:center;
  7915. }
  7916. #u41225 {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:2293px;
  7920. top:32px;
  7921. width:40px;
  7922. height:40px;
  7923. display:flex;
  7924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7925. font-weight:500;
  7926. font-style:normal;
  7927. font-size:18px;
  7928. text-align:center;
  7929. }
  7930. #u41225 .text {
  7931. position:absolute;
  7932. align-self:center;
  7933. padding:5px 10px 5px 0px;
  7934. box-sizing:border-box;
  7935. width:100%;
  7936. }
  7937. #u41225_text {
  7938. border-width:0px;
  7939. word-wrap:break-word;
  7940. text-transform:none;
  7941. }
  7942. #u41226_img {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:13px;
  7948. height:17px;
  7949. }
  7950. #u41226 {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:2280px;
  7954. top:44px;
  7955. width:13px;
  7956. height:17px;
  7957. display:flex;
  7958. }
  7959. #u41226 .text {
  7960. position:absolute;
  7961. align-self:center;
  7962. padding:2px 2px 2px 2px;
  7963. box-sizing:border-box;
  7964. width:100%;
  7965. }
  7966. #u41226_text {
  7967. border-width:0px;
  7968. word-wrap:break-word;
  7969. text-transform:none;
  7970. visibility:hidden;
  7971. }
  7972. #u41227 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:0px;
  7976. top:0px;
  7977. width:0px;
  7978. height:0px;
  7979. }
  7980. #u41228_div {
  7981. border-width:0px;
  7982. position:absolute;
  7983. left:0px;
  7984. top:0px;
  7985. width:680px;
  7986. height:60px;
  7987. background:inherit;
  7988. background-color:rgba(255, 255, 255, 1);
  7989. box-sizing:border-box;
  7990. border-width:1px;
  7991. border-style:solid;
  7992. border-color:rgba(215, 215, 215, 1);
  7993. border-radius:0px;
  7994. -moz-box-shadow:none;
  7995. -webkit-box-shadow:none;
  7996. box-shadow:none;
  7997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:14px;
  8001. color:#AAAAAA;
  8002. text-align:center;
  8003. line-height:30px;
  8004. }
  8005. #u41228 {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:1653px;
  8009. top:1170px;
  8010. width:680px;
  8011. height:60px;
  8012. display:flex;
  8013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8014. font-weight:400;
  8015. font-style:normal;
  8016. font-size:14px;
  8017. color:#AAAAAA;
  8018. text-align:center;
  8019. line-height:30px;
  8020. }
  8021. #u41228 .text {
  8022. position:absolute;
  8023. align-self:center;
  8024. padding:5px 10px 5px 10px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u41228_text {
  8029. border-width:0px;
  8030. word-wrap:break-word;
  8031. text-transform:none;
  8032. visibility:hidden;
  8033. }
  8034. #u41229_div {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:80px;
  8040. height:30px;
  8041. background:inherit;
  8042. background-color:rgba(24, 144, 255, 1);
  8043. border:none;
  8044. border-radius:4px;
  8045. -moz-box-shadow:none;
  8046. -webkit-box-shadow:none;
  8047. box-shadow:none;
  8048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8049. font-weight:400;
  8050. font-style:normal;
  8051. font-size:14px;
  8052. color:#FFFFFF;
  8053. }
  8054. #u41229 {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:2208px;
  8058. top:1185px;
  8059. width:80px;
  8060. height:30px;
  8061. display:flex;
  8062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:14px;
  8066. color:#FFFFFF;
  8067. }
  8068. #u41229 .text {
  8069. position:absolute;
  8070. align-self:center;
  8071. padding:2px 2px 2px 2px;
  8072. box-sizing:border-box;
  8073. width:100%;
  8074. }
  8075. #u41229_text {
  8076. border-width:0px;
  8077. word-wrap:break-word;
  8078. text-transform:none;
  8079. }
  8080. #u41230_div {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:80px;
  8086. height:30px;
  8087. background:inherit;
  8088. background-color:rgba(255, 255, 255, 1);
  8089. box-sizing:border-box;
  8090. border-width:1px;
  8091. border-style:solid;
  8092. border-color:rgba(170, 170, 170, 1);
  8093. border-radius:4px;
  8094. -moz-box-shadow:none;
  8095. -webkit-box-shadow:none;
  8096. box-shadow:none;
  8097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8098. font-weight:400;
  8099. font-style:normal;
  8100. font-size:14px;
  8101. }
  8102. #u41230 {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:2109px;
  8106. top:1185px;
  8107. width:80px;
  8108. height:30px;
  8109. display:flex;
  8110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8111. font-weight:400;
  8112. font-style:normal;
  8113. font-size:14px;
  8114. }
  8115. #u41230 .text {
  8116. position:absolute;
  8117. align-self:center;
  8118. padding:2px 2px 2px 2px;
  8119. box-sizing:border-box;
  8120. width:100%;
  8121. }
  8122. #u41230_text {
  8123. border-width:0px;
  8124. word-wrap:break-word;
  8125. text-transform:none;
  8126. }
  8127. #u41231 {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:0px;
  8131. top:0px;
  8132. width:0px;
  8133. height:0px;
  8134. }
  8135. #u41232_div {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:400px;
  8141. height:80px;
  8142. background:inherit;
  8143. background-color:rgba(255, 255, 255, 1);
  8144. box-sizing:border-box;
  8145. border-width:1px;
  8146. border-style:solid;
  8147. border-color:rgba(170, 170, 170, 1);
  8148. border-radius:4px;
  8149. -moz-box-shadow:none;
  8150. -webkit-box-shadow:none;
  8151. box-shadow:none;
  8152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8153. font-weight:400;
  8154. font-style:normal;
  8155. text-align:left;
  8156. }
  8157. #u41232 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:1805px;
  8161. top:641px;
  8162. width:400px;
  8163. height:80px;
  8164. display:flex;
  8165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8166. font-weight:400;
  8167. font-style:normal;
  8168. text-align:left;
  8169. }
  8170. #u41232 .text {
  8171. position:absolute;
  8172. align-self:center;
  8173. padding:2px 2px 2px 10px;
  8174. box-sizing:border-box;
  8175. width:100%;
  8176. }
  8177. #u41232_text {
  8178. border-width:0px;
  8179. word-wrap:break-word;
  8180. text-transform:none;
  8181. visibility:hidden;
  8182. }
  8183. #u41233_input {
  8184. position:absolute;
  8185. left:0px;
  8186. top:0px;
  8187. width:188px;
  8188. height:31px;
  8189. padding:2px 2px 2px 2px;
  8190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8191. font-weight:400;
  8192. font-style:normal;
  8193. font-size:13px;
  8194. letter-spacing:normal;
  8195. color:#AAAAAA;
  8196. vertical-align:none;
  8197. text-align:left;
  8198. text-transform:none;
  8199. background-color:transparent;
  8200. border-color:transparent;
  8201. }
  8202. #u41233_input.disabled {
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:188px;
  8207. height:31px;
  8208. padding:2px 2px 2px 2px;
  8209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8210. font-weight:400;
  8211. font-style:normal;
  8212. font-size:13px;
  8213. letter-spacing:normal;
  8214. color:#AAAAAA;
  8215. vertical-align:none;
  8216. text-align:left;
  8217. text-transform:none;
  8218. background-color:transparent;
  8219. border-color:transparent;
  8220. }
  8221. #u41233_div {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:0px;
  8225. top:0px;
  8226. width:188px;
  8227. height:31px;
  8228. background:inherit;
  8229. background-color:rgba(255, 255, 255, 0);
  8230. border:none;
  8231. border-radius:0px;
  8232. -moz-box-shadow:none;
  8233. -webkit-box-shadow:none;
  8234. box-shadow:none;
  8235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8236. font-weight:400;
  8237. font-style:normal;
  8238. color:#AAAAAA;
  8239. }
  8240. #u41233 {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:1815px;
  8244. top:646px;
  8245. width:188px;
  8246. height:31px;
  8247. display:flex;
  8248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8249. font-weight:400;
  8250. font-style:normal;
  8251. color:#AAAAAA;
  8252. }
  8253. #u41233 .text {
  8254. position:absolute;
  8255. align-self:center;
  8256. padding:2px 2px 2px 2px;
  8257. box-sizing:border-box;
  8258. width:100%;
  8259. }
  8260. #u41233_div.disabled {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:188px;
  8266. height:31px;
  8267. background:inherit;
  8268. background-color:rgba(240, 240, 240, 1);
  8269. border:none;
  8270. border-radius:0px;
  8271. -moz-box-shadow:none;
  8272. -webkit-box-shadow:none;
  8273. box-shadow:none;
  8274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. color:#AAAAAA;
  8278. }
  8279. #u41233.disabled {
  8280. }
  8281. #u41234_div {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:39px;
  8287. height:24px;
  8288. background:inherit;
  8289. background-color:rgba(255, 255, 255, 0);
  8290. border:none;
  8291. border-top:0px;
  8292. border-right:0px;
  8293. border-bottom:0px;
  8294. border-radius:0px;
  8295. border-top-left-radius:0px;
  8296. border-bottom-left-radius:0px;
  8297. -moz-box-shadow:none;
  8298. -webkit-box-shadow:none;
  8299. box-shadow:none;
  8300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8301. font-weight:400;
  8302. font-style:normal;
  8303. font-size:10px;
  8304. color:#AAAAAA;
  8305. text-align:right;
  8306. }
  8307. #u41234 {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:2163px;
  8311. top:696px;
  8312. width:39px;
  8313. height:24px;
  8314. display:flex;
  8315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8316. font-weight:400;
  8317. font-style:normal;
  8318. font-size:10px;
  8319. color:#AAAAAA;
  8320. text-align:right;
  8321. }
  8322. #u41234 .text {
  8323. position:absolute;
  8324. align-self:center;
  8325. padding:5px 0px 5px 0px;
  8326. box-sizing:border-box;
  8327. width:100%;
  8328. }
  8329. #u41234_text {
  8330. border-width:0px;
  8331. white-space:nowrap;
  8332. text-transform:none;
  8333. }
  8334. #u41235 {
  8335. border-width:0px;
  8336. position:absolute;
  8337. left:0px;
  8338. top:0px;
  8339. width:0px;
  8340. height:0px;
  8341. }
  8342. #u41236_div {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:0px;
  8346. top:0px;
  8347. width:400px;
  8348. height:40px;
  8349. background:inherit;
  8350. background-color:rgba(255, 255, 255, 1);
  8351. box-sizing:border-box;
  8352. border-width:1px;
  8353. border-style:solid;
  8354. border-color:rgba(170, 170, 170, 1);
  8355. border-radius:4px;
  8356. -moz-box-shadow:none;
  8357. -webkit-box-shadow:none;
  8358. box-shadow:none;
  8359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. text-align:left;
  8363. }
  8364. #u41236 {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:1805px;
  8368. top:251px;
  8369. width:400px;
  8370. height:40px;
  8371. display:flex;
  8372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8373. font-weight:400;
  8374. font-style:normal;
  8375. text-align:left;
  8376. }
  8377. #u41236 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:2px 2px 2px 10px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u41236_text {
  8385. border-width:0px;
  8386. word-wrap:break-word;
  8387. text-transform:none;
  8388. visibility:hidden;
  8389. }
  8390. #u41237_input {
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:188px;
  8395. height:31px;
  8396. padding:2px 2px 2px 2px;
  8397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. font-size:13px;
  8401. letter-spacing:normal;
  8402. color:#AAAAAA;
  8403. vertical-align:none;
  8404. text-align:left;
  8405. text-transform:none;
  8406. background-color:transparent;
  8407. border-color:transparent;
  8408. }
  8409. #u41237_input.disabled {
  8410. position:absolute;
  8411. left:0px;
  8412. top:0px;
  8413. width:188px;
  8414. height:31px;
  8415. padding:2px 2px 2px 2px;
  8416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8417. font-weight:400;
  8418. font-style:normal;
  8419. font-size:13px;
  8420. letter-spacing:normal;
  8421. color:#AAAAAA;
  8422. vertical-align:none;
  8423. text-align:left;
  8424. text-transform:none;
  8425. background-color:transparent;
  8426. border-color:transparent;
  8427. }
  8428. #u41237_div {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:188px;
  8434. height:31px;
  8435. background:inherit;
  8436. background-color:rgba(255, 255, 255, 0);
  8437. border:none;
  8438. border-radius:0px;
  8439. -moz-box-shadow:none;
  8440. -webkit-box-shadow:none;
  8441. box-shadow:none;
  8442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8443. font-weight:400;
  8444. font-style:normal;
  8445. color:#AAAAAA;
  8446. }
  8447. #u41237 {
  8448. border-width:0px;
  8449. position:absolute;
  8450. left:1815px;
  8451. top:256px;
  8452. width:188px;
  8453. height:31px;
  8454. display:flex;
  8455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8456. font-weight:400;
  8457. font-style:normal;
  8458. color:#AAAAAA;
  8459. }
  8460. #u41237 .text {
  8461. position:absolute;
  8462. align-self:center;
  8463. padding:2px 2px 2px 2px;
  8464. box-sizing:border-box;
  8465. width:100%;
  8466. }
  8467. #u41237_div.disabled {
  8468. border-width:0px;
  8469. position:absolute;
  8470. left:0px;
  8471. top:0px;
  8472. width:188px;
  8473. height:31px;
  8474. background:inherit;
  8475. background-color:rgba(240, 240, 240, 1);
  8476. border:none;
  8477. border-radius:0px;
  8478. -moz-box-shadow:none;
  8479. -webkit-box-shadow:none;
  8480. box-shadow:none;
  8481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8482. font-weight:400;
  8483. font-style:normal;
  8484. color:#AAAAAA;
  8485. }
  8486. #u41237.disabled {
  8487. }
  8488. #u41238_div {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:78px;
  8494. height:30px;
  8495. background:inherit;
  8496. background-color:rgba(255, 255, 255, 0);
  8497. border:none;
  8498. border-top:0px;
  8499. border-right:0px;
  8500. border-bottom:0px;
  8501. border-radius:0px;
  8502. border-top-left-radius:0px;
  8503. border-bottom-left-radius:0px;
  8504. -moz-box-shadow:none;
  8505. -webkit-box-shadow:none;
  8506. box-shadow:none;
  8507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8508. font-weight:400;
  8509. font-style:normal;
  8510. font-size:14px;
  8511. text-align:right;
  8512. }
  8513. #u41238 {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:1717px;
  8517. top:256px;
  8518. width:78px;
  8519. height:30px;
  8520. display:flex;
  8521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8522. font-weight:400;
  8523. font-style:normal;
  8524. font-size:14px;
  8525. text-align:right;
  8526. }
  8527. #u41238 .text {
  8528. position:absolute;
  8529. align-self:center;
  8530. padding:5px 0px 5px 0px;
  8531. box-sizing:border-box;
  8532. width:100%;
  8533. }
  8534. #u41238_text {
  8535. border-width:0px;
  8536. white-space:nowrap;
  8537. text-transform:none;
  8538. }
  8539. #u41239_div {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:0px;
  8543. top:0px;
  8544. width:71px;
  8545. height:30px;
  8546. background:inherit;
  8547. background-color:rgba(255, 255, 255, 0);
  8548. border:none;
  8549. border-top:0px;
  8550. border-right:0px;
  8551. border-bottom:0px;
  8552. border-radius:0px;
  8553. border-top-left-radius:0px;
  8554. border-bottom-left-radius:0px;
  8555. -moz-box-shadow:none;
  8556. -webkit-box-shadow:none;
  8557. box-shadow:none;
  8558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8559. font-weight:400;
  8560. font-style:normal;
  8561. font-size:14px;
  8562. text-align:right;
  8563. }
  8564. #u41239 {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:1724px;
  8568. top:641px;
  8569. width:71px;
  8570. height:30px;
  8571. display:flex;
  8572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:14px;
  8576. text-align:right;
  8577. }
  8578. #u41239 .text {
  8579. position:absolute;
  8580. align-self:center;
  8581. padding:5px 0px 5px 0px;
  8582. box-sizing:border-box;
  8583. width:100%;
  8584. }
  8585. #u41239_text {
  8586. border-width:0px;
  8587. white-space:nowrap;
  8588. text-transform:none;
  8589. }
  8590. #u41240_div {
  8591. border-width:0px;
  8592. position:absolute;
  8593. left:0px;
  8594. top:0px;
  8595. width:78px;
  8596. height:30px;
  8597. background:inherit;
  8598. background-color:rgba(255, 255, 255, 0);
  8599. border:none;
  8600. border-top:0px;
  8601. border-right:0px;
  8602. border-bottom:0px;
  8603. border-radius:0px;
  8604. border-top-left-radius:0px;
  8605. border-bottom-left-radius:0px;
  8606. -moz-box-shadow:none;
  8607. -webkit-box-shadow:none;
  8608. box-shadow:none;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:14px;
  8613. text-align:right;
  8614. }
  8615. #u41240 {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:1717px;
  8619. top:106px;
  8620. width:78px;
  8621. height:30px;
  8622. display:flex;
  8623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. font-size:14px;
  8627. text-align:right;
  8628. }
  8629. #u41240 .text {
  8630. position:absolute;
  8631. align-self:center;
  8632. padding:5px 0px 5px 0px;
  8633. box-sizing:border-box;
  8634. width:100%;
  8635. }
  8636. #u41240_text {
  8637. border-width:0px;
  8638. white-space:nowrap;
  8639. text-transform:none;
  8640. }
  8641. #u41241 {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:0px;
  8645. top:0px;
  8646. width:0px;
  8647. height:0px;
  8648. }
  8649. #u41242_div {
  8650. border-width:0px;
  8651. position:absolute;
  8652. left:0px;
  8653. top:0px;
  8654. width:400px;
  8655. height:40px;
  8656. background:inherit;
  8657. background-color:rgba(255, 255, 255, 1);
  8658. box-sizing:border-box;
  8659. border-width:1px;
  8660. border-style:solid;
  8661. border-color:rgba(170, 170, 170, 1);
  8662. border-radius:4px;
  8663. -moz-box-shadow:none;
  8664. -webkit-box-shadow:none;
  8665. box-shadow:none;
  8666. }
  8667. #u41242 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:1805px;
  8671. top:101px;
  8672. width:400px;
  8673. height:40px;
  8674. display:flex;
  8675. }
  8676. #u41242 .text {
  8677. position:absolute;
  8678. align-self:center;
  8679. padding:2px 2px 2px 0px;
  8680. box-sizing:border-box;
  8681. width:100%;
  8682. }
  8683. #u41242_text {
  8684. border-width:0px;
  8685. word-wrap:break-word;
  8686. text-transform:none;
  8687. visibility:hidden;
  8688. }
  8689. #u41243_input {
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:380px;
  8694. height:30px;
  8695. padding:2px 2px 2px 0px;
  8696. font-family:'ArialMT', 'Arial', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:13px;
  8700. letter-spacing:normal;
  8701. color:#AAAAAA;
  8702. vertical-align:none;
  8703. text-align:left;
  8704. text-transform:none;
  8705. background-color:transparent;
  8706. border-color:transparent;
  8707. }
  8708. #u41243_input.disabled {
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:380px;
  8713. height:30px;
  8714. padding:2px 2px 2px 0px;
  8715. font-family:'ArialMT', 'Arial', sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:13px;
  8719. letter-spacing:normal;
  8720. color:#AAAAAA;
  8721. vertical-align:none;
  8722. text-align:left;
  8723. text-transform:none;
  8724. background-color:transparent;
  8725. border-color:transparent;
  8726. }
  8727. #u41243_div {
  8728. border-width:0px;
  8729. position:absolute;
  8730. left:0px;
  8731. top:0px;
  8732. width:380px;
  8733. height:30px;
  8734. background:inherit;
  8735. background-color:rgba(255, 255, 255, 1);
  8736. border:none;
  8737. border-radius:0px;
  8738. -moz-box-shadow:none;
  8739. -webkit-box-shadow:none;
  8740. box-shadow:none;
  8741. color:#AAAAAA;
  8742. }
  8743. #u41243 {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:1815px;
  8747. top:105px;
  8748. width:380px;
  8749. height:30px;
  8750. display:flex;
  8751. color:#AAAAAA;
  8752. }
  8753. #u41243 .text {
  8754. position:absolute;
  8755. align-self:flex-start;
  8756. padding:2px 2px 2px 0px;
  8757. box-sizing:border-box;
  8758. width:100%;
  8759. }
  8760. #u41243_div.disabled {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:380px;
  8766. height:30px;
  8767. background:inherit;
  8768. background-color:rgba(240, 240, 240, 1);
  8769. border:none;
  8770. border-radius:0px;
  8771. -moz-box-shadow:none;
  8772. -webkit-box-shadow:none;
  8773. box-shadow:none;
  8774. color:#AAAAAA;
  8775. }
  8776. #u41243.disabled {
  8777. }
  8778. .u41243_input_option {
  8779. }
  8780. #u41244 {
  8781. border-width:0px;
  8782. position:absolute;
  8783. left:0px;
  8784. top:0px;
  8785. width:0px;
  8786. height:0px;
  8787. }
  8788. #u41245_div {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:400px;
  8794. height:40px;
  8795. background:inherit;
  8796. background-color:rgba(255, 255, 255, 1);
  8797. box-sizing:border-box;
  8798. border-width:1px;
  8799. border-style:solid;
  8800. border-color:rgba(170, 170, 170, 1);
  8801. border-radius:4px;
  8802. -moz-box-shadow:none;
  8803. -webkit-box-shadow:none;
  8804. box-shadow:none;
  8805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8806. font-weight:400;
  8807. font-style:normal;
  8808. text-align:left;
  8809. }
  8810. #u41245 {
  8811. border-width:0px;
  8812. position:absolute;
  8813. left:1805px;
  8814. top:201px;
  8815. width:400px;
  8816. height:40px;
  8817. display:flex;
  8818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8819. font-weight:400;
  8820. font-style:normal;
  8821. text-align:left;
  8822. }
  8823. #u41245 .text {
  8824. position:absolute;
  8825. align-self:center;
  8826. padding:2px 2px 2px 10px;
  8827. box-sizing:border-box;
  8828. width:100%;
  8829. }
  8830. #u41245_text {
  8831. border-width:0px;
  8832. word-wrap:break-word;
  8833. text-transform:none;
  8834. visibility:hidden;
  8835. }
  8836. #u41246_input {
  8837. position:absolute;
  8838. left:0px;
  8839. top:0px;
  8840. width:188px;
  8841. height:31px;
  8842. padding:2px 2px 2px 2px;
  8843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8844. font-weight:400;
  8845. font-style:normal;
  8846. font-size:13px;
  8847. letter-spacing:normal;
  8848. color:#AAAAAA;
  8849. vertical-align:none;
  8850. text-align:left;
  8851. text-transform:none;
  8852. background-color:transparent;
  8853. border-color:transparent;
  8854. }
  8855. #u41246_input.disabled {
  8856. position:absolute;
  8857. left:0px;
  8858. top:0px;
  8859. width:188px;
  8860. height:31px;
  8861. padding:2px 2px 2px 2px;
  8862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8863. font-weight:400;
  8864. font-style:normal;
  8865. font-size:13px;
  8866. letter-spacing:normal;
  8867. color:#AAAAAA;
  8868. vertical-align:none;
  8869. text-align:left;
  8870. text-transform:none;
  8871. background-color:transparent;
  8872. border-color:transparent;
  8873. }
  8874. #u41246_div {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:0px;
  8878. top:0px;
  8879. width:188px;
  8880. height:31px;
  8881. background:inherit;
  8882. background-color:rgba(255, 255, 255, 0);
  8883. border:none;
  8884. border-radius:0px;
  8885. -moz-box-shadow:none;
  8886. -webkit-box-shadow:none;
  8887. box-shadow:none;
  8888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8889. font-weight:400;
  8890. font-style:normal;
  8891. color:#AAAAAA;
  8892. }
  8893. #u41246 {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:1815px;
  8897. top:206px;
  8898. width:188px;
  8899. height:31px;
  8900. display:flex;
  8901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8902. font-weight:400;
  8903. font-style:normal;
  8904. color:#AAAAAA;
  8905. }
  8906. #u41246 .text {
  8907. position:absolute;
  8908. align-self:center;
  8909. padding:2px 2px 2px 2px;
  8910. box-sizing:border-box;
  8911. width:100%;
  8912. }
  8913. #u41246_div.disabled {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:0px;
  8917. top:0px;
  8918. width:188px;
  8919. height:31px;
  8920. background:inherit;
  8921. background-color:rgba(240, 240, 240, 1);
  8922. border:none;
  8923. border-radius:0px;
  8924. -moz-box-shadow:none;
  8925. -webkit-box-shadow:none;
  8926. box-shadow:none;
  8927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8928. font-weight:400;
  8929. font-style:normal;
  8930. color:#AAAAAA;
  8931. }
  8932. #u41246.disabled {
  8933. }
  8934. #u41247_div {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:78px;
  8940. height:30px;
  8941. background:inherit;
  8942. background-color:rgba(255, 255, 255, 0);
  8943. border:none;
  8944. border-top:0px;
  8945. border-right:0px;
  8946. border-bottom:0px;
  8947. border-radius:0px;
  8948. border-top-left-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. text-align:right;
  8958. }
  8959. #u41247 {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:1717px;
  8963. top:206px;
  8964. width:78px;
  8965. height:30px;
  8966. display:flex;
  8967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8968. font-weight:400;
  8969. font-style:normal;
  8970. font-size:14px;
  8971. text-align:right;
  8972. }
  8973. #u41247 .text {
  8974. position:absolute;
  8975. align-self:center;
  8976. padding:5px 0px 5px 0px;
  8977. box-sizing:border-box;
  8978. width:100%;
  8979. }
  8980. #u41247_text {
  8981. border-width:0px;
  8982. white-space:nowrap;
  8983. text-transform:none;
  8984. }
  8985. #u41248_div {
  8986. border-width:0px;
  8987. position:absolute;
  8988. left:0px;
  8989. top:0px;
  8990. width:71px;
  8991. height:30px;
  8992. background:inherit;
  8993. background-color:rgba(255, 255, 255, 0);
  8994. border:none;
  8995. border-top:0px;
  8996. border-right:0px;
  8997. border-bottom:0px;
  8998. border-radius:0px;
  8999. border-top-left-radius:0px;
  9000. border-bottom-left-radius:0px;
  9001. -moz-box-shadow:none;
  9002. -webkit-box-shadow:none;
  9003. box-shadow:none;
  9004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9005. font-weight:400;
  9006. font-style:normal;
  9007. font-size:14px;
  9008. text-align:right;
  9009. }
  9010. #u41248 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:1724px;
  9014. top:306px;
  9015. width:71px;
  9016. height:30px;
  9017. display:flex;
  9018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9019. font-weight:400;
  9020. font-style:normal;
  9021. font-size:14px;
  9022. text-align:right;
  9023. }
  9024. #u41248 .text {
  9025. position:absolute;
  9026. align-self:center;
  9027. padding:5px 0px 5px 0px;
  9028. box-sizing:border-box;
  9029. width:100%;
  9030. }
  9031. #u41248_text {
  9032. border-width:0px;
  9033. white-space:nowrap;
  9034. text-transform:none;
  9035. }
  9036. #u41249 {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:0px;
  9042. height:0px;
  9043. }
  9044. #u41250_div {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:0px;
  9048. top:0px;
  9049. width:400px;
  9050. height:40px;
  9051. background:inherit;
  9052. background-color:rgba(242, 242, 242, 1);
  9053. box-sizing:border-box;
  9054. border-width:1px;
  9055. border-style:solid;
  9056. border-color:rgba(170, 170, 170, 1);
  9057. border-radius:4px;
  9058. -moz-box-shadow:none;
  9059. -webkit-box-shadow:none;
  9060. box-shadow:none;
  9061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9062. font-weight:400;
  9063. font-style:normal;
  9064. color:#AAAAAA;
  9065. text-align:left;
  9066. }
  9067. #u41250 {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:1805px;
  9071. top:301px;
  9072. width:400px;
  9073. height:40px;
  9074. display:flex;
  9075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9076. font-weight:400;
  9077. font-style:normal;
  9078. color:#AAAAAA;
  9079. text-align:left;
  9080. }
  9081. #u41250 .text {
  9082. position:absolute;
  9083. align-self:center;
  9084. padding:2px 2px 2px 10px;
  9085. box-sizing:border-box;
  9086. width:100%;
  9087. }
  9088. #u41250_text {
  9089. border-width:0px;
  9090. word-wrap:break-word;
  9091. text-transform:none;
  9092. }
  9093. #u41251_div {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:68px;
  9099. height:40px;
  9100. background:inherit;
  9101. background-color:rgba(24, 144, 255, 1);
  9102. border:none;
  9103. border-radius:4px;
  9104. -moz-box-shadow:none;
  9105. -webkit-box-shadow:none;
  9106. box-shadow:none;
  9107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9108. font-weight:400;
  9109. font-style:normal;
  9110. color:#FFFFFF;
  9111. }
  9112. #u41251 {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:2137px;
  9116. top:301px;
  9117. width:68px;
  9118. height:40px;
  9119. display:flex;
  9120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9121. font-weight:400;
  9122. font-style:normal;
  9123. color:#FFFFFF;
  9124. }
  9125. #u41251 .text {
  9126. position:absolute;
  9127. align-self:center;
  9128. padding:2px 2px 2px 2px;
  9129. box-sizing:border-box;
  9130. width:100%;
  9131. }
  9132. #u41251_text {
  9133. border-width:0px;
  9134. word-wrap:break-word;
  9135. text-transform:none;
  9136. }
  9137. #u41252_div {
  9138. border-width:0px;
  9139. position:absolute;
  9140. left:0px;
  9141. top:0px;
  9142. width:71px;
  9143. height:30px;
  9144. background:inherit;
  9145. background-color:rgba(255, 255, 255, 0);
  9146. border:none;
  9147. border-top:0px;
  9148. border-right:0px;
  9149. border-bottom:0px;
  9150. border-radius:0px;
  9151. border-top-left-radius:0px;
  9152. border-bottom-left-radius:0px;
  9153. -moz-box-shadow:none;
  9154. -webkit-box-shadow:none;
  9155. box-shadow:none;
  9156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9157. font-weight:400;
  9158. font-style:normal;
  9159. font-size:14px;
  9160. text-align:right;
  9161. }
  9162. #u41252 {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:1724px;
  9166. top:456px;
  9167. width:71px;
  9168. height:30px;
  9169. display:flex;
  9170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9171. font-weight:400;
  9172. font-style:normal;
  9173. font-size:14px;
  9174. text-align:right;
  9175. }
  9176. #u41252 .text {
  9177. position:absolute;
  9178. align-self:center;
  9179. padding:5px 0px 5px 0px;
  9180. box-sizing:border-box;
  9181. width:100%;
  9182. }
  9183. #u41252_text {
  9184. border-width:0px;
  9185. white-space:nowrap;
  9186. text-transform:none;
  9187. }
  9188. #u41253 {
  9189. border-width:0px;
  9190. position:absolute;
  9191. left:0px;
  9192. top:0px;
  9193. width:0px;
  9194. height:0px;
  9195. }
  9196. #u41254_div {
  9197. border-width:0px;
  9198. position:absolute;
  9199. left:0px;
  9200. top:0px;
  9201. width:400px;
  9202. height:40px;
  9203. background:inherit;
  9204. background-color:rgba(255, 255, 255, 1);
  9205. box-sizing:border-box;
  9206. border-width:1px;
  9207. border-style:solid;
  9208. border-color:rgba(170, 170, 170, 1);
  9209. border-radius:4px;
  9210. -moz-box-shadow:none;
  9211. -webkit-box-shadow:none;
  9212. box-shadow:none;
  9213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9214. font-weight:400;
  9215. font-style:normal;
  9216. text-align:left;
  9217. }
  9218. #u41254 {
  9219. border-width:0px;
  9220. position:absolute;
  9221. left:1805px;
  9222. top:451px;
  9223. width:400px;
  9224. height:40px;
  9225. display:flex;
  9226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9227. font-weight:400;
  9228. font-style:normal;
  9229. text-align:left;
  9230. }
  9231. #u41254 .text {
  9232. position:absolute;
  9233. align-self:center;
  9234. padding:2px 2px 2px 10px;
  9235. box-sizing:border-box;
  9236. width:100%;
  9237. }
  9238. #u41254_text {
  9239. border-width:0px;
  9240. word-wrap:break-word;
  9241. text-transform:none;
  9242. visibility:hidden;
  9243. }
  9244. #u41255_input {
  9245. position:absolute;
  9246. left:0px;
  9247. top:0px;
  9248. width:380px;
  9249. height:31px;
  9250. padding:2px 2px 2px 2px;
  9251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9252. font-weight:400;
  9253. font-style:normal;
  9254. font-size:13px;
  9255. letter-spacing:normal;
  9256. color:#AAAAAA;
  9257. vertical-align:none;
  9258. text-align:left;
  9259. text-transform:none;
  9260. background-color:transparent;
  9261. border-color:transparent;
  9262. }
  9263. #u41255_input.disabled {
  9264. position:absolute;
  9265. left:0px;
  9266. top:0px;
  9267. width:380px;
  9268. height:31px;
  9269. padding:2px 2px 2px 2px;
  9270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9271. font-weight:400;
  9272. font-style:normal;
  9273. font-size:13px;
  9274. letter-spacing:normal;
  9275. color:#AAAAAA;
  9276. vertical-align:none;
  9277. text-align:left;
  9278. text-transform:none;
  9279. background-color:transparent;
  9280. border-color:transparent;
  9281. }
  9282. #u41255_div {
  9283. border-width:0px;
  9284. position:absolute;
  9285. left:0px;
  9286. top:0px;
  9287. width:380px;
  9288. height:31px;
  9289. background:inherit;
  9290. background-color:rgba(255, 255, 255, 0);
  9291. border:none;
  9292. border-radius:0px;
  9293. -moz-box-shadow:none;
  9294. -webkit-box-shadow:none;
  9295. box-shadow:none;
  9296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9297. font-weight:400;
  9298. font-style:normal;
  9299. color:#AAAAAA;
  9300. }
  9301. #u41255 {
  9302. border-width:0px;
  9303. position:absolute;
  9304. left:1815px;
  9305. top:456px;
  9306. width:380px;
  9307. height:31px;
  9308. display:flex;
  9309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9310. font-weight:400;
  9311. font-style:normal;
  9312. color:#AAAAAA;
  9313. }
  9314. #u41255 .text {
  9315. position:absolute;
  9316. align-self:center;
  9317. padding:2px 2px 2px 2px;
  9318. box-sizing:border-box;
  9319. width:100%;
  9320. }
  9321. #u41255_div.disabled {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:0px;
  9325. top:0px;
  9326. width:380px;
  9327. height:31px;
  9328. background:inherit;
  9329. background-color:rgba(240, 240, 240, 1);
  9330. border:none;
  9331. border-radius:0px;
  9332. -moz-box-shadow:none;
  9333. -webkit-box-shadow:none;
  9334. box-shadow:none;
  9335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9336. font-weight:400;
  9337. font-style:normal;
  9338. color:#AAAAAA;
  9339. }
  9340. #u41255.disabled {
  9341. }
  9342. #u41256_div {
  9343. border-width:0px;
  9344. position:absolute;
  9345. left:0px;
  9346. top:0px;
  9347. width:43px;
  9348. height:30px;
  9349. background:inherit;
  9350. background-color:rgba(255, 255, 255, 0);
  9351. border:none;
  9352. border-top:0px;
  9353. border-right:0px;
  9354. border-bottom:0px;
  9355. border-radius:0px;
  9356. border-top-left-radius:0px;
  9357. border-bottom-left-radius:0px;
  9358. -moz-box-shadow:none;
  9359. -webkit-box-shadow:none;
  9360. box-shadow:none;
  9361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9362. font-weight:400;
  9363. font-style:normal;
  9364. font-size:14px;
  9365. text-align:right;
  9366. }
  9367. #u41256 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:1752px;
  9371. top:356px;
  9372. width:43px;
  9373. height:30px;
  9374. display:flex;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:14px;
  9379. text-align:right;
  9380. }
  9381. #u41256 .text {
  9382. position:absolute;
  9383. align-self:center;
  9384. padding:5px 0px 5px 0px;
  9385. box-sizing:border-box;
  9386. width:100%;
  9387. }
  9388. #u41256_text {
  9389. border-width:0px;
  9390. white-space:nowrap;
  9391. text-transform:none;
  9392. }
  9393. #u41257 {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:0px;
  9399. height:0px;
  9400. }
  9401. #u41258_div {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:0px;
  9405. top:0px;
  9406. width:400px;
  9407. height:40px;
  9408. background:inherit;
  9409. background-color:rgba(255, 255, 255, 1);
  9410. box-sizing:border-box;
  9411. border-width:1px;
  9412. border-style:solid;
  9413. border-color:rgba(170, 170, 170, 1);
  9414. border-radius:4px;
  9415. -moz-box-shadow:none;
  9416. -webkit-box-shadow:none;
  9417. box-shadow:none;
  9418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9419. font-weight:400;
  9420. font-style:normal;
  9421. text-align:left;
  9422. }
  9423. #u41258 {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:1805px;
  9427. top:351px;
  9428. width:400px;
  9429. height:40px;
  9430. display:flex;
  9431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9432. font-weight:400;
  9433. font-style:normal;
  9434. text-align:left;
  9435. }
  9436. #u41258 .text {
  9437. position:absolute;
  9438. align-self:center;
  9439. padding:2px 2px 2px 10px;
  9440. box-sizing:border-box;
  9441. width:100%;
  9442. }
  9443. #u41258_text {
  9444. border-width:0px;
  9445. word-wrap:break-word;
  9446. text-transform:none;
  9447. visibility:hidden;
  9448. }
  9449. #u41259_input {
  9450. position:absolute;
  9451. left:0px;
  9452. top:0px;
  9453. width:380px;
  9454. height:31px;
  9455. padding:2px 2px 2px 2px;
  9456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9457. font-weight:400;
  9458. font-style:normal;
  9459. font-size:13px;
  9460. letter-spacing:normal;
  9461. color:#AAAAAA;
  9462. vertical-align:none;
  9463. text-align:left;
  9464. text-transform:none;
  9465. background-color:transparent;
  9466. border-color:transparent;
  9467. }
  9468. #u41259_input.disabled {
  9469. position:absolute;
  9470. left:0px;
  9471. top:0px;
  9472. width:380px;
  9473. height:31px;
  9474. padding:2px 2px 2px 2px;
  9475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9476. font-weight:400;
  9477. font-style:normal;
  9478. font-size:13px;
  9479. letter-spacing:normal;
  9480. color:#AAAAAA;
  9481. vertical-align:none;
  9482. text-align:left;
  9483. text-transform:none;
  9484. background-color:transparent;
  9485. border-color:transparent;
  9486. }
  9487. #u41259_div {
  9488. border-width:0px;
  9489. position:absolute;
  9490. left:0px;
  9491. top:0px;
  9492. width:380px;
  9493. height:31px;
  9494. background:inherit;
  9495. background-color:rgba(255, 255, 255, 0);
  9496. border:none;
  9497. border-radius:0px;
  9498. -moz-box-shadow:none;
  9499. -webkit-box-shadow:none;
  9500. box-shadow:none;
  9501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9502. font-weight:400;
  9503. font-style:normal;
  9504. color:#AAAAAA;
  9505. }
  9506. #u41259 {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:1815px;
  9510. top:356px;
  9511. width:380px;
  9512. height:31px;
  9513. display:flex;
  9514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9515. font-weight:400;
  9516. font-style:normal;
  9517. color:#AAAAAA;
  9518. }
  9519. #u41259 .text {
  9520. position:absolute;
  9521. align-self:center;
  9522. padding:2px 2px 2px 2px;
  9523. box-sizing:border-box;
  9524. width:100%;
  9525. }
  9526. #u41259_div.disabled {
  9527. border-width:0px;
  9528. position:absolute;
  9529. left:0px;
  9530. top:0px;
  9531. width:380px;
  9532. height:31px;
  9533. background:inherit;
  9534. background-color:rgba(240, 240, 240, 1);
  9535. border:none;
  9536. border-radius:0px;
  9537. -moz-box-shadow:none;
  9538. -webkit-box-shadow:none;
  9539. box-shadow:none;
  9540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9541. font-weight:400;
  9542. font-style:normal;
  9543. color:#AAAAAA;
  9544. }
  9545. #u41259.disabled {
  9546. }
  9547. #u41260_div {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:0px;
  9551. top:0px;
  9552. width:43px;
  9553. height:30px;
  9554. background:inherit;
  9555. background-color:rgba(255, 255, 255, 0);
  9556. border:none;
  9557. border-top:0px;
  9558. border-right:0px;
  9559. border-bottom:0px;
  9560. border-radius:0px;
  9561. border-top-left-radius:0px;
  9562. border-bottom-left-radius:0px;
  9563. -moz-box-shadow:none;
  9564. -webkit-box-shadow:none;
  9565. box-shadow:none;
  9566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9567. font-weight:400;
  9568. font-style:normal;
  9569. font-size:14px;
  9570. text-align:right;
  9571. }
  9572. #u41260 {
  9573. border-width:0px;
  9574. position:absolute;
  9575. left:1752px;
  9576. top:406px;
  9577. width:43px;
  9578. height:30px;
  9579. display:flex;
  9580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9581. font-weight:400;
  9582. font-style:normal;
  9583. font-size:14px;
  9584. text-align:right;
  9585. }
  9586. #u41260 .text {
  9587. position:absolute;
  9588. align-self:center;
  9589. padding:5px 0px 5px 0px;
  9590. box-sizing:border-box;
  9591. width:100%;
  9592. }
  9593. #u41260_text {
  9594. border-width:0px;
  9595. white-space:nowrap;
  9596. text-transform:none;
  9597. }
  9598. #u41261 {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:0px;
  9602. top:0px;
  9603. width:0px;
  9604. height:0px;
  9605. }
  9606. #u41262_div {
  9607. border-width:0px;
  9608. position:absolute;
  9609. left:0px;
  9610. top:0px;
  9611. width:400px;
  9612. height:40px;
  9613. background:inherit;
  9614. background-color:rgba(255, 255, 255, 1);
  9615. box-sizing:border-box;
  9616. border-width:1px;
  9617. border-style:solid;
  9618. border-color:rgba(170, 170, 170, 1);
  9619. border-radius:4px;
  9620. -moz-box-shadow:none;
  9621. -webkit-box-shadow:none;
  9622. box-shadow:none;
  9623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9624. font-weight:400;
  9625. font-style:normal;
  9626. text-align:left;
  9627. }
  9628. #u41262 {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:1805px;
  9632. top:401px;
  9633. width:400px;
  9634. height:40px;
  9635. display:flex;
  9636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9637. font-weight:400;
  9638. font-style:normal;
  9639. text-align:left;
  9640. }
  9641. #u41262 .text {
  9642. position:absolute;
  9643. align-self:center;
  9644. padding:2px 2px 2px 10px;
  9645. box-sizing:border-box;
  9646. width:100%;
  9647. }
  9648. #u41262_text {
  9649. border-width:0px;
  9650. word-wrap:break-word;
  9651. text-transform:none;
  9652. visibility:hidden;
  9653. }
  9654. #u41263_input {
  9655. position:absolute;
  9656. left:0px;
  9657. top:0px;
  9658. width:380px;
  9659. height:31px;
  9660. padding:2px 2px 2px 2px;
  9661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9662. font-weight:400;
  9663. font-style:normal;
  9664. font-size:13px;
  9665. letter-spacing:normal;
  9666. color:#AAAAAA;
  9667. vertical-align:none;
  9668. text-align:left;
  9669. text-transform:none;
  9670. background-color:transparent;
  9671. border-color:transparent;
  9672. }
  9673. #u41263_input.disabled {
  9674. position:absolute;
  9675. left:0px;
  9676. top:0px;
  9677. width:380px;
  9678. height:31px;
  9679. padding:2px 2px 2px 2px;
  9680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9681. font-weight:400;
  9682. font-style:normal;
  9683. font-size:13px;
  9684. letter-spacing:normal;
  9685. color:#AAAAAA;
  9686. vertical-align:none;
  9687. text-align:left;
  9688. text-transform:none;
  9689. background-color:transparent;
  9690. border-color:transparent;
  9691. }
  9692. #u41263_div {
  9693. border-width:0px;
  9694. position:absolute;
  9695. left:0px;
  9696. top:0px;
  9697. width:380px;
  9698. height:31px;
  9699. background:inherit;
  9700. background-color:rgba(255, 255, 255, 0);
  9701. border:none;
  9702. border-radius:0px;
  9703. -moz-box-shadow:none;
  9704. -webkit-box-shadow:none;
  9705. box-shadow:none;
  9706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9707. font-weight:400;
  9708. font-style:normal;
  9709. color:#AAAAAA;
  9710. }
  9711. #u41263 {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:1815px;
  9715. top:406px;
  9716. width:380px;
  9717. height:31px;
  9718. display:flex;
  9719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9720. font-weight:400;
  9721. font-style:normal;
  9722. color:#AAAAAA;
  9723. }
  9724. #u41263 .text {
  9725. position:absolute;
  9726. align-self:center;
  9727. padding:2px 2px 2px 2px;
  9728. box-sizing:border-box;
  9729. width:100%;
  9730. }
  9731. #u41263_div.disabled {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:0px;
  9735. top:0px;
  9736. width:380px;
  9737. height:31px;
  9738. background:inherit;
  9739. background-color:rgba(240, 240, 240, 1);
  9740. border:none;
  9741. border-radius:0px;
  9742. -moz-box-shadow:none;
  9743. -webkit-box-shadow:none;
  9744. box-shadow:none;
  9745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9746. font-weight:400;
  9747. font-style:normal;
  9748. color:#AAAAAA;
  9749. }
  9750. #u41263.disabled {
  9751. }
  9752. #u41264_div {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:0px;
  9756. top:0px;
  9757. width:71px;
  9758. height:30px;
  9759. background:inherit;
  9760. background-color:rgba(255, 255, 255, 0);
  9761. border:none;
  9762. border-top:0px;
  9763. border-right:0px;
  9764. border-bottom:0px;
  9765. border-radius:0px;
  9766. border-top-left-radius:0px;
  9767. border-bottom-left-radius:0px;
  9768. -moz-box-shadow:none;
  9769. -webkit-box-shadow:none;
  9770. box-shadow:none;
  9771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9772. font-weight:400;
  9773. font-style:normal;
  9774. font-size:14px;
  9775. text-align:right;
  9776. }
  9777. #u41264 {
  9778. border-width:0px;
  9779. position:absolute;
  9780. left:1724px;
  9781. top:506px;
  9782. width:71px;
  9783. height:30px;
  9784. display:flex;
  9785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9786. font-weight:400;
  9787. font-style:normal;
  9788. font-size:14px;
  9789. text-align:right;
  9790. }
  9791. #u41264 .text {
  9792. position:absolute;
  9793. align-self:center;
  9794. padding:5px 0px 5px 0px;
  9795. box-sizing:border-box;
  9796. width:100%;
  9797. }
  9798. #u41264_text {
  9799. border-width:0px;
  9800. white-space:nowrap;
  9801. text-transform:none;
  9802. }
  9803. #u41265 {
  9804. border-width:0px;
  9805. position:absolute;
  9806. left:0px;
  9807. top:0px;
  9808. width:0px;
  9809. height:0px;
  9810. }
  9811. #u41266_div {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:0px;
  9815. top:0px;
  9816. width:400px;
  9817. height:40px;
  9818. background:inherit;
  9819. background-color:rgba(255, 255, 255, 1);
  9820. box-sizing:border-box;
  9821. border-width:1px;
  9822. border-style:solid;
  9823. border-color:rgba(170, 170, 170, 1);
  9824. border-radius:4px;
  9825. -moz-box-shadow:none;
  9826. -webkit-box-shadow:none;
  9827. box-shadow:none;
  9828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9829. font-weight:400;
  9830. font-style:normal;
  9831. text-align:left;
  9832. }
  9833. #u41266 {
  9834. border-width:0px;
  9835. position:absolute;
  9836. left:1805px;
  9837. top:501px;
  9838. width:400px;
  9839. height:40px;
  9840. display:flex;
  9841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9842. font-weight:400;
  9843. font-style:normal;
  9844. text-align:left;
  9845. }
  9846. #u41266 .text {
  9847. position:absolute;
  9848. align-self:center;
  9849. padding:2px 2px 2px 10px;
  9850. box-sizing:border-box;
  9851. width:100%;
  9852. }
  9853. #u41266_text {
  9854. border-width:0px;
  9855. word-wrap:break-word;
  9856. text-transform:none;
  9857. visibility:hidden;
  9858. }
  9859. #u41267_input {
  9860. position:absolute;
  9861. left:0px;
  9862. top:0px;
  9863. width:388px;
  9864. height:31px;
  9865. padding:2px 2px 2px 2px;
  9866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9867. font-weight:400;
  9868. font-style:normal;
  9869. font-size:11px;
  9870. letter-spacing:normal;
  9871. color:#AAAAAA;
  9872. vertical-align:none;
  9873. text-align:left;
  9874. text-transform:none;
  9875. background-color:transparent;
  9876. border-color:transparent;
  9877. }
  9878. #u41267_input.disabled {
  9879. position:absolute;
  9880. left:0px;
  9881. top:0px;
  9882. width:388px;
  9883. height:31px;
  9884. padding:2px 2px 2px 2px;
  9885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9886. font-weight:400;
  9887. font-style:normal;
  9888. font-size:11px;
  9889. letter-spacing:normal;
  9890. color:#AAAAAA;
  9891. vertical-align:none;
  9892. text-align:left;
  9893. text-transform:none;
  9894. background-color:transparent;
  9895. border-color:transparent;
  9896. }
  9897. #u41267_div {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:0px;
  9901. top:0px;
  9902. width:388px;
  9903. height:31px;
  9904. background:inherit;
  9905. background-color:rgba(255, 255, 255, 0);
  9906. border:none;
  9907. border-radius:0px;
  9908. -moz-box-shadow:none;
  9909. -webkit-box-shadow:none;
  9910. box-shadow:none;
  9911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9912. font-weight:400;
  9913. font-style:normal;
  9914. font-size:11px;
  9915. color:#AAAAAA;
  9916. }
  9917. #u41267 {
  9918. border-width:0px;
  9919. position:absolute;
  9920. left:1811px;
  9921. top:506px;
  9922. width:388px;
  9923. height:31px;
  9924. display:flex;
  9925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9926. font-weight:400;
  9927. font-style:normal;
  9928. font-size:11px;
  9929. color:#AAAAAA;
  9930. }
  9931. #u41267 .text {
  9932. position:absolute;
  9933. align-self:center;
  9934. padding:2px 2px 2px 2px;
  9935. box-sizing:border-box;
  9936. width:100%;
  9937. }
  9938. #u41267_div.disabled {
  9939. border-width:0px;
  9940. position:absolute;
  9941. left:0px;
  9942. top:0px;
  9943. width:388px;
  9944. height:31px;
  9945. background:inherit;
  9946. background-color:rgba(240, 240, 240, 1);
  9947. border:none;
  9948. border-radius:0px;
  9949. -moz-box-shadow:none;
  9950. -webkit-box-shadow:none;
  9951. box-shadow:none;
  9952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9953. font-weight:400;
  9954. font-style:normal;
  9955. font-size:11px;
  9956. color:#AAAAAA;
  9957. }
  9958. #u41267.disabled {
  9959. }
  9960. #u41268_div {
  9961. border-width:0px;
  9962. position:absolute;
  9963. left:0px;
  9964. top:0px;
  9965. width:50px;
  9966. height:30px;
  9967. background:inherit;
  9968. background-color:rgba(255, 255, 255, 0);
  9969. border:none;
  9970. border-top:0px;
  9971. border-right:0px;
  9972. border-bottom:0px;
  9973. border-radius:0px;
  9974. border-top-left-radius:0px;
  9975. border-bottom-left-radius:0px;
  9976. -moz-box-shadow:none;
  9977. -webkit-box-shadow:none;
  9978. box-shadow:none;
  9979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9980. font-weight:400;
  9981. font-style:normal;
  9982. font-size:14px;
  9983. text-align:right;
  9984. }
  9985. #u41268 {
  9986. border-width:0px;
  9987. position:absolute;
  9988. left:1745px;
  9989. top:156px;
  9990. width:50px;
  9991. height:30px;
  9992. display:flex;
  9993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9994. font-weight:400;
  9995. font-style:normal;
  9996. font-size:14px;
  9997. text-align:right;
  9998. }
  9999. #u41268 .text {
  10000. position:absolute;
  10001. align-self:center;
  10002. padding:5px 0px 5px 0px;
  10003. box-sizing:border-box;
  10004. width:100%;
  10005. }
  10006. #u41268_text {
  10007. border-width:0px;
  10008. white-space:nowrap;
  10009. text-transform:none;
  10010. }
  10011. #u41269 {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:0px;
  10015. top:0px;
  10016. width:0px;
  10017. height:0px;
  10018. }
  10019. #u41270_div {
  10020. border-width:0px;
  10021. position:absolute;
  10022. left:0px;
  10023. top:0px;
  10024. width:400px;
  10025. height:40px;
  10026. background:inherit;
  10027. background-color:rgba(255, 255, 255, 1);
  10028. box-sizing:border-box;
  10029. border-width:1px;
  10030. border-style:solid;
  10031. border-color:rgba(170, 170, 170, 1);
  10032. border-radius:4px;
  10033. -moz-box-shadow:none;
  10034. -webkit-box-shadow:none;
  10035. box-shadow:none;
  10036. }
  10037. #u41270 {
  10038. border-width:0px;
  10039. position:absolute;
  10040. left:1805px;
  10041. top:151px;
  10042. width:400px;
  10043. height:40px;
  10044. display:flex;
  10045. }
  10046. #u41270 .text {
  10047. position:absolute;
  10048. align-self:center;
  10049. padding:2px 2px 2px 0px;
  10050. box-sizing:border-box;
  10051. width:100%;
  10052. }
  10053. #u41270_text {
  10054. border-width:0px;
  10055. word-wrap:break-word;
  10056. text-transform:none;
  10057. visibility:hidden;
  10058. }
  10059. #u41271_input {
  10060. position:absolute;
  10061. left:0px;
  10062. top:0px;
  10063. width:380px;
  10064. height:30px;
  10065. padding:2px 2px 2px 0px;
  10066. font-family:'ArialMT', 'Arial', sans-serif;
  10067. font-weight:400;
  10068. font-style:normal;
  10069. font-size:13px;
  10070. letter-spacing:normal;
  10071. color:#AAAAAA;
  10072. vertical-align:none;
  10073. text-align:left;
  10074. text-transform:none;
  10075. background-color:transparent;
  10076. border-color:transparent;
  10077. }
  10078. #u41271_input.disabled {
  10079. position:absolute;
  10080. left:0px;
  10081. top:0px;
  10082. width:380px;
  10083. height:30px;
  10084. padding:2px 2px 2px 0px;
  10085. font-family:'ArialMT', 'Arial', sans-serif;
  10086. font-weight:400;
  10087. font-style:normal;
  10088. font-size:13px;
  10089. letter-spacing:normal;
  10090. color:#AAAAAA;
  10091. vertical-align:none;
  10092. text-align:left;
  10093. text-transform:none;
  10094. background-color:transparent;
  10095. border-color:transparent;
  10096. }
  10097. #u41271_div {
  10098. border-width:0px;
  10099. position:absolute;
  10100. left:0px;
  10101. top:0px;
  10102. width:380px;
  10103. height:30px;
  10104. background:inherit;
  10105. background-color:rgba(255, 255, 255, 1);
  10106. border:none;
  10107. border-radius:0px;
  10108. -moz-box-shadow:none;
  10109. -webkit-box-shadow:none;
  10110. box-shadow:none;
  10111. color:#AAAAAA;
  10112. }
  10113. #u41271 {
  10114. border-width:0px;
  10115. position:absolute;
  10116. left:1815px;
  10117. top:155px;
  10118. width:380px;
  10119. height:30px;
  10120. display:flex;
  10121. color:#AAAAAA;
  10122. }
  10123. #u41271 .text {
  10124. position:absolute;
  10125. align-self:flex-start;
  10126. padding:2px 2px 2px 0px;
  10127. box-sizing:border-box;
  10128. width:100%;
  10129. }
  10130. #u41271_div.disabled {
  10131. border-width:0px;
  10132. position:absolute;
  10133. left:0px;
  10134. top:0px;
  10135. width:380px;
  10136. height:30px;
  10137. background:inherit;
  10138. background-color:rgba(240, 240, 240, 1);
  10139. border:none;
  10140. border-radius:0px;
  10141. -moz-box-shadow:none;
  10142. -webkit-box-shadow:none;
  10143. box-shadow:none;
  10144. color:#AAAAAA;
  10145. }
  10146. #u41271.disabled {
  10147. }
  10148. .u41271_input_option {
  10149. }
  10150. #u41272_div {
  10151. border-width:0px;
  10152. position:absolute;
  10153. left:0px;
  10154. top:0px;
  10155. width:80px;
  10156. height:80px;
  10157. background:inherit;
  10158. background-color:rgba(255, 255, 255, 1);
  10159. box-sizing:border-box;
  10160. border-width:1px;
  10161. border-style:solid;
  10162. border-color:rgba(170, 170, 170, 1);
  10163. border-radius:4px;
  10164. -moz-box-shadow:none;
  10165. -webkit-box-shadow:none;
  10166. box-shadow:none;
  10167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10168. font-weight:400;
  10169. font-style:normal;
  10170. }
  10171. #u41272 {
  10172. border-width:0px;
  10173. position:absolute;
  10174. left:1805px;
  10175. top:551px;
  10176. width:80px;
  10177. height:80px;
  10178. display:flex;
  10179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10180. font-weight:400;
  10181. font-style:normal;
  10182. }
  10183. #u41272 .text {
  10184. position:absolute;
  10185. align-self:center;
  10186. padding:2px 2px 2px 2px;
  10187. box-sizing:border-box;
  10188. width:100%;
  10189. }
  10190. #u41272_text {
  10191. border-width:0px;
  10192. word-wrap:break-word;
  10193. text-transform:none;
  10194. }
  10195. #u41273_div {
  10196. border-width:0px;
  10197. position:absolute;
  10198. left:0px;
  10199. top:0px;
  10200. width:71px;
  10201. height:30px;
  10202. background:inherit;
  10203. background-color:rgba(255, 255, 255, 0);
  10204. border:none;
  10205. border-top:0px;
  10206. border-right:0px;
  10207. border-bottom:0px;
  10208. border-radius:0px;
  10209. border-top-left-radius:0px;
  10210. border-bottom-left-radius:0px;
  10211. -moz-box-shadow:none;
  10212. -webkit-box-shadow:none;
  10213. box-shadow:none;
  10214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10215. font-weight:400;
  10216. font-style:normal;
  10217. font-size:14px;
  10218. text-align:right;
  10219. }
  10220. #u41273 {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:1724px;
  10224. top:556px;
  10225. width:71px;
  10226. height:30px;
  10227. display:flex;
  10228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10229. font-weight:400;
  10230. font-style:normal;
  10231. font-size:14px;
  10232. text-align:right;
  10233. }
  10234. #u41273 .text {
  10235. position:absolute;
  10236. align-self:center;
  10237. padding:5px 0px 5px 0px;
  10238. box-sizing:border-box;
  10239. width:100%;
  10240. }
  10241. #u41273_text {
  10242. border-width:0px;
  10243. white-space:nowrap;
  10244. text-transform:none;
  10245. }
  10246. #u41274 {
  10247. border-width:0px;
  10248. position:absolute;
  10249. left:0px;
  10250. top:0px;
  10251. width:0px;
  10252. height:0px;
  10253. }
  10254. #u41275_div {
  10255. border-width:0px;
  10256. position:absolute;
  10257. left:0px;
  10258. top:0px;
  10259. width:200px;
  10260. height:1180px;
  10261. background:inherit;
  10262. background-color:rgba(255, 255, 255, 1);
  10263. border:none;
  10264. border-radius:0px;
  10265. -moz-box-shadow:none;
  10266. -webkit-box-shadow:none;
  10267. box-shadow:none;
  10268. }
  10269. #u41275 {
  10270. border-width:0px;
  10271. position:absolute;
  10272. left:120px;
  10273. top:50px;
  10274. width:200px;
  10275. height:1180px;
  10276. display:flex;
  10277. }
  10278. #u41275 .text {
  10279. position:absolute;
  10280. align-self:center;
  10281. padding:2px 2px 2px 2px;
  10282. box-sizing:border-box;
  10283. width:100%;
  10284. }
  10285. #u41275_text {
  10286. border-width:0px;
  10287. word-wrap:break-word;
  10288. text-transform:none;
  10289. visibility:hidden;
  10290. }
  10291. #u41276_div {
  10292. border-width:0px;
  10293. position:absolute;
  10294. left:0px;
  10295. top:0px;
  10296. width:200px;
  10297. height:60px;
  10298. background:inherit;
  10299. background-color:rgba(224, 231, 247, 1);
  10300. border:none;
  10301. border-radius:0px;
  10302. -moz-box-shadow:none;
  10303. -webkit-box-shadow:none;
  10304. box-shadow:none;
  10305. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10306. font-weight:500;
  10307. font-style:normal;
  10308. font-size:18px;
  10309. }
  10310. #u41276 {
  10311. border-width:0px;
  10312. position:absolute;
  10313. left:120px;
  10314. top:50px;
  10315. width:200px;
  10316. height:60px;
  10317. display:flex;
  10318. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10319. font-weight:500;
  10320. font-style:normal;
  10321. font-size:18px;
  10322. }
  10323. #u41276 .text {
  10324. position:absolute;
  10325. align-self:center;
  10326. padding:0px 0px 0px 20px;
  10327. box-sizing:border-box;
  10328. width:100%;
  10329. }
  10330. #u41276_text {
  10331. border-width:0px;
  10332. word-wrap:break-word;
  10333. text-transform:none;
  10334. }
  10335. #u41277_div {
  10336. border-width:0px;
  10337. position:absolute;
  10338. left:0px;
  10339. top:0px;
  10340. width:65px;
  10341. height:22px;
  10342. background:inherit;
  10343. background-color:rgba(255, 255, 255, 0);
  10344. border:none;
  10345. border-radius:0px;
  10346. -moz-box-shadow:none;
  10347. -webkit-box-shadow:none;
  10348. box-shadow:none;
  10349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10350. font-weight:400;
  10351. font-style:normal;
  10352. font-size:16px;
  10353. }
  10354. #u41277 {
  10355. border-width:0px;
  10356. position:absolute;
  10357. left:147px;
  10358. top:167px;
  10359. width:65px;
  10360. height:22px;
  10361. display:flex;
  10362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10363. font-weight:400;
  10364. font-style:normal;
  10365. font-size:16px;
  10366. }
  10367. #u41277 .text {
  10368. position:absolute;
  10369. align-self:flex-start;
  10370. padding:0px 0px 0px 0px;
  10371. box-sizing:border-box;
  10372. width:100%;
  10373. }
  10374. #u41277_text {
  10375. border-width:0px;
  10376. white-space:nowrap;
  10377. text-transform:none;
  10378. }
  10379. #u41278_div {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:0px;
  10383. top:0px;
  10384. width:65px;
  10385. height:22px;
  10386. background:inherit;
  10387. background-color:rgba(255, 255, 255, 0);
  10388. border:none;
  10389. border-radius:0px;
  10390. -moz-box-shadow:none;
  10391. -webkit-box-shadow:none;
  10392. box-shadow:none;
  10393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10394. font-weight:400;
  10395. font-style:normal;
  10396. font-size:16px;
  10397. }
  10398. #u41278 {
  10399. border-width:0px;
  10400. position:absolute;
  10401. left:147px;
  10402. top:251px;
  10403. width:65px;
  10404. height:22px;
  10405. display:flex;
  10406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10407. font-weight:400;
  10408. font-style:normal;
  10409. font-size:16px;
  10410. }
  10411. #u41278 .text {
  10412. position:absolute;
  10413. align-self:flex-start;
  10414. padding:0px 0px 0px 0px;
  10415. box-sizing:border-box;
  10416. width:100%;
  10417. }
  10418. #u41278_text {
  10419. border-width:0px;
  10420. white-space:nowrap;
  10421. text-transform:none;
  10422. }
  10423. #u41279_div {
  10424. border-width:0px;
  10425. position:absolute;
  10426. left:0px;
  10427. top:0px;
  10428. width:49px;
  10429. height:17px;
  10430. background:inherit;
  10431. background-color:rgba(255, 255, 255, 0);
  10432. border:none;
  10433. border-radius:0px;
  10434. -moz-box-shadow:none;
  10435. -webkit-box-shadow:none;
  10436. box-shadow:none;
  10437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10438. font-weight:400;
  10439. font-style:normal;
  10440. font-size:12px;
  10441. color:#AAAAAA;
  10442. }
  10443. #u41279 {
  10444. border-width:0px;
  10445. position:absolute;
  10446. left:147px;
  10447. top:130px;
  10448. width:49px;
  10449. height:17px;
  10450. display:flex;
  10451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10452. font-weight:400;
  10453. font-style:normal;
  10454. font-size:12px;
  10455. color:#AAAAAA;
  10456. }
  10457. #u41279 .text {
  10458. position:absolute;
  10459. align-self:flex-start;
  10460. padding:0px 0px 0px 0px;
  10461. box-sizing:border-box;
  10462. width:100%;
  10463. }
  10464. #u41279_text {
  10465. border-width:0px;
  10466. white-space:nowrap;
  10467. text-transform:none;
  10468. }
  10469. #u41280_div {
  10470. border-width:0px;
  10471. position:absolute;
  10472. left:0px;
  10473. top:0px;
  10474. width:65px;
  10475. height:22px;
  10476. background:inherit;
  10477. background-color:rgba(255, 255, 255, 0);
  10478. border:none;
  10479. border-radius:0px;
  10480. -moz-box-shadow:none;
  10481. -webkit-box-shadow:none;
  10482. box-shadow:none;
  10483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10484. font-weight:400;
  10485. font-style:normal;
  10486. font-size:16px;
  10487. }
  10488. #u41280 {
  10489. border-width:0px;
  10490. position:absolute;
  10491. left:147px;
  10492. top:354px;
  10493. width:65px;
  10494. height:22px;
  10495. display:flex;
  10496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10497. font-weight:400;
  10498. font-style:normal;
  10499. font-size:16px;
  10500. }
  10501. #u41280 .text {
  10502. position:absolute;
  10503. align-self:flex-start;
  10504. padding:0px 0px 0px 0px;
  10505. box-sizing:border-box;
  10506. width:100%;
  10507. }
  10508. #u41280_text {
  10509. border-width:0px;
  10510. white-space:nowrap;
  10511. text-transform:none;
  10512. }
  10513. #u41281_div {
  10514. border-width:0px;
  10515. position:absolute;
  10516. left:0px;
  10517. top:0px;
  10518. width:49px;
  10519. height:17px;
  10520. background:inherit;
  10521. background-color:rgba(255, 255, 255, 0);
  10522. border:none;
  10523. border-radius:0px;
  10524. -moz-box-shadow:none;
  10525. -webkit-box-shadow:none;
  10526. box-shadow:none;
  10527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10528. font-weight:400;
  10529. font-style:normal;
  10530. font-size:12px;
  10531. color:#AAAAAA;
  10532. }
  10533. #u41281 {
  10534. border-width:0px;
  10535. position:absolute;
  10536. left:147px;
  10537. top:318px;
  10538. width:49px;
  10539. height:17px;
  10540. display:flex;
  10541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10542. font-weight:400;
  10543. font-style:normal;
  10544. font-size:12px;
  10545. color:#AAAAAA;
  10546. }
  10547. #u41281 .text {
  10548. position:absolute;
  10549. align-self:flex-start;
  10550. padding:0px 0px 0px 0px;
  10551. box-sizing:border-box;
  10552. width:100%;
  10553. }
  10554. #u41281_text {
  10555. border-width:0px;
  10556. white-space:nowrap;
  10557. text-transform:none;
  10558. }
  10559. #u41282_img {
  10560. border-width:0px;
  10561. position:absolute;
  10562. left:0px;
  10563. top:0px;
  10564. width:201px;
  10565. height:2px;
  10566. }
  10567. #u41282 {
  10568. border-width:0px;
  10569. position:absolute;
  10570. left:120px;
  10571. top:293px;
  10572. width:200px;
  10573. height:1px;
  10574. display:flex;
  10575. }
  10576. #u41282 .text {
  10577. position:absolute;
  10578. align-self:center;
  10579. padding:2px 2px 2px 2px;
  10580. box-sizing:border-box;
  10581. width:100%;
  10582. }
  10583. #u41282_text {
  10584. border-width:0px;
  10585. word-wrap:break-word;
  10586. text-transform:none;
  10587. visibility:hidden;
  10588. }
  10589. #u41283_div {
  10590. border-width:0px;
  10591. position:absolute;
  10592. left:0px;
  10593. top:0px;
  10594. width:65px;
  10595. height:22px;
  10596. background:inherit;
  10597. background-color:rgba(255, 255, 255, 0);
  10598. border:none;
  10599. border-radius:0px;
  10600. -moz-box-shadow:none;
  10601. -webkit-box-shadow:none;
  10602. box-shadow:none;
  10603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10604. font-weight:400;
  10605. font-style:normal;
  10606. font-size:16px;
  10607. }
  10608. #u41283 {
  10609. border-width:0px;
  10610. position:absolute;
  10611. left:147px;
  10612. top:396px;
  10613. width:65px;
  10614. height:22px;
  10615. display:flex;
  10616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10617. font-weight:400;
  10618. font-style:normal;
  10619. font-size:16px;
  10620. }
  10621. #u41283 .text {
  10622. position:absolute;
  10623. align-self:flex-start;
  10624. padding:0px 0px 0px 0px;
  10625. box-sizing:border-box;
  10626. width:100%;
  10627. }
  10628. #u41283_text {
  10629. border-width:0px;
  10630. white-space:nowrap;
  10631. text-transform:none;
  10632. }
  10633. #u41284_div {
  10634. border-width:0px;
  10635. position:absolute;
  10636. left:0px;
  10637. top:0px;
  10638. width:65px;
  10639. height:22px;
  10640. background:inherit;
  10641. background-color:rgba(255, 255, 255, 0);
  10642. border:none;
  10643. border-radius:0px;
  10644. -moz-box-shadow:none;
  10645. -webkit-box-shadow:none;
  10646. box-shadow:none;
  10647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10648. font-weight:400;
  10649. font-style:normal;
  10650. font-size:16px;
  10651. }
  10652. #u41284 {
  10653. border-width:0px;
  10654. position:absolute;
  10655. left:147px;
  10656. top:209px;
  10657. width:65px;
  10658. height:22px;
  10659. display:flex;
  10660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10661. font-weight:400;
  10662. font-style:normal;
  10663. font-size:16px;
  10664. }
  10665. #u41284 .text {
  10666. position:absolute;
  10667. align-self:flex-start;
  10668. padding:0px 0px 0px 0px;
  10669. box-sizing:border-box;
  10670. width:100%;
  10671. }
  10672. #u41284_text {
  10673. border-width:0px;
  10674. white-space:nowrap;
  10675. text-transform:none;
  10676. }
  10677. #u41285_div {
  10678. border-width:0px;
  10679. position:absolute;
  10680. left:0px;
  10681. top:0px;
  10682. width:49px;
  10683. height:22px;
  10684. background:inherit;
  10685. background-color:rgba(255, 255, 255, 0);
  10686. border:none;
  10687. border-radius:0px;
  10688. -moz-box-shadow:none;
  10689. -webkit-box-shadow:none;
  10690. box-shadow:none;
  10691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10692. font-weight:400;
  10693. font-style:normal;
  10694. font-size:16px;
  10695. }
  10696. #u41285 {
  10697. border-width:0px;
  10698. position:absolute;
  10699. left:147px;
  10700. top:499px;
  10701. width:49px;
  10702. height:22px;
  10703. display:flex;
  10704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10705. font-weight:400;
  10706. font-style:normal;
  10707. font-size:16px;
  10708. }
  10709. #u41285 .text {
  10710. position:absolute;
  10711. align-self:flex-start;
  10712. padding:0px 0px 0px 0px;
  10713. box-sizing:border-box;
  10714. width:100%;
  10715. }
  10716. #u41285_text {
  10717. border-width:0px;
  10718. white-space:nowrap;
  10719. text-transform:none;
  10720. }
  10721. #u41286_div {
  10722. border-width:0px;
  10723. position:absolute;
  10724. left:0px;
  10725. top:0px;
  10726. width:37px;
  10727. height:17px;
  10728. background:inherit;
  10729. background-color:rgba(255, 255, 255, 0);
  10730. border:none;
  10731. border-radius:0px;
  10732. -moz-box-shadow:none;
  10733. -webkit-box-shadow:none;
  10734. box-shadow:none;
  10735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10736. font-weight:400;
  10737. font-style:normal;
  10738. font-size:12px;
  10739. color:#AAAAAA;
  10740. }
  10741. #u41286 {
  10742. border-width:0px;
  10743. position:absolute;
  10744. left:147px;
  10745. top:463px;
  10746. width:37px;
  10747. height:17px;
  10748. display:flex;
  10749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10750. font-weight:400;
  10751. font-style:normal;
  10752. font-size:12px;
  10753. color:#AAAAAA;
  10754. }
  10755. #u41286 .text {
  10756. position:absolute;
  10757. align-self:flex-start;
  10758. padding:0px 0px 0px 0px;
  10759. box-sizing:border-box;
  10760. width:100%;
  10761. }
  10762. #u41286_text {
  10763. border-width:0px;
  10764. white-space:nowrap;
  10765. text-transform:none;
  10766. }
  10767. #u41287_img {
  10768. border-width:0px;
  10769. position:absolute;
  10770. left:0px;
  10771. top:0px;
  10772. width:201px;
  10773. height:2px;
  10774. }
  10775. #u41287 {
  10776. border-width:0px;
  10777. position:absolute;
  10778. left:120px;
  10779. top:438px;
  10780. width:200px;
  10781. height:1px;
  10782. display:flex;
  10783. }
  10784. #u41287 .text {
  10785. position:absolute;
  10786. align-self:center;
  10787. padding:2px 2px 2px 2px;
  10788. box-sizing:border-box;
  10789. width:100%;
  10790. }
  10791. #u41287_text {
  10792. border-width:0px;
  10793. word-wrap:break-word;
  10794. text-transform:none;
  10795. visibility:hidden;
  10796. }