styles.css 106 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2914px;
  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. #u48748_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u48748 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u48748 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u48748_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u48749_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u48749 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u48749 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u48749_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u48750_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u48750 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u48750 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u48750_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u48751 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u48752_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u48752 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u48752 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u48752_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u48753_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u48753 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u48753 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u48753_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u48754_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u48754 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u48754 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u48754_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u48755 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u48756_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. #u48756 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  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. #u48756 .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. #u48756_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u48757_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u48757 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u48757 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u48757_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u48758 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u48759_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. #u48759 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  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. #u48759 .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. #u48759_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u48760_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u48760 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u48760 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u48760_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u48761 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u48762_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  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. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u48762 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u48762 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u48762_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u48763_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u48763 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u48763 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u48763_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u48764 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u48765_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u48765 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u48765 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u48765_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u48766_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u48766 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u48766 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u48766_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u48767 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u48768_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u48768 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u48768 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u48768_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u48769_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u48769 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u48769 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u48769_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u48770 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u48771_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u48771 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u48771 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u48771_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u48772_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u48772 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u48772 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u48772_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u48773 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u48774_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u48774 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u48774 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u48774_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u48775_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u48775 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u48775 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u48775_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u48776 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u48777_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u48777 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u48777 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u48777_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u48778_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u48778 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u48778 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u48778_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u48779 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u48780_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u48780 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u48780 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u48780_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u48781_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u48781 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u48781 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u48781_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u48782_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u48782 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u48782 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u48782_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u48783_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u48783 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u48783 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u48783_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u48784_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u48784 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u48784 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u48784_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u48785_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u48785 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u48785 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u48785_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u48786 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u48787_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u48787 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u48787 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u48787_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u48788_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u48788 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u48788 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u48788_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u48789 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u48790_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u48790 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u48790 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u48790_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u48791_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u48791 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u48791 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u48791_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u48792 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u48793_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u48793_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u48793_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u48793 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u48793 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u48793_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u48793.disabled {
  1428. }
  1429. .u48793_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u48794_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u48794 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u48794 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u48794_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u48795_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u48795 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u48795 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u48795_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u48796_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u48796 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u48796 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u48796_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u48797_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1265px;
  1544. height:1193px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. color:#1890FF;
  1553. }
  1554. #u48797 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:329px;
  1558. top:50px;
  1559. width:1265px;
  1560. height:1193px;
  1561. display:flex;
  1562. color:#1890FF;
  1563. }
  1564. #u48797 .text {
  1565. position:absolute;
  1566. align-self:center;
  1567. padding:2px 2px 2px 2px;
  1568. box-sizing:border-box;
  1569. width:100%;
  1570. }
  1571. #u48797_text {
  1572. border-width:0px;
  1573. word-wrap:break-word;
  1574. text-transform:none;
  1575. visibility:hidden;
  1576. }
  1577. #u48798_div {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:0px;
  1581. top:0px;
  1582. width:125px;
  1583. height:50px;
  1584. background:inherit;
  1585. background-color:rgba(255, 255, 255, 0);
  1586. border:none;
  1587. border-left:0px;
  1588. border-top:0px;
  1589. border-right:0px;
  1590. border-radius:0px;
  1591. border-bottom-right-radius:0px;
  1592. border-bottom-left-radius:0px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1597. font-weight:500;
  1598. font-style:normal;
  1599. font-size:18px;
  1600. }
  1601. #u48798 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:660px;
  1605. top:60px;
  1606. width:125px;
  1607. height:50px;
  1608. display:flex;
  1609. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1610. font-weight:500;
  1611. font-style:normal;
  1612. font-size:18px;
  1613. }
  1614. #u48798 .text {
  1615. position:absolute;
  1616. align-self:center;
  1617. padding:0px 0px 0px 0px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u48798_text {
  1622. border-width:0px;
  1623. white-space:nowrap;
  1624. text-transform:none;
  1625. }
  1626. #u48799_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:141px;
  1632. height:30px;
  1633. background:inherit;
  1634. background-color:rgba(255, 255, 255, 0);
  1635. border:none;
  1636. border-top:0px;
  1637. border-right:0px;
  1638. border-bottom:0px;
  1639. border-radius:0px;
  1640. border-top-left-radius:0px;
  1641. border-bottom-left-radius:0px;
  1642. -moz-box-shadow:none;
  1643. -webkit-box-shadow:none;
  1644. box-shadow:none;
  1645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1646. font-weight:500;
  1647. font-style:normal;
  1648. font-size:14px;
  1649. text-align:right;
  1650. }
  1651. #u48799 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:668px;
  1655. top:216px;
  1656. width:141px;
  1657. height:30px;
  1658. display:flex;
  1659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1660. font-weight:500;
  1661. font-style:normal;
  1662. font-size:14px;
  1663. text-align:right;
  1664. }
  1665. #u48799 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:5px 0px 5px 0px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u48799_text {
  1673. border-width:0px;
  1674. white-space:nowrap;
  1675. text-transform:none;
  1676. }
  1677. #u48800 label {
  1678. left:0px;
  1679. width:100%;
  1680. }
  1681. #u48800_img {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:4px;
  1686. width:12px;
  1687. height:12px;
  1688. }
  1689. #u48800 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:944px;
  1693. top:259px;
  1694. width:297px;
  1695. height:20px;
  1696. display:flex;
  1697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1698. font-weight:400;
  1699. font-style:normal;
  1700. font-size:14px;
  1701. }
  1702. #u48800 .text {
  1703. position:absolute;
  1704. align-self:center;
  1705. padding:0px 2px 0px 2px;
  1706. box-sizing:border-box;
  1707. }
  1708. #u48800_img.selected {
  1709. }
  1710. #u48800.selected {
  1711. }
  1712. #u48800_img.disabled {
  1713. }
  1714. #u48800.disabled {
  1715. }
  1716. #u48800_img.selectedDisabled {
  1717. }
  1718. #u48800.selectedDisabled {
  1719. }
  1720. #u48800_text {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:14px;
  1724. top:0px;
  1725. width:281px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. }
  1729. #u48800_input {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:0px;
  1735. height:0px;
  1736. opacity:0;
  1737. }
  1738. #u48801 label {
  1739. left:0px;
  1740. width:100%;
  1741. }
  1742. #u48801_img {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:4px;
  1747. width:12px;
  1748. height:12px;
  1749. }
  1750. #u48801 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:668px;
  1754. top:259px;
  1755. width:297px;
  1756. height:20px;
  1757. display:flex;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:14px;
  1762. }
  1763. #u48801 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:0px 2px 0px 2px;
  1767. box-sizing:border-box;
  1768. }
  1769. #u48801_img.selected {
  1770. }
  1771. #u48801.selected {
  1772. }
  1773. #u48801_img.disabled {
  1774. }
  1775. #u48801.disabled {
  1776. }
  1777. #u48801_img.selectedDisabled {
  1778. }
  1779. #u48801.selectedDisabled {
  1780. }
  1781. #u48801_text {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:14px;
  1785. top:0px;
  1786. width:281px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. }
  1790. #u48801_input {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:0px;
  1796. height:0px;
  1797. opacity:0;
  1798. }
  1799. #u48802 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:0px;
  1805. height:0px;
  1806. }
  1807. #u48803_div {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:300px;
  1813. height:1180px;
  1814. background:inherit;
  1815. background-color:rgba(240, 242, 245, 1);
  1816. border:none;
  1817. border-radius:0px;
  1818. -moz-box-shadow:none;
  1819. -webkit-box-shadow:none;
  1820. box-shadow:none;
  1821. }
  1822. #u48803 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:330px;
  1826. top:50px;
  1827. width:300px;
  1828. height:1180px;
  1829. display:flex;
  1830. }
  1831. #u48803 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:2px 2px 2px 2px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u48803_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. visibility:hidden;
  1843. }
  1844. #u48804 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:0px;
  1850. height:0px;
  1851. }
  1852. #u48805_div {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:260px;
  1858. height:40px;
  1859. background:inherit;
  1860. background-color:rgba(255, 255, 255, 1);
  1861. box-sizing:border-box;
  1862. border-width:1px;
  1863. border-style:solid;
  1864. border-color:rgba(242, 242, 242, 1);
  1865. border-radius:4px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. font-family:'Microsoft YaHei', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:14px;
  1873. color:#CCCCCC;
  1874. text-align:left;
  1875. }
  1876. #u48805 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:350px;
  1880. top:130px;
  1881. width:260px;
  1882. height:40px;
  1883. display:flex;
  1884. font-family:'Microsoft YaHei', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:14px;
  1888. color:#CCCCCC;
  1889. text-align:left;
  1890. }
  1891. #u48805 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 8px 2px 8px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u48805_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. visibility:hidden;
  1903. }
  1904. #u48806_input {
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:217px;
  1909. height:33px;
  1910. padding:2px 2px 2px 2px;
  1911. font-family:'Microsoft YaHei', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:14px;
  1915. letter-spacing:normal;
  1916. color:#000000;
  1917. vertical-align:none;
  1918. text-align:left;
  1919. text-transform:none;
  1920. background-color:transparent;
  1921. border-color:transparent;
  1922. }
  1923. #u48806_input.disabled {
  1924. position:absolute;
  1925. left:0px;
  1926. top:0px;
  1927. width:217px;
  1928. height:33px;
  1929. padding:2px 2px 2px 2px;
  1930. font-family:'Microsoft YaHei', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:14px;
  1934. letter-spacing:normal;
  1935. color:#000000;
  1936. vertical-align:none;
  1937. text-align:left;
  1938. text-transform:none;
  1939. background-color:transparent;
  1940. border-color:transparent;
  1941. }
  1942. #u48806_div {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:217px;
  1948. height:33px;
  1949. background:inherit;
  1950. background-color:rgba(255, 255, 255, 1);
  1951. border:none;
  1952. border-radius:0px;
  1953. -moz-box-shadow:none;
  1954. -webkit-box-shadow:none;
  1955. box-shadow:none;
  1956. font-family:'Microsoft YaHei', sans-serif;
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:14px;
  1960. }
  1961. #u48806 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:358px;
  1965. top:131px;
  1966. width:217px;
  1967. height:33px;
  1968. display:flex;
  1969. font-family:'Microsoft YaHei', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:14px;
  1973. }
  1974. #u48806 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 2px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u48806_div.disabled {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:217px;
  1987. height:33px;
  1988. background:inherit;
  1989. background-color:rgba(240, 240, 240, 1);
  1990. border:none;
  1991. border-radius:0px;
  1992. -moz-box-shadow:none;
  1993. -webkit-box-shadow:none;
  1994. box-shadow:none;
  1995. font-family:'Microsoft YaHei', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:14px;
  1999. }
  2000. #u48806.disabled {
  2001. }
  2002. #u48807_img {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:14px;
  2008. height:14px;
  2009. }
  2010. #u48807 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:582px;
  2014. top:142px;
  2015. width:14px;
  2016. height:14px;
  2017. display:flex;
  2018. }
  2019. #u48807 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 2px 2px 2px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u48807_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. visibility:hidden;
  2031. }
  2032. #u48808 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:0px;
  2038. height:0px;
  2039. }
  2040. #u48809_div {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:260px;
  2046. height:60px;
  2047. background:inherit;
  2048. background-color:rgba(0, 153, 255, 0.0980392156862745);
  2049. border:none;
  2050. border-radius:4px;
  2051. -moz-box-shadow:none;
  2052. -webkit-box-shadow:none;
  2053. box-shadow:none;
  2054. font-family:'Microsoft YaHei', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:14px;
  2058. color:#CCCCCC;
  2059. text-align:left;
  2060. }
  2061. #u48809 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:350px;
  2065. top:190px;
  2066. width:260px;
  2067. height:60px;
  2068. display:flex;
  2069. font-family:'Microsoft YaHei', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:14px;
  2073. color:#CCCCCC;
  2074. text-align:left;
  2075. }
  2076. #u48809 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 8px 2px 8px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u48809_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. visibility:hidden;
  2088. }
  2089. #u48810_div {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:98px;
  2095. height:20px;
  2096. background:inherit;
  2097. background-color:rgba(51, 51, 51, 0);
  2098. border:none;
  2099. border-radius:4px;
  2100. -moz-box-shadow:none;
  2101. -webkit-box-shadow:none;
  2102. box-shadow:none;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:14px;
  2107. text-align:left;
  2108. }
  2109. #u48810 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:367px;
  2113. top:213px;
  2114. width:98px;
  2115. height:20px;
  2116. display:flex;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. font-size:14px;
  2121. text-align:left;
  2122. }
  2123. #u48810 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:0px 0px 0px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u48810_text {
  2131. border-width:0px;
  2132. white-space:nowrap;
  2133. text-transform:none;
  2134. }
  2135. #u48811 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:0px;
  2141. height:0px;
  2142. }
  2143. #u48812_div {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:260px;
  2149. height:60px;
  2150. background:inherit;
  2151. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2152. border:none;
  2153. border-radius:4px;
  2154. -moz-box-shadow:none;
  2155. -webkit-box-shadow:none;
  2156. box-shadow:none;
  2157. font-family:'Microsoft YaHei', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:14px;
  2161. color:#CCCCCC;
  2162. text-align:left;
  2163. }
  2164. #u48812 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:350px;
  2168. top:370px;
  2169. width:260px;
  2170. height:60px;
  2171. display:flex;
  2172. font-family:'Microsoft YaHei', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:14px;
  2176. color:#CCCCCC;
  2177. text-align:left;
  2178. }
  2179. #u48812 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 8px 2px 8px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u48812_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. visibility:hidden;
  2191. }
  2192. #u48813_div {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:100px;
  2198. height:20px;
  2199. background:inherit;
  2200. background-color:rgba(51, 51, 51, 0);
  2201. border:none;
  2202. border-radius:4px;
  2203. -moz-box-shadow:none;
  2204. -webkit-box-shadow:none;
  2205. box-shadow:none;
  2206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:14px;
  2210. text-align:left;
  2211. }
  2212. #u48813 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:365px;
  2216. top:393px;
  2217. width:100px;
  2218. height:20px;
  2219. display:flex;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:14px;
  2224. text-align:left;
  2225. }
  2226. #u48813 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:0px 0px 0px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u48813_text {
  2234. border-width:0px;
  2235. white-space:nowrap;
  2236. text-transform:none;
  2237. }
  2238. #u48814 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:0px;
  2244. height:0px;
  2245. }
  2246. #u48815_div {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:260px;
  2252. height:60px;
  2253. background:inherit;
  2254. background-color:rgba(0, 153, 255, 0);
  2255. border:none;
  2256. border-radius:4px;
  2257. -moz-box-shadow:none;
  2258. -webkit-box-shadow:none;
  2259. box-shadow:none;
  2260. font-family:'Microsoft YaHei', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:14px;
  2264. color:#CCCCCC;
  2265. text-align:left;
  2266. }
  2267. #u48815 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:350px;
  2271. top:250px;
  2272. width:260px;
  2273. height:60px;
  2274. display:flex;
  2275. font-family:'Microsoft YaHei', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. font-size:14px;
  2279. color:#CCCCCC;
  2280. text-align:left;
  2281. }
  2282. #u48815 .text {
  2283. position:absolute;
  2284. align-self:center;
  2285. padding:2px 8px 2px 8px;
  2286. box-sizing:border-box;
  2287. width:100%;
  2288. }
  2289. #u48815_text {
  2290. border-width:0px;
  2291. word-wrap:break-word;
  2292. text-transform:none;
  2293. visibility:hidden;
  2294. }
  2295. #u48816_div {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:100px;
  2301. height:20px;
  2302. background:inherit;
  2303. background-color:rgba(51, 51, 51, 0);
  2304. border:none;
  2305. border-radius:4px;
  2306. -moz-box-shadow:none;
  2307. -webkit-box-shadow:none;
  2308. box-shadow:none;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:14px;
  2313. text-align:left;
  2314. }
  2315. #u48816 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:365px;
  2319. top:273px;
  2320. width:100px;
  2321. height:20px;
  2322. display:flex;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:14px;
  2327. text-align:left;
  2328. }
  2329. #u48816 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:0px 0px 0px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u48816_text {
  2337. border-width:0px;
  2338. white-space:nowrap;
  2339. text-transform:none;
  2340. }
  2341. #u48817 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:0px;
  2347. height:0px;
  2348. }
  2349. #u48818_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:260px;
  2355. height:60px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 0.0980392156862745);
  2358. border:none;
  2359. border-radius:4px;
  2360. -moz-box-shadow:none;
  2361. -webkit-box-shadow:none;
  2362. box-shadow:none;
  2363. font-family:'Microsoft YaHei', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:14px;
  2367. color:#CCCCCC;
  2368. text-align:left;
  2369. }
  2370. #u48818 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:350px;
  2374. top:310px;
  2375. width:260px;
  2376. height:60px;
  2377. display:flex;
  2378. font-family:'Microsoft YaHei', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:14px;
  2382. color:#CCCCCC;
  2383. text-align:left;
  2384. }
  2385. #u48818 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 8px 2px 8px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u48818_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. visibility:hidden;
  2397. }
  2398. #u48819_div {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:100px;
  2404. height:20px;
  2405. background:inherit;
  2406. background-color:rgba(51, 51, 51, 0);
  2407. border:none;
  2408. border-radius:4px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:14px;
  2416. text-align:left;
  2417. }
  2418. #u48819 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:365px;
  2422. top:333px;
  2423. width:100px;
  2424. height:20px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:14px;
  2430. text-align:left;
  2431. }
  2432. #u48819 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:0px 0px 0px 0px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u48819_text {
  2440. border-width:0px;
  2441. white-space:nowrap;
  2442. text-transform:none;
  2443. }
  2444. #u48820_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:73px;
  2450. height:25px;
  2451. background:inherit;
  2452. background-color:rgba(255, 255, 255, 0);
  2453. border:none;
  2454. border-radius:0px;
  2455. -moz-box-shadow:none;
  2456. -webkit-box-shadow:none;
  2457. box-shadow:none;
  2458. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2459. font-weight:500;
  2460. font-style:normal;
  2461. font-size:18px;
  2462. }
  2463. #u48820 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:350px;
  2467. top:77px;
  2468. width:73px;
  2469. height:25px;
  2470. display:flex;
  2471. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2472. font-weight:500;
  2473. font-style:normal;
  2474. font-size:18px;
  2475. }
  2476. #u48820 .text {
  2477. position:absolute;
  2478. align-self:flex-start;
  2479. padding:0px 0px 0px 0px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u48820_text {
  2484. border-width:0px;
  2485. white-space:nowrap;
  2486. text-transform:none;
  2487. }
  2488. #u48821 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:0px;
  2494. height:0px;
  2495. }
  2496. #u48822_div {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:113px;
  2502. height:30px;
  2503. background:inherit;
  2504. background-color:rgba(255, 255, 255, 0);
  2505. border:none;
  2506. border-top:0px;
  2507. border-right:0px;
  2508. border-bottom:0px;
  2509. border-radius:0px;
  2510. border-top-left-radius:0px;
  2511. border-bottom-left-radius:0px;
  2512. -moz-box-shadow:none;
  2513. -webkit-box-shadow:none;
  2514. box-shadow:none;
  2515. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2516. font-weight:500;
  2517. font-style:normal;
  2518. font-size:14px;
  2519. }
  2520. #u48822 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:668px;
  2524. top:127px;
  2525. width:113px;
  2526. height:30px;
  2527. display:flex;
  2528. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2529. font-weight:500;
  2530. font-style:normal;
  2531. font-size:14px;
  2532. }
  2533. #u48822 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:5px 0px 5px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u48822_text {
  2541. border-width:0px;
  2542. white-space:nowrap;
  2543. text-transform:none;
  2544. }
  2545. #u48823_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:463px;
  2551. height:30px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 0);
  2554. border:none;
  2555. border-top:0px;
  2556. border-right:0px;
  2557. border-bottom:0px;
  2558. border-radius:0px;
  2559. border-top-left-radius:0px;
  2560. border-bottom-left-radius:0px;
  2561. -moz-box-shadow:none;
  2562. -webkit-box-shadow:none;
  2563. box-shadow:none;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:12px;
  2568. }
  2569. #u48823 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:668px;
  2573. top:157px;
  2574. width:463px;
  2575. height:30px;
  2576. display:flex;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. }
  2582. #u48823 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:5px 0px 5px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u48823_text {
  2590. border-width:0px;
  2591. white-space:nowrap;
  2592. text-transform:none;
  2593. }
  2594. #u48824_img {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:50px;
  2600. height:31px;
  2601. }
  2602. #u48824 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:1474px;
  2606. top:126px;
  2607. width:50px;
  2608. height:31px;
  2609. display:flex;
  2610. }
  2611. #u48824 .text {
  2612. position:absolute;
  2613. align-self:center;
  2614. padding:2px 2px 2px 2px;
  2615. box-sizing:border-box;
  2616. width:100%;
  2617. }
  2618. #u48824_text {
  2619. border-width:0px;
  2620. word-wrap:break-word;
  2621. text-transform:none;
  2622. visibility:hidden;
  2623. }
  2624. #u48825_img {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:883px;
  2630. height:2px;
  2631. }
  2632. #u48825 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:668px;
  2636. top:207px;
  2637. width:882px;
  2638. height:1px;
  2639. display:flex;
  2640. }
  2641. #u48825 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 2px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u48825_text {
  2649. border-width:0px;
  2650. word-wrap:break-word;
  2651. text-transform:none;
  2652. visibility:hidden;
  2653. }
  2654. #u48826_img {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:883px;
  2660. height:2px;
  2661. }
  2662. #u48826 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:668px;
  2666. top:299px;
  2667. width:882px;
  2668. height:1px;
  2669. display:flex;
  2670. }
  2671. #u48826 .text {
  2672. position:absolute;
  2673. align-self:center;
  2674. padding:2px 2px 2px 2px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u48826_text {
  2679. border-width:0px;
  2680. word-wrap:break-word;
  2681. text-transform:none;
  2682. visibility:hidden;
  2683. }
  2684. #u48827_div {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:85px;
  2690. height:30px;
  2691. background:inherit;
  2692. background-color:rgba(255, 255, 255, 0);
  2693. border:none;
  2694. border-top:0px;
  2695. border-right:0px;
  2696. border-bottom:0px;
  2697. border-radius:0px;
  2698. border-top-left-radius:0px;
  2699. border-bottom-left-radius:0px;
  2700. -moz-box-shadow:none;
  2701. -webkit-box-shadow:none;
  2702. box-shadow:none;
  2703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2704. font-weight:500;
  2705. font-style:normal;
  2706. font-size:14px;
  2707. }
  2708. #u48827 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:668px;
  2712. top:326px;
  2713. width:85px;
  2714. height:30px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2717. font-weight:500;
  2718. font-style:normal;
  2719. font-size:14px;
  2720. }
  2721. #u48827 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:5px 0px 5px 0px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u48827_text {
  2729. border-width:0px;
  2730. white-space:nowrap;
  2731. text-transform:none;
  2732. }
  2733. #u48828 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:0px;
  2739. height:0px;
  2740. }
  2741. #u48829_div {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:200px;
  2747. height:1193px;
  2748. background:inherit;
  2749. background-color:rgba(255, 255, 255, 1);
  2750. border:none;
  2751. border-radius:0px;
  2752. -moz-box-shadow:none;
  2753. -webkit-box-shadow:none;
  2754. box-shadow:none;
  2755. }
  2756. #u48829 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:120px;
  2760. top:50px;
  2761. width:200px;
  2762. height:1193px;
  2763. display:flex;
  2764. }
  2765. #u48829 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 2px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u48829_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. visibility:hidden;
  2777. }
  2778. #u48830_div {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:200px;
  2784. height:60px;
  2785. background:inherit;
  2786. background-color:rgba(224, 231, 247, 1);
  2787. border:none;
  2788. border-radius:0px;
  2789. -moz-box-shadow:none;
  2790. -webkit-box-shadow:none;
  2791. box-shadow:none;
  2792. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2793. font-weight:500;
  2794. font-style:normal;
  2795. font-size:18px;
  2796. }
  2797. #u48830 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:120px;
  2801. top:50px;
  2802. width:200px;
  2803. height:60px;
  2804. display:flex;
  2805. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2806. font-weight:500;
  2807. font-style:normal;
  2808. font-size:18px;
  2809. }
  2810. #u48830 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:0px 0px 0px 20px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u48830_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. }
  2822. #u48831_div {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:97px;
  2828. height:22px;
  2829. background:inherit;
  2830. background-color:rgba(255, 255, 255, 0);
  2831. border:none;
  2832. border-radius:0px;
  2833. -moz-box-shadow:none;
  2834. -webkit-box-shadow:none;
  2835. box-shadow:none;
  2836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. font-size:16px;
  2840. }
  2841. #u48831 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:147px;
  2845. top:387px;
  2846. width:97px;
  2847. height:22px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:16px;
  2853. }
  2854. #u48831 .text {
  2855. position:absolute;
  2856. align-self:flex-start;
  2857. padding:0px 0px 0px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u48831_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. }
  2866. #u48832_div {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:97px;
  2872. height:22px;
  2873. background:inherit;
  2874. background-color:rgba(255, 255, 255, 0);
  2875. border:none;
  2876. border-radius:0px;
  2877. -moz-box-shadow:none;
  2878. -webkit-box-shadow:none;
  2879. box-shadow:none;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:16px;
  2884. }
  2885. #u48832 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:147px;
  2889. top:166px;
  2890. width:97px;
  2891. height:22px;
  2892. display:flex;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:16px;
  2897. }
  2898. #u48832 .text {
  2899. position:absolute;
  2900. align-self:flex-start;
  2901. padding:0px 0px 0px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u48832_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. }
  2910. #u48833_div {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:49px;
  2916. height:17px;
  2917. background:inherit;
  2918. background-color:rgba(255, 255, 255, 0);
  2919. border:none;
  2920. border-radius:0px;
  2921. -moz-box-shadow:none;
  2922. -webkit-box-shadow:none;
  2923. box-shadow:none;
  2924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2925. font-weight:400;
  2926. font-style:normal;
  2927. font-size:12px;
  2928. color:#AAAAAA;
  2929. }
  2930. #u48833 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:147px;
  2934. top:130px;
  2935. width:49px;
  2936. height:17px;
  2937. display:flex;
  2938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:12px;
  2942. color:#AAAAAA;
  2943. }
  2944. #u48833 .text {
  2945. position:absolute;
  2946. align-self:flex-start;
  2947. padding:0px 0px 0px 0px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u48833_text {
  2952. border-width:0px;
  2953. white-space:nowrap;
  2954. text-transform:none;
  2955. }
  2956. #u48834_div {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:97px;
  2962. height:22px;
  2963. background:inherit;
  2964. background-color:rgba(255, 255, 255, 0);
  2965. border:none;
  2966. border-radius:0px;
  2967. -moz-box-shadow:none;
  2968. -webkit-box-shadow:none;
  2969. box-shadow:none;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:16px;
  2974. }
  2975. #u48834 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:147px;
  2979. top:208px;
  2980. width:97px;
  2981. height:22px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:16px;
  2987. }
  2988. #u48834 .text {
  2989. position:absolute;
  2990. align-self:flex-start;
  2991. padding:0px 0px 0px 0px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u48834_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. }
  3000. #u48835_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:201px;
  3006. height:2px;
  3007. }
  3008. #u48835 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:120px;
  3012. top:246px;
  3013. width:200px;
  3014. height:1px;
  3015. display:flex;
  3016. }
  3017. #u48835 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 2px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u48835_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u48836_div {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:97px;
  3036. height:22px;
  3037. background:inherit;
  3038. background-color:rgba(255, 255, 255, 0);
  3039. border:none;
  3040. border-radius:0px;
  3041. -moz-box-shadow:none;
  3042. -webkit-box-shadow:none;
  3043. box-shadow:none;
  3044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3045. font-weight:400;
  3046. font-style:normal;
  3047. font-size:16px;
  3048. }
  3049. #u48836 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:147px;
  3053. top:569px;
  3054. width:97px;
  3055. height:22px;
  3056. display:flex;
  3057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3058. font-weight:400;
  3059. font-style:normal;
  3060. font-size:16px;
  3061. }
  3062. #u48836 .text {
  3063. position:absolute;
  3064. align-self:flex-start;
  3065. padding:0px 0px 0px 0px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u48836_text {
  3070. border-width:0px;
  3071. word-wrap:break-word;
  3072. text-transform:none;
  3073. }
  3074. #u48837_div {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:49px;
  3080. height:17px;
  3081. background:inherit;
  3082. background-color:rgba(255, 255, 255, 0);
  3083. border:none;
  3084. border-radius:0px;
  3085. -moz-box-shadow:none;
  3086. -webkit-box-shadow:none;
  3087. box-shadow:none;
  3088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:12px;
  3092. color:#AAAAAA;
  3093. }
  3094. #u48837 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:147px;
  3098. top:533px;
  3099. width:49px;
  3100. height:17px;
  3101. display:flex;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:12px;
  3106. color:#AAAAAA;
  3107. }
  3108. #u48837 .text {
  3109. position:absolute;
  3110. align-self:flex-start;
  3111. padding:0px 0px 0px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u48837_text {
  3116. border-width:0px;
  3117. white-space:nowrap;
  3118. text-transform:none;
  3119. }
  3120. #u48838_div {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:97px;
  3126. height:22px;
  3127. background:inherit;
  3128. background-color:rgba(255, 255, 255, 0);
  3129. border:none;
  3130. border-radius:0px;
  3131. -moz-box-shadow:none;
  3132. -webkit-box-shadow:none;
  3133. box-shadow:none;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:16px;
  3138. }
  3139. #u48838 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:147px;
  3143. top:754px;
  3144. width:97px;
  3145. height:22px;
  3146. display:flex;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:16px;
  3151. }
  3152. #u48838 .text {
  3153. position:absolute;
  3154. align-self:flex-start;
  3155. padding:0px 0px 0px 0px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u48838_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. }
  3164. #u48839_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:201px;
  3170. height:2px;
  3171. }
  3172. #u48839 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:120px;
  3176. top:655px;
  3177. width:200px;
  3178. height:1px;
  3179. display:flex;
  3180. }
  3181. #u48839 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u48839_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u48840_div {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:97px;
  3200. height:22px;
  3201. background:inherit;
  3202. background-color:rgba(255, 255, 255, 0);
  3203. border:none;
  3204. border-radius:0px;
  3205. -moz-box-shadow:none;
  3206. -webkit-box-shadow:none;
  3207. box-shadow:none;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:16px;
  3212. }
  3213. #u48840 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:147px;
  3217. top:712px;
  3218. width:97px;
  3219. height:22px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:16px;
  3225. }
  3226. #u48840 .text {
  3227. position:absolute;
  3228. align-self:flex-start;
  3229. padding:0px 0px 0px 0px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u48840_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. }
  3238. #u48841_div {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:49px;
  3244. height:17px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border:none;
  3248. border-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:12px;
  3256. color:#AAAAAA;
  3257. }
  3258. #u48841 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:147px;
  3262. top:676px;
  3263. width:49px;
  3264. height:17px;
  3265. display:flex;
  3266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:12px;
  3270. color:#AAAAAA;
  3271. }
  3272. #u48841 .text {
  3273. position:absolute;
  3274. align-self:flex-start;
  3275. padding:0px 0px 0px 0px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u48841_text {
  3280. border-width:0px;
  3281. white-space:nowrap;
  3282. text-transform:none;
  3283. }
  3284. #u48842_div {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:97px;
  3290. height:22px;
  3291. background:inherit;
  3292. background-color:rgba(255, 255, 255, 0);
  3293. border:none;
  3294. border-radius:0px;
  3295. -moz-box-shadow:none;
  3296. -webkit-box-shadow:none;
  3297. box-shadow:none;
  3298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:16px;
  3302. }
  3303. #u48842 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:147px;
  3307. top:895px;
  3308. width:97px;
  3309. height:22px;
  3310. display:flex;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:16px;
  3315. }
  3316. #u48842 .text {
  3317. position:absolute;
  3318. align-self:flex-start;
  3319. padding:0px 0px 0px 0px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u48842_text {
  3324. border-width:0px;
  3325. word-wrap:break-word;
  3326. text-transform:none;
  3327. }
  3328. #u48843_div {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:97px;
  3334. height:22px;
  3335. background:inherit;
  3336. background-color:rgba(255, 255, 255, 0);
  3337. border:none;
  3338. border-radius:0px;
  3339. -moz-box-shadow:none;
  3340. -webkit-box-shadow:none;
  3341. box-shadow:none;
  3342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:16px;
  3346. }
  3347. #u48843 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:147px;
  3351. top:937px;
  3352. width:97px;
  3353. height:22px;
  3354. display:flex;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:16px;
  3359. }
  3360. #u48843 .text {
  3361. position:absolute;
  3362. align-self:flex-start;
  3363. padding:0px 0px 0px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u48843_text {
  3368. border-width:0px;
  3369. white-space:nowrap;
  3370. text-transform:none;
  3371. }
  3372. #u48844_img {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:201px;
  3378. height:2px;
  3379. }
  3380. #u48844 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:120px;
  3384. top:796px;
  3385. width:200px;
  3386. height:1px;
  3387. display:flex;
  3388. }
  3389. #u48844 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u48844_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u48845_div {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:97px;
  3408. height:22px;
  3409. background:inherit;
  3410. background-color:rgba(255, 255, 255, 0);
  3411. border:none;
  3412. border-radius:0px;
  3413. -moz-box-shadow:none;
  3414. -webkit-box-shadow:none;
  3415. box-shadow:none;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:16px;
  3420. }
  3421. #u48845 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:147px;
  3425. top:853px;
  3426. width:97px;
  3427. height:22px;
  3428. display:flex;
  3429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:16px;
  3433. }
  3434. #u48845 .text {
  3435. position:absolute;
  3436. align-self:flex-start;
  3437. padding:0px 0px 0px 0px;
  3438. box-sizing:border-box;
  3439. width:100%;
  3440. }
  3441. #u48845_text {
  3442. border-width:0px;
  3443. word-wrap:break-word;
  3444. text-transform:none;
  3445. }
  3446. #u48846_div {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:49px;
  3452. height:17px;
  3453. background:inherit;
  3454. background-color:rgba(255, 255, 255, 0);
  3455. border:none;
  3456. border-radius:0px;
  3457. -moz-box-shadow:none;
  3458. -webkit-box-shadow:none;
  3459. box-shadow:none;
  3460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:12px;
  3464. color:#AAAAAA;
  3465. }
  3466. #u48846 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:147px;
  3470. top:817px;
  3471. width:49px;
  3472. height:17px;
  3473. display:flex;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:12px;
  3478. color:#AAAAAA;
  3479. }
  3480. #u48846 .text {
  3481. position:absolute;
  3482. align-self:flex-start;
  3483. padding:0px 0px 0px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u48846_text {
  3488. border-width:0px;
  3489. white-space:nowrap;
  3490. text-transform:none;
  3491. }
  3492. #u48847_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:97px;
  3498. height:22px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 0);
  3501. border:none;
  3502. border-radius:0px;
  3503. -moz-box-shadow:none;
  3504. -webkit-box-shadow:none;
  3505. box-shadow:none;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:16px;
  3510. }
  3511. #u48847 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:147px;
  3515. top:611px;
  3516. width:97px;
  3517. height:22px;
  3518. display:flex;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:16px;
  3523. }
  3524. #u48847 .text {
  3525. position:absolute;
  3526. align-self:flex-start;
  3527. padding:0px 0px 0px 0px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u48847_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. }
  3536. #u48848_div {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:97px;
  3542. height:22px;
  3543. background:inherit;
  3544. background-color:rgba(255, 255, 255, 0);
  3545. border:none;
  3546. border-radius:0px;
  3547. -moz-box-shadow:none;
  3548. -webkit-box-shadow:none;
  3549. box-shadow:none;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:16px;
  3554. }
  3555. #u48848 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:147px;
  3559. top:303px;
  3560. width:97px;
  3561. height:22px;
  3562. display:flex;
  3563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:16px;
  3567. }
  3568. #u48848 .text {
  3569. position:absolute;
  3570. align-self:flex-start;
  3571. padding:0px 0px 0px 0px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u48848_text {
  3576. border-width:0px;
  3577. word-wrap:break-word;
  3578. text-transform:none;
  3579. }
  3580. #u48849_div {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:49px;
  3586. height:17px;
  3587. background:inherit;
  3588. background-color:rgba(255, 255, 255, 0);
  3589. border:none;
  3590. border-radius:0px;
  3591. -moz-box-shadow:none;
  3592. -webkit-box-shadow:none;
  3593. box-shadow:none;
  3594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:12px;
  3598. color:#AAAAAA;
  3599. }
  3600. #u48849 {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:147px;
  3604. top:267px;
  3605. width:49px;
  3606. height:17px;
  3607. display:flex;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:12px;
  3612. color:#AAAAAA;
  3613. }
  3614. #u48849 .text {
  3615. position:absolute;
  3616. align-self:flex-start;
  3617. padding:0px 0px 0px 0px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u48849_text {
  3622. border-width:0px;
  3623. white-space:nowrap;
  3624. text-transform:none;
  3625. }
  3626. #u48850_div {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:97px;
  3632. height:22px;
  3633. background:inherit;
  3634. background-color:rgba(255, 255, 255, 0);
  3635. border:none;
  3636. border-radius:0px;
  3637. -moz-box-shadow:none;
  3638. -webkit-box-shadow:none;
  3639. box-shadow:none;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:16px;
  3644. }
  3645. #u48850 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:147px;
  3649. top:345px;
  3650. width:97px;
  3651. height:22px;
  3652. display:flex;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:16px;
  3657. }
  3658. #u48850 .text {
  3659. position:absolute;
  3660. align-self:flex-start;
  3661. padding:0px 0px 0px 0px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u48850_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. }
  3670. #u48851_img {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:201px;
  3676. height:2px;
  3677. }
  3678. #u48851 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:120px;
  3682. top:514px;
  3683. width:200px;
  3684. height:1px;
  3685. display:flex;
  3686. }
  3687. #u48851 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 2px 2px 2px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u48851_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u48852_div {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:97px;
  3706. height:22px;
  3707. background:inherit;
  3708. background-color:rgba(255, 255, 255, 0);
  3709. border:none;
  3710. border-radius:0px;
  3711. -moz-box-shadow:none;
  3712. -webkit-box-shadow:none;
  3713. box-shadow:none;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:16px;
  3718. }
  3719. #u48852 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:147px;
  3723. top:429px;
  3724. width:97px;
  3725. height:22px;
  3726. display:flex;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:16px;
  3731. }
  3732. #u48852 .text {
  3733. position:absolute;
  3734. align-self:flex-start;
  3735. padding:0px 0px 0px 0px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u48852_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. }
  3744. #u48853_div {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:0px;
  3748. top:0px;
  3749. width:97px;
  3750. height:22px;
  3751. background:inherit;
  3752. background-color:rgba(255, 255, 255, 0);
  3753. border:none;
  3754. border-radius:0px;
  3755. -moz-box-shadow:none;
  3756. -webkit-box-shadow:none;
  3757. box-shadow:none;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:16px;
  3762. }
  3763. #u48853 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:147px;
  3767. top:471px;
  3768. width:97px;
  3769. height:22px;
  3770. display:flex;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:16px;
  3775. }
  3776. #u48853 .text {
  3777. position:absolute;
  3778. align-self:flex-start;
  3779. padding:0px 0px 0px 0px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u48853_text {
  3784. border-width:0px;
  3785. white-space:nowrap;
  3786. text-transform:none;
  3787. }
  3788. #u48854_div {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:1265px;
  3794. height:1193px;
  3795. background:inherit;
  3796. background-color:rgba(255, 255, 255, 1);
  3797. border:none;
  3798. border-radius:0px;
  3799. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3800. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3801. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3802. color:#1890FF;
  3803. }
  3804. #u48854 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:1649px;
  3808. top:50px;
  3809. width:1265px;
  3810. height:1193px;
  3811. display:flex;
  3812. color:#1890FF;
  3813. }
  3814. #u48854 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 2px 2px 2px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u48854_text {
  3822. border-width:0px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. visibility:hidden;
  3826. }
  3827. #u48855_div {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:125px;
  3833. height:50px;
  3834. background:inherit;
  3835. background-color:rgba(255, 255, 255, 0);
  3836. border:none;
  3837. border-left:0px;
  3838. border-top:0px;
  3839. border-right:0px;
  3840. border-radius:0px;
  3841. border-bottom-right-radius:0px;
  3842. border-bottom-left-radius:0px;
  3843. -moz-box-shadow:none;
  3844. -webkit-box-shadow:none;
  3845. box-shadow:none;
  3846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3847. font-weight:500;
  3848. font-style:normal;
  3849. font-size:18px;
  3850. }
  3851. #u48855 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:1980px;
  3855. top:60px;
  3856. width:125px;
  3857. height:50px;
  3858. display:flex;
  3859. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3860. font-weight:500;
  3861. font-style:normal;
  3862. font-size:18px;
  3863. }
  3864. #u48855 .text {
  3865. position:absolute;
  3866. align-self:center;
  3867. padding:0px 0px 0px 0px;
  3868. box-sizing:border-box;
  3869. width:100%;
  3870. }
  3871. #u48855_text {
  3872. border-width:0px;
  3873. white-space:nowrap;
  3874. text-transform:none;
  3875. }
  3876. #u48856 {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:0px;
  3880. top:0px;
  3881. width:0px;
  3882. height:0px;
  3883. }
  3884. #u48857_div {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:0px;
  3888. top:0px;
  3889. width:300px;
  3890. height:1180px;
  3891. background:inherit;
  3892. background-color:rgba(240, 242, 245, 1);
  3893. border:none;
  3894. border-radius:0px;
  3895. -moz-box-shadow:none;
  3896. -webkit-box-shadow:none;
  3897. box-shadow:none;
  3898. }
  3899. #u48857 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:1650px;
  3903. top:50px;
  3904. width:300px;
  3905. height:1180px;
  3906. display:flex;
  3907. }
  3908. #u48857 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 2px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u48857_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u48858 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:0px;
  3927. height:0px;
  3928. }
  3929. #u48859_div {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:260px;
  3935. height:40px;
  3936. background:inherit;
  3937. background-color:rgba(255, 255, 255, 1);
  3938. box-sizing:border-box;
  3939. border-width:1px;
  3940. border-style:solid;
  3941. border-color:rgba(242, 242, 242, 1);
  3942. border-radius:4px;
  3943. -moz-box-shadow:none;
  3944. -webkit-box-shadow:none;
  3945. box-shadow:none;
  3946. font-family:'Microsoft YaHei', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:14px;
  3950. color:#CCCCCC;
  3951. text-align:left;
  3952. }
  3953. #u48859 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:1670px;
  3957. top:130px;
  3958. width:260px;
  3959. height:40px;
  3960. display:flex;
  3961. font-family:'Microsoft YaHei', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:14px;
  3965. color:#CCCCCC;
  3966. text-align:left;
  3967. }
  3968. #u48859 .text {
  3969. position:absolute;
  3970. align-self:center;
  3971. padding:2px 8px 2px 8px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u48859_text {
  3976. border-width:0px;
  3977. word-wrap:break-word;
  3978. text-transform:none;
  3979. visibility:hidden;
  3980. }
  3981. #u48860_input {
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:217px;
  3986. height:33px;
  3987. padding:2px 2px 2px 2px;
  3988. font-family:'Microsoft YaHei', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:14px;
  3992. letter-spacing:normal;
  3993. color:#000000;
  3994. vertical-align:none;
  3995. text-align:left;
  3996. text-transform:none;
  3997. background-color:transparent;
  3998. border-color:transparent;
  3999. }
  4000. #u48860_input.disabled {
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:217px;
  4005. height:33px;
  4006. padding:2px 2px 2px 2px;
  4007. font-family:'Microsoft YaHei', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:14px;
  4011. letter-spacing:normal;
  4012. color:#000000;
  4013. vertical-align:none;
  4014. text-align:left;
  4015. text-transform:none;
  4016. background-color:transparent;
  4017. border-color:transparent;
  4018. }
  4019. #u48860_div {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:217px;
  4025. height:33px;
  4026. background:inherit;
  4027. background-color:rgba(255, 255, 255, 1);
  4028. border:none;
  4029. border-radius:0px;
  4030. -moz-box-shadow:none;
  4031. -webkit-box-shadow:none;
  4032. box-shadow:none;
  4033. font-family:'Microsoft YaHei', sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:14px;
  4037. }
  4038. #u48860 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:1678px;
  4042. top:131px;
  4043. width:217px;
  4044. height:33px;
  4045. display:flex;
  4046. font-family:'Microsoft YaHei', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:14px;
  4050. }
  4051. #u48860 .text {
  4052. position:absolute;
  4053. align-self:center;
  4054. padding:2px 2px 2px 2px;
  4055. box-sizing:border-box;
  4056. width:100%;
  4057. }
  4058. #u48860_div.disabled {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:217px;
  4064. height:33px;
  4065. background:inherit;
  4066. background-color:rgba(240, 240, 240, 1);
  4067. border:none;
  4068. border-radius:0px;
  4069. -moz-box-shadow:none;
  4070. -webkit-box-shadow:none;
  4071. box-shadow:none;
  4072. font-family:'Microsoft YaHei', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:14px;
  4076. }
  4077. #u48860.disabled {
  4078. }
  4079. #u48861_img {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:0px;
  4083. top:0px;
  4084. width:14px;
  4085. height:14px;
  4086. }
  4087. #u48861 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:1902px;
  4091. top:142px;
  4092. width:14px;
  4093. height:14px;
  4094. display:flex;
  4095. }
  4096. #u48861 .text {
  4097. position:absolute;
  4098. align-self:center;
  4099. padding:2px 2px 2px 2px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u48861_text {
  4104. border-width:0px;
  4105. word-wrap:break-word;
  4106. text-transform:none;
  4107. visibility:hidden;
  4108. }
  4109. #u48862 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:0px;
  4115. height:0px;
  4116. }
  4117. #u48863_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:260px;
  4123. height:60px;
  4124. background:inherit;
  4125. background-color:rgba(0, 153, 255, 0.0980392156862745);
  4126. border:none;
  4127. border-radius:4px;
  4128. -moz-box-shadow:none;
  4129. -webkit-box-shadow:none;
  4130. box-shadow:none;
  4131. font-family:'Microsoft YaHei', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:14px;
  4135. color:#CCCCCC;
  4136. text-align:left;
  4137. }
  4138. #u48863 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:1670px;
  4142. top:190px;
  4143. width:260px;
  4144. height:60px;
  4145. display:flex;
  4146. font-family:'Microsoft YaHei', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. color:#CCCCCC;
  4151. text-align:left;
  4152. }
  4153. #u48863 .text {
  4154. position:absolute;
  4155. align-self:center;
  4156. padding:2px 8px 2px 8px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u48863_text {
  4161. border-width:0px;
  4162. word-wrap:break-word;
  4163. text-transform:none;
  4164. visibility:hidden;
  4165. }
  4166. #u48864_div {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:98px;
  4172. height:20px;
  4173. background:inherit;
  4174. background-color:rgba(51, 51, 51, 0);
  4175. border:none;
  4176. border-radius:4px;
  4177. -moz-box-shadow:none;
  4178. -webkit-box-shadow:none;
  4179. box-shadow:none;
  4180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:14px;
  4184. text-align:left;
  4185. }
  4186. #u48864 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:1687px;
  4190. top:213px;
  4191. width:98px;
  4192. height:20px;
  4193. display:flex;
  4194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:14px;
  4198. text-align:left;
  4199. }
  4200. #u48864 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:0px 0px 0px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u48864_text {
  4208. border-width:0px;
  4209. white-space:nowrap;
  4210. text-transform:none;
  4211. }
  4212. #u48865 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:0px;
  4218. height:0px;
  4219. }
  4220. #u48866_div {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:260px;
  4226. height:60px;
  4227. background:inherit;
  4228. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4229. border:none;
  4230. border-radius:4px;
  4231. -moz-box-shadow:none;
  4232. -webkit-box-shadow:none;
  4233. box-shadow:none;
  4234. font-family:'Microsoft YaHei', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:14px;
  4238. color:#CCCCCC;
  4239. text-align:left;
  4240. }
  4241. #u48866 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:1670px;
  4245. top:370px;
  4246. width:260px;
  4247. height:60px;
  4248. display:flex;
  4249. font-family:'Microsoft YaHei', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. font-size:14px;
  4253. color:#CCCCCC;
  4254. text-align:left;
  4255. }
  4256. #u48866 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 8px 2px 8px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u48866_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. visibility:hidden;
  4268. }
  4269. #u48867_div {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:100px;
  4275. height:20px;
  4276. background:inherit;
  4277. background-color:rgba(51, 51, 51, 0);
  4278. border:none;
  4279. border-radius:4px;
  4280. -moz-box-shadow:none;
  4281. -webkit-box-shadow:none;
  4282. box-shadow:none;
  4283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4284. font-weight:400;
  4285. font-style:normal;
  4286. font-size:14px;
  4287. text-align:left;
  4288. }
  4289. #u48867 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:1685px;
  4293. top:393px;
  4294. width:100px;
  4295. height:20px;
  4296. display:flex;
  4297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. font-size:14px;
  4301. text-align:left;
  4302. }
  4303. #u48867 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:0px 0px 0px 0px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u48867_text {
  4311. border-width:0px;
  4312. white-space:nowrap;
  4313. text-transform:none;
  4314. }
  4315. #u48868 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:0px;
  4321. height:0px;
  4322. }
  4323. #u48869_div {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:260px;
  4329. height:60px;
  4330. background:inherit;
  4331. background-color:rgba(0, 153, 255, 0);
  4332. border:none;
  4333. border-radius:4px;
  4334. -moz-box-shadow:none;
  4335. -webkit-box-shadow:none;
  4336. box-shadow:none;
  4337. font-family:'Microsoft YaHei', sans-serif;
  4338. font-weight:400;
  4339. font-style:normal;
  4340. font-size:14px;
  4341. color:#CCCCCC;
  4342. text-align:left;
  4343. }
  4344. #u48869 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:1670px;
  4348. top:250px;
  4349. width:260px;
  4350. height:60px;
  4351. display:flex;
  4352. font-family:'Microsoft YaHei', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:14px;
  4356. color:#CCCCCC;
  4357. text-align:left;
  4358. }
  4359. #u48869 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 8px 2px 8px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u48869_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u48870_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:100px;
  4378. height:20px;
  4379. background:inherit;
  4380. background-color:rgba(51, 51, 51, 0);
  4381. border:none;
  4382. border-radius:4px;
  4383. -moz-box-shadow:none;
  4384. -webkit-box-shadow:none;
  4385. box-shadow:none;
  4386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4387. font-weight:400;
  4388. font-style:normal;
  4389. font-size:14px;
  4390. text-align:left;
  4391. }
  4392. #u48870 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:1685px;
  4396. top:273px;
  4397. width:100px;
  4398. height:20px;
  4399. display:flex;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:14px;
  4404. text-align:left;
  4405. }
  4406. #u48870 .text {
  4407. position:absolute;
  4408. align-self:center;
  4409. padding:0px 0px 0px 0px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u48870_text {
  4414. border-width:0px;
  4415. white-space:nowrap;
  4416. text-transform:none;
  4417. }
  4418. #u48871 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:0px;
  4424. height:0px;
  4425. }
  4426. #u48872_div {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:260px;
  4432. height:60px;
  4433. background:inherit;
  4434. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4435. border:none;
  4436. border-radius:4px;
  4437. -moz-box-shadow:none;
  4438. -webkit-box-shadow:none;
  4439. box-shadow:none;
  4440. font-family:'Microsoft YaHei', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:14px;
  4444. color:#CCCCCC;
  4445. text-align:left;
  4446. }
  4447. #u48872 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:1670px;
  4451. top:310px;
  4452. width:260px;
  4453. height:60px;
  4454. display:flex;
  4455. font-family:'Microsoft YaHei', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:14px;
  4459. color:#CCCCCC;
  4460. text-align:left;
  4461. }
  4462. #u48872 .text {
  4463. position:absolute;
  4464. align-self:center;
  4465. padding:2px 8px 2px 8px;
  4466. box-sizing:border-box;
  4467. width:100%;
  4468. }
  4469. #u48872_text {
  4470. border-width:0px;
  4471. word-wrap:break-word;
  4472. text-transform:none;
  4473. visibility:hidden;
  4474. }
  4475. #u48873_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:100px;
  4481. height:20px;
  4482. background:inherit;
  4483. background-color:rgba(51, 51, 51, 0);
  4484. border:none;
  4485. border-radius:4px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:14px;
  4493. text-align:left;
  4494. }
  4495. #u48873 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:1685px;
  4499. top:333px;
  4500. width:100px;
  4501. height:20px;
  4502. display:flex;
  4503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4504. font-weight:400;
  4505. font-style:normal;
  4506. font-size:14px;
  4507. text-align:left;
  4508. }
  4509. #u48873 .text {
  4510. position:absolute;
  4511. align-self:center;
  4512. padding:0px 0px 0px 0px;
  4513. box-sizing:border-box;
  4514. width:100%;
  4515. }
  4516. #u48873_text {
  4517. border-width:0px;
  4518. white-space:nowrap;
  4519. text-transform:none;
  4520. }
  4521. #u48874_div {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:73px;
  4527. height:25px;
  4528. background:inherit;
  4529. background-color:rgba(255, 255, 255, 0);
  4530. border:none;
  4531. border-radius:0px;
  4532. -moz-box-shadow:none;
  4533. -webkit-box-shadow:none;
  4534. box-shadow:none;
  4535. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4536. font-weight:500;
  4537. font-style:normal;
  4538. font-size:18px;
  4539. }
  4540. #u48874 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:1670px;
  4544. top:77px;
  4545. width:73px;
  4546. height:25px;
  4547. display:flex;
  4548. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4549. font-weight:500;
  4550. font-style:normal;
  4551. font-size:18px;
  4552. }
  4553. #u48874 .text {
  4554. position:absolute;
  4555. align-self:flex-start;
  4556. padding:0px 0px 0px 0px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u48874_text {
  4561. border-width:0px;
  4562. white-space:nowrap;
  4563. text-transform:none;
  4564. }
  4565. #u48875 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:0px;
  4571. height:0px;
  4572. }
  4573. #u48876_div {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:113px;
  4579. height:30px;
  4580. background:inherit;
  4581. background-color:rgba(255, 255, 255, 0);
  4582. border:none;
  4583. border-top:0px;
  4584. border-right:0px;
  4585. border-bottom:0px;
  4586. border-radius:0px;
  4587. border-top-left-radius:0px;
  4588. border-bottom-left-radius:0px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4593. font-weight:500;
  4594. font-style:normal;
  4595. font-size:14px;
  4596. }
  4597. #u48876 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:1988px;
  4601. top:127px;
  4602. width:113px;
  4603. height:30px;
  4604. display:flex;
  4605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4606. font-weight:500;
  4607. font-style:normal;
  4608. font-size:14px;
  4609. }
  4610. #u48876 .text {
  4611. position:absolute;
  4612. align-self:center;
  4613. padding:5px 0px 5px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u48876_text {
  4618. border-width:0px;
  4619. white-space:nowrap;
  4620. text-transform:none;
  4621. }
  4622. #u48877_div {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:463px;
  4628. height:30px;
  4629. background:inherit;
  4630. background-color:rgba(255, 255, 255, 0);
  4631. border:none;
  4632. border-top:0px;
  4633. border-right:0px;
  4634. border-bottom:0px;
  4635. border-radius:0px;
  4636. border-top-left-radius:0px;
  4637. border-bottom-left-radius:0px;
  4638. -moz-box-shadow:none;
  4639. -webkit-box-shadow:none;
  4640. box-shadow:none;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:12px;
  4645. }
  4646. #u48877 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:1988px;
  4650. top:157px;
  4651. width:463px;
  4652. height:30px;
  4653. display:flex;
  4654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:12px;
  4658. }
  4659. #u48877 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:5px 0px 5px 0px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u48877_text {
  4667. border-width:0px;
  4668. white-space:nowrap;
  4669. text-transform:none;
  4670. }
  4671. #u48878 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:0px;
  4677. height:0px;
  4678. }
  4679. #u48879_img {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:50px;
  4685. height:31px;
  4686. }
  4687. #u48879 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:2820px;
  4691. top:125px;
  4692. width:50px;
  4693. height:31px;
  4694. display:flex;
  4695. }
  4696. #u48879 .text {
  4697. position:absolute;
  4698. align-self:center;
  4699. padding:2px 2px 2px 2px;
  4700. box-sizing:border-box;
  4701. width:100%;
  4702. }
  4703. #u48879_text {
  4704. border-width:0px;
  4705. word-wrap:break-word;
  4706. text-transform:none;
  4707. visibility:hidden;
  4708. }
  4709. #u48880_img {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:883px;
  4715. height:2px;
  4716. }
  4717. #u48880 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:1988px;
  4721. top:207px;
  4722. width:882px;
  4723. height:1px;
  4724. display:flex;
  4725. }
  4726. #u48880 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 2px 2px 2px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u48880_text {
  4734. border-width:0px;
  4735. word-wrap:break-word;
  4736. text-transform:none;
  4737. visibility:hidden;
  4738. }
  4739. #u48881_div {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:43px;
  4745. height:30px;
  4746. background:inherit;
  4747. background-color:rgba(255, 255, 255, 0);
  4748. border:none;
  4749. border-top:0px;
  4750. border-right:0px;
  4751. border-bottom:0px;
  4752. border-radius:0px;
  4753. border-top-left-radius:0px;
  4754. border-bottom-left-radius:0px;
  4755. -moz-box-shadow:none;
  4756. -webkit-box-shadow:none;
  4757. box-shadow:none;
  4758. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4759. font-weight:500;
  4760. font-style:normal;
  4761. font-size:14px;
  4762. }
  4763. #u48881 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:700px;
  4767. top:370px;
  4768. width:43px;
  4769. height:30px;
  4770. display:flex;
  4771. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4772. font-weight:500;
  4773. font-style:normal;
  4774. font-size:14px;
  4775. }
  4776. #u48881 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:5px 0px 5px 0px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u48881_text {
  4784. border-width:0px;
  4785. white-space:nowrap;
  4786. text-transform:none;
  4787. }
  4788. #u48882_div {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:37px;
  4794. height:70px;
  4795. background:inherit;
  4796. background-color:rgba(255, 255, 255, 0);
  4797. border:none;
  4798. border-top:0px;
  4799. border-right:0px;
  4800. border-bottom:0px;
  4801. border-radius:0px;
  4802. border-top-left-radius:0px;
  4803. border-bottom-left-radius:0px;
  4804. -moz-box-shadow:none;
  4805. -webkit-box-shadow:none;
  4806. box-shadow:none;
  4807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4808. font-weight:500;
  4809. font-style:normal;
  4810. font-size:14px;
  4811. }
  4812. #u48882 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:716px;
  4816. top:400px;
  4817. width:37px;
  4818. height:70px;
  4819. display:flex;
  4820. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4821. font-weight:500;
  4822. font-style:normal;
  4823. font-size:14px;
  4824. }
  4825. #u48882 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:5px 0px 5px 0px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u48882_text {
  4833. border-width:0px;
  4834. white-space:nowrap;
  4835. text-transform:none;
  4836. }
  4837. #u48883_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:43px;
  4843. height:30px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 0);
  4846. border:none;
  4847. border-top:0px;
  4848. border-right:0px;
  4849. border-bottom:0px;
  4850. border-radius:0px;
  4851. border-top-left-radius:0px;
  4852. border-bottom-left-radius:0px;
  4853. -moz-box-shadow:none;
  4854. -webkit-box-shadow:none;
  4855. box-shadow:none;
  4856. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4857. font-weight:500;
  4858. font-style:normal;
  4859. font-size:14px;
  4860. }
  4861. #u48883 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:700px;
  4865. top:480px;
  4866. width:43px;
  4867. height:30px;
  4868. display:flex;
  4869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4870. font-weight:500;
  4871. font-style:normal;
  4872. font-size:14px;
  4873. }
  4874. #u48883 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:5px 0px 5px 0px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u48883_text {
  4882. border-width:0px;
  4883. white-space:nowrap;
  4884. text-transform:none;
  4885. }
  4886. #u48884_div {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:37px;
  4892. height:70px;
  4893. background:inherit;
  4894. background-color:rgba(255, 255, 255, 0);
  4895. border:none;
  4896. border-top:0px;
  4897. border-right:0px;
  4898. border-bottom:0px;
  4899. border-radius:0px;
  4900. border-top-left-radius:0px;
  4901. border-bottom-left-radius:0px;
  4902. -moz-box-shadow:none;
  4903. -webkit-box-shadow:none;
  4904. box-shadow:none;
  4905. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4906. font-weight:500;
  4907. font-style:normal;
  4908. font-size:14px;
  4909. }
  4910. #u48884 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:716px;
  4914. top:510px;
  4915. width:37px;
  4916. height:70px;
  4917. display:flex;
  4918. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4919. font-weight:500;
  4920. font-style:normal;
  4921. font-size:14px;
  4922. }
  4923. #u48884 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:5px 0px 5px 0px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u48884_text {
  4931. border-width:0px;
  4932. white-space:nowrap;
  4933. text-transform:none;
  4934. }
  4935. #u48885_div {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:43px;
  4941. height:30px;
  4942. background:inherit;
  4943. background-color:rgba(255, 255, 255, 0);
  4944. border:none;
  4945. border-top:0px;
  4946. border-right:0px;
  4947. border-bottom:0px;
  4948. border-radius:0px;
  4949. border-top-left-radius:0px;
  4950. border-bottom-left-radius:0px;
  4951. -moz-box-shadow:none;
  4952. -webkit-box-shadow:none;
  4953. box-shadow:none;
  4954. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4955. font-weight:500;
  4956. font-style:normal;
  4957. font-size:14px;
  4958. }
  4959. #u48885 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:700px;
  4963. top:580px;
  4964. width:43px;
  4965. height:30px;
  4966. display:flex;
  4967. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4968. font-weight:500;
  4969. font-style:normal;
  4970. font-size:14px;
  4971. }
  4972. #u48885 .text {
  4973. position:absolute;
  4974. align-self:center;
  4975. padding:5px 0px 5px 0px;
  4976. box-sizing:border-box;
  4977. width:100%;
  4978. }
  4979. #u48885_text {
  4980. border-width:0px;
  4981. white-space:nowrap;
  4982. text-transform:none;
  4983. }
  4984. #u48886_div {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:37px;
  4990. height:70px;
  4991. background:inherit;
  4992. background-color:rgba(255, 255, 255, 0);
  4993. border:none;
  4994. border-top:0px;
  4995. border-right:0px;
  4996. border-bottom:0px;
  4997. border-radius:0px;
  4998. border-top-left-radius:0px;
  4999. border-bottom-left-radius:0px;
  5000. -moz-box-shadow:none;
  5001. -webkit-box-shadow:none;
  5002. box-shadow:none;
  5003. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5004. font-weight:500;
  5005. font-style:normal;
  5006. font-size:14px;
  5007. }
  5008. #u48886 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:716px;
  5012. top:610px;
  5013. width:37px;
  5014. height:70px;
  5015. display:flex;
  5016. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5017. font-weight:500;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. }
  5021. #u48886 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:5px 0px 5px 0px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u48886_text {
  5029. border-width:0px;
  5030. white-space:nowrap;
  5031. text-transform:none;
  5032. }
  5033. #u48887_div {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:43px;
  5039. height:30px;
  5040. background:inherit;
  5041. background-color:rgba(255, 255, 255, 0);
  5042. border:none;
  5043. border-top:0px;
  5044. border-right:0px;
  5045. border-bottom:0px;
  5046. border-radius:0px;
  5047. border-top-left-radius:0px;
  5048. border-bottom-left-radius:0px;
  5049. -moz-box-shadow:none;
  5050. -webkit-box-shadow:none;
  5051. box-shadow:none;
  5052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5053. font-weight:500;
  5054. font-style:normal;
  5055. font-size:14px;
  5056. }
  5057. #u48887 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:700px;
  5061. top:685px;
  5062. width:43px;
  5063. height:30px;
  5064. display:flex;
  5065. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5066. font-weight:500;
  5067. font-style:normal;
  5068. font-size:14px;
  5069. }
  5070. #u48887 .text {
  5071. position:absolute;
  5072. align-self:center;
  5073. padding:5px 0px 5px 0px;
  5074. box-sizing:border-box;
  5075. width:100%;
  5076. }
  5077. #u48887_text {
  5078. border-width:0px;
  5079. white-space:nowrap;
  5080. text-transform:none;
  5081. }
  5082. #u48888_div {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:37px;
  5088. height:70px;
  5089. background:inherit;
  5090. background-color:rgba(255, 255, 255, 0);
  5091. border:none;
  5092. border-top:0px;
  5093. border-right:0px;
  5094. border-bottom:0px;
  5095. border-radius:0px;
  5096. border-top-left-radius:0px;
  5097. border-bottom-left-radius:0px;
  5098. -moz-box-shadow:none;
  5099. -webkit-box-shadow:none;
  5100. box-shadow:none;
  5101. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5102. font-weight:500;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. }
  5106. #u48888 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:716px;
  5110. top:715px;
  5111. width:37px;
  5112. height:70px;
  5113. display:flex;
  5114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5115. font-weight:500;
  5116. font-style:normal;
  5117. font-size:14px;
  5118. }
  5119. #u48888 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:5px 0px 5px 0px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u48888_text {
  5127. border-width:0px;
  5128. white-space:nowrap;
  5129. text-transform:none;
  5130. }
  5131. #u48889 label {
  5132. left:0px;
  5133. width:100%;
  5134. }
  5135. #u48889_img {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:12px;
  5141. height:12px;
  5142. }
  5143. #u48889 {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:685px;
  5147. top:377px;
  5148. width:100px;
  5149. height:16px;
  5150. display:flex;
  5151. }
  5152. #u48889 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:0px 2px 0px 2px;
  5156. box-sizing:border-box;
  5157. }
  5158. #u48889_img.selected {
  5159. }
  5160. #u48889.selected {
  5161. }
  5162. #u48889_img.disabled {
  5163. }
  5164. #u48889.disabled {
  5165. }
  5166. #u48889_img.selectedDisabled {
  5167. }
  5168. #u48889.selectedDisabled {
  5169. }
  5170. #u48889_text {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:14px;
  5174. top:0px;
  5175. width:84px;
  5176. word-wrap:break-word;
  5177. text-transform:none;
  5178. visibility:hidden;
  5179. }
  5180. #u48889_input {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:0px;
  5186. height:0px;
  5187. opacity:0;
  5188. }
  5189. #u48890 label {
  5190. left:0px;
  5191. width:100%;
  5192. }
  5193. #u48890_img {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:12px;
  5199. height:12px;
  5200. }
  5201. #u48890 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:700px;
  5205. top:409px;
  5206. width:100px;
  5207. height:16px;
  5208. display:flex;
  5209. }
  5210. #u48890 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:0px 2px 0px 2px;
  5214. box-sizing:border-box;
  5215. }
  5216. #u48890_img.selected {
  5217. }
  5218. #u48890.selected {
  5219. }
  5220. #u48890_img.disabled {
  5221. }
  5222. #u48890.disabled {
  5223. }
  5224. #u48890_img.selectedDisabled {
  5225. }
  5226. #u48890.selectedDisabled {
  5227. }
  5228. #u48890_text {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:14px;
  5232. top:0px;
  5233. width:84px;
  5234. word-wrap:break-word;
  5235. text-transform:none;
  5236. visibility:hidden;
  5237. }
  5238. #u48890_input {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:0px;
  5244. height:0px;
  5245. opacity:0;
  5246. }
  5247. #u48891 label {
  5248. left:0px;
  5249. width:100%;
  5250. }
  5251. #u48891_img {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:12px;
  5257. height:12px;
  5258. }
  5259. #u48891 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:700px;
  5263. top:429px;
  5264. width:100px;
  5265. height:16px;
  5266. display:flex;
  5267. }
  5268. #u48891 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:0px 2px 0px 2px;
  5272. box-sizing:border-box;
  5273. }
  5274. #u48891_img.selected {
  5275. }
  5276. #u48891.selected {
  5277. }
  5278. #u48891_img.disabled {
  5279. }
  5280. #u48891.disabled {
  5281. }
  5282. #u48891_img.selectedDisabled {
  5283. }
  5284. #u48891.selectedDisabled {
  5285. }
  5286. #u48891_text {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:14px;
  5290. top:0px;
  5291. width:84px;
  5292. word-wrap:break-word;
  5293. text-transform:none;
  5294. visibility:hidden;
  5295. }
  5296. #u48891_input {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:0px;
  5302. height:0px;
  5303. opacity:0;
  5304. }
  5305. #u48892 label {
  5306. left:0px;
  5307. width:100%;
  5308. }
  5309. #u48892_img {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:12px;
  5315. height:12px;
  5316. }
  5317. #u48892 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:700px;
  5321. top:449px;
  5322. width:100px;
  5323. height:16px;
  5324. display:flex;
  5325. }
  5326. #u48892 .text {
  5327. position:absolute;
  5328. align-self:center;
  5329. padding:0px 2px 0px 2px;
  5330. box-sizing:border-box;
  5331. }
  5332. #u48892_img.selected {
  5333. }
  5334. #u48892.selected {
  5335. }
  5336. #u48892_img.disabled {
  5337. }
  5338. #u48892.disabled {
  5339. }
  5340. #u48892_img.selectedDisabled {
  5341. }
  5342. #u48892.selectedDisabled {
  5343. }
  5344. #u48892_text {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:14px;
  5348. top:0px;
  5349. width:84px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. visibility:hidden;
  5353. }
  5354. #u48892_input {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:0px;
  5360. height:0px;
  5361. opacity:0;
  5362. }
  5363. #u48893 label {
  5364. left:0px;
  5365. width:100%;
  5366. }
  5367. #u48893_img {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:12px;
  5373. height:12px;
  5374. }
  5375. #u48893 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:685px;
  5379. top:488px;
  5380. width:100px;
  5381. height:16px;
  5382. display:flex;
  5383. }
  5384. #u48893 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:0px 2px 0px 2px;
  5388. box-sizing:border-box;
  5389. }
  5390. #u48893_img.selected {
  5391. }
  5392. #u48893.selected {
  5393. }
  5394. #u48893_img.disabled {
  5395. }
  5396. #u48893.disabled {
  5397. }
  5398. #u48893_img.selectedDisabled {
  5399. }
  5400. #u48893.selectedDisabled {
  5401. }
  5402. #u48893_text {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:14px;
  5406. top:0px;
  5407. width:84px;
  5408. word-wrap:break-word;
  5409. text-transform:none;
  5410. visibility:hidden;
  5411. }
  5412. #u48893_input {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:0px;
  5418. height:0px;
  5419. opacity:0;
  5420. }
  5421. #u48894 label {
  5422. left:0px;
  5423. width:100%;
  5424. }
  5425. #u48894_img {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:12px;
  5431. height:12px;
  5432. }
  5433. #u48894 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:700px;
  5437. top:520px;
  5438. width:100px;
  5439. height:16px;
  5440. display:flex;
  5441. }
  5442. #u48894 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:0px 2px 0px 2px;
  5446. box-sizing:border-box;
  5447. }
  5448. #u48894_img.selected {
  5449. }
  5450. #u48894.selected {
  5451. }
  5452. #u48894_img.disabled {
  5453. }
  5454. #u48894.disabled {
  5455. }
  5456. #u48894_img.selectedDisabled {
  5457. }
  5458. #u48894.selectedDisabled {
  5459. }
  5460. #u48894_text {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:14px;
  5464. top:0px;
  5465. width:84px;
  5466. word-wrap:break-word;
  5467. text-transform:none;
  5468. visibility:hidden;
  5469. }
  5470. #u48894_input {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:0px;
  5476. height:0px;
  5477. opacity:0;
  5478. }
  5479. #u48895 label {
  5480. left:0px;
  5481. width:100%;
  5482. }
  5483. #u48895_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:12px;
  5489. height:12px;
  5490. }
  5491. #u48895 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:700px;
  5495. top:540px;
  5496. width:100px;
  5497. height:16px;
  5498. display:flex;
  5499. }
  5500. #u48895 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:0px 2px 0px 2px;
  5504. box-sizing:border-box;
  5505. }
  5506. #u48895_img.selected {
  5507. }
  5508. #u48895.selected {
  5509. }
  5510. #u48895_img.disabled {
  5511. }
  5512. #u48895.disabled {
  5513. }
  5514. #u48895_img.selectedDisabled {
  5515. }
  5516. #u48895.selectedDisabled {
  5517. }
  5518. #u48895_text {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:14px;
  5522. top:0px;
  5523. width:84px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u48895_input {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:0px;
  5534. height:0px;
  5535. opacity:0;
  5536. }
  5537. #u48896 label {
  5538. left:0px;
  5539. width:100%;
  5540. }
  5541. #u48896_img {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:12px;
  5547. height:12px;
  5548. }
  5549. #u48896 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:700px;
  5553. top:560px;
  5554. width:100px;
  5555. height:16px;
  5556. display:flex;
  5557. }
  5558. #u48896 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:0px 2px 0px 2px;
  5562. box-sizing:border-box;
  5563. }
  5564. #u48896_img.selected {
  5565. }
  5566. #u48896.selected {
  5567. }
  5568. #u48896_img.disabled {
  5569. }
  5570. #u48896.disabled {
  5571. }
  5572. #u48896_img.selectedDisabled {
  5573. }
  5574. #u48896.selectedDisabled {
  5575. }
  5576. #u48896_text {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:14px;
  5580. top:0px;
  5581. width:84px;
  5582. word-wrap:break-word;
  5583. text-transform:none;
  5584. visibility:hidden;
  5585. }
  5586. #u48896_input {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:0px;
  5592. height:0px;
  5593. opacity:0;
  5594. }
  5595. #u48897 label {
  5596. left:0px;
  5597. width:100%;
  5598. }
  5599. #u48897_img {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:12px;
  5605. height:12px;
  5606. }
  5607. #u48897 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:685px;
  5611. top:589px;
  5612. width:100px;
  5613. height:16px;
  5614. display:flex;
  5615. }
  5616. #u48897 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:0px 2px 0px 2px;
  5620. box-sizing:border-box;
  5621. }
  5622. #u48897_img.selected {
  5623. }
  5624. #u48897.selected {
  5625. }
  5626. #u48897_img.disabled {
  5627. }
  5628. #u48897.disabled {
  5629. }
  5630. #u48897_img.selectedDisabled {
  5631. }
  5632. #u48897.selectedDisabled {
  5633. }
  5634. #u48897_text {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:14px;
  5638. top:0px;
  5639. width:84px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. visibility:hidden;
  5643. }
  5644. #u48897_input {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:0px;
  5650. height:0px;
  5651. opacity:0;
  5652. }
  5653. #u48898 label {
  5654. left:0px;
  5655. width:100%;
  5656. }
  5657. #u48898_img {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:12px;
  5663. height:12px;
  5664. }
  5665. #u48898 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:700px;
  5669. top:621px;
  5670. width:100px;
  5671. height:16px;
  5672. display:flex;
  5673. }
  5674. #u48898 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:0px 2px 0px 2px;
  5678. box-sizing:border-box;
  5679. }
  5680. #u48898_img.selected {
  5681. }
  5682. #u48898.selected {
  5683. }
  5684. #u48898_img.disabled {
  5685. }
  5686. #u48898.disabled {
  5687. }
  5688. #u48898_img.selectedDisabled {
  5689. }
  5690. #u48898.selectedDisabled {
  5691. }
  5692. #u48898_text {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:14px;
  5696. top:0px;
  5697. width:84px;
  5698. word-wrap:break-word;
  5699. text-transform:none;
  5700. visibility:hidden;
  5701. }
  5702. #u48898_input {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:0px;
  5708. height:0px;
  5709. opacity:0;
  5710. }
  5711. #u48899 label {
  5712. left:0px;
  5713. width:100%;
  5714. }
  5715. #u48899_img {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:12px;
  5721. height:12px;
  5722. }
  5723. #u48899 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:700px;
  5727. top:641px;
  5728. width:100px;
  5729. height:16px;
  5730. display:flex;
  5731. }
  5732. #u48899 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:0px 2px 0px 2px;
  5736. box-sizing:border-box;
  5737. }
  5738. #u48899_img.selected {
  5739. }
  5740. #u48899.selected {
  5741. }
  5742. #u48899_img.disabled {
  5743. }
  5744. #u48899.disabled {
  5745. }
  5746. #u48899_img.selectedDisabled {
  5747. }
  5748. #u48899.selectedDisabled {
  5749. }
  5750. #u48899_text {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:14px;
  5754. top:0px;
  5755. width:84px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u48899_input {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:0px;
  5766. height:0px;
  5767. opacity:0;
  5768. }
  5769. #u48900 label {
  5770. left:0px;
  5771. width:100%;
  5772. }
  5773. #u48900_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:12px;
  5779. height:12px;
  5780. }
  5781. #u48900 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:700px;
  5785. top:661px;
  5786. width:100px;
  5787. height:16px;
  5788. display:flex;
  5789. }
  5790. #u48900 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:0px 2px 0px 2px;
  5794. box-sizing:border-box;
  5795. }
  5796. #u48900_img.selected {
  5797. }
  5798. #u48900.selected {
  5799. }
  5800. #u48900_img.disabled {
  5801. }
  5802. #u48900.disabled {
  5803. }
  5804. #u48900_img.selectedDisabled {
  5805. }
  5806. #u48900.selectedDisabled {
  5807. }
  5808. #u48900_text {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:14px;
  5812. top:0px;
  5813. width:84px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u48900_input {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:0px;
  5824. height:0px;
  5825. opacity:0;
  5826. }
  5827. #u48901 label {
  5828. left:0px;
  5829. width:100%;
  5830. }
  5831. #u48901_img {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:12px;
  5837. height:12px;
  5838. }
  5839. #u48901 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:685px;
  5843. top:696px;
  5844. width:100px;
  5845. height:16px;
  5846. display:flex;
  5847. }
  5848. #u48901 .text {
  5849. position:absolute;
  5850. align-self:center;
  5851. padding:0px 2px 0px 2px;
  5852. box-sizing:border-box;
  5853. }
  5854. #u48901_img.selected {
  5855. }
  5856. #u48901.selected {
  5857. }
  5858. #u48901_img.disabled {
  5859. }
  5860. #u48901.disabled {
  5861. }
  5862. #u48901_img.selectedDisabled {
  5863. }
  5864. #u48901.selectedDisabled {
  5865. }
  5866. #u48901_text {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:14px;
  5870. top:0px;
  5871. width:84px;
  5872. word-wrap:break-word;
  5873. text-transform:none;
  5874. visibility:hidden;
  5875. }
  5876. #u48901_input {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:0px;
  5882. height:0px;
  5883. opacity:0;
  5884. }
  5885. #u48902 label {
  5886. left:0px;
  5887. width:100%;
  5888. }
  5889. #u48902_img {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:12px;
  5895. height:12px;
  5896. }
  5897. #u48902 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:700px;
  5901. top:728px;
  5902. width:100px;
  5903. height:16px;
  5904. display:flex;
  5905. }
  5906. #u48902 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:0px 2px 0px 2px;
  5910. box-sizing:border-box;
  5911. }
  5912. #u48902_img.selected {
  5913. }
  5914. #u48902.selected {
  5915. }
  5916. #u48902_img.disabled {
  5917. }
  5918. #u48902.disabled {
  5919. }
  5920. #u48902_img.selectedDisabled {
  5921. }
  5922. #u48902.selectedDisabled {
  5923. }
  5924. #u48902_text {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:14px;
  5928. top:0px;
  5929. width:84px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u48902_input {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:0px;
  5940. height:0px;
  5941. opacity:0;
  5942. }
  5943. #u48903 label {
  5944. left:0px;
  5945. width:100%;
  5946. }
  5947. #u48903_img {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:12px;
  5953. height:12px;
  5954. }
  5955. #u48903 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:700px;
  5959. top:748px;
  5960. width:100px;
  5961. height:16px;
  5962. display:flex;
  5963. }
  5964. #u48903 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:0px 2px 0px 2px;
  5968. box-sizing:border-box;
  5969. }
  5970. #u48903_img.selected {
  5971. }
  5972. #u48903.selected {
  5973. }
  5974. #u48903_img.disabled {
  5975. }
  5976. #u48903.disabled {
  5977. }
  5978. #u48903_img.selectedDisabled {
  5979. }
  5980. #u48903.selectedDisabled {
  5981. }
  5982. #u48903_text {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:14px;
  5986. top:0px;
  5987. width:84px;
  5988. word-wrap:break-word;
  5989. text-transform:none;
  5990. visibility:hidden;
  5991. }
  5992. #u48903_input {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:0px;
  5998. height:0px;
  5999. opacity:0;
  6000. }
  6001. #u48904 label {
  6002. left:0px;
  6003. width:100%;
  6004. }
  6005. #u48904_img {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:12px;
  6011. height:12px;
  6012. }
  6013. #u48904 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:700px;
  6017. top:768px;
  6018. width:100px;
  6019. height:16px;
  6020. display:flex;
  6021. }
  6022. #u48904 .text {
  6023. position:absolute;
  6024. align-self:center;
  6025. padding:0px 2px 0px 2px;
  6026. box-sizing:border-box;
  6027. }
  6028. #u48904_img.selected {
  6029. }
  6030. #u48904.selected {
  6031. }
  6032. #u48904_img.disabled {
  6033. }
  6034. #u48904.disabled {
  6035. }
  6036. #u48904_img.selectedDisabled {
  6037. }
  6038. #u48904.selectedDisabled {
  6039. }
  6040. #u48904_text {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:14px;
  6044. top:0px;
  6045. width:84px;
  6046. word-wrap:break-word;
  6047. text-transform:none;
  6048. visibility:hidden;
  6049. }
  6050. #u48904_input {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:0px;
  6054. top:0px;
  6055. width:0px;
  6056. height:0px;
  6057. opacity:0;
  6058. }