styles.css 168 KB

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