styles.css 233 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3234px;
  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. #u4624_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u4624 {
  37. border-width:0px;
  38. position:absolute;
  39. left:1683px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u4624 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u4624_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u4625_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u4625 {
  76. border-width:0px;
  77. position:absolute;
  78. left:1634px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u4625 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u4625_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u4626 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u4627_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u4627 {
  115. border-width:0px;
  116. position:absolute;
  117. left:1653px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u4627 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u4627_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u4628_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u4628 {
  156. border-width:0px;
  157. position:absolute;
  158. left:1696px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u4628 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u4628_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u4629_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u4629 {
  198. border-width:0px;
  199. position:absolute;
  200. left:1634px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u4629 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u4629_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u4630_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u4630 {
  236. border-width:0px;
  237. position:absolute;
  238. left:1754px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u4630 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u4630_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u4631 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u4632_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. #u4632 {
  286. border-width:0px;
  287. position:absolute;
  288. left:1673px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u4632 .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. #u4632_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u4633_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u4633 {
  320. border-width:0px;
  321. position:absolute;
  322. left:1654px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u4633 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u4633_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u4634 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u4635_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. #u4635 {
  370. border-width:0px;
  371. position:absolute;
  372. left:1673px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u4635 .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. #u4635_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u4636_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u4636 {
  404. border-width:0px;
  405. position:absolute;
  406. left:1654px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u4636 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u4636_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u4637 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u4638_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u4638 {
  453. border-width:0px;
  454. position:absolute;
  455. left:1693px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u4638 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u4638_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u4639_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u4639 {
  486. border-width:0px;
  487. position:absolute;
  488. left:1661px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u4639 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u4639_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u4640 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u4641_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u4641 {
  535. border-width:0px;
  536. position:absolute;
  537. left:1693px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u4641 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u4641_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u4642_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u4642 {
  568. border-width:0px;
  569. position:absolute;
  570. left:1661px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u4642 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u4642_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u4643 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u4644_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u4644 {
  618. border-width:0px;
  619. position:absolute;
  620. left:1673px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u4644 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u4644_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u4645_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u4645 {
  652. border-width:0px;
  653. position:absolute;
  654. left:1654px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u4645 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u4645_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u4646 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u4647_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u4647 {
  702. border-width:0px;
  703. position:absolute;
  704. left:1673px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u4647 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u4647_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u4648_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u4648 {
  736. border-width:0px;
  737. position:absolute;
  738. left:1654px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u4648 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u4648_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u4649 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u4650_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u4650 {
  786. border-width:0px;
  787. position:absolute;
  788. left:1673px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u4650 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u4650_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u4651_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u4651 {
  820. border-width:0px;
  821. position:absolute;
  822. left:1654px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u4651 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u4651_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u4652 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u4653_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u4653 {
  870. border-width:0px;
  871. position:absolute;
  872. left:1673px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u4653 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u4653_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u4654_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u4654 {
  904. border-width:0px;
  905. position:absolute;
  906. left:1654px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u4654 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u4654_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u4655 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u4656_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u4656 {
  954. border-width:0px;
  955. position:absolute;
  956. left:1673px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u4656 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u4656_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u4657_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u4657 {
  988. border-width:0px;
  989. position:absolute;
  990. left:1654px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u4657 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u4657_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u4658 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u4659_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u4659 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:1673px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u4659 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u4659_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u4660_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u4660 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:1654px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u4660 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u4660_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u4661_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u4661_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u4661_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u4661 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:2855px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u4661 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u4661_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u4661.disabled {
  1184. }
  1185. .u4661_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u4662_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u4662 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:2828px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u4662 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u4662_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u4663_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u4663 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:3114px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u4663 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u4663_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u4664_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u4664 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:3086px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u4664 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u4664_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u4665 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u4666_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u4666 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:1673px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u4666 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u4666_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u4667_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u4667 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:1654px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u4667 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u4667_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u4668 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u4669_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u4669 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:1673px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u4669 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u4669_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u4670_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u4670 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1654px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u4670 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u4670_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u4671 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u4672_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u4672 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:1673px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u4672 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u4672_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u4673_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u4673 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:1654px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u4673 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u4673_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u4674 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u4675_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u4675 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:1673px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u4675 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u4675_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u4676_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u4676 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:1654px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u4676 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u4676_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u4677 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u4678_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u4678 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:1673px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u4678 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u4678_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u4679_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u4679 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:1654px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u4679 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u4679_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u4681_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:129px;
  1720. height:22px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 0);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:none;
  1726. -webkit-box-shadow:none;
  1727. box-shadow:none;
  1728. font-size:16px;
  1729. color:#FFFFFF;
  1730. }
  1731. #u4681 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:49px;
  1735. top:14px;
  1736. width:129px;
  1737. height:22px;
  1738. display:flex;
  1739. font-size:16px;
  1740. color:#FFFFFF;
  1741. }
  1742. #u4681 .text {
  1743. position:absolute;
  1744. align-self:flex-start;
  1745. padding:0px 0px 0px 0px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u4681_text {
  1750. border-width:0px;
  1751. white-space:nowrap;
  1752. text-transform:none;
  1753. }
  1754. #u4682_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:1600px;
  1760. height:50px;
  1761. background:inherit;
  1762. background-color:rgba(30, 42, 68, 1);
  1763. border:none;
  1764. border-radius:0px;
  1765. -moz-box-shadow:none;
  1766. -webkit-box-shadow:none;
  1767. box-shadow:none;
  1768. color:#AFB3B6;
  1769. }
  1770. #u4682 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:1600px;
  1776. height:50px;
  1777. display:flex;
  1778. color:#AFB3B6;
  1779. }
  1780. #u4682 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u4682_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. visibility:hidden;
  1792. }
  1793. #u4683 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:0px;
  1799. height:0px;
  1800. }
  1801. #u4684_img {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:0px;
  1805. top:0px;
  1806. width:31px;
  1807. height:31px;
  1808. }
  1809. #u4684 {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:19px;
  1813. top:10px;
  1814. width:31px;
  1815. height:31px;
  1816. display:flex;
  1817. }
  1818. #u4684 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 2px 2px 2px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u4684_text {
  1826. border-width:0px;
  1827. word-wrap:break-word;
  1828. text-transform:none;
  1829. }
  1830. #u4685_div {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:161px;
  1836. height:22px;
  1837. background:inherit;
  1838. background-color:rgba(255, 255, 255, 0);
  1839. border:none;
  1840. border-radius:0px;
  1841. -moz-box-shadow:none;
  1842. -webkit-box-shadow:none;
  1843. box-shadow:none;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:16px;
  1848. color:#FFFFFF;
  1849. }
  1850. #u4685 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:62px;
  1854. top:14px;
  1855. width:161px;
  1856. height:22px;
  1857. display:flex;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:16px;
  1862. color:#FFFFFF;
  1863. }
  1864. #u4685 .text {
  1865. position:absolute;
  1866. align-self:flex-start;
  1867. padding:0px 0px 0px 0px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u4685_text {
  1872. border-width:0px;
  1873. white-space:nowrap;
  1874. text-transform:none;
  1875. }
  1876. #u4686_div {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:120px;
  1882. height:1200px;
  1883. background:inherit;
  1884. background-color:rgba(30, 42, 68, 1);
  1885. border:none;
  1886. border-radius:0px;
  1887. -moz-box-shadow:none;
  1888. -webkit-box-shadow:none;
  1889. box-shadow:none;
  1890. color:#AFB3B6;
  1891. }
  1892. #u4686 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:47px;
  1897. width:120px;
  1898. height:1200px;
  1899. display:flex;
  1900. color:#AFB3B6;
  1901. }
  1902. #u4686 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 2px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u4686_text {
  1910. border-width:0px;
  1911. word-wrap:break-word;
  1912. text-transform:none;
  1913. visibility:hidden;
  1914. }
  1915. #u4687_div {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:1480px;
  1921. height:1200px;
  1922. background:inherit;
  1923. background-color:rgba(242, 242, 242, 1);
  1924. border:none;
  1925. border-radius:0px;
  1926. -moz-box-shadow:none;
  1927. -webkit-box-shadow:none;
  1928. box-shadow:none;
  1929. }
  1930. #u4687 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:120px;
  1934. top:50px;
  1935. width:1480px;
  1936. height:1200px;
  1937. display:flex;
  1938. }
  1939. #u4687 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:2px 2px 2px 2px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u4687_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. visibility:hidden;
  1951. }
  1952. #u4688 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:0px;
  1958. height:0px;
  1959. }
  1960. #u4689_div {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:33px;
  1966. height:22px;
  1967. background:inherit;
  1968. background-color:rgba(255, 255, 255, 0);
  1969. border:none;
  1970. border-radius:0px;
  1971. -moz-box-shadow:none;
  1972. -webkit-box-shadow:none;
  1973. box-shadow:none;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:16px;
  1978. color:#FFFFFF;
  1979. }
  1980. #u4689 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:39px;
  1984. top:67px;
  1985. width:33px;
  1986. height:22px;
  1987. display:flex;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:16px;
  1992. color:#FFFFFF;
  1993. }
  1994. #u4689 .text {
  1995. position:absolute;
  1996. align-self:flex-start;
  1997. padding:0px 0px 0px 0px;
  1998. box-sizing:border-box;
  1999. width:100%;
  2000. }
  2001. #u4689_text {
  2002. border-width:0px;
  2003. white-space:nowrap;
  2004. text-transform:none;
  2005. }
  2006. #u4690_img {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:14px;
  2012. height:14px;
  2013. }
  2014. #u4690 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:20px;
  2018. top:71px;
  2019. width:14px;
  2020. height:14px;
  2021. display:flex;
  2022. }
  2023. #u4690 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 2px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u4690_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. visibility:hidden;
  2035. }
  2036. #u4691 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:0px;
  2042. height:0px;
  2043. }
  2044. #u4692_div {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:33px;
  2050. height:22px;
  2051. background:inherit;
  2052. background-color:rgba(255, 255, 255, 0);
  2053. border:none;
  2054. border-radius:0px;
  2055. -moz-box-shadow:none;
  2056. -webkit-box-shadow:none;
  2057. box-shadow:none;
  2058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2059. font-weight:400;
  2060. font-style:normal;
  2061. font-size:16px;
  2062. color:#FFFFFF;
  2063. }
  2064. #u4692 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:39px;
  2068. top:109px;
  2069. width:33px;
  2070. height:22px;
  2071. display:flex;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:16px;
  2076. color:#FFFFFF;
  2077. }
  2078. #u4692 .text {
  2079. position:absolute;
  2080. align-self:flex-start;
  2081. padding:0px 0px 0px 0px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u4692_text {
  2086. border-width:0px;
  2087. white-space:nowrap;
  2088. text-transform:none;
  2089. }
  2090. #u4693_img {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:14px;
  2096. height:14px;
  2097. }
  2098. #u4693 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:20px;
  2102. top:113px;
  2103. width:14px;
  2104. height:14px;
  2105. display:flex;
  2106. }
  2107. #u4693 .text {
  2108. position:absolute;
  2109. align-self:center;
  2110. padding:2px 2px 2px 2px;
  2111. box-sizing:border-box;
  2112. width:100%;
  2113. }
  2114. #u4693_text {
  2115. border-width:0px;
  2116. word-wrap:break-word;
  2117. text-transform:none;
  2118. visibility:hidden;
  2119. }
  2120. #u4694 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:0px;
  2126. height:0px;
  2127. }
  2128. #u4695_div {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:29px;
  2134. height:20px;
  2135. background:inherit;
  2136. background-color:rgba(255, 255, 255, 0);
  2137. border:none;
  2138. border-radius:25px;
  2139. -moz-box-shadow:none;
  2140. -webkit-box-shadow:none;
  2141. box-shadow:none;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. color:#FFFFFF;
  2146. }
  2147. #u4695 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:59px;
  2151. top:1141px;
  2152. width:29px;
  2153. height:20px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. color:#FFFFFF;
  2159. }
  2160. #u4695 .text {
  2161. position:absolute;
  2162. align-self:center;
  2163. padding:0px 0px 0px 0px;
  2164. box-sizing:border-box;
  2165. width:100%;
  2166. }
  2167. #u4695_text {
  2168. border-width:0px;
  2169. white-space:nowrap;
  2170. text-transform:none;
  2171. }
  2172. #u4696_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:22px;
  2178. height:22px;
  2179. }
  2180. #u4696 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:27px;
  2184. top:1140px;
  2185. width:22px;
  2186. height:22px;
  2187. display:flex;
  2188. }
  2189. #u4696 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 2px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u4696_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. visibility:hidden;
  2201. }
  2202. #u4697 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:0px;
  2208. height:0px;
  2209. }
  2210. #u4698_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:29px;
  2216. height:20px;
  2217. background:inherit;
  2218. background-color:rgba(255, 255, 255, 0);
  2219. border:none;
  2220. border-radius:25px;
  2221. -moz-box-shadow:none;
  2222. -webkit-box-shadow:none;
  2223. box-shadow:none;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. color:#FFFFFF;
  2228. }
  2229. #u4698 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:59px;
  2233. top:1183px;
  2234. width:29px;
  2235. height:20px;
  2236. display:flex;
  2237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2238. font-weight:400;
  2239. font-style:normal;
  2240. color:#FFFFFF;
  2241. }
  2242. #u4698 .text {
  2243. position:absolute;
  2244. align-self:center;
  2245. padding:0px 0px 0px 0px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u4698_text {
  2250. border-width:0px;
  2251. white-space:nowrap;
  2252. text-transform:none;
  2253. }
  2254. #u4699_img {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:22px;
  2260. height:22px;
  2261. }
  2262. #u4699 {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:27px;
  2266. top:1182px;
  2267. width:22px;
  2268. height:22px;
  2269. display:flex;
  2270. }
  2271. #u4699 .text {
  2272. position:absolute;
  2273. align-self:center;
  2274. padding:2px 2px 2px 2px;
  2275. box-sizing:border-box;
  2276. width:100%;
  2277. }
  2278. #u4699_text {
  2279. border-width:0px;
  2280. word-wrap:break-word;
  2281. text-transform:none;
  2282. visibility:hidden;
  2283. }
  2284. #u4700 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:0px;
  2290. height:0px;
  2291. }
  2292. #u4701_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:33px;
  2298. height:22px;
  2299. background:inherit;
  2300. background-color:rgba(255, 255, 255, 0);
  2301. border:none;
  2302. border-radius:0px;
  2303. -moz-box-shadow:none;
  2304. -webkit-box-shadow:none;
  2305. box-shadow:none;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:16px;
  2310. color:#FFFFFF;
  2311. }
  2312. #u4701 {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:39px;
  2316. top:277px;
  2317. width:33px;
  2318. height:22px;
  2319. display:flex;
  2320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:16px;
  2324. color:#FFFFFF;
  2325. }
  2326. #u4701 .text {
  2327. position:absolute;
  2328. align-self:flex-start;
  2329. padding:0px 0px 0px 0px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u4701_text {
  2334. border-width:0px;
  2335. white-space:nowrap;
  2336. text-transform:none;
  2337. }
  2338. #u4702_img {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:14px;
  2344. height:14px;
  2345. }
  2346. #u4702 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:20px;
  2350. top:281px;
  2351. width:14px;
  2352. height:14px;
  2353. display:flex;
  2354. }
  2355. #u4702 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 2px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u4702_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u4703 {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:0px;
  2374. height:0px;
  2375. }
  2376. #u4704_div {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:33px;
  2382. height:22px;
  2383. background:inherit;
  2384. background-color:rgba(255, 255, 255, 0);
  2385. border:none;
  2386. border-radius:0px;
  2387. -moz-box-shadow:none;
  2388. -webkit-box-shadow:none;
  2389. box-shadow:none;
  2390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:16px;
  2394. color:#FFFFFF;
  2395. }
  2396. #u4704 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:39px;
  2400. top:235px;
  2401. width:33px;
  2402. height:22px;
  2403. display:flex;
  2404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. font-size:16px;
  2408. color:#FFFFFF;
  2409. }
  2410. #u4704 .text {
  2411. position:absolute;
  2412. align-self:flex-start;
  2413. padding:0px 0px 0px 0px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u4704_text {
  2418. border-width:0px;
  2419. white-space:nowrap;
  2420. text-transform:none;
  2421. }
  2422. #u4705_img {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:14px;
  2428. height:14px;
  2429. }
  2430. #u4705 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:20px;
  2434. top:239px;
  2435. width:14px;
  2436. height:14px;
  2437. display:flex;
  2438. }
  2439. #u4705 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:2px 2px 2px 2px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u4705_text {
  2447. border-width:0px;
  2448. word-wrap:break-word;
  2449. text-transform:none;
  2450. visibility:hidden;
  2451. }
  2452. #u4706 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:0px;
  2458. height:0px;
  2459. }
  2460. #u4707_div {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:33px;
  2466. height:22px;
  2467. background:inherit;
  2468. background-color:rgba(255, 255, 255, 0);
  2469. border:none;
  2470. border-radius:0px;
  2471. -moz-box-shadow:none;
  2472. -webkit-box-shadow:none;
  2473. box-shadow:none;
  2474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:16px;
  2478. color:#FFFFFF;
  2479. }
  2480. #u4707 {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:39px;
  2484. top:403px;
  2485. width:33px;
  2486. height:22px;
  2487. display:flex;
  2488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2489. font-weight:400;
  2490. font-style:normal;
  2491. font-size:16px;
  2492. color:#FFFFFF;
  2493. }
  2494. #u4707 .text {
  2495. position:absolute;
  2496. align-self:flex-start;
  2497. padding:0px 0px 0px 0px;
  2498. box-sizing:border-box;
  2499. width:100%;
  2500. }
  2501. #u4707_text {
  2502. border-width:0px;
  2503. white-space:nowrap;
  2504. text-transform:none;
  2505. }
  2506. #u4708_img {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:14px;
  2512. height:14px;
  2513. }
  2514. #u4708 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:20px;
  2518. top:407px;
  2519. width:14px;
  2520. height:14px;
  2521. display:flex;
  2522. }
  2523. #u4708 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:2px 2px 2px 2px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u4708_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. visibility:hidden;
  2535. }
  2536. #u4709 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:0px;
  2542. height:0px;
  2543. }
  2544. #u4710_div {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:33px;
  2550. height:22px;
  2551. background:inherit;
  2552. background-color:rgba(255, 255, 255, 0);
  2553. border:none;
  2554. border-radius:0px;
  2555. -moz-box-shadow:none;
  2556. -webkit-box-shadow:none;
  2557. box-shadow:none;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. font-size:16px;
  2562. color:#FFFFFF;
  2563. }
  2564. #u4710 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:39px;
  2568. top:445px;
  2569. width:33px;
  2570. height:22px;
  2571. display:flex;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:16px;
  2576. color:#FFFFFF;
  2577. }
  2578. #u4710 .text {
  2579. position:absolute;
  2580. align-self:flex-start;
  2581. padding:0px 0px 0px 0px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u4710_text {
  2586. border-width:0px;
  2587. white-space:nowrap;
  2588. text-transform:none;
  2589. }
  2590. #u4711_img {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:14px;
  2596. height:14px;
  2597. }
  2598. #u4711 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:20px;
  2602. top:449px;
  2603. width:14px;
  2604. height:14px;
  2605. display:flex;
  2606. }
  2607. #u4711 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 2px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u4711_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. visibility:hidden;
  2619. }
  2620. #u4712 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:0px;
  2626. height:0px;
  2627. }
  2628. #u4713_div {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:33px;
  2634. height:22px;
  2635. background:inherit;
  2636. background-color:rgba(255, 255, 255, 0);
  2637. border:none;
  2638. border-radius:0px;
  2639. -moz-box-shadow:none;
  2640. -webkit-box-shadow:none;
  2641. box-shadow:none;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:16px;
  2646. color:#FFFFFF;
  2647. }
  2648. #u4713 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:39px;
  2652. top:571px;
  2653. width:33px;
  2654. height:22px;
  2655. display:flex;
  2656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:16px;
  2660. color:#FFFFFF;
  2661. }
  2662. #u4713 .text {
  2663. position:absolute;
  2664. align-self:flex-start;
  2665. padding:0px 0px 0px 0px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u4713_text {
  2670. border-width:0px;
  2671. white-space:nowrap;
  2672. text-transform:none;
  2673. }
  2674. #u4714_img {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:14px;
  2680. height:14px;
  2681. }
  2682. #u4714 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:20px;
  2686. top:575px;
  2687. width:14px;
  2688. height:14px;
  2689. display:flex;
  2690. }
  2691. #u4714 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:2px 2px 2px 2px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u4714_text {
  2699. border-width:0px;
  2700. word-wrap:break-word;
  2701. text-transform:none;
  2702. visibility:hidden;
  2703. }
  2704. #u4715 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:0px;
  2710. height:0px;
  2711. }
  2712. #u4716_div {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:33px;
  2718. height:22px;
  2719. background:inherit;
  2720. background-color:rgba(255, 255, 255, 0);
  2721. border:none;
  2722. border-radius:0px;
  2723. -moz-box-shadow:none;
  2724. -webkit-box-shadow:none;
  2725. box-shadow:none;
  2726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2727. font-weight:400;
  2728. font-style:normal;
  2729. font-size:16px;
  2730. color:#FFFFFF;
  2731. }
  2732. #u4716 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:39px;
  2736. top:529px;
  2737. width:33px;
  2738. height:22px;
  2739. display:flex;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:16px;
  2744. color:#FFFFFF;
  2745. }
  2746. #u4716 .text {
  2747. position:absolute;
  2748. align-self:flex-start;
  2749. padding:0px 0px 0px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u4716_text {
  2754. border-width:0px;
  2755. white-space:nowrap;
  2756. text-transform:none;
  2757. }
  2758. #u4717_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:14px;
  2764. height:14px;
  2765. }
  2766. #u4717 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:20px;
  2770. top:533px;
  2771. width:14px;
  2772. height:14px;
  2773. display:flex;
  2774. }
  2775. #u4717 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u4717_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u4718_input {
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:214px;
  2793. height:27px;
  2794. padding:2px 2px 2px 2px;
  2795. font-family:'ArialMT', 'Arial', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:14px;
  2799. letter-spacing:normal;
  2800. color:#FFFFFF;
  2801. vertical-align:none;
  2802. text-align:left;
  2803. text-transform:none;
  2804. background-color:transparent;
  2805. border-color:transparent;
  2806. }
  2807. #u4718_input.disabled {
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:214px;
  2812. height:27px;
  2813. padding:2px 2px 2px 2px;
  2814. font-family:'ArialMT', 'Arial', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:14px;
  2818. letter-spacing:normal;
  2819. color:#FFFFFF;
  2820. vertical-align:none;
  2821. text-align:left;
  2822. text-transform:none;
  2823. background-color:transparent;
  2824. border-color:transparent;
  2825. }
  2826. #u4718_div {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:214px;
  2832. height:27px;
  2833. background:inherit;
  2834. background-color:rgba(255, 255, 255, 0);
  2835. border:none;
  2836. border-radius:0px;
  2837. -moz-box-shadow:none;
  2838. -webkit-box-shadow:none;
  2839. box-shadow:none;
  2840. font-size:14px;
  2841. color:#FFFFFF;
  2842. }
  2843. #u4718 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:1221px;
  2847. top:10px;
  2848. width:214px;
  2849. height:27px;
  2850. display:flex;
  2851. font-size:14px;
  2852. color:#FFFFFF;
  2853. }
  2854. #u4718 .text {
  2855. position:absolute;
  2856. align-self:flex-start;
  2857. padding:2px 2px 2px 2px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u4718_div.disabled {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:214px;
  2867. height:27px;
  2868. background:inherit;
  2869. background-color:rgba(240, 240, 240, 1);
  2870. border:none;
  2871. border-radius:0px;
  2872. -moz-box-shadow:none;
  2873. -webkit-box-shadow:none;
  2874. box-shadow:none;
  2875. font-size:14px;
  2876. color:#FFFFFF;
  2877. }
  2878. #u4718.disabled {
  2879. }
  2880. .u4718_input_option {
  2881. font-size:14px;
  2882. }
  2883. #u4719_img {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:22px;
  2889. height:22px;
  2890. }
  2891. #u4719 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:1194px;
  2895. top:15px;
  2896. width:22px;
  2897. height:22px;
  2898. display:flex;
  2899. }
  2900. #u4719 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 2px 2px 2px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u4719_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. visibility:hidden;
  2912. }
  2913. #u4720_div {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:100px;
  2919. height:24px;
  2920. background:inherit;
  2921. background-color:rgba(242, 242, 242, 0.2);
  2922. border:none;
  2923. border-radius:25px;
  2924. -moz-box-shadow:none;
  2925. -webkit-box-shadow:none;
  2926. box-shadow:none;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. color:#FFFFFF;
  2931. text-align:center;
  2932. }
  2933. #u4720 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:1480px;
  2937. top:12px;
  2938. width:100px;
  2939. height:24px;
  2940. display:flex;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. color:#FFFFFF;
  2945. text-align:center;
  2946. }
  2947. #u4720 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:0px 0px 0px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u4720_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. }
  2959. #u4721_img {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:2px;
  2965. height:12px;
  2966. }
  2967. #u4721 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:1452px;
  2971. top:19px;
  2972. width:1px;
  2973. height:11px;
  2974. display:flex;
  2975. }
  2976. #u4721 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 2px 2px 2px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u4721_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u4722 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:0px;
  2995. height:0px;
  2996. }
  2997. #u4723_div {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:33px;
  3003. height:22px;
  3004. background:inherit;
  3005. background-color:rgba(255, 255, 255, 0);
  3006. border:none;
  3007. border-radius:0px;
  3008. -moz-box-shadow:none;
  3009. -webkit-box-shadow:none;
  3010. box-shadow:none;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:16px;
  3015. color:#FFFFFF;
  3016. }
  3017. #u4723 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:39px;
  3021. top:319px;
  3022. width:33px;
  3023. height:22px;
  3024. display:flex;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:16px;
  3029. color:#FFFFFF;
  3030. }
  3031. #u4723 .text {
  3032. position:absolute;
  3033. align-self:flex-start;
  3034. padding:0px 0px 0px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u4723_text {
  3039. border-width:0px;
  3040. white-space:nowrap;
  3041. text-transform:none;
  3042. }
  3043. #u4724_img {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:14px;
  3049. height:14px;
  3050. }
  3051. #u4724 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:20px;
  3055. top:323px;
  3056. width:14px;
  3057. height:14px;
  3058. display:flex;
  3059. }
  3060. #u4724 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 2px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u4724_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u4725 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:0px;
  3079. height:0px;
  3080. }
  3081. #u4726_div {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:33px;
  3087. height:22px;
  3088. background:inherit;
  3089. background-color:rgba(255, 255, 255, 0);
  3090. border:none;
  3091. border-radius:0px;
  3092. -moz-box-shadow:none;
  3093. -webkit-box-shadow:none;
  3094. box-shadow:none;
  3095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:16px;
  3099. color:#FFFFFF;
  3100. }
  3101. #u4726 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:39px;
  3105. top:361px;
  3106. width:33px;
  3107. height:22px;
  3108. display:flex;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:16px;
  3113. color:#FFFFFF;
  3114. }
  3115. #u4726 .text {
  3116. position:absolute;
  3117. align-self:flex-start;
  3118. padding:0px 0px 0px 0px;
  3119. box-sizing:border-box;
  3120. width:100%;
  3121. }
  3122. #u4726_text {
  3123. border-width:0px;
  3124. white-space:nowrap;
  3125. text-transform:none;
  3126. }
  3127. #u4727_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:14px;
  3133. height:14px;
  3134. }
  3135. #u4727 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:20px;
  3139. top:365px;
  3140. width:14px;
  3141. height:14px;
  3142. display:flex;
  3143. }
  3144. #u4727 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 2px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u4727_text {
  3152. border-width:0px;
  3153. word-wrap:break-word;
  3154. text-transform:none;
  3155. visibility:hidden;
  3156. }
  3157. #u4728 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:0px;
  3163. height:0px;
  3164. }
  3165. #u4729_div {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:33px;
  3171. height:22px;
  3172. background:inherit;
  3173. background-color:rgba(255, 255, 255, 0);
  3174. border:none;
  3175. border-radius:0px;
  3176. -moz-box-shadow:none;
  3177. -webkit-box-shadow:none;
  3178. box-shadow:none;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:16px;
  3183. color:#FFFFFF;
  3184. }
  3185. #u4729 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:39px;
  3189. top:151px;
  3190. width:33px;
  3191. height:22px;
  3192. display:flex;
  3193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:16px;
  3197. color:#FFFFFF;
  3198. }
  3199. #u4729 .text {
  3200. position:absolute;
  3201. align-self:flex-start;
  3202. padding:0px 0px 0px 0px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u4729_text {
  3207. border-width:0px;
  3208. white-space:nowrap;
  3209. text-transform:none;
  3210. }
  3211. #u4730_img {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:14px;
  3217. height:14px;
  3218. }
  3219. #u4730 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:20px;
  3223. top:155px;
  3224. width:14px;
  3225. height:14px;
  3226. display:flex;
  3227. }
  3228. #u4730 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u4730_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u4731 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:0px;
  3247. height:0px;
  3248. }
  3249. #u4732_div {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:33px;
  3255. height:22px;
  3256. background:inherit;
  3257. background-color:rgba(255, 255, 255, 0);
  3258. border:none;
  3259. border-radius:0px;
  3260. -moz-box-shadow:none;
  3261. -webkit-box-shadow:none;
  3262. box-shadow:none;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:16px;
  3267. color:#FFFFFF;
  3268. }
  3269. #u4732 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:39px;
  3273. top:487px;
  3274. width:33px;
  3275. height:22px;
  3276. display:flex;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:16px;
  3281. color:#FFFFFF;
  3282. }
  3283. #u4732 .text {
  3284. position:absolute;
  3285. align-self:flex-start;
  3286. padding:0px 0px 0px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u4732_text {
  3291. border-width:0px;
  3292. white-space:nowrap;
  3293. text-transform:none;
  3294. }
  3295. #u4733_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:14px;
  3301. height:14px;
  3302. }
  3303. #u4733 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:20px;
  3307. top:491px;
  3308. width:14px;
  3309. height:14px;
  3310. display:flex;
  3311. }
  3312. #u4733 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 2px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u4733_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u4734 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:0px;
  3331. height:0px;
  3332. }
  3333. #u4735_div {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:33px;
  3339. height:22px;
  3340. background:inherit;
  3341. background-color:rgba(255, 255, 255, 0);
  3342. border:none;
  3343. border-radius:0px;
  3344. -moz-box-shadow:none;
  3345. -webkit-box-shadow:none;
  3346. box-shadow:none;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:16px;
  3351. color:#FFFFFF;
  3352. }
  3353. #u4735 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:39px;
  3357. top:193px;
  3358. width:33px;
  3359. height:22px;
  3360. display:flex;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:16px;
  3365. color:#FFFFFF;
  3366. }
  3367. #u4735 .text {
  3368. position:absolute;
  3369. align-self:flex-start;
  3370. padding:0px 0px 0px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u4735_text {
  3375. border-width:0px;
  3376. white-space:nowrap;
  3377. text-transform:none;
  3378. }
  3379. #u4736_img {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:14px;
  3385. height:14px;
  3386. }
  3387. #u4736 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:20px;
  3391. top:197px;
  3392. width:14px;
  3393. height:14px;
  3394. display:flex;
  3395. }
  3396. #u4736 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u4736_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u4737_div {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:1258px;
  3415. height:1081px;
  3416. background:inherit;
  3417. background-color:rgba(255, 255, 255, 1);
  3418. border:none;
  3419. border-radius:0px;
  3420. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3421. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3422. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3423. }
  3424. #u4737 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:333px;
  3428. top:161px;
  3429. width:1258px;
  3430. height:1081px;
  3431. display:flex;
  3432. }
  3433. #u4737 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 2px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u4737_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. visibility:hidden;
  3445. }
  3446. #u4738_div {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:1258px;
  3452. height:100px;
  3453. background:inherit;
  3454. background-color:rgba(255, 255, 255, 1);
  3455. border:none;
  3456. border-radius:0px;
  3457. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3458. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3459. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3460. }
  3461. #u4738 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:333px;
  3465. top:51px;
  3466. width:1258px;
  3467. height:100px;
  3468. display:flex;
  3469. }
  3470. #u4738 .text {
  3471. position:absolute;
  3472. align-self:center;
  3473. padding:2px 2px 2px 2px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u4738_text {
  3478. border-width:0px;
  3479. word-wrap:break-word;
  3480. text-transform:none;
  3481. visibility:hidden;
  3482. }
  3483. #u4739_div {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:57px;
  3489. height:50px;
  3490. background:inherit;
  3491. background-color:rgba(255, 255, 255, 0);
  3492. border:none;
  3493. border-left:0px;
  3494. border-top:0px;
  3495. border-right:0px;
  3496. border-radius:0px;
  3497. border-bottom-right-radius:0px;
  3498. border-bottom-left-radius:0px;
  3499. -moz-box-shadow:none;
  3500. -webkit-box-shadow:none;
  3501. box-shadow:none;
  3502. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3503. font-weight:500;
  3504. font-style:normal;
  3505. }
  3506. #u4739 {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:353px;
  3510. top:51px;
  3511. width:57px;
  3512. height:50px;
  3513. display:flex;
  3514. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3515. font-weight:500;
  3516. font-style:normal;
  3517. }
  3518. #u4739 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:0px 0px 0px 0px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u4739_text {
  3526. border-width:0px;
  3527. white-space:nowrap;
  3528. text-transform:none;
  3529. }
  3530. #u4740_div {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:73px;
  3536. height:50px;
  3537. background:inherit;
  3538. background-color:rgba(255, 255, 255, 0);
  3539. box-sizing:border-box;
  3540. border-width:2px;
  3541. border-style:solid;
  3542. border-color:rgba(24, 144, 255, 1);
  3543. border-left:0px;
  3544. border-top:0px;
  3545. border-right:0px;
  3546. border-radius:0px;
  3547. border-bottom-right-radius:0px;
  3548. border-bottom-left-radius:0px;
  3549. -moz-box-shadow:none;
  3550. -webkit-box-shadow:none;
  3551. box-shadow:none;
  3552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:18px;
  3556. color:#1890FF;
  3557. }
  3558. #u4740 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:361px;
  3562. top:101px;
  3563. width:73px;
  3564. height:50px;
  3565. display:flex;
  3566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:18px;
  3570. color:#1890FF;
  3571. }
  3572. #u4740 .text {
  3573. position:absolute;
  3574. align-self:center;
  3575. padding:0px 0px 0px 0px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u4740_text {
  3580. border-width:0px;
  3581. white-space:nowrap;
  3582. text-transform:none;
  3583. }
  3584. #u4741_div {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:73px;
  3590. height:50px;
  3591. background:inherit;
  3592. background-color:rgba(255, 255, 255, 0);
  3593. border:none;
  3594. border-left:0px;
  3595. border-top:0px;
  3596. border-right:0px;
  3597. border-radius:0px;
  3598. border-bottom-right-radius:0px;
  3599. border-bottom-left-radius:0px;
  3600. -moz-box-shadow:none;
  3601. -webkit-box-shadow:none;
  3602. box-shadow:none;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:18px;
  3607. }
  3608. #u4741 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:464px;
  3612. top:101px;
  3613. width:73px;
  3614. height:50px;
  3615. display:flex;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:18px;
  3620. }
  3621. #u4741 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:0px 0px 0px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u4741_text {
  3629. border-width:0px;
  3630. white-space:nowrap;
  3631. text-transform:none;
  3632. }
  3633. #u4742_div {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:1258px;
  3639. height:1081px;
  3640. background:inherit;
  3641. background-color:rgba(255, 255, 255, 1);
  3642. border:none;
  3643. border-radius:0px;
  3644. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3645. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3646. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3647. }
  3648. #u4742 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:1965px;
  3652. top:161px;
  3653. width:1258px;
  3654. height:1081px;
  3655. display:flex;
  3656. }
  3657. #u4742 .text {
  3658. position:absolute;
  3659. align-self:center;
  3660. padding:2px 2px 2px 2px;
  3661. box-sizing:border-box;
  3662. width:100%;
  3663. }
  3664. #u4742_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. visibility:hidden;
  3669. }
  3670. #u4743_div {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:1258px;
  3676. height:100px;
  3677. background:inherit;
  3678. background-color:rgba(255, 255, 255, 1);
  3679. border:none;
  3680. border-radius:0px;
  3681. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3682. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3683. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3684. }
  3685. #u4743 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:1965px;
  3689. top:51px;
  3690. width:1258px;
  3691. height:100px;
  3692. display:flex;
  3693. }
  3694. #u4743 .text {
  3695. position:absolute;
  3696. align-self:center;
  3697. padding:2px 2px 2px 2px;
  3698. box-sizing:border-box;
  3699. width:100%;
  3700. }
  3701. #u4743_text {
  3702. border-width:0px;
  3703. word-wrap:break-word;
  3704. text-transform:none;
  3705. visibility:hidden;
  3706. }
  3707. #u4744_div {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:57px;
  3713. height:50px;
  3714. background:inherit;
  3715. background-color:rgba(255, 255, 255, 0);
  3716. border:none;
  3717. border-left:0px;
  3718. border-top:0px;
  3719. border-right:0px;
  3720. border-radius:0px;
  3721. border-bottom-right-radius:0px;
  3722. border-bottom-left-radius:0px;
  3723. -moz-box-shadow:none;
  3724. -webkit-box-shadow:none;
  3725. box-shadow:none;
  3726. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3727. font-weight:500;
  3728. font-style:normal;
  3729. }
  3730. #u4744 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:1985px;
  3734. top:51px;
  3735. width:57px;
  3736. height:50px;
  3737. display:flex;
  3738. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3739. font-weight:500;
  3740. font-style:normal;
  3741. }
  3742. #u4744 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:0px 0px 0px 0px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u4744_text {
  3750. border-width:0px;
  3751. white-space:nowrap;
  3752. text-transform:none;
  3753. }
  3754. #u4745_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:73px;
  3760. height:50px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 0);
  3763. border:none;
  3764. border-left:0px;
  3765. border-top:0px;
  3766. border-right:0px;
  3767. border-radius:0px;
  3768. border-bottom-right-radius:0px;
  3769. border-bottom-left-radius:0px;
  3770. -moz-box-shadow:none;
  3771. -webkit-box-shadow:none;
  3772. box-shadow:none;
  3773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3774. font-weight:400;
  3775. font-style:normal;
  3776. font-size:18px;
  3777. }
  3778. #u4745 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:1993px;
  3782. top:101px;
  3783. width:73px;
  3784. height:50px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:18px;
  3790. }
  3791. #u4745 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:0px 0px 0px 0px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u4745_text {
  3799. border-width:0px;
  3800. white-space:nowrap;
  3801. text-transform:none;
  3802. }
  3803. #u4746_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:73px;
  3809. height:50px;
  3810. background:inherit;
  3811. background-color:rgba(255, 255, 255, 0);
  3812. box-sizing:border-box;
  3813. border-width:2px;
  3814. border-style:solid;
  3815. border-color:rgba(24, 144, 255, 1);
  3816. border-left:0px;
  3817. border-top:0px;
  3818. border-right:0px;
  3819. border-radius:0px;
  3820. border-bottom-right-radius:0px;
  3821. border-bottom-left-radius:0px;
  3822. -moz-box-shadow:none;
  3823. -webkit-box-shadow:none;
  3824. box-shadow:none;
  3825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:18px;
  3829. color:#1890FF;
  3830. }
  3831. #u4746 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:2096px;
  3835. top:101px;
  3836. width:73px;
  3837. height:50px;
  3838. display:flex;
  3839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:18px;
  3843. color:#1890FF;
  3844. }
  3845. #u4746 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:0px 0px 0px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u4746_text {
  3853. border-width:0px;
  3854. white-space:nowrap;
  3855. text-transform:none;
  3856. }
  3857. #u4747 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:353px;
  3861. top:231px;
  3862. width:1219px;
  3863. height:284px;
  3864. }
  3865. #u4748_img {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:53px;
  3871. height:38px;
  3872. }
  3873. #u4748 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:53px;
  3879. height:38px;
  3880. display:flex;
  3881. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:12px;
  3885. color:#FFFFFF;
  3886. }
  3887. #u4748 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 0px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u4748_text {
  3895. border-width:0px;
  3896. word-wrap:break-word;
  3897. text-transform:none;
  3898. }
  3899. #u4749_img {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:88px;
  3905. height:38px;
  3906. }
  3907. #u4749 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:53px;
  3911. top:0px;
  3912. width:88px;
  3913. height:38px;
  3914. display:flex;
  3915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:12px;
  3919. color:#FFFFFF;
  3920. }
  3921. #u4749 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 0px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u4749_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. }
  3933. #u4750_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:154px;
  3939. height:38px;
  3940. }
  3941. #u4750 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:141px;
  3945. top:0px;
  3946. width:154px;
  3947. height:38px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:12px;
  3953. color:#FFFFFF;
  3954. }
  3955. #u4750 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u4750_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. }
  3967. #u4751_img {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:103px;
  3973. height:38px;
  3974. }
  3975. #u4751 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:295px;
  3979. top:0px;
  3980. width:103px;
  3981. height:38px;
  3982. display:flex;
  3983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3984. font-weight:400;
  3985. font-style:normal;
  3986. font-size:12px;
  3987. color:#FFFFFF;
  3988. }
  3989. #u4751 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:2px 2px 2px 0px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u4751_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. }
  4001. #u4752_img {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:103px;
  4007. height:38px;
  4008. }
  4009. #u4752 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:398px;
  4013. top:0px;
  4014. width:103px;
  4015. height:38px;
  4016. display:flex;
  4017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4018. font-weight:400;
  4019. font-style:normal;
  4020. font-size:12px;
  4021. color:#FFFFFF;
  4022. }
  4023. #u4752 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 2px 2px 0px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u4752_text {
  4031. border-width:0px;
  4032. word-wrap:break-word;
  4033. text-transform:none;
  4034. }
  4035. #u4753_img {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:88px;
  4041. height:38px;
  4042. }
  4043. #u4753 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:501px;
  4047. top:0px;
  4048. width:88px;
  4049. height:38px;
  4050. display:flex;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:12px;
  4055. color:#FFFFFF;
  4056. }
  4057. #u4753 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 0px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u4753_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. }
  4069. #u4754_img {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:102px;
  4075. height:38px;
  4076. }
  4077. #u4754 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:589px;
  4081. top:0px;
  4082. width:102px;
  4083. height:38px;
  4084. display:flex;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:12px;
  4089. color:#FFFFFF;
  4090. }
  4091. #u4754 .text {
  4092. position:absolute;
  4093. align-self:center;
  4094. padding:2px 2px 2px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u4754_text {
  4099. border-width:0px;
  4100. word-wrap:break-word;
  4101. text-transform:none;
  4102. }
  4103. #u4755_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:102px;
  4109. height:38px;
  4110. }
  4111. #u4755 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:691px;
  4115. top:0px;
  4116. width:102px;
  4117. height:38px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:12px;
  4123. color:#FFFFFF;
  4124. }
  4125. #u4755 .text {
  4126. position:absolute;
  4127. align-self:center;
  4128. padding:2px 2px 2px 0px;
  4129. box-sizing:border-box;
  4130. width:100%;
  4131. }
  4132. #u4755_text {
  4133. border-width:0px;
  4134. word-wrap:break-word;
  4135. text-transform:none;
  4136. }
  4137. #u4756_img {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:103px;
  4143. height:38px;
  4144. }
  4145. #u4756 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:793px;
  4149. top:0px;
  4150. width:103px;
  4151. height:38px;
  4152. display:flex;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:12px;
  4157. color:#FFFFFF;
  4158. }
  4159. #u4756 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 0px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u4756_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. }
  4171. #u4757_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:103px;
  4177. height:38px;
  4178. }
  4179. #u4757 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:896px;
  4183. top:0px;
  4184. width:103px;
  4185. height:38px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#FFFFFF;
  4192. }
  4193. #u4757 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 0px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u4757_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. }
  4205. #u4758_img {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:103px;
  4211. height:38px;
  4212. }
  4213. #u4758 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:999px;
  4217. top:0px;
  4218. width:103px;
  4219. height:38px;
  4220. display:flex;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:12px;
  4225. color:#FFFFFF;
  4226. }
  4227. #u4758 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 0px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u4758_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. }
  4239. #u4759_img {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:117px;
  4245. height:38px;
  4246. }
  4247. #u4759 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:1102px;
  4251. top:0px;
  4252. width:117px;
  4253. height:38px;
  4254. display:flex;
  4255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:12px;
  4259. color:#FFFFFF;
  4260. }
  4261. #u4759 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 0px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u4759_text {
  4269. border-width:0px;
  4270. word-wrap:break-word;
  4271. text-transform:none;
  4272. }
  4273. #u4760_img {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:53px;
  4279. height:38px;
  4280. }
  4281. #u4760 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:38px;
  4286. width:53px;
  4287. height:38px;
  4288. display:flex;
  4289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:12px;
  4293. }
  4294. #u4760 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 0px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u4760_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. }
  4306. #u4761_img {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:88px;
  4312. height:38px;
  4313. }
  4314. #u4761 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:53px;
  4318. top:38px;
  4319. width:88px;
  4320. height:38px;
  4321. display:flex;
  4322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:12px;
  4326. color:#333333;
  4327. }
  4328. #u4761 .text {
  4329. position:absolute;
  4330. align-self:center;
  4331. padding:2px 2px 2px 0px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u4761_text {
  4336. border-width:0px;
  4337. word-wrap:break-word;
  4338. text-transform:none;
  4339. visibility:hidden;
  4340. }
  4341. #u4762_img {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:154px;
  4347. height:38px;
  4348. }
  4349. #u4762 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:141px;
  4353. top:38px;
  4354. width:154px;
  4355. height:38px;
  4356. display:flex;
  4357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4358. font-weight:400;
  4359. font-style:normal;
  4360. font-size:12px;
  4361. color:#333333;
  4362. }
  4363. #u4762 .text {
  4364. position:absolute;
  4365. align-self:center;
  4366. padding:2px 2px 2px 0px;
  4367. box-sizing:border-box;
  4368. width:100%;
  4369. }
  4370. #u4762_text {
  4371. border-width:0px;
  4372. word-wrap:break-word;
  4373. text-transform:none;
  4374. visibility:hidden;
  4375. }
  4376. #u4763_img {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:103px;
  4382. height:38px;
  4383. }
  4384. #u4763 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:295px;
  4388. top:38px;
  4389. width:103px;
  4390. height:38px;
  4391. display:flex;
  4392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4393. font-weight:400;
  4394. font-style:normal;
  4395. font-size:12px;
  4396. color:#333333;
  4397. }
  4398. #u4763 .text {
  4399. position:absolute;
  4400. align-self:center;
  4401. padding:2px 2px 2px 0px;
  4402. box-sizing:border-box;
  4403. width:100%;
  4404. }
  4405. #u4763_text {
  4406. border-width:0px;
  4407. word-wrap:break-word;
  4408. text-transform:none;
  4409. visibility:hidden;
  4410. }
  4411. #u4764_img {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:103px;
  4417. height:38px;
  4418. }
  4419. #u4764 {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:398px;
  4423. top:38px;
  4424. width:103px;
  4425. height:38px;
  4426. display:flex;
  4427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4428. font-weight:400;
  4429. font-style:normal;
  4430. font-size:12px;
  4431. color:#333333;
  4432. }
  4433. #u4764 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 0px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u4764_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u4765_img {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:88px;
  4452. height:38px;
  4453. }
  4454. #u4765 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:501px;
  4458. top:38px;
  4459. width:88px;
  4460. height:38px;
  4461. display:flex;
  4462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:12px;
  4466. color:#333333;
  4467. }
  4468. #u4765 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 0px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u4765_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u4766_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:102px;
  4487. height:38px;
  4488. }
  4489. #u4766 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:589px;
  4493. top:38px;
  4494. width:102px;
  4495. height:38px;
  4496. display:flex;
  4497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:12px;
  4501. color:#333333;
  4502. }
  4503. #u4766 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u4766_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. }
  4515. #u4767_img {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:102px;
  4521. height:38px;
  4522. }
  4523. #u4767 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:691px;
  4527. top:38px;
  4528. width:102px;
  4529. height:38px;
  4530. display:flex;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:12px;
  4535. color:#333333;
  4536. }
  4537. #u4767 .text {
  4538. position:absolute;
  4539. align-self:center;
  4540. padding:2px 2px 2px 0px;
  4541. box-sizing:border-box;
  4542. width:100%;
  4543. }
  4544. #u4767_text {
  4545. border-width:0px;
  4546. word-wrap:break-word;
  4547. text-transform:none;
  4548. visibility:hidden;
  4549. }
  4550. #u4768_img {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:103px;
  4556. height:38px;
  4557. }
  4558. #u4768 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:793px;
  4562. top:38px;
  4563. width:103px;
  4564. height:38px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:12px;
  4570. color:#333333;
  4571. }
  4572. #u4768 .text {
  4573. position:absolute;
  4574. align-self:center;
  4575. padding:2px 2px 2px 0px;
  4576. box-sizing:border-box;
  4577. width:100%;
  4578. }
  4579. #u4768_text {
  4580. border-width:0px;
  4581. word-wrap:break-word;
  4582. text-transform:none;
  4583. }
  4584. #u4769_img {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:103px;
  4590. height:38px;
  4591. }
  4592. #u4769 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:896px;
  4596. top:38px;
  4597. width:103px;
  4598. height:38px;
  4599. display:flex;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:12px;
  4604. color:#333333;
  4605. }
  4606. #u4769 .text {
  4607. position:absolute;
  4608. align-self:center;
  4609. padding:2px 2px 2px 0px;
  4610. box-sizing:border-box;
  4611. width:100%;
  4612. }
  4613. #u4769_text {
  4614. border-width:0px;
  4615. word-wrap:break-word;
  4616. text-transform:none;
  4617. }
  4618. #u4770_img {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:0px;
  4623. width:103px;
  4624. height:38px;
  4625. }
  4626. #u4770 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:999px;
  4630. top:38px;
  4631. width:103px;
  4632. height:38px;
  4633. display:flex;
  4634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. font-size:12px;
  4638. color:#333333;
  4639. }
  4640. #u4770 .text {
  4641. position:absolute;
  4642. align-self:center;
  4643. padding:2px 2px 2px 0px;
  4644. box-sizing:border-box;
  4645. width:100%;
  4646. }
  4647. #u4770_text {
  4648. border-width:0px;
  4649. word-wrap:break-word;
  4650. text-transform:none;
  4651. visibility:hidden;
  4652. }
  4653. #u4771_img {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:0px;
  4657. top:0px;
  4658. width:117px;
  4659. height:38px;
  4660. }
  4661. #u4771 {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:1102px;
  4665. top:38px;
  4666. width:117px;
  4667. height:38px;
  4668. display:flex;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:12px;
  4673. color:#1890FF;
  4674. }
  4675. #u4771 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u4771_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. }
  4687. #u4772_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:53px;
  4693. height:36px;
  4694. }
  4695. #u4772 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:76px;
  4700. width:53px;
  4701. height:36px;
  4702. display:flex;
  4703. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:12px;
  4707. color:#606266;
  4708. }
  4709. #u4772 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 0px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u4772_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. }
  4721. #u4773_img {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:88px;
  4727. height:36px;
  4728. }
  4729. #u4773 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:53px;
  4733. top:76px;
  4734. width:88px;
  4735. height:36px;
  4736. display:flex;
  4737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:12px;
  4741. color:#606266;
  4742. }
  4743. #u4773 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u4773_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u4774_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:154px;
  4762. height:36px;
  4763. }
  4764. #u4774 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:141px;
  4768. top:76px;
  4769. width:154px;
  4770. height:36px;
  4771. display:flex;
  4772. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:12px;
  4776. color:#606266;
  4777. }
  4778. #u4774 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 0px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u4774_text {
  4786. border-width:0px;
  4787. word-wrap:break-word;
  4788. text-transform:none;
  4789. visibility:hidden;
  4790. }
  4791. #u4775_img {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:103px;
  4797. height:36px;
  4798. }
  4799. #u4775 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:295px;
  4803. top:76px;
  4804. width:103px;
  4805. height:36px;
  4806. display:flex;
  4807. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:12px;
  4811. color:#606266;
  4812. }
  4813. #u4775 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:2px 2px 2px 0px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u4775_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. visibility:hidden;
  4825. }
  4826. #u4776_img {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:103px;
  4832. height:36px;
  4833. }
  4834. #u4776 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:398px;
  4838. top:76px;
  4839. width:103px;
  4840. height:36px;
  4841. display:flex;
  4842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:12px;
  4846. color:#606266;
  4847. }
  4848. #u4776 .text {
  4849. position:absolute;
  4850. align-self:center;
  4851. padding:2px 2px 2px 0px;
  4852. box-sizing:border-box;
  4853. width:100%;
  4854. }
  4855. #u4776_text {
  4856. border-width:0px;
  4857. word-wrap:break-word;
  4858. text-transform:none;
  4859. visibility:hidden;
  4860. }
  4861. #u4777_img {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:88px;
  4867. height:36px;
  4868. }
  4869. #u4777 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:501px;
  4873. top:76px;
  4874. width:88px;
  4875. height:36px;
  4876. display:flex;
  4877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:12px;
  4881. color:#606266;
  4882. }
  4883. #u4777 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 2px 2px 0px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u4777_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. visibility:hidden;
  4895. }
  4896. #u4778_img {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:102px;
  4902. height:36px;
  4903. }
  4904. #u4778 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:589px;
  4908. top:76px;
  4909. width:102px;
  4910. height:36px;
  4911. display:flex;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. color:#606266;
  4917. }
  4918. #u4778 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u4778_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. }
  4930. #u4779_img {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:0px;
  4934. top:0px;
  4935. width:102px;
  4936. height:36px;
  4937. }
  4938. #u4779 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:691px;
  4942. top:76px;
  4943. width:102px;
  4944. height:36px;
  4945. display:flex;
  4946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:12px;
  4950. color:#606266;
  4951. }
  4952. #u4779 .text {
  4953. position:absolute;
  4954. align-self:center;
  4955. padding:2px 2px 2px 0px;
  4956. box-sizing:border-box;
  4957. width:100%;
  4958. }
  4959. #u4779_text {
  4960. border-width:0px;
  4961. word-wrap:break-word;
  4962. text-transform:none;
  4963. visibility:hidden;
  4964. }
  4965. #u4780_img {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:103px;
  4971. height:36px;
  4972. }
  4973. #u4780 {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:793px;
  4977. top:76px;
  4978. width:103px;
  4979. height:36px;
  4980. display:flex;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:12px;
  4985. color:#606266;
  4986. }
  4987. #u4780 .text {
  4988. position:absolute;
  4989. align-self:center;
  4990. padding:2px 2px 2px 0px;
  4991. box-sizing:border-box;
  4992. width:100%;
  4993. }
  4994. #u4780_text {
  4995. border-width:0px;
  4996. word-wrap:break-word;
  4997. text-transform:none;
  4998. visibility:hidden;
  4999. }
  5000. #u4781_img {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:103px;
  5006. height:36px;
  5007. }
  5008. #u4781 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:896px;
  5012. top:76px;
  5013. width:103px;
  5014. height:36px;
  5015. display:flex;
  5016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:12px;
  5020. color:#606266;
  5021. }
  5022. #u4781 .text {
  5023. position:absolute;
  5024. align-self:center;
  5025. padding:2px 2px 2px 0px;
  5026. box-sizing:border-box;
  5027. width:100%;
  5028. }
  5029. #u4781_text {
  5030. border-width:0px;
  5031. word-wrap:break-word;
  5032. text-transform:none;
  5033. visibility:hidden;
  5034. }
  5035. #u4782_img {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:103px;
  5041. height:36px;
  5042. }
  5043. #u4782 {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:999px;
  5047. top:76px;
  5048. width:103px;
  5049. height:36px;
  5050. display:flex;
  5051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5052. font-weight:400;
  5053. font-style:normal;
  5054. font-size:12px;
  5055. color:#606266;
  5056. }
  5057. #u4782 .text {
  5058. position:absolute;
  5059. align-self:center;
  5060. padding:2px 2px 2px 0px;
  5061. box-sizing:border-box;
  5062. width:100%;
  5063. }
  5064. #u4782_text {
  5065. border-width:0px;
  5066. word-wrap:break-word;
  5067. text-transform:none;
  5068. visibility:hidden;
  5069. }
  5070. #u4783_img {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:117px;
  5076. height:36px;
  5077. }
  5078. #u4783 {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:1102px;
  5082. top:76px;
  5083. width:117px;
  5084. height:36px;
  5085. display:flex;
  5086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5087. font-weight:400;
  5088. font-style:normal;
  5089. font-size:12px;
  5090. color:#1890FF;
  5091. }
  5092. #u4783 .text {
  5093. position:absolute;
  5094. align-self:center;
  5095. padding:2px 2px 2px 0px;
  5096. box-sizing:border-box;
  5097. width:100%;
  5098. }
  5099. #u4783_text {
  5100. border-width:0px;
  5101. word-wrap:break-word;
  5102. text-transform:none;
  5103. }
  5104. #u4784_img {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:53px;
  5110. height:35px;
  5111. }
  5112. #u4784 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:112px;
  5117. width:53px;
  5118. height:35px;
  5119. display:flex;
  5120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. color:#606266;
  5125. }
  5126. #u4784 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 2px 2px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u4784_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. }
  5138. #u4785_img {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:88px;
  5144. height:35px;
  5145. }
  5146. #u4785 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:53px;
  5150. top:112px;
  5151. width:88px;
  5152. height:35px;
  5153. display:flex;
  5154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5155. font-weight:400;
  5156. font-style:normal;
  5157. font-size:12px;
  5158. color:#606266;
  5159. }
  5160. #u4785 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 0px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u4785_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. visibility:hidden;
  5172. }
  5173. #u4786_img {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:154px;
  5179. height:35px;
  5180. }
  5181. #u4786 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:141px;
  5185. top:112px;
  5186. width:154px;
  5187. height:35px;
  5188. display:flex;
  5189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:12px;
  5193. color:#606266;
  5194. }
  5195. #u4786 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 2px 2px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u4786_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u4787_img {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:103px;
  5214. height:35px;
  5215. }
  5216. #u4787 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:295px;
  5220. top:112px;
  5221. width:103px;
  5222. height:35px;
  5223. display:flex;
  5224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:12px;
  5228. color:#606266;
  5229. }
  5230. #u4787 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 0px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u4787_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. visibility:hidden;
  5242. }
  5243. #u4788_img {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:103px;
  5249. height:35px;
  5250. }
  5251. #u4788 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:398px;
  5255. top:112px;
  5256. width:103px;
  5257. height:35px;
  5258. display:flex;
  5259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:12px;
  5263. color:#606266;
  5264. }
  5265. #u4788 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:2px 2px 2px 0px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u4788_text {
  5273. border-width:0px;
  5274. word-wrap:break-word;
  5275. text-transform:none;
  5276. visibility:hidden;
  5277. }
  5278. #u4789_img {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:88px;
  5284. height:35px;
  5285. }
  5286. #u4789 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:501px;
  5290. top:112px;
  5291. width:88px;
  5292. height:35px;
  5293. display:flex;
  5294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5295. font-weight:400;
  5296. font-style:normal;
  5297. font-size:12px;
  5298. color:#606266;
  5299. }
  5300. #u4789 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 0px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u4789_text {
  5308. border-width:0px;
  5309. word-wrap:break-word;
  5310. text-transform:none;
  5311. visibility:hidden;
  5312. }
  5313. #u4790_img {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:102px;
  5319. height:35px;
  5320. }
  5321. #u4790 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:589px;
  5325. top:112px;
  5326. width:102px;
  5327. height:35px;
  5328. display:flex;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. color:#606266;
  5334. }
  5335. #u4790 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 0px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u4790_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u4791_img {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:102px;
  5354. height:35px;
  5355. }
  5356. #u4791 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:691px;
  5360. top:112px;
  5361. width:102px;
  5362. height:35px;
  5363. display:flex;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:12px;
  5368. color:#606266;
  5369. }
  5370. #u4791 .text {
  5371. position:absolute;
  5372. align-self:center;
  5373. padding:2px 2px 2px 0px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u4791_text {
  5378. border-width:0px;
  5379. word-wrap:break-word;
  5380. text-transform:none;
  5381. visibility:hidden;
  5382. }
  5383. #u4792_img {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:103px;
  5389. height:35px;
  5390. }
  5391. #u4792 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:793px;
  5395. top:112px;
  5396. width:103px;
  5397. height:35px;
  5398. display:flex;
  5399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5400. font-weight:400;
  5401. font-style:normal;
  5402. font-size:12px;
  5403. color:#606266;
  5404. }
  5405. #u4792 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 0px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u4792_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. visibility:hidden;
  5417. }
  5418. #u4793_img {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:103px;
  5424. height:35px;
  5425. }
  5426. #u4793 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:896px;
  5430. top:112px;
  5431. width:103px;
  5432. height:35px;
  5433. display:flex;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:12px;
  5438. color:#606266;
  5439. }
  5440. #u4793 .text {
  5441. position:absolute;
  5442. align-self:center;
  5443. padding:2px 2px 2px 0px;
  5444. box-sizing:border-box;
  5445. width:100%;
  5446. }
  5447. #u4793_text {
  5448. border-width:0px;
  5449. word-wrap:break-word;
  5450. text-transform:none;
  5451. visibility:hidden;
  5452. }
  5453. #u4794_img {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:0px;
  5457. top:0px;
  5458. width:103px;
  5459. height:35px;
  5460. }
  5461. #u4794 {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:999px;
  5465. top:112px;
  5466. width:103px;
  5467. height:35px;
  5468. display:flex;
  5469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5470. font-weight:400;
  5471. font-style:normal;
  5472. font-size:12px;
  5473. color:#606266;
  5474. }
  5475. #u4794 .text {
  5476. position:absolute;
  5477. align-self:center;
  5478. padding:2px 2px 2px 0px;
  5479. box-sizing:border-box;
  5480. width:100%;
  5481. }
  5482. #u4794_text {
  5483. border-width:0px;
  5484. word-wrap:break-word;
  5485. text-transform:none;
  5486. visibility:hidden;
  5487. }
  5488. #u4795_img {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:0px;
  5492. top:0px;
  5493. width:117px;
  5494. height:35px;
  5495. }
  5496. #u4795 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:1102px;
  5500. top:112px;
  5501. width:117px;
  5502. height:35px;
  5503. display:flex;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:12px;
  5508. color:#02A7F0;
  5509. }
  5510. #u4795 .text {
  5511. position:absolute;
  5512. align-self:center;
  5513. padding:2px 2px 2px 0px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u4795_text {
  5518. border-width:0px;
  5519. word-wrap:break-word;
  5520. text-transform:none;
  5521. visibility:hidden;
  5522. }
  5523. #u4796_img {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:0px;
  5527. top:0px;
  5528. width:53px;
  5529. height:35px;
  5530. }
  5531. #u4796 {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:147px;
  5536. width:53px;
  5537. height:35px;
  5538. display:flex;
  5539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:12px;
  5543. color:#606266;
  5544. }
  5545. #u4796 .text {
  5546. position:absolute;
  5547. align-self:center;
  5548. padding:2px 2px 2px 0px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u4796_text {
  5553. border-width:0px;
  5554. word-wrap:break-word;
  5555. text-transform:none;
  5556. }
  5557. #u4797_img {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:88px;
  5563. height:35px;
  5564. }
  5565. #u4797 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:53px;
  5569. top:147px;
  5570. width:88px;
  5571. height:35px;
  5572. display:flex;
  5573. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:12px;
  5577. color:#606266;
  5578. }
  5579. #u4797 .text {
  5580. position:absolute;
  5581. align-self:center;
  5582. padding:2px 2px 2px 0px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u4797_text {
  5587. border-width:0px;
  5588. word-wrap:break-word;
  5589. text-transform:none;
  5590. visibility:hidden;
  5591. }
  5592. #u4798_img {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:154px;
  5598. height:35px;
  5599. }
  5600. #u4798 {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:141px;
  5604. top:147px;
  5605. width:154px;
  5606. height:35px;
  5607. display:flex;
  5608. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5609. font-weight:400;
  5610. font-style:normal;
  5611. font-size:12px;
  5612. color:#606266;
  5613. }
  5614. #u4798 .text {
  5615. position:absolute;
  5616. align-self:center;
  5617. padding:2px 2px 2px 0px;
  5618. box-sizing:border-box;
  5619. width:100%;
  5620. }
  5621. #u4798_text {
  5622. border-width:0px;
  5623. word-wrap:break-word;
  5624. text-transform:none;
  5625. visibility:hidden;
  5626. }
  5627. #u4799_img {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:103px;
  5633. height:35px;
  5634. }
  5635. #u4799 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:295px;
  5639. top:147px;
  5640. width:103px;
  5641. height:35px;
  5642. display:flex;
  5643. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:12px;
  5647. color:#606266;
  5648. }
  5649. #u4799 .text {
  5650. position:absolute;
  5651. align-self:center;
  5652. padding:2px 2px 2px 0px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u4799_text {
  5657. border-width:0px;
  5658. word-wrap:break-word;
  5659. text-transform:none;
  5660. visibility:hidden;
  5661. }
  5662. #u4800_img {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:103px;
  5668. height:35px;
  5669. }
  5670. #u4800 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:398px;
  5674. top:147px;
  5675. width:103px;
  5676. height:35px;
  5677. display:flex;
  5678. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:12px;
  5682. color:#606266;
  5683. }
  5684. #u4800 .text {
  5685. position:absolute;
  5686. align-self:center;
  5687. padding:2px 2px 2px 0px;
  5688. box-sizing:border-box;
  5689. width:100%;
  5690. }
  5691. #u4800_text {
  5692. border-width:0px;
  5693. word-wrap:break-word;
  5694. text-transform:none;
  5695. visibility:hidden;
  5696. }
  5697. #u4801_img {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:88px;
  5703. height:35px;
  5704. }
  5705. #u4801 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:501px;
  5709. top:147px;
  5710. width:88px;
  5711. height:35px;
  5712. display:flex;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:12px;
  5717. color:#606266;
  5718. }
  5719. #u4801 .text {
  5720. position:absolute;
  5721. align-self:center;
  5722. padding:2px 2px 2px 0px;
  5723. box-sizing:border-box;
  5724. width:100%;
  5725. }
  5726. #u4801_text {
  5727. border-width:0px;
  5728. word-wrap:break-word;
  5729. text-transform:none;
  5730. visibility:hidden;
  5731. }
  5732. #u4802_img {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:102px;
  5738. height:35px;
  5739. }
  5740. #u4802 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:589px;
  5744. top:147px;
  5745. width:102px;
  5746. height:35px;
  5747. display:flex;
  5748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5749. font-weight:400;
  5750. font-style:normal;
  5751. font-size:12px;
  5752. color:#606266;
  5753. }
  5754. #u4802 .text {
  5755. position:absolute;
  5756. align-self:center;
  5757. padding:2px 2px 2px 0px;
  5758. box-sizing:border-box;
  5759. width:100%;
  5760. }
  5761. #u4802_text {
  5762. border-width:0px;
  5763. word-wrap:break-word;
  5764. text-transform:none;
  5765. visibility:hidden;
  5766. }
  5767. #u4803_img {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:102px;
  5773. height:35px;
  5774. }
  5775. #u4803 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:691px;
  5779. top:147px;
  5780. width:102px;
  5781. height:35px;
  5782. display:flex;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:12px;
  5787. color:#606266;
  5788. }
  5789. #u4803 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:2px 2px 2px 0px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u4803_text {
  5797. border-width:0px;
  5798. word-wrap:break-word;
  5799. text-transform:none;
  5800. visibility:hidden;
  5801. }
  5802. #u4804_img {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:103px;
  5808. height:35px;
  5809. }
  5810. #u4804 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:793px;
  5814. top:147px;
  5815. width:103px;
  5816. height:35px;
  5817. display:flex;
  5818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5819. font-weight:400;
  5820. font-style:normal;
  5821. font-size:12px;
  5822. color:#606266;
  5823. }
  5824. #u4804 .text {
  5825. position:absolute;
  5826. align-self:center;
  5827. padding:2px 2px 2px 0px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u4804_text {
  5832. border-width:0px;
  5833. word-wrap:break-word;
  5834. text-transform:none;
  5835. visibility:hidden;
  5836. }
  5837. #u4805_img {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:103px;
  5843. height:35px;
  5844. }
  5845. #u4805 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:896px;
  5849. top:147px;
  5850. width:103px;
  5851. height:35px;
  5852. display:flex;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:12px;
  5857. color:#606266;
  5858. }
  5859. #u4805 .text {
  5860. position:absolute;
  5861. align-self:center;
  5862. padding:2px 2px 2px 0px;
  5863. box-sizing:border-box;
  5864. width:100%;
  5865. }
  5866. #u4805_text {
  5867. border-width:0px;
  5868. word-wrap:break-word;
  5869. text-transform:none;
  5870. visibility:hidden;
  5871. }
  5872. #u4806_img {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:103px;
  5878. height:35px;
  5879. }
  5880. #u4806 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:999px;
  5884. top:147px;
  5885. width:103px;
  5886. height:35px;
  5887. display:flex;
  5888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5889. font-weight:400;
  5890. font-style:normal;
  5891. font-size:12px;
  5892. color:#606266;
  5893. }
  5894. #u4806 .text {
  5895. position:absolute;
  5896. align-self:center;
  5897. padding:2px 2px 2px 0px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u4806_text {
  5902. border-width:0px;
  5903. word-wrap:break-word;
  5904. text-transform:none;
  5905. visibility:hidden;
  5906. }
  5907. #u4807_img {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:117px;
  5913. height:35px;
  5914. }
  5915. #u4807 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:1102px;
  5919. top:147px;
  5920. width:117px;
  5921. height:35px;
  5922. display:flex;
  5923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:12px;
  5927. color:#02A7F0;
  5928. }
  5929. #u4807 .text {
  5930. position:absolute;
  5931. align-self:center;
  5932. padding:2px 2px 2px 0px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u4807_text {
  5937. border-width:0px;
  5938. word-wrap:break-word;
  5939. text-transform:none;
  5940. visibility:hidden;
  5941. }
  5942. #u4808_img {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:53px;
  5948. height:35px;
  5949. }
  5950. #u4808 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:182px;
  5955. width:53px;
  5956. height:35px;
  5957. display:flex;
  5958. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:12px;
  5962. color:#606266;
  5963. }
  5964. #u4808 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:2px 2px 2px 0px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u4808_text {
  5972. border-width:0px;
  5973. word-wrap:break-word;
  5974. text-transform:none;
  5975. visibility:hidden;
  5976. }
  5977. #u4809_img {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:88px;
  5983. height:35px;
  5984. }
  5985. #u4809 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:53px;
  5989. top:182px;
  5990. width:88px;
  5991. height:35px;
  5992. display:flex;
  5993. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:12px;
  5997. color:#606266;
  5998. }
  5999. #u4809 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:2px 2px 2px 0px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u4809_text {
  6007. border-width:0px;
  6008. word-wrap:break-word;
  6009. text-transform:none;
  6010. visibility:hidden;
  6011. }
  6012. #u4810_img {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:154px;
  6018. height:35px;
  6019. }
  6020. #u4810 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:141px;
  6024. top:182px;
  6025. width:154px;
  6026. height:35px;
  6027. display:flex;
  6028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:12px;
  6032. color:#606266;
  6033. }
  6034. #u4810 .text {
  6035. position:absolute;
  6036. align-self:center;
  6037. padding:2px 2px 2px 0px;
  6038. box-sizing:border-box;
  6039. width:100%;
  6040. }
  6041. #u4810_text {
  6042. border-width:0px;
  6043. word-wrap:break-word;
  6044. text-transform:none;
  6045. visibility:hidden;
  6046. }
  6047. #u4811_img {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:103px;
  6053. height:35px;
  6054. }
  6055. #u4811 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:295px;
  6059. top:182px;
  6060. width:103px;
  6061. height:35px;
  6062. display:flex;
  6063. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:12px;
  6067. color:#606266;
  6068. }
  6069. #u4811 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:2px 2px 2px 0px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u4811_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. visibility:hidden;
  6081. }
  6082. #u4812_img {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:103px;
  6088. height:35px;
  6089. }
  6090. #u4812 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:398px;
  6094. top:182px;
  6095. width:103px;
  6096. height:35px;
  6097. display:flex;
  6098. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. font-size:12px;
  6102. color:#606266;
  6103. }
  6104. #u4812 .text {
  6105. position:absolute;
  6106. align-self:center;
  6107. padding:2px 2px 2px 0px;
  6108. box-sizing:border-box;
  6109. width:100%;
  6110. }
  6111. #u4812_text {
  6112. border-width:0px;
  6113. word-wrap:break-word;
  6114. text-transform:none;
  6115. visibility:hidden;
  6116. }
  6117. #u4813_img {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:88px;
  6123. height:35px;
  6124. }
  6125. #u4813 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:501px;
  6129. top:182px;
  6130. width:88px;
  6131. height:35px;
  6132. display:flex;
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:12px;
  6137. color:#606266;
  6138. }
  6139. #u4813 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:2px 2px 2px 0px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u4813_text {
  6147. border-width:0px;
  6148. word-wrap:break-word;
  6149. text-transform:none;
  6150. visibility:hidden;
  6151. }
  6152. #u4814_img {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:102px;
  6158. height:35px;
  6159. }
  6160. #u4814 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:589px;
  6164. top:182px;
  6165. width:102px;
  6166. height:35px;
  6167. display:flex;
  6168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6169. font-weight:400;
  6170. font-style:normal;
  6171. font-size:12px;
  6172. color:#606266;
  6173. }
  6174. #u4814 .text {
  6175. position:absolute;
  6176. align-self:center;
  6177. padding:2px 2px 2px 0px;
  6178. box-sizing:border-box;
  6179. width:100%;
  6180. }
  6181. #u4814_text {
  6182. border-width:0px;
  6183. word-wrap:break-word;
  6184. text-transform:none;
  6185. visibility:hidden;
  6186. }
  6187. #u4815_img {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:102px;
  6193. height:35px;
  6194. }
  6195. #u4815 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:691px;
  6199. top:182px;
  6200. width:102px;
  6201. height:35px;
  6202. display:flex;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:12px;
  6207. color:#606266;
  6208. }
  6209. #u4815 .text {
  6210. position:absolute;
  6211. align-self:center;
  6212. padding:2px 2px 2px 0px;
  6213. box-sizing:border-box;
  6214. width:100%;
  6215. }
  6216. #u4815_text {
  6217. border-width:0px;
  6218. word-wrap:break-word;
  6219. text-transform:none;
  6220. visibility:hidden;
  6221. }
  6222. #u4816_img {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:0px;
  6226. top:0px;
  6227. width:103px;
  6228. height:35px;
  6229. }
  6230. #u4816 {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:793px;
  6234. top:182px;
  6235. width:103px;
  6236. height:35px;
  6237. display:flex;
  6238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. font-size:12px;
  6242. color:#606266;
  6243. }
  6244. #u4816 .text {
  6245. position:absolute;
  6246. align-self:center;
  6247. padding:2px 2px 2px 0px;
  6248. box-sizing:border-box;
  6249. width:100%;
  6250. }
  6251. #u4816_text {
  6252. border-width:0px;
  6253. word-wrap:break-word;
  6254. text-transform:none;
  6255. visibility:hidden;
  6256. }
  6257. #u4817_img {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:103px;
  6263. height:35px;
  6264. }
  6265. #u4817 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:896px;
  6269. top:182px;
  6270. width:103px;
  6271. height:35px;
  6272. display:flex;
  6273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:12px;
  6277. color:#606266;
  6278. }
  6279. #u4817 .text {
  6280. position:absolute;
  6281. align-self:center;
  6282. padding:2px 2px 2px 0px;
  6283. box-sizing:border-box;
  6284. width:100%;
  6285. }
  6286. #u4817_text {
  6287. border-width:0px;
  6288. word-wrap:break-word;
  6289. text-transform:none;
  6290. visibility:hidden;
  6291. }
  6292. #u4818_img {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:0px;
  6296. top:0px;
  6297. width:103px;
  6298. height:35px;
  6299. }
  6300. #u4818 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:999px;
  6304. top:182px;
  6305. width:103px;
  6306. height:35px;
  6307. display:flex;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:12px;
  6312. color:#606266;
  6313. }
  6314. #u4818 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:2px 2px 2px 0px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u4818_text {
  6322. border-width:0px;
  6323. word-wrap:break-word;
  6324. text-transform:none;
  6325. visibility:hidden;
  6326. }
  6327. #u4819_img {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:117px;
  6333. height:35px;
  6334. }
  6335. #u4819 {
  6336. border-width:0px;
  6337. position:absolute;
  6338. left:1102px;
  6339. top:182px;
  6340. width:117px;
  6341. height:35px;
  6342. display:flex;
  6343. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6344. font-weight:400;
  6345. font-style:normal;
  6346. font-size:12px;
  6347. color:#606266;
  6348. }
  6349. #u4819 .text {
  6350. position:absolute;
  6351. align-self:center;
  6352. padding:2px 2px 2px 0px;
  6353. box-sizing:border-box;
  6354. width:100%;
  6355. }
  6356. #u4819_text {
  6357. border-width:0px;
  6358. word-wrap:break-word;
  6359. text-transform:none;
  6360. visibility:hidden;
  6361. }
  6362. #u4820_img {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:0px;
  6366. top:0px;
  6367. width:53px;
  6368. height:35px;
  6369. }
  6370. #u4820 {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:217px;
  6375. width:53px;
  6376. height:35px;
  6377. display:flex;
  6378. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6379. font-weight:400;
  6380. font-style:normal;
  6381. font-size:12px;
  6382. color:#606266;
  6383. }
  6384. #u4820 .text {
  6385. position:absolute;
  6386. align-self:center;
  6387. padding:2px 2px 2px 0px;
  6388. box-sizing:border-box;
  6389. width:100%;
  6390. }
  6391. #u4820_text {
  6392. border-width:0px;
  6393. word-wrap:break-word;
  6394. text-transform:none;
  6395. visibility:hidden;
  6396. }
  6397. #u4821_img {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:0px;
  6401. top:0px;
  6402. width:88px;
  6403. height:35px;
  6404. }
  6405. #u4821 {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:53px;
  6409. top:217px;
  6410. width:88px;
  6411. height:35px;
  6412. display:flex;
  6413. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. font-size:12px;
  6417. color:#606266;
  6418. }
  6419. #u4821 .text {
  6420. position:absolute;
  6421. align-self:center;
  6422. padding:2px 2px 2px 0px;
  6423. box-sizing:border-box;
  6424. width:100%;
  6425. }
  6426. #u4821_text {
  6427. border-width:0px;
  6428. word-wrap:break-word;
  6429. text-transform:none;
  6430. visibility:hidden;
  6431. }
  6432. #u4822_img {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:154px;
  6438. height:35px;
  6439. }
  6440. #u4822 {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:141px;
  6444. top:217px;
  6445. width:154px;
  6446. height:35px;
  6447. display:flex;
  6448. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6449. font-weight:400;
  6450. font-style:normal;
  6451. font-size:12px;
  6452. color:#606266;
  6453. }
  6454. #u4822 .text {
  6455. position:absolute;
  6456. align-self:center;
  6457. padding:2px 2px 2px 0px;
  6458. box-sizing:border-box;
  6459. width:100%;
  6460. }
  6461. #u4822_text {
  6462. border-width:0px;
  6463. word-wrap:break-word;
  6464. text-transform:none;
  6465. visibility:hidden;
  6466. }
  6467. #u4823_img {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:0px;
  6471. top:0px;
  6472. width:103px;
  6473. height:35px;
  6474. }
  6475. #u4823 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:295px;
  6479. top:217px;
  6480. width:103px;
  6481. height:35px;
  6482. display:flex;
  6483. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6484. font-weight:400;
  6485. font-style:normal;
  6486. font-size:12px;
  6487. color:#606266;
  6488. }
  6489. #u4823 .text {
  6490. position:absolute;
  6491. align-self:center;
  6492. padding:2px 2px 2px 0px;
  6493. box-sizing:border-box;
  6494. width:100%;
  6495. }
  6496. #u4823_text {
  6497. border-width:0px;
  6498. word-wrap:break-word;
  6499. text-transform:none;
  6500. visibility:hidden;
  6501. }
  6502. #u4824_img {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:103px;
  6508. height:35px;
  6509. }
  6510. #u4824 {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:398px;
  6514. top:217px;
  6515. width:103px;
  6516. height:35px;
  6517. display:flex;
  6518. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:12px;
  6522. color:#606266;
  6523. }
  6524. #u4824 .text {
  6525. position:absolute;
  6526. align-self:center;
  6527. padding:2px 2px 2px 0px;
  6528. box-sizing:border-box;
  6529. width:100%;
  6530. }
  6531. #u4824_text {
  6532. border-width:0px;
  6533. word-wrap:break-word;
  6534. text-transform:none;
  6535. visibility:hidden;
  6536. }
  6537. #u4825_img {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:0px;
  6541. top:0px;
  6542. width:88px;
  6543. height:35px;
  6544. }
  6545. #u4825 {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:501px;
  6549. top:217px;
  6550. width:88px;
  6551. height:35px;
  6552. display:flex;
  6553. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:12px;
  6557. color:#606266;
  6558. }
  6559. #u4825 .text {
  6560. position:absolute;
  6561. align-self:center;
  6562. padding:2px 2px 2px 0px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u4825_text {
  6567. border-width:0px;
  6568. word-wrap:break-word;
  6569. text-transform:none;
  6570. visibility:hidden;
  6571. }
  6572. #u4826_img {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:102px;
  6578. height:35px;
  6579. }
  6580. #u4826 {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:589px;
  6584. top:217px;
  6585. width:102px;
  6586. height:35px;
  6587. display:flex;
  6588. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:12px;
  6592. color:#606266;
  6593. }
  6594. #u4826 .text {
  6595. position:absolute;
  6596. align-self:center;
  6597. padding:2px 2px 2px 0px;
  6598. box-sizing:border-box;
  6599. width:100%;
  6600. }
  6601. #u4826_text {
  6602. border-width:0px;
  6603. word-wrap:break-word;
  6604. text-transform:none;
  6605. visibility:hidden;
  6606. }
  6607. #u4827_img {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:102px;
  6613. height:35px;
  6614. }
  6615. #u4827 {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:691px;
  6619. top:217px;
  6620. width:102px;
  6621. height:35px;
  6622. display:flex;
  6623. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6624. font-weight:400;
  6625. font-style:normal;
  6626. font-size:12px;
  6627. color:#606266;
  6628. }
  6629. #u4827 .text {
  6630. position:absolute;
  6631. align-self:center;
  6632. padding:2px 2px 2px 0px;
  6633. box-sizing:border-box;
  6634. width:100%;
  6635. }
  6636. #u4827_text {
  6637. border-width:0px;
  6638. word-wrap:break-word;
  6639. text-transform:none;
  6640. visibility:hidden;
  6641. }
  6642. #u4828_img {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:103px;
  6648. height:35px;
  6649. }
  6650. #u4828 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:793px;
  6654. top:217px;
  6655. width:103px;
  6656. height:35px;
  6657. display:flex;
  6658. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6659. font-weight:400;
  6660. font-style:normal;
  6661. font-size:12px;
  6662. color:#606266;
  6663. }
  6664. #u4828 .text {
  6665. position:absolute;
  6666. align-self:center;
  6667. padding:2px 2px 2px 0px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u4828_text {
  6672. border-width:0px;
  6673. word-wrap:break-word;
  6674. text-transform:none;
  6675. visibility:hidden;
  6676. }
  6677. #u4829_img {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:103px;
  6683. height:35px;
  6684. }
  6685. #u4829 {
  6686. border-width:0px;
  6687. position:absolute;
  6688. left:896px;
  6689. top:217px;
  6690. width:103px;
  6691. height:35px;
  6692. display:flex;
  6693. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:12px;
  6697. color:#606266;
  6698. }
  6699. #u4829 .text {
  6700. position:absolute;
  6701. align-self:center;
  6702. padding:2px 2px 2px 0px;
  6703. box-sizing:border-box;
  6704. width:100%;
  6705. }
  6706. #u4829_text {
  6707. border-width:0px;
  6708. word-wrap:break-word;
  6709. text-transform:none;
  6710. visibility:hidden;
  6711. }
  6712. #u4830_img {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:103px;
  6718. height:35px;
  6719. }
  6720. #u4830 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:999px;
  6724. top:217px;
  6725. width:103px;
  6726. height:35px;
  6727. display:flex;
  6728. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:12px;
  6732. color:#606266;
  6733. }
  6734. #u4830 .text {
  6735. position:absolute;
  6736. align-self:center;
  6737. padding:2px 2px 2px 0px;
  6738. box-sizing:border-box;
  6739. width:100%;
  6740. }
  6741. #u4830_text {
  6742. border-width:0px;
  6743. word-wrap:break-word;
  6744. text-transform:none;
  6745. visibility:hidden;
  6746. }
  6747. #u4831_img {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:117px;
  6753. height:35px;
  6754. }
  6755. #u4831 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:1102px;
  6759. top:217px;
  6760. width:117px;
  6761. height:35px;
  6762. display:flex;
  6763. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:12px;
  6767. color:#606266;
  6768. }
  6769. #u4831 .text {
  6770. position:absolute;
  6771. align-self:center;
  6772. padding:2px 2px 2px 0px;
  6773. box-sizing:border-box;
  6774. width:100%;
  6775. }
  6776. #u4831_text {
  6777. border-width:0px;
  6778. word-wrap:break-word;
  6779. text-transform:none;
  6780. visibility:hidden;
  6781. }
  6782. #u4832_img {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:0px;
  6787. width:53px;
  6788. height:32px;
  6789. }
  6790. #u4832 {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:252px;
  6795. width:53px;
  6796. height:32px;
  6797. display:flex;
  6798. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6799. font-weight:400;
  6800. font-style:normal;
  6801. font-size:12px;
  6802. color:#606266;
  6803. }
  6804. #u4832 .text {
  6805. position:absolute;
  6806. align-self:center;
  6807. padding:2px 2px 2px 0px;
  6808. box-sizing:border-box;
  6809. width:100%;
  6810. }
  6811. #u4832_text {
  6812. border-width:0px;
  6813. word-wrap:break-word;
  6814. text-transform:none;
  6815. visibility:hidden;
  6816. }
  6817. #u4833_img {
  6818. border-width:0px;
  6819. position:absolute;
  6820. left:0px;
  6821. top:0px;
  6822. width:88px;
  6823. height:32px;
  6824. }
  6825. #u4833 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:53px;
  6829. top:252px;
  6830. width:88px;
  6831. height:32px;
  6832. display:flex;
  6833. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6834. font-weight:400;
  6835. font-style:normal;
  6836. font-size:12px;
  6837. color:#606266;
  6838. }
  6839. #u4833 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:2px 2px 2px 0px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u4833_text {
  6847. border-width:0px;
  6848. word-wrap:break-word;
  6849. text-transform:none;
  6850. visibility:hidden;
  6851. }
  6852. #u4834_img {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:154px;
  6858. height:32px;
  6859. }
  6860. #u4834 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:141px;
  6864. top:252px;
  6865. width:154px;
  6866. height:32px;
  6867. display:flex;
  6868. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6869. font-weight:400;
  6870. font-style:normal;
  6871. font-size:12px;
  6872. color:#606266;
  6873. }
  6874. #u4834 .text {
  6875. position:absolute;
  6876. align-self:center;
  6877. padding:2px 2px 2px 0px;
  6878. box-sizing:border-box;
  6879. width:100%;
  6880. }
  6881. #u4834_text {
  6882. border-width:0px;
  6883. word-wrap:break-word;
  6884. text-transform:none;
  6885. visibility:hidden;
  6886. }
  6887. #u4835_img {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:0px;
  6891. top:0px;
  6892. width:103px;
  6893. height:32px;
  6894. }
  6895. #u4835 {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:295px;
  6899. top:252px;
  6900. width:103px;
  6901. height:32px;
  6902. display:flex;
  6903. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:12px;
  6907. color:#606266;
  6908. }
  6909. #u4835 .text {
  6910. position:absolute;
  6911. align-self:center;
  6912. padding:2px 2px 2px 0px;
  6913. box-sizing:border-box;
  6914. width:100%;
  6915. }
  6916. #u4835_text {
  6917. border-width:0px;
  6918. word-wrap:break-word;
  6919. text-transform:none;
  6920. visibility:hidden;
  6921. }
  6922. #u4836_img {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:0px;
  6926. top:0px;
  6927. width:103px;
  6928. height:32px;
  6929. }
  6930. #u4836 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:398px;
  6934. top:252px;
  6935. width:103px;
  6936. height:32px;
  6937. display:flex;
  6938. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6939. font-weight:400;
  6940. font-style:normal;
  6941. font-size:12px;
  6942. color:#606266;
  6943. }
  6944. #u4836 .text {
  6945. position:absolute;
  6946. align-self:center;
  6947. padding:2px 2px 2px 0px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u4836_text {
  6952. border-width:0px;
  6953. word-wrap:break-word;
  6954. text-transform:none;
  6955. visibility:hidden;
  6956. }
  6957. #u4837_img {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:88px;
  6963. height:32px;
  6964. }
  6965. #u4837 {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:501px;
  6969. top:252px;
  6970. width:88px;
  6971. height:32px;
  6972. display:flex;
  6973. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6974. font-weight:400;
  6975. font-style:normal;
  6976. font-size:12px;
  6977. color:#606266;
  6978. }
  6979. #u4837 .text {
  6980. position:absolute;
  6981. align-self:center;
  6982. padding:2px 2px 2px 0px;
  6983. box-sizing:border-box;
  6984. width:100%;
  6985. }
  6986. #u4837_text {
  6987. border-width:0px;
  6988. word-wrap:break-word;
  6989. text-transform:none;
  6990. visibility:hidden;
  6991. }
  6992. #u4838_img {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:0px;
  6997. width:102px;
  6998. height:32px;
  6999. }
  7000. #u4838 {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:589px;
  7004. top:252px;
  7005. width:102px;
  7006. height:32px;
  7007. display:flex;
  7008. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7009. font-weight:400;
  7010. font-style:normal;
  7011. font-size:12px;
  7012. color:#606266;
  7013. }
  7014. #u4838 .text {
  7015. position:absolute;
  7016. align-self:center;
  7017. padding:2px 2px 2px 0px;
  7018. box-sizing:border-box;
  7019. width:100%;
  7020. }
  7021. #u4838_text {
  7022. border-width:0px;
  7023. word-wrap:break-word;
  7024. text-transform:none;
  7025. visibility:hidden;
  7026. }
  7027. #u4839_img {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:102px;
  7033. height:32px;
  7034. }
  7035. #u4839 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:691px;
  7039. top:252px;
  7040. width:102px;
  7041. height:32px;
  7042. display:flex;
  7043. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7044. font-weight:400;
  7045. font-style:normal;
  7046. font-size:12px;
  7047. color:#606266;
  7048. }
  7049. #u4839 .text {
  7050. position:absolute;
  7051. align-self:center;
  7052. padding:2px 2px 2px 0px;
  7053. box-sizing:border-box;
  7054. width:100%;
  7055. }
  7056. #u4839_text {
  7057. border-width:0px;
  7058. word-wrap:break-word;
  7059. text-transform:none;
  7060. visibility:hidden;
  7061. }
  7062. #u4840_img {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:0px;
  7066. top:0px;
  7067. width:103px;
  7068. height:32px;
  7069. }
  7070. #u4840 {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:793px;
  7074. top:252px;
  7075. width:103px;
  7076. height:32px;
  7077. display:flex;
  7078. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. font-size:12px;
  7082. color:#606266;
  7083. }
  7084. #u4840 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 2px 2px 0px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u4840_text {
  7092. border-width:0px;
  7093. word-wrap:break-word;
  7094. text-transform:none;
  7095. visibility:hidden;
  7096. }
  7097. #u4841_img {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:103px;
  7103. height:32px;
  7104. }
  7105. #u4841 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:896px;
  7109. top:252px;
  7110. width:103px;
  7111. height:32px;
  7112. display:flex;
  7113. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. font-size:12px;
  7117. color:#606266;
  7118. }
  7119. #u4841 .text {
  7120. position:absolute;
  7121. align-self:center;
  7122. padding:2px 2px 2px 0px;
  7123. box-sizing:border-box;
  7124. width:100%;
  7125. }
  7126. #u4841_text {
  7127. border-width:0px;
  7128. word-wrap:break-word;
  7129. text-transform:none;
  7130. visibility:hidden;
  7131. }
  7132. #u4842_img {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:0px;
  7137. width:103px;
  7138. height:32px;
  7139. }
  7140. #u4842 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:999px;
  7144. top:252px;
  7145. width:103px;
  7146. height:32px;
  7147. display:flex;
  7148. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7149. font-weight:400;
  7150. font-style:normal;
  7151. font-size:12px;
  7152. color:#606266;
  7153. }
  7154. #u4842 .text {
  7155. position:absolute;
  7156. align-self:center;
  7157. padding:2px 2px 2px 0px;
  7158. box-sizing:border-box;
  7159. width:100%;
  7160. }
  7161. #u4842_text {
  7162. border-width:0px;
  7163. word-wrap:break-word;
  7164. text-transform:none;
  7165. visibility:hidden;
  7166. }
  7167. #u4843_img {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:117px;
  7173. height:32px;
  7174. }
  7175. #u4843 {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:1102px;
  7179. top:252px;
  7180. width:117px;
  7181. height:32px;
  7182. display:flex;
  7183. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:12px;
  7187. color:#606266;
  7188. }
  7189. #u4843 .text {
  7190. position:absolute;
  7191. align-self:center;
  7192. padding:2px 2px 2px 0px;
  7193. box-sizing:border-box;
  7194. width:100%;
  7195. }
  7196. #u4843_text {
  7197. border-width:0px;
  7198. word-wrap:break-word;
  7199. text-transform:none;
  7200. visibility:hidden;
  7201. }
  7202. #u4844 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:0px;
  7208. height:0px;
  7209. }
  7210. #u4845_div {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:0px;
  7214. top:0px;
  7215. width:140px;
  7216. height:30px;
  7217. background:inherit;
  7218. background-color:rgba(255, 255, 255, 1);
  7219. box-sizing:border-box;
  7220. border-width:1px;
  7221. border-style:solid;
  7222. border-color:rgba(201, 201, 201, 1);
  7223. border-radius:4px;
  7224. -moz-box-shadow:none;
  7225. -webkit-box-shadow:none;
  7226. box-shadow:none;
  7227. font-family:'Microsoft YaHei', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:14px;
  7231. color:#CCCCCC;
  7232. text-align:left;
  7233. }
  7234. #u4845 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:353px;
  7238. top:181px;
  7239. width:140px;
  7240. height:30px;
  7241. display:flex;
  7242. font-family:'Microsoft YaHei', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:14px;
  7246. color:#CCCCCC;
  7247. text-align:left;
  7248. }
  7249. #u4845 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 8px 2px 8px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u4845_text {
  7257. border-width:0px;
  7258. word-wrap:break-word;
  7259. text-transform:none;
  7260. visibility:hidden;
  7261. }
  7262. #u4846_input {
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:127px;
  7267. height:25px;
  7268. padding:2px 2px 2px 2px;
  7269. font-family:'Microsoft YaHei', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:10px;
  7273. letter-spacing:normal;
  7274. color:#000000;
  7275. vertical-align:none;
  7276. text-align:left;
  7277. text-transform:none;
  7278. background-color:transparent;
  7279. border-color:transparent;
  7280. }
  7281. #u4846_input.disabled {
  7282. position:absolute;
  7283. left:0px;
  7284. top:0px;
  7285. width:127px;
  7286. height:25px;
  7287. padding:2px 2px 2px 2px;
  7288. font-family:'Microsoft YaHei', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:10px;
  7292. letter-spacing:normal;
  7293. color:#000000;
  7294. vertical-align:none;
  7295. text-align:left;
  7296. text-transform:none;
  7297. background-color:transparent;
  7298. border-color:transparent;
  7299. }
  7300. #u4846_div {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:127px;
  7306. height:25px;
  7307. background:inherit;
  7308. background-color:rgba(255, 255, 255, 1);
  7309. border:none;
  7310. border-radius:0px;
  7311. -moz-box-shadow:none;
  7312. -webkit-box-shadow:none;
  7313. box-shadow:none;
  7314. font-family:'Microsoft YaHei', sans-serif;
  7315. font-weight:400;
  7316. font-style:normal;
  7317. font-size:10px;
  7318. }
  7319. #u4846 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:361px;
  7323. top:182px;
  7324. width:127px;
  7325. height:25px;
  7326. display:flex;
  7327. font-family:'Microsoft YaHei', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:10px;
  7331. }
  7332. #u4846 .text {
  7333. position:absolute;
  7334. align-self:center;
  7335. padding:2px 2px 2px 2px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u4846_div.disabled {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:0px;
  7343. top:0px;
  7344. width:127px;
  7345. height:25px;
  7346. background:inherit;
  7347. background-color:rgba(240, 240, 240, 1);
  7348. border:none;
  7349. border-radius:0px;
  7350. -moz-box-shadow:none;
  7351. -webkit-box-shadow:none;
  7352. box-shadow:none;
  7353. font-family:'Microsoft YaHei', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:10px;
  7357. }
  7358. #u4846.disabled {
  7359. }
  7360. #u4847_div {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:59px;
  7366. height:30px;
  7367. background:inherit;
  7368. background-color:rgba(24, 144, 255, 1);
  7369. box-sizing:border-box;
  7370. border-width:1px;
  7371. border-style:solid;
  7372. border-color:rgba(0, 153, 255, 1);
  7373. border-radius:4px;
  7374. -moz-box-shadow:none;
  7375. -webkit-box-shadow:none;
  7376. box-shadow:none;
  7377. font-family:'Microsoft YaHei', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:14px;
  7381. color:#FFFFFF;
  7382. }
  7383. #u4847 {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:1133px;
  7387. top:181px;
  7388. width:59px;
  7389. height:30px;
  7390. display:flex;
  7391. font-family:'Microsoft YaHei', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:14px;
  7395. color:#FFFFFF;
  7396. }
  7397. #u4847 .text {
  7398. position:absolute;
  7399. align-self:center;
  7400. padding:5px 15px 5px 15px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u4847_text {
  7405. border-width:0px;
  7406. white-space:nowrap;
  7407. text-transform:none;
  7408. }
  7409. #u4848 {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:0px;
  7415. height:0px;
  7416. }
  7417. #u4849_div {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:160px;
  7423. height:30px;
  7424. background:inherit;
  7425. background-color:rgba(255, 255, 255, 1);
  7426. box-sizing:border-box;
  7427. border-width:1px;
  7428. border-style:solid;
  7429. border-color:rgba(215, 215, 215, 1);
  7430. border-radius:4px;
  7431. -moz-box-shadow:none;
  7432. -webkit-box-shadow:none;
  7433. box-shadow:none;
  7434. font-size:11px;
  7435. }
  7436. #u4849 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:953px;
  7440. top:181px;
  7441. width:160px;
  7442. height:30px;
  7443. display:flex;
  7444. font-size:11px;
  7445. }
  7446. #u4849 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:2px 2px 2px 2px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u4849_text {
  7454. border-width:0px;
  7455. word-wrap:break-word;
  7456. text-transform:none;
  7457. visibility:hidden;
  7458. }
  7459. #u4850_input {
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:140px;
  7464. height:23px;
  7465. padding:2px 2px 2px 2px;
  7466. font-family:'ArialMT', 'Arial', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:11px;
  7470. letter-spacing:normal;
  7471. color:#AAAAAA;
  7472. vertical-align:none;
  7473. text-align:left;
  7474. text-transform:none;
  7475. background-color:transparent;
  7476. border-color:transparent;
  7477. }
  7478. #u4850_input.disabled {
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:140px;
  7483. height:23px;
  7484. padding:2px 2px 2px 2px;
  7485. font-family:'ArialMT', 'Arial', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:11px;
  7489. letter-spacing:normal;
  7490. color:#AAAAAA;
  7491. vertical-align:none;
  7492. text-align:left;
  7493. text-transform:none;
  7494. background-color:transparent;
  7495. border-color:transparent;
  7496. }
  7497. #u4850_div {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:140px;
  7503. height:23px;
  7504. background:inherit;
  7505. background-color:rgba(255, 255, 255, 1);
  7506. border:none;
  7507. border-radius:0px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. font-size:11px;
  7512. color:#AAAAAA;
  7513. }
  7514. #u4850 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:960px;
  7518. top:183px;
  7519. width:140px;
  7520. height:23px;
  7521. display:flex;
  7522. font-size:11px;
  7523. color:#AAAAAA;
  7524. }
  7525. #u4850 .text {
  7526. position:absolute;
  7527. align-self:flex-start;
  7528. padding:2px 2px 2px 2px;
  7529. box-sizing:border-box;
  7530. width:100%;
  7531. }
  7532. #u4850_div.disabled {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:140px;
  7538. height:23px;
  7539. background:inherit;
  7540. background-color:rgba(240, 240, 240, 1);
  7541. border:none;
  7542. border-radius:0px;
  7543. -moz-box-shadow:none;
  7544. -webkit-box-shadow:none;
  7545. box-shadow:none;
  7546. font-size:11px;
  7547. color:#AAAAAA;
  7548. }
  7549. #u4850.disabled {
  7550. }
  7551. .u4850_input_option {
  7552. font-size:11px;
  7553. }
  7554. #u4851 {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:0px;
  7560. height:0px;
  7561. }
  7562. #u4852_div {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:140px;
  7568. height:30px;
  7569. background:inherit;
  7570. background-color:rgba(255, 255, 255, 1);
  7571. box-sizing:border-box;
  7572. border-width:1px;
  7573. border-style:solid;
  7574. border-color:rgba(201, 201, 201, 1);
  7575. border-radius:4px;
  7576. -moz-box-shadow:none;
  7577. -webkit-box-shadow:none;
  7578. box-shadow:none;
  7579. font-family:'Microsoft YaHei', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:14px;
  7583. color:#CCCCCC;
  7584. text-align:left;
  7585. }
  7586. #u4852 {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:503px;
  7590. top:181px;
  7591. width:140px;
  7592. height:30px;
  7593. display:flex;
  7594. font-family:'Microsoft YaHei', sans-serif;
  7595. font-weight:400;
  7596. font-style:normal;
  7597. font-size:14px;
  7598. color:#CCCCCC;
  7599. text-align:left;
  7600. }
  7601. #u4852 .text {
  7602. position:absolute;
  7603. align-self:center;
  7604. padding:2px 8px 2px 8px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u4852_text {
  7609. border-width:0px;
  7610. word-wrap:break-word;
  7611. text-transform:none;
  7612. visibility:hidden;
  7613. }
  7614. #u4853_input {
  7615. position:absolute;
  7616. left:0px;
  7617. top:0px;
  7618. width:127px;
  7619. height:25px;
  7620. padding:2px 2px 2px 2px;
  7621. font-family:'Microsoft YaHei', sans-serif;
  7622. font-weight:400;
  7623. font-style:normal;
  7624. font-size:10px;
  7625. letter-spacing:normal;
  7626. color:#000000;
  7627. vertical-align:none;
  7628. text-align:left;
  7629. text-transform:none;
  7630. background-color:transparent;
  7631. border-color:transparent;
  7632. }
  7633. #u4853_input.disabled {
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:127px;
  7638. height:25px;
  7639. padding:2px 2px 2px 2px;
  7640. font-family:'Microsoft YaHei', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:10px;
  7644. letter-spacing:normal;
  7645. color:#000000;
  7646. vertical-align:none;
  7647. text-align:left;
  7648. text-transform:none;
  7649. background-color:transparent;
  7650. border-color:transparent;
  7651. }
  7652. #u4853_div {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:127px;
  7658. height:25px;
  7659. background:inherit;
  7660. background-color:rgba(255, 255, 255, 1);
  7661. border:none;
  7662. border-radius:0px;
  7663. -moz-box-shadow:none;
  7664. -webkit-box-shadow:none;
  7665. box-shadow:none;
  7666. font-family:'Microsoft YaHei', sans-serif;
  7667. font-weight:400;
  7668. font-style:normal;
  7669. font-size:10px;
  7670. }
  7671. #u4853 {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:511px;
  7675. top:182px;
  7676. width:127px;
  7677. height:25px;
  7678. display:flex;
  7679. font-family:'Microsoft YaHei', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:10px;
  7683. }
  7684. #u4853 .text {
  7685. position:absolute;
  7686. align-self:center;
  7687. padding:2px 2px 2px 2px;
  7688. box-sizing:border-box;
  7689. width:100%;
  7690. }
  7691. #u4853_div.disabled {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:0px;
  7695. top:0px;
  7696. width:127px;
  7697. height:25px;
  7698. background:inherit;
  7699. background-color:rgba(240, 240, 240, 1);
  7700. border:none;
  7701. border-radius:0px;
  7702. -moz-box-shadow:none;
  7703. -webkit-box-shadow:none;
  7704. box-shadow:none;
  7705. font-family:'Microsoft YaHei', sans-serif;
  7706. font-weight:400;
  7707. font-style:normal;
  7708. font-size:10px;
  7709. }
  7710. #u4853.disabled {
  7711. }
  7712. #u4854 {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:0px;
  7718. height:0px;
  7719. }
  7720. #u4855_div {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:140px;
  7726. height:30px;
  7727. background:inherit;
  7728. background-color:rgba(255, 255, 255, 1);
  7729. box-sizing:border-box;
  7730. border-width:1px;
  7731. border-style:solid;
  7732. border-color:rgba(201, 201, 201, 1);
  7733. border-radius:4px;
  7734. -moz-box-shadow:none;
  7735. -webkit-box-shadow:none;
  7736. box-shadow:none;
  7737. font-family:'Microsoft YaHei', sans-serif;
  7738. font-weight:400;
  7739. font-style:normal;
  7740. font-size:14px;
  7741. color:#CCCCCC;
  7742. text-align:left;
  7743. }
  7744. #u4855 {
  7745. border-width:0px;
  7746. position:absolute;
  7747. left:653px;
  7748. top:181px;
  7749. width:140px;
  7750. height:30px;
  7751. display:flex;
  7752. font-family:'Microsoft YaHei', sans-serif;
  7753. font-weight:400;
  7754. font-style:normal;
  7755. font-size:14px;
  7756. color:#CCCCCC;
  7757. text-align:left;
  7758. }
  7759. #u4855 .text {
  7760. position:absolute;
  7761. align-self:center;
  7762. padding:2px 8px 2px 8px;
  7763. box-sizing:border-box;
  7764. width:100%;
  7765. }
  7766. #u4855_text {
  7767. border-width:0px;
  7768. word-wrap:break-word;
  7769. text-transform:none;
  7770. visibility:hidden;
  7771. }
  7772. #u4856_input {
  7773. position:absolute;
  7774. left:0px;
  7775. top:0px;
  7776. width:127px;
  7777. height:25px;
  7778. padding:2px 2px 2px 2px;
  7779. font-family:'Microsoft YaHei', sans-serif;
  7780. font-weight:400;
  7781. font-style:normal;
  7782. font-size:10px;
  7783. letter-spacing:normal;
  7784. color:#000000;
  7785. vertical-align:none;
  7786. text-align:left;
  7787. text-transform:none;
  7788. background-color:transparent;
  7789. border-color:transparent;
  7790. }
  7791. #u4856_input.disabled {
  7792. position:absolute;
  7793. left:0px;
  7794. top:0px;
  7795. width:127px;
  7796. height:25px;
  7797. padding:2px 2px 2px 2px;
  7798. font-family:'Microsoft YaHei', sans-serif;
  7799. font-weight:400;
  7800. font-style:normal;
  7801. font-size:10px;
  7802. letter-spacing:normal;
  7803. color:#000000;
  7804. vertical-align:none;
  7805. text-align:left;
  7806. text-transform:none;
  7807. background-color:transparent;
  7808. border-color:transparent;
  7809. }
  7810. #u4856_div {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:127px;
  7816. height:25px;
  7817. background:inherit;
  7818. background-color:rgba(255, 255, 255, 1);
  7819. border:none;
  7820. border-radius:0px;
  7821. -moz-box-shadow:none;
  7822. -webkit-box-shadow:none;
  7823. box-shadow:none;
  7824. font-family:'Microsoft YaHei', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:10px;
  7828. }
  7829. #u4856 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:661px;
  7833. top:182px;
  7834. width:127px;
  7835. height:25px;
  7836. display:flex;
  7837. font-family:'Microsoft YaHei', sans-serif;
  7838. font-weight:400;
  7839. font-style:normal;
  7840. font-size:10px;
  7841. }
  7842. #u4856 .text {
  7843. position:absolute;
  7844. align-self:center;
  7845. padding:2px 2px 2px 2px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u4856_div.disabled {
  7850. border-width:0px;
  7851. position:absolute;
  7852. left:0px;
  7853. top:0px;
  7854. width:127px;
  7855. height:25px;
  7856. background:inherit;
  7857. background-color:rgba(240, 240, 240, 1);
  7858. border:none;
  7859. border-radius:0px;
  7860. -moz-box-shadow:none;
  7861. -webkit-box-shadow:none;
  7862. box-shadow:none;
  7863. font-family:'Microsoft YaHei', sans-serif;
  7864. font-weight:400;
  7865. font-style:normal;
  7866. font-size:10px;
  7867. }
  7868. #u4856.disabled {
  7869. }
  7870. #u4857_div {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:55px;
  7876. height:30px;
  7877. background:inherit;
  7878. background-color:rgba(255, 255, 255, 1);
  7879. box-sizing:border-box;
  7880. border-width:1px;
  7881. border-style:solid;
  7882. border-color:rgba(170, 170, 170, 1);
  7883. border-radius:4px;
  7884. -moz-box-shadow:none;
  7885. -webkit-box-shadow:none;
  7886. box-shadow:none;
  7887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7888. font-weight:400;
  7889. font-style:normal;
  7890. font-size:12px;
  7891. color:#555555;
  7892. }
  7893. #u4857 {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:1202px;
  7897. top:181px;
  7898. width:55px;
  7899. height:30px;
  7900. display:flex;
  7901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7902. font-weight:400;
  7903. font-style:normal;
  7904. font-size:12px;
  7905. color:#555555;
  7906. }
  7907. #u4857 .text {
  7908. position:absolute;
  7909. align-self:center;
  7910. padding:5px 15px 5px 15px;
  7911. box-sizing:border-box;
  7912. width:100%;
  7913. }
  7914. #u4857_text {
  7915. border-width:0px;
  7916. white-space:nowrap;
  7917. text-transform:none;
  7918. }
  7919. #u4858 {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:0px;
  7923. top:0px;
  7924. width:0px;
  7925. height:0px;
  7926. }
  7927. #u4859_div {
  7928. border-width:0px;
  7929. position:absolute;
  7930. left:0px;
  7931. top:0px;
  7932. width:500px;
  7933. height:160px;
  7934. background:inherit;
  7935. background-color:rgba(255, 255, 255, 1);
  7936. border:none;
  7937. border-radius:4px;
  7938. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7939. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7940. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7941. font-family:'Microsoft YaHei', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. }
  7945. #u4859 {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:913px;
  7949. top:421px;
  7950. width:500px;
  7951. height:160px;
  7952. display:flex;
  7953. font-family:'Microsoft YaHei', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. }
  7957. #u4859 .text {
  7958. position:absolute;
  7959. align-self:center;
  7960. padding:2px 2px 2px 2px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u4859_text {
  7965. border-width:0px;
  7966. word-wrap:break-word;
  7967. text-transform:none;
  7968. visibility:hidden;
  7969. }
  7970. #u4860_div {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:0px;
  7974. top:0px;
  7975. width:405px;
  7976. height:30px;
  7977. background:inherit;
  7978. background-color:rgba(255, 255, 255, 0);
  7979. border:none;
  7980. border-radius:0px;
  7981. -moz-box-shadow:none;
  7982. -webkit-box-shadow:none;
  7983. box-shadow:none;
  7984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7985. font-weight:400;
  7986. font-style:normal;
  7987. font-size:14px;
  7988. color:#666666;
  7989. line-height:30px;
  7990. }
  7991. #u4860 {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:973px;
  7995. top:479px;
  7996. width:405px;
  7997. height:30px;
  7998. display:flex;
  7999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:14px;
  8003. color:#666666;
  8004. line-height:30px;
  8005. }
  8006. #u4860 .text {
  8007. position:absolute;
  8008. align-self:flex-start;
  8009. padding:0px 0px 0px 0px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u4860_text {
  8014. border-width:0px;
  8015. word-wrap:break-word;
  8016. text-transform:none;
  8017. }
  8018. #u4861_div {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:0px;
  8022. top:0px;
  8023. width:397px;
  8024. height:21px;
  8025. background:inherit;
  8026. background-color:rgba(255, 255, 255, 0);
  8027. border:none;
  8028. border-radius:0px;
  8029. -moz-box-shadow:none;
  8030. -webkit-box-shadow:none;
  8031. box-shadow:none;
  8032. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8033. font-weight:650;
  8034. font-style:normal;
  8035. font-size:18px;
  8036. color:#000000;
  8037. line-height:22px;
  8038. }
  8039. #u4861 {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:973px;
  8043. top:446px;
  8044. width:397px;
  8045. height:21px;
  8046. display:flex;
  8047. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8048. font-weight:650;
  8049. font-style:normal;
  8050. font-size:18px;
  8051. color:#000000;
  8052. line-height:22px;
  8053. }
  8054. #u4861 .text {
  8055. position:absolute;
  8056. align-self:flex-start;
  8057. padding:0px 0px 0px 0px;
  8058. box-sizing:border-box;
  8059. width:100%;
  8060. }
  8061. #u4861_text {
  8062. border-width:0px;
  8063. white-space:nowrap;
  8064. text-transform:none;
  8065. }
  8066. #u4862_div {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:0px;
  8070. top:0px;
  8071. width:61px;
  8072. height:32px;
  8073. background:inherit;
  8074. background-color:rgba(24, 144, 255, 1);
  8075. border:none;
  8076. border-radius:4px;
  8077. -moz-box-shadow:none;
  8078. -webkit-box-shadow:none;
  8079. box-shadow:none;
  8080. font-family:'Microsoft YaHei', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:14px;
  8084. color:#FFFFFF;
  8085. }
  8086. #u4862 {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:1332px;
  8090. top:529px;
  8091. width:61px;
  8092. height:32px;
  8093. display:flex;
  8094. font-family:'Microsoft YaHei', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:14px;
  8098. color:#FFFFFF;
  8099. }
  8100. #u4862 .text {
  8101. position:absolute;
  8102. align-self:center;
  8103. padding:2px 16px 2px 16px;
  8104. box-sizing:border-box;
  8105. width:100%;
  8106. }
  8107. #u4862_text {
  8108. border-width:0px;
  8109. white-space:nowrap;
  8110. text-transform:none;
  8111. }
  8112. #u4863_div {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:0px;
  8116. top:0px;
  8117. width:66px;
  8118. height:32px;
  8119. background:inherit;
  8120. background-color:rgba(255, 255, 255, 1);
  8121. box-sizing:border-box;
  8122. border-width:1px;
  8123. border-style:solid;
  8124. border-color:rgba(217, 217, 217, 1);
  8125. border-radius:4px;
  8126. -moz-box-shadow:none;
  8127. -webkit-box-shadow:none;
  8128. box-shadow:none;
  8129. font-family:'Microsoft YaHei', sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:14px;
  8133. color:rgba(0, 0, 0, 0.647058823529412);
  8134. line-height:21px;
  8135. }
  8136. #u4863 {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:1253px;
  8140. top:529px;
  8141. width:66px;
  8142. height:32px;
  8143. display:flex;
  8144. font-family:'Microsoft YaHei', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:14px;
  8148. color:rgba(0, 0, 0, 0.647058823529412);
  8149. line-height:21px;
  8150. }
  8151. #u4863 .text {
  8152. position:absolute;
  8153. align-self:center;
  8154. padding:2px 16px 2px 16px;
  8155. box-sizing:border-box;
  8156. width:100%;
  8157. }
  8158. #u4863_text {
  8159. border-width:0px;
  8160. white-space:nowrap;
  8161. text-transform:none;
  8162. }
  8163. #u4864_img {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:0px;
  8167. top:0px;
  8168. width:24px;
  8169. height:24px;
  8170. }
  8171. #u4864 {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:938px;
  8175. top:444px;
  8176. width:24px;
  8177. height:24px;
  8178. display:flex;
  8179. font-family:'Microsoft YaHei', sans-serif;
  8180. font-weight:400;
  8181. font-style:normal;
  8182. font-size:52px;
  8183. color:#FAAD14;
  8184. }
  8185. #u4864 .text {
  8186. position:absolute;
  8187. align-self:center;
  8188. padding:2px 2px 2px 2px;
  8189. box-sizing:border-box;
  8190. width:100%;
  8191. }
  8192. #u4864_text {
  8193. border-width:0px;
  8194. word-wrap:break-word;
  8195. text-transform:none;
  8196. visibility:hidden;
  8197. }
  8198. #u4865 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:0px;
  8202. top:0px;
  8203. width:0px;
  8204. height:0px;
  8205. }
  8206. #u4866_div {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:0px;
  8210. top:0px;
  8211. width:140px;
  8212. height:30px;
  8213. background:inherit;
  8214. background-color:rgba(255, 255, 255, 1);
  8215. box-sizing:border-box;
  8216. border-width:1px;
  8217. border-style:solid;
  8218. border-color:rgba(215, 215, 215, 1);
  8219. border-radius:4px;
  8220. -moz-box-shadow:none;
  8221. -webkit-box-shadow:none;
  8222. box-shadow:none;
  8223. font-size:11px;
  8224. }
  8225. #u4866 {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:803px;
  8229. top:181px;
  8230. width:140px;
  8231. height:30px;
  8232. display:flex;
  8233. font-size:11px;
  8234. }
  8235. #u4866 .text {
  8236. position:absolute;
  8237. align-self:center;
  8238. padding:2px 2px 2px 2px;
  8239. box-sizing:border-box;
  8240. width:100%;
  8241. }
  8242. #u4866_text {
  8243. border-width:0px;
  8244. word-wrap:break-word;
  8245. text-transform:none;
  8246. visibility:hidden;
  8247. }
  8248. #u4867_input {
  8249. position:absolute;
  8250. left:0px;
  8251. top:0px;
  8252. width:120px;
  8253. height:23px;
  8254. padding:2px 2px 2px 2px;
  8255. font-family:'ArialMT', 'Arial', sans-serif;
  8256. font-weight:400;
  8257. font-style:normal;
  8258. font-size:11px;
  8259. letter-spacing:normal;
  8260. color:#AAAAAA;
  8261. vertical-align:none;
  8262. text-align:left;
  8263. text-transform:none;
  8264. background-color:transparent;
  8265. border-color:transparent;
  8266. }
  8267. #u4867_input.disabled {
  8268. position:absolute;
  8269. left:0px;
  8270. top:0px;
  8271. width:120px;
  8272. height:23px;
  8273. padding:2px 2px 2px 2px;
  8274. font-family:'ArialMT', 'Arial', sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. font-size:11px;
  8278. letter-spacing:normal;
  8279. color:#AAAAAA;
  8280. vertical-align:none;
  8281. text-align:left;
  8282. text-transform:none;
  8283. background-color:transparent;
  8284. border-color:transparent;
  8285. }
  8286. #u4867_div {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:0px;
  8290. top:0px;
  8291. width:120px;
  8292. height:23px;
  8293. background:inherit;
  8294. background-color:rgba(255, 255, 255, 1);
  8295. border:none;
  8296. border-radius:0px;
  8297. -moz-box-shadow:none;
  8298. -webkit-box-shadow:none;
  8299. box-shadow:none;
  8300. font-size:11px;
  8301. color:#AAAAAA;
  8302. }
  8303. #u4867 {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:810px;
  8307. top:183px;
  8308. width:120px;
  8309. height:23px;
  8310. display:flex;
  8311. font-size:11px;
  8312. color:#AAAAAA;
  8313. }
  8314. #u4867 .text {
  8315. position:absolute;
  8316. align-self:flex-start;
  8317. padding:2px 2px 2px 2px;
  8318. box-sizing:border-box;
  8319. width:100%;
  8320. }
  8321. #u4867_div.disabled {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:0px;
  8325. top:0px;
  8326. width:120px;
  8327. height:23px;
  8328. background:inherit;
  8329. background-color:rgba(240, 240, 240, 1);
  8330. border:none;
  8331. border-radius:0px;
  8332. -moz-box-shadow:none;
  8333. -webkit-box-shadow:none;
  8334. box-shadow:none;
  8335. font-size:11px;
  8336. color:#AAAAAA;
  8337. }
  8338. #u4867.disabled {
  8339. }
  8340. .u4867_input_option {
  8341. font-size:11px;
  8342. }
  8343. #u4868 {
  8344. border-width:0px;
  8345. position:absolute;
  8346. left:1985px;
  8347. top:231px;
  8348. width:1218px;
  8349. height:284px;
  8350. }
  8351. #u4869_img {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:0px;
  8355. top:0px;
  8356. width:53px;
  8357. height:38px;
  8358. }
  8359. #u4869 {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:0px;
  8364. width:53px;
  8365. height:38px;
  8366. display:flex;
  8367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8368. font-weight:400;
  8369. font-style:normal;
  8370. font-size:12px;
  8371. color:#FFFFFF;
  8372. }
  8373. #u4869 .text {
  8374. position:absolute;
  8375. align-self:center;
  8376. padding:2px 2px 2px 0px;
  8377. box-sizing:border-box;
  8378. width:100%;
  8379. }
  8380. #u4869_text {
  8381. border-width:0px;
  8382. word-wrap:break-word;
  8383. text-transform:none;
  8384. }
  8385. #u4870_img {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:0px;
  8389. top:0px;
  8390. width:88px;
  8391. height:38px;
  8392. }
  8393. #u4870 {
  8394. border-width:0px;
  8395. position:absolute;
  8396. left:53px;
  8397. top:0px;
  8398. width:88px;
  8399. height:38px;
  8400. display:flex;
  8401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8402. font-weight:400;
  8403. font-style:normal;
  8404. font-size:12px;
  8405. color:#FFFFFF;
  8406. }
  8407. #u4870 .text {
  8408. position:absolute;
  8409. align-self:center;
  8410. padding:2px 2px 2px 0px;
  8411. box-sizing:border-box;
  8412. width:100%;
  8413. }
  8414. #u4870_text {
  8415. border-width:0px;
  8416. word-wrap:break-word;
  8417. text-transform:none;
  8418. }
  8419. #u4871_img {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:0px;
  8423. top:0px;
  8424. width:154px;
  8425. height:38px;
  8426. }
  8427. #u4871 {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:141px;
  8431. top:0px;
  8432. width:154px;
  8433. height:38px;
  8434. display:flex;
  8435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8436. font-weight:400;
  8437. font-style:normal;
  8438. font-size:12px;
  8439. color:#FFFFFF;
  8440. }
  8441. #u4871 .text {
  8442. position:absolute;
  8443. align-self:center;
  8444. padding:2px 2px 2px 0px;
  8445. box-sizing:border-box;
  8446. width:100%;
  8447. }
  8448. #u4871_text {
  8449. border-width:0px;
  8450. word-wrap:break-word;
  8451. text-transform:none;
  8452. }
  8453. #u4872_img {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:0px;
  8457. top:0px;
  8458. width:103px;
  8459. height:38px;
  8460. }
  8461. #u4872 {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:295px;
  8465. top:0px;
  8466. width:103px;
  8467. height:38px;
  8468. display:flex;
  8469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8470. font-weight:400;
  8471. font-style:normal;
  8472. font-size:12px;
  8473. color:#FFFFFF;
  8474. }
  8475. #u4872 .text {
  8476. position:absolute;
  8477. align-self:center;
  8478. padding:2px 2px 2px 0px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u4872_text {
  8483. border-width:0px;
  8484. word-wrap:break-word;
  8485. text-transform:none;
  8486. }
  8487. #u4873_img {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:103px;
  8493. height:38px;
  8494. }
  8495. #u4873 {
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:398px;
  8499. top:0px;
  8500. width:103px;
  8501. height:38px;
  8502. display:flex;
  8503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8504. font-weight:400;
  8505. font-style:normal;
  8506. font-size:12px;
  8507. color:#FFFFFF;
  8508. }
  8509. #u4873 .text {
  8510. position:absolute;
  8511. align-self:center;
  8512. padding:2px 2px 2px 0px;
  8513. box-sizing:border-box;
  8514. width:100%;
  8515. }
  8516. #u4873_text {
  8517. border-width:0px;
  8518. word-wrap:break-word;
  8519. text-transform:none;
  8520. }
  8521. #u4874_img {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:88px;
  8527. height:38px;
  8528. }
  8529. #u4874 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:501px;
  8533. top:0px;
  8534. width:88px;
  8535. height:38px;
  8536. display:flex;
  8537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8538. font-weight:400;
  8539. font-style:normal;
  8540. font-size:12px;
  8541. color:#FFFFFF;
  8542. }
  8543. #u4874 .text {
  8544. position:absolute;
  8545. align-self:center;
  8546. padding:2px 2px 2px 0px;
  8547. box-sizing:border-box;
  8548. width:100%;
  8549. }
  8550. #u4874_text {
  8551. border-width:0px;
  8552. word-wrap:break-word;
  8553. text-transform:none;
  8554. }
  8555. #u4875_img {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:102px;
  8561. height:38px;
  8562. }
  8563. #u4875 {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:589px;
  8567. top:0px;
  8568. width:102px;
  8569. height:38px;
  8570. display:flex;
  8571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8572. font-weight:400;
  8573. font-style:normal;
  8574. font-size:12px;
  8575. color:#FFFFFF;
  8576. }
  8577. #u4875 .text {
  8578. position:absolute;
  8579. align-self:center;
  8580. padding:2px 2px 2px 0px;
  8581. box-sizing:border-box;
  8582. width:100%;
  8583. }
  8584. #u4875_text {
  8585. border-width:0px;
  8586. word-wrap:break-word;
  8587. text-transform:none;
  8588. }
  8589. #u4876_img {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:0px;
  8593. top:0px;
  8594. width:102px;
  8595. height:38px;
  8596. }
  8597. #u4876 {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:691px;
  8601. top:0px;
  8602. width:102px;
  8603. height:38px;
  8604. display:flex;
  8605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8606. font-weight:400;
  8607. font-style:normal;
  8608. font-size:12px;
  8609. color:#FFFFFF;
  8610. }
  8611. #u4876 .text {
  8612. position:absolute;
  8613. align-self:center;
  8614. padding:2px 2px 2px 0px;
  8615. box-sizing:border-box;
  8616. width:100%;
  8617. }
  8618. #u4876_text {
  8619. border-width:0px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. }
  8623. #u4877_img {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:0px;
  8627. top:0px;
  8628. width:103px;
  8629. height:38px;
  8630. }
  8631. #u4877 {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:793px;
  8635. top:0px;
  8636. width:103px;
  8637. height:38px;
  8638. display:flex;
  8639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8640. font-weight:400;
  8641. font-style:normal;
  8642. font-size:12px;
  8643. color:#FFFFFF;
  8644. }
  8645. #u4877 .text {
  8646. position:absolute;
  8647. align-self:center;
  8648. padding:2px 2px 2px 0px;
  8649. box-sizing:border-box;
  8650. width:100%;
  8651. }
  8652. #u4877_text {
  8653. border-width:0px;
  8654. word-wrap:break-word;
  8655. text-transform:none;
  8656. }
  8657. #u4878_img {
  8658. border-width:0px;
  8659. position:absolute;
  8660. left:0px;
  8661. top:0px;
  8662. width:103px;
  8663. height:38px;
  8664. }
  8665. #u4878 {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:896px;
  8669. top:0px;
  8670. width:103px;
  8671. height:38px;
  8672. display:flex;
  8673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8674. font-weight:400;
  8675. font-style:normal;
  8676. font-size:12px;
  8677. color:#FFFFFF;
  8678. }
  8679. #u4878 .text {
  8680. position:absolute;
  8681. align-self:center;
  8682. padding:2px 2px 2px 0px;
  8683. box-sizing:border-box;
  8684. width:100%;
  8685. }
  8686. #u4878_text {
  8687. border-width:0px;
  8688. word-wrap:break-word;
  8689. text-transform:none;
  8690. }
  8691. #u4879_img {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:103px;
  8697. height:38px;
  8698. }
  8699. #u4879 {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:999px;
  8703. top:0px;
  8704. width:103px;
  8705. height:38px;
  8706. display:flex;
  8707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8708. font-weight:400;
  8709. font-style:normal;
  8710. font-size:12px;
  8711. color:#FFFFFF;
  8712. }
  8713. #u4879 .text {
  8714. position:absolute;
  8715. align-self:center;
  8716. padding:2px 2px 2px 0px;
  8717. box-sizing:border-box;
  8718. width:100%;
  8719. }
  8720. #u4879_text {
  8721. border-width:0px;
  8722. word-wrap:break-word;
  8723. text-transform:none;
  8724. }
  8725. #u4880_img {
  8726. border-width:0px;
  8727. position:absolute;
  8728. left:0px;
  8729. top:0px;
  8730. width:116px;
  8731. height:38px;
  8732. }
  8733. #u4880 {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:1102px;
  8737. top:0px;
  8738. width:116px;
  8739. height:38px;
  8740. display:flex;
  8741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8742. font-weight:400;
  8743. font-style:normal;
  8744. font-size:12px;
  8745. color:#FFFFFF;
  8746. }
  8747. #u4880 .text {
  8748. position:absolute;
  8749. align-self:center;
  8750. padding:2px 2px 2px 0px;
  8751. box-sizing:border-box;
  8752. width:100%;
  8753. }
  8754. #u4880_text {
  8755. border-width:0px;
  8756. word-wrap:break-word;
  8757. text-transform:none;
  8758. }
  8759. #u4881_img {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:0px;
  8763. top:0px;
  8764. width:53px;
  8765. height:38px;
  8766. }
  8767. #u4881 {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:0px;
  8771. top:38px;
  8772. width:53px;
  8773. height:38px;
  8774. display:flex;
  8775. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:12px;
  8779. }
  8780. #u4881 .text {
  8781. position:absolute;
  8782. align-self:center;
  8783. padding:2px 2px 2px 0px;
  8784. box-sizing:border-box;
  8785. width:100%;
  8786. }
  8787. #u4881_text {
  8788. border-width:0px;
  8789. word-wrap:break-word;
  8790. text-transform:none;
  8791. }
  8792. #u4882_img {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:88px;
  8798. height:38px;
  8799. }
  8800. #u4882 {
  8801. border-width:0px;
  8802. position:absolute;
  8803. left:53px;
  8804. top:38px;
  8805. width:88px;
  8806. height:38px;
  8807. display:flex;
  8808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8809. font-weight:400;
  8810. font-style:normal;
  8811. font-size:12px;
  8812. color:#333333;
  8813. }
  8814. #u4882 .text {
  8815. position:absolute;
  8816. align-self:center;
  8817. padding:2px 2px 2px 0px;
  8818. box-sizing:border-box;
  8819. width:100%;
  8820. }
  8821. #u4882_text {
  8822. border-width:0px;
  8823. word-wrap:break-word;
  8824. text-transform:none;
  8825. visibility:hidden;
  8826. }
  8827. #u4883_img {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:0px;
  8831. top:0px;
  8832. width:154px;
  8833. height:38px;
  8834. }
  8835. #u4883 {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:141px;
  8839. top:38px;
  8840. width:154px;
  8841. height:38px;
  8842. display:flex;
  8843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8844. font-weight:400;
  8845. font-style:normal;
  8846. font-size:12px;
  8847. color:#333333;
  8848. }
  8849. #u4883 .text {
  8850. position:absolute;
  8851. align-self:center;
  8852. padding:2px 2px 2px 0px;
  8853. box-sizing:border-box;
  8854. width:100%;
  8855. }
  8856. #u4883_text {
  8857. border-width:0px;
  8858. word-wrap:break-word;
  8859. text-transform:none;
  8860. visibility:hidden;
  8861. }
  8862. #u4884_img {
  8863. border-width:0px;
  8864. position:absolute;
  8865. left:0px;
  8866. top:0px;
  8867. width:103px;
  8868. height:38px;
  8869. }
  8870. #u4884 {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:295px;
  8874. top:38px;
  8875. width:103px;
  8876. height:38px;
  8877. display:flex;
  8878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8879. font-weight:400;
  8880. font-style:normal;
  8881. font-size:12px;
  8882. color:#333333;
  8883. }
  8884. #u4884 .text {
  8885. position:absolute;
  8886. align-self:center;
  8887. padding:2px 2px 2px 0px;
  8888. box-sizing:border-box;
  8889. width:100%;
  8890. }
  8891. #u4884_text {
  8892. border-width:0px;
  8893. word-wrap:break-word;
  8894. text-transform:none;
  8895. visibility:hidden;
  8896. }
  8897. #u4885_img {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:0px;
  8901. top:0px;
  8902. width:103px;
  8903. height:38px;
  8904. }
  8905. #u4885 {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:398px;
  8909. top:38px;
  8910. width:103px;
  8911. height:38px;
  8912. display:flex;
  8913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8914. font-weight:400;
  8915. font-style:normal;
  8916. font-size:12px;
  8917. color:#333333;
  8918. }
  8919. #u4885 .text {
  8920. position:absolute;
  8921. align-self:center;
  8922. padding:2px 2px 2px 0px;
  8923. box-sizing:border-box;
  8924. width:100%;
  8925. }
  8926. #u4885_text {
  8927. border-width:0px;
  8928. word-wrap:break-word;
  8929. text-transform:none;
  8930. visibility:hidden;
  8931. }
  8932. #u4886_img {
  8933. border-width:0px;
  8934. position:absolute;
  8935. left:0px;
  8936. top:0px;
  8937. width:88px;
  8938. height:38px;
  8939. }
  8940. #u4886 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:501px;
  8944. top:38px;
  8945. width:88px;
  8946. height:38px;
  8947. display:flex;
  8948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8949. font-weight:400;
  8950. font-style:normal;
  8951. font-size:12px;
  8952. color:#333333;
  8953. }
  8954. #u4886 .text {
  8955. position:absolute;
  8956. align-self:center;
  8957. padding:2px 2px 2px 0px;
  8958. box-sizing:border-box;
  8959. width:100%;
  8960. }
  8961. #u4886_text {
  8962. border-width:0px;
  8963. word-wrap:break-word;
  8964. text-transform:none;
  8965. visibility:hidden;
  8966. }
  8967. #u4887_img {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:0px;
  8971. top:0px;
  8972. width:102px;
  8973. height:38px;
  8974. }
  8975. #u4887 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:589px;
  8979. top:38px;
  8980. width:102px;
  8981. height:38px;
  8982. display:flex;
  8983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8984. font-weight:400;
  8985. font-style:normal;
  8986. font-size:12px;
  8987. color:#333333;
  8988. }
  8989. #u4887 .text {
  8990. position:absolute;
  8991. align-self:center;
  8992. padding:2px 2px 2px 0px;
  8993. box-sizing:border-box;
  8994. width:100%;
  8995. }
  8996. #u4887_text {
  8997. border-width:0px;
  8998. word-wrap:break-word;
  8999. text-transform:none;
  9000. }
  9001. #u4888_img {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:102px;
  9007. height:38px;
  9008. }
  9009. #u4888 {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:691px;
  9013. top:38px;
  9014. width:102px;
  9015. height:38px;
  9016. display:flex;
  9017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9018. font-weight:400;
  9019. font-style:normal;
  9020. font-size:12px;
  9021. color:#333333;
  9022. }
  9023. #u4888 .text {
  9024. position:absolute;
  9025. align-self:center;
  9026. padding:2px 2px 2px 0px;
  9027. box-sizing:border-box;
  9028. width:100%;
  9029. }
  9030. #u4888_text {
  9031. border-width:0px;
  9032. word-wrap:break-word;
  9033. text-transform:none;
  9034. visibility:hidden;
  9035. }
  9036. #u4889_img {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:103px;
  9042. height:38px;
  9043. }
  9044. #u4889 {
  9045. border-width:0px;
  9046. position:absolute;
  9047. left:793px;
  9048. top:38px;
  9049. width:103px;
  9050. height:38px;
  9051. display:flex;
  9052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:12px;
  9056. color:#333333;
  9057. }
  9058. #u4889 .text {
  9059. position:absolute;
  9060. align-self:center;
  9061. padding:2px 2px 2px 0px;
  9062. box-sizing:border-box;
  9063. width:100%;
  9064. }
  9065. #u4889_text {
  9066. border-width:0px;
  9067. word-wrap:break-word;
  9068. text-transform:none;
  9069. }
  9070. #u4890_img {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:0px;
  9074. top:0px;
  9075. width:103px;
  9076. height:38px;
  9077. }
  9078. #u4890 {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:896px;
  9082. top:38px;
  9083. width:103px;
  9084. height:38px;
  9085. display:flex;
  9086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9087. font-weight:400;
  9088. font-style:normal;
  9089. font-size:12px;
  9090. color:#333333;
  9091. }
  9092. #u4890 .text {
  9093. position:absolute;
  9094. align-self:center;
  9095. padding:2px 2px 2px 0px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u4890_text {
  9100. border-width:0px;
  9101. word-wrap:break-word;
  9102. text-transform:none;
  9103. }
  9104. #u4891_img {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:103px;
  9110. height:38px;
  9111. }
  9112. #u4891 {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:999px;
  9116. top:38px;
  9117. width:103px;
  9118. height:38px;
  9119. display:flex;
  9120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9121. font-weight:400;
  9122. font-style:normal;
  9123. font-size:12px;
  9124. color:#333333;
  9125. }
  9126. #u4891 .text {
  9127. position:absolute;
  9128. align-self:center;
  9129. padding:2px 2px 2px 0px;
  9130. box-sizing:border-box;
  9131. width:100%;
  9132. }
  9133. #u4891_text {
  9134. border-width:0px;
  9135. word-wrap:break-word;
  9136. text-transform:none;
  9137. visibility:hidden;
  9138. }
  9139. #u4892_img {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:0px;
  9143. top:0px;
  9144. width:116px;
  9145. height:38px;
  9146. }
  9147. #u4892 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:1102px;
  9151. top:38px;
  9152. width:116px;
  9153. height:38px;
  9154. display:flex;
  9155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9156. font-weight:400;
  9157. font-style:normal;
  9158. font-size:12px;
  9159. color:#298FFF;
  9160. }
  9161. #u4892 .text {
  9162. position:absolute;
  9163. align-self:center;
  9164. padding:2px 2px 2px 0px;
  9165. box-sizing:border-box;
  9166. width:100%;
  9167. }
  9168. #u4892_text {
  9169. border-width:0px;
  9170. word-wrap:break-word;
  9171. text-transform:none;
  9172. visibility:hidden;
  9173. }
  9174. #u4893_img {
  9175. border-width:0px;
  9176. position:absolute;
  9177. left:0px;
  9178. top:0px;
  9179. width:53px;
  9180. height:36px;
  9181. }
  9182. #u4893 {
  9183. border-width:0px;
  9184. position:absolute;
  9185. left:0px;
  9186. top:76px;
  9187. width:53px;
  9188. height:36px;
  9189. display:flex;
  9190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9191. font-weight:400;
  9192. font-style:normal;
  9193. font-size:12px;
  9194. color:#606266;
  9195. }
  9196. #u4893 .text {
  9197. position:absolute;
  9198. align-self:center;
  9199. padding:2px 2px 2px 0px;
  9200. box-sizing:border-box;
  9201. width:100%;
  9202. }
  9203. #u4893_text {
  9204. border-width:0px;
  9205. word-wrap:break-word;
  9206. text-transform:none;
  9207. }
  9208. #u4894_img {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:88px;
  9214. height:36px;
  9215. }
  9216. #u4894 {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:53px;
  9220. top:76px;
  9221. width:88px;
  9222. height:36px;
  9223. display:flex;
  9224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9225. font-weight:400;
  9226. font-style:normal;
  9227. font-size:12px;
  9228. color:#606266;
  9229. }
  9230. #u4894 .text {
  9231. position:absolute;
  9232. align-self:center;
  9233. padding:2px 2px 2px 0px;
  9234. box-sizing:border-box;
  9235. width:100%;
  9236. }
  9237. #u4894_text {
  9238. border-width:0px;
  9239. word-wrap:break-word;
  9240. text-transform:none;
  9241. visibility:hidden;
  9242. }
  9243. #u4895_img {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:0px;
  9247. top:0px;
  9248. width:154px;
  9249. height:36px;
  9250. }
  9251. #u4895 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:141px;
  9255. top:76px;
  9256. width:154px;
  9257. height:36px;
  9258. display:flex;
  9259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9260. font-weight:400;
  9261. font-style:normal;
  9262. font-size:12px;
  9263. color:#606266;
  9264. }
  9265. #u4895 .text {
  9266. position:absolute;
  9267. align-self:center;
  9268. padding:2px 2px 2px 0px;
  9269. box-sizing:border-box;
  9270. width:100%;
  9271. }
  9272. #u4895_text {
  9273. border-width:0px;
  9274. word-wrap:break-word;
  9275. text-transform:none;
  9276. visibility:hidden;
  9277. }
  9278. #u4896_img {
  9279. border-width:0px;
  9280. position:absolute;
  9281. left:0px;
  9282. top:0px;
  9283. width:103px;
  9284. height:36px;
  9285. }
  9286. #u4896 {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:295px;
  9290. top:76px;
  9291. width:103px;
  9292. height:36px;
  9293. display:flex;
  9294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9295. font-weight:400;
  9296. font-style:normal;
  9297. font-size:12px;
  9298. color:#606266;
  9299. }
  9300. #u4896 .text {
  9301. position:absolute;
  9302. align-self:center;
  9303. padding:2px 2px 2px 0px;
  9304. box-sizing:border-box;
  9305. width:100%;
  9306. }
  9307. #u4896_text {
  9308. border-width:0px;
  9309. word-wrap:break-word;
  9310. text-transform:none;
  9311. visibility:hidden;
  9312. }
  9313. #u4897_img {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:103px;
  9319. height:36px;
  9320. }
  9321. #u4897 {
  9322. border-width:0px;
  9323. position:absolute;
  9324. left:398px;
  9325. top:76px;
  9326. width:103px;
  9327. height:36px;
  9328. display:flex;
  9329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9330. font-weight:400;
  9331. font-style:normal;
  9332. font-size:12px;
  9333. color:#606266;
  9334. }
  9335. #u4897 .text {
  9336. position:absolute;
  9337. align-self:center;
  9338. padding:2px 2px 2px 0px;
  9339. box-sizing:border-box;
  9340. width:100%;
  9341. }
  9342. #u4897_text {
  9343. border-width:0px;
  9344. word-wrap:break-word;
  9345. text-transform:none;
  9346. visibility:hidden;
  9347. }
  9348. #u4898_img {
  9349. border-width:0px;
  9350. position:absolute;
  9351. left:0px;
  9352. top:0px;
  9353. width:88px;
  9354. height:36px;
  9355. }
  9356. #u4898 {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:501px;
  9360. top:76px;
  9361. width:88px;
  9362. height:36px;
  9363. display:flex;
  9364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9365. font-weight:400;
  9366. font-style:normal;
  9367. font-size:12px;
  9368. color:#606266;
  9369. }
  9370. #u4898 .text {
  9371. position:absolute;
  9372. align-self:center;
  9373. padding:2px 2px 2px 0px;
  9374. box-sizing:border-box;
  9375. width:100%;
  9376. }
  9377. #u4898_text {
  9378. border-width:0px;
  9379. word-wrap:break-word;
  9380. text-transform:none;
  9381. visibility:hidden;
  9382. }
  9383. #u4899_img {
  9384. border-width:0px;
  9385. position:absolute;
  9386. left:0px;
  9387. top:0px;
  9388. width:102px;
  9389. height:36px;
  9390. }
  9391. #u4899 {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:589px;
  9395. top:76px;
  9396. width:102px;
  9397. height:36px;
  9398. display:flex;
  9399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9400. font-weight:400;
  9401. font-style:normal;
  9402. font-size:12px;
  9403. color:#606266;
  9404. }
  9405. #u4899 .text {
  9406. position:absolute;
  9407. align-self:center;
  9408. padding:2px 2px 2px 0px;
  9409. box-sizing:border-box;
  9410. width:100%;
  9411. }
  9412. #u4899_text {
  9413. border-width:0px;
  9414. word-wrap:break-word;
  9415. text-transform:none;
  9416. }
  9417. #u4900_img {
  9418. border-width:0px;
  9419. position:absolute;
  9420. left:0px;
  9421. top:0px;
  9422. width:102px;
  9423. height:36px;
  9424. }
  9425. #u4900 {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:691px;
  9429. top:76px;
  9430. width:102px;
  9431. height:36px;
  9432. display:flex;
  9433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9434. font-weight:400;
  9435. font-style:normal;
  9436. font-size:12px;
  9437. color:#606266;
  9438. }
  9439. #u4900 .text {
  9440. position:absolute;
  9441. align-self:center;
  9442. padding:2px 2px 2px 0px;
  9443. box-sizing:border-box;
  9444. width:100%;
  9445. }
  9446. #u4900_text {
  9447. border-width:0px;
  9448. word-wrap:break-word;
  9449. text-transform:none;
  9450. visibility:hidden;
  9451. }
  9452. #u4901_img {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:0px;
  9456. top:0px;
  9457. width:103px;
  9458. height:36px;
  9459. }
  9460. #u4901 {
  9461. border-width:0px;
  9462. position:absolute;
  9463. left:793px;
  9464. top:76px;
  9465. width:103px;
  9466. height:36px;
  9467. display:flex;
  9468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9469. font-weight:400;
  9470. font-style:normal;
  9471. font-size:12px;
  9472. color:#606266;
  9473. }
  9474. #u4901 .text {
  9475. position:absolute;
  9476. align-self:center;
  9477. padding:2px 2px 2px 0px;
  9478. box-sizing:border-box;
  9479. width:100%;
  9480. }
  9481. #u4901_text {
  9482. border-width:0px;
  9483. word-wrap:break-word;
  9484. text-transform:none;
  9485. visibility:hidden;
  9486. }
  9487. #u4902_img {
  9488. border-width:0px;
  9489. position:absolute;
  9490. left:0px;
  9491. top:0px;
  9492. width:103px;
  9493. height:36px;
  9494. }
  9495. #u4902 {
  9496. border-width:0px;
  9497. position:absolute;
  9498. left:896px;
  9499. top:76px;
  9500. width:103px;
  9501. height:36px;
  9502. display:flex;
  9503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9504. font-weight:400;
  9505. font-style:normal;
  9506. font-size:12px;
  9507. color:#606266;
  9508. }
  9509. #u4902 .text {
  9510. position:absolute;
  9511. align-self:center;
  9512. padding:2px 2px 2px 0px;
  9513. box-sizing:border-box;
  9514. width:100%;
  9515. }
  9516. #u4902_text {
  9517. border-width:0px;
  9518. word-wrap:break-word;
  9519. text-transform:none;
  9520. visibility:hidden;
  9521. }
  9522. #u4903_img {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:0px;
  9526. top:0px;
  9527. width:103px;
  9528. height:36px;
  9529. }
  9530. #u4903 {
  9531. border-width:0px;
  9532. position:absolute;
  9533. left:999px;
  9534. top:76px;
  9535. width:103px;
  9536. height:36px;
  9537. display:flex;
  9538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9539. font-weight:400;
  9540. font-style:normal;
  9541. font-size:12px;
  9542. color:#606266;
  9543. }
  9544. #u4903 .text {
  9545. position:absolute;
  9546. align-self:center;
  9547. padding:2px 2px 2px 0px;
  9548. box-sizing:border-box;
  9549. width:100%;
  9550. }
  9551. #u4903_text {
  9552. border-width:0px;
  9553. word-wrap:break-word;
  9554. text-transform:none;
  9555. visibility:hidden;
  9556. }
  9557. #u4904_img {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:116px;
  9563. height:36px;
  9564. }
  9565. #u4904 {
  9566. border-width:0px;
  9567. position:absolute;
  9568. left:1102px;
  9569. top:76px;
  9570. width:116px;
  9571. height:36px;
  9572. display:flex;
  9573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9574. font-weight:400;
  9575. font-style:normal;
  9576. font-size:12px;
  9577. color:#298FFF;
  9578. }
  9579. #u4904 .text {
  9580. position:absolute;
  9581. align-self:center;
  9582. padding:2px 2px 2px 0px;
  9583. box-sizing:border-box;
  9584. width:100%;
  9585. }
  9586. #u4904_text {
  9587. border-width:0px;
  9588. word-wrap:break-word;
  9589. text-transform:none;
  9590. visibility:hidden;
  9591. }
  9592. #u4905_img {
  9593. border-width:0px;
  9594. position:absolute;
  9595. left:0px;
  9596. top:0px;
  9597. width:53px;
  9598. height:35px;
  9599. }
  9600. #u4905 {
  9601. border-width:0px;
  9602. position:absolute;
  9603. left:0px;
  9604. top:112px;
  9605. width:53px;
  9606. height:35px;
  9607. display:flex;
  9608. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9609. font-weight:400;
  9610. font-style:normal;
  9611. font-size:12px;
  9612. color:#606266;
  9613. }
  9614. #u4905 .text {
  9615. position:absolute;
  9616. align-self:center;
  9617. padding:2px 2px 2px 0px;
  9618. box-sizing:border-box;
  9619. width:100%;
  9620. }
  9621. #u4905_text {
  9622. border-width:0px;
  9623. word-wrap:break-word;
  9624. text-transform:none;
  9625. }
  9626. #u4906_img {
  9627. border-width:0px;
  9628. position:absolute;
  9629. left:0px;
  9630. top:0px;
  9631. width:88px;
  9632. height:35px;
  9633. }
  9634. #u4906 {
  9635. border-width:0px;
  9636. position:absolute;
  9637. left:53px;
  9638. top:112px;
  9639. width:88px;
  9640. height:35px;
  9641. display:flex;
  9642. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9643. font-weight:400;
  9644. font-style:normal;
  9645. font-size:12px;
  9646. color:#606266;
  9647. }
  9648. #u4906 .text {
  9649. position:absolute;
  9650. align-self:center;
  9651. padding:2px 2px 2px 0px;
  9652. box-sizing:border-box;
  9653. width:100%;
  9654. }
  9655. #u4906_text {
  9656. border-width:0px;
  9657. word-wrap:break-word;
  9658. text-transform:none;
  9659. visibility:hidden;
  9660. }
  9661. #u4907_img {
  9662. border-width:0px;
  9663. position:absolute;
  9664. left:0px;
  9665. top:0px;
  9666. width:154px;
  9667. height:35px;
  9668. }
  9669. #u4907 {
  9670. border-width:0px;
  9671. position:absolute;
  9672. left:141px;
  9673. top:112px;
  9674. width:154px;
  9675. height:35px;
  9676. display:flex;
  9677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9678. font-weight:400;
  9679. font-style:normal;
  9680. font-size:12px;
  9681. color:#606266;
  9682. }
  9683. #u4907 .text {
  9684. position:absolute;
  9685. align-self:center;
  9686. padding:2px 2px 2px 0px;
  9687. box-sizing:border-box;
  9688. width:100%;
  9689. }
  9690. #u4907_text {
  9691. border-width:0px;
  9692. word-wrap:break-word;
  9693. text-transform:none;
  9694. visibility:hidden;
  9695. }
  9696. #u4908_img {
  9697. border-width:0px;
  9698. position:absolute;
  9699. left:0px;
  9700. top:0px;
  9701. width:103px;
  9702. height:35px;
  9703. }
  9704. #u4908 {
  9705. border-width:0px;
  9706. position:absolute;
  9707. left:295px;
  9708. top:112px;
  9709. width:103px;
  9710. height:35px;
  9711. display:flex;
  9712. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9713. font-weight:400;
  9714. font-style:normal;
  9715. font-size:12px;
  9716. color:#606266;
  9717. }
  9718. #u4908 .text {
  9719. position:absolute;
  9720. align-self:center;
  9721. padding:2px 2px 2px 0px;
  9722. box-sizing:border-box;
  9723. width:100%;
  9724. }
  9725. #u4908_text {
  9726. border-width:0px;
  9727. word-wrap:break-word;
  9728. text-transform:none;
  9729. visibility:hidden;
  9730. }
  9731. #u4909_img {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:0px;
  9735. top:0px;
  9736. width:103px;
  9737. height:35px;
  9738. }
  9739. #u4909 {
  9740. border-width:0px;
  9741. position:absolute;
  9742. left:398px;
  9743. top:112px;
  9744. width:103px;
  9745. height:35px;
  9746. display:flex;
  9747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  9748. font-weight:400;
  9749. font-style:normal;
  9750. font-size:12px;
  9751. color:#606266;
  9752. }
  9753. #u4909 .text {
  9754. position:absolute;
  9755. align-self:center;
  9756. padding:2px 2px 2px 0px;
  9757. box-sizing:border-box;
  9758. width:100%;
  9759. }
  9760. #u4909_text {
  9761. border-width:0px;
  9762. word-wrap:break-word;
  9763. text-transform:none;
  9764. visibility:hidden;
  9765. }
  9766. #u4910_img {
  9767. border-width:0px;
  9768. position:absolute;
  9769. left:0px;
  9770. top:0px;
  9771. width:88px;
  9772. height:35px;
  9773. }
  9774. #u4910 {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:501px;
  9778. top:112px;
  9779. width:88px;
  9780. height:35px;
  9781. display:flex;
  9782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9783. font-weight:400;
  9784. font-style:normal;
  9785. font-size:12px;
  9786. color:#606266;
  9787. }
  9788. #u4910 .text {
  9789. position:absolute;
  9790. align-self:center;
  9791. padding:2px 2px 2px 0px;
  9792. box-sizing:border-box;
  9793. width:100%;
  9794. }
  9795. #u4910_text {
  9796. border-width:0px;
  9797. word-wrap:break-word;
  9798. text-transform:none;
  9799. visibility:hidden;
  9800. }
  9801. #u4911_img {
  9802. border-width:0px;
  9803. position:absolute;
  9804. left:0px;
  9805. top:0px;
  9806. width:102px;
  9807. height:35px;
  9808. }
  9809. #u4911 {
  9810. border-width:0px;
  9811. position:absolute;
  9812. left:589px;
  9813. top:112px;
  9814. width:102px;
  9815. height:35px;
  9816. display:flex;
  9817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9818. font-weight:400;
  9819. font-style:normal;
  9820. font-size:12px;
  9821. color:#606266;
  9822. }
  9823. #u4911 .text {
  9824. position:absolute;
  9825. align-self:center;
  9826. padding:2px 2px 2px 0px;
  9827. box-sizing:border-box;
  9828. width:100%;
  9829. }
  9830. #u4911_text {
  9831. border-width:0px;
  9832. word-wrap:break-word;
  9833. text-transform:none;
  9834. visibility:hidden;
  9835. }
  9836. #u4912_img {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:0px;
  9840. top:0px;
  9841. width:102px;
  9842. height:35px;
  9843. }
  9844. #u4912 {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:691px;
  9848. top:112px;
  9849. width:102px;
  9850. height:35px;
  9851. display:flex;
  9852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9853. font-weight:400;
  9854. font-style:normal;
  9855. font-size:12px;
  9856. color:#606266;
  9857. }
  9858. #u4912 .text {
  9859. position:absolute;
  9860. align-self:center;
  9861. padding:2px 2px 2px 0px;
  9862. box-sizing:border-box;
  9863. width:100%;
  9864. }
  9865. #u4912_text {
  9866. border-width:0px;
  9867. word-wrap:break-word;
  9868. text-transform:none;
  9869. visibility:hidden;
  9870. }
  9871. #u4913_img {
  9872. border-width:0px;
  9873. position:absolute;
  9874. left:0px;
  9875. top:0px;
  9876. width:103px;
  9877. height:35px;
  9878. }
  9879. #u4913 {
  9880. border-width:0px;
  9881. position:absolute;
  9882. left:793px;
  9883. top:112px;
  9884. width:103px;
  9885. height:35px;
  9886. display:flex;
  9887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9888. font-weight:400;
  9889. font-style:normal;
  9890. font-size:12px;
  9891. color:#606266;
  9892. }
  9893. #u4913 .text {
  9894. position:absolute;
  9895. align-self:center;
  9896. padding:2px 2px 2px 0px;
  9897. box-sizing:border-box;
  9898. width:100%;
  9899. }
  9900. #u4913_text {
  9901. border-width:0px;
  9902. word-wrap:break-word;
  9903. text-transform:none;
  9904. visibility:hidden;
  9905. }
  9906. #u4914_img {
  9907. border-width:0px;
  9908. position:absolute;
  9909. left:0px;
  9910. top:0px;
  9911. width:103px;
  9912. height:35px;
  9913. }
  9914. #u4914 {
  9915. border-width:0px;
  9916. position:absolute;
  9917. left:896px;
  9918. top:112px;
  9919. width:103px;
  9920. height:35px;
  9921. display:flex;
  9922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9923. font-weight:400;
  9924. font-style:normal;
  9925. font-size:12px;
  9926. color:#606266;
  9927. }
  9928. #u4914 .text {
  9929. position:absolute;
  9930. align-self:center;
  9931. padding:2px 2px 2px 0px;
  9932. box-sizing:border-box;
  9933. width:100%;
  9934. }
  9935. #u4914_text {
  9936. border-width:0px;
  9937. word-wrap:break-word;
  9938. text-transform:none;
  9939. visibility:hidden;
  9940. }
  9941. #u4915_img {
  9942. border-width:0px;
  9943. position:absolute;
  9944. left:0px;
  9945. top:0px;
  9946. width:103px;
  9947. height:35px;
  9948. }
  9949. #u4915 {
  9950. border-width:0px;
  9951. position:absolute;
  9952. left:999px;
  9953. top:112px;
  9954. width:103px;
  9955. height:35px;
  9956. display:flex;
  9957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9958. font-weight:400;
  9959. font-style:normal;
  9960. font-size:12px;
  9961. color:#606266;
  9962. }
  9963. #u4915 .text {
  9964. position:absolute;
  9965. align-self:center;
  9966. padding:2px 2px 2px 0px;
  9967. box-sizing:border-box;
  9968. width:100%;
  9969. }
  9970. #u4915_text {
  9971. border-width:0px;
  9972. word-wrap:break-word;
  9973. text-transform:none;
  9974. visibility:hidden;
  9975. }
  9976. #u4916_img {
  9977. border-width:0px;
  9978. position:absolute;
  9979. left:0px;
  9980. top:0px;
  9981. width:116px;
  9982. height:35px;
  9983. }
  9984. #u4916 {
  9985. border-width:0px;
  9986. position:absolute;
  9987. left:1102px;
  9988. top:112px;
  9989. width:116px;
  9990. height:35px;
  9991. display:flex;
  9992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9993. font-weight:400;
  9994. font-style:normal;
  9995. font-size:12px;
  9996. color:#02A7F0;
  9997. }
  9998. #u4916 .text {
  9999. position:absolute;
  10000. align-self:center;
  10001. padding:2px 2px 2px 0px;
  10002. box-sizing:border-box;
  10003. width:100%;
  10004. }
  10005. #u4916_text {
  10006. border-width:0px;
  10007. word-wrap:break-word;
  10008. text-transform:none;
  10009. visibility:hidden;
  10010. }
  10011. #u4917_img {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:0px;
  10015. top:0px;
  10016. width:53px;
  10017. height:35px;
  10018. }
  10019. #u4917 {
  10020. border-width:0px;
  10021. position:absolute;
  10022. left:0px;
  10023. top:147px;
  10024. width:53px;
  10025. height:35px;
  10026. display:flex;
  10027. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10028. font-weight:400;
  10029. font-style:normal;
  10030. font-size:12px;
  10031. color:#606266;
  10032. }
  10033. #u4917 .text {
  10034. position:absolute;
  10035. align-self:center;
  10036. padding:2px 2px 2px 0px;
  10037. box-sizing:border-box;
  10038. width:100%;
  10039. }
  10040. #u4917_text {
  10041. border-width:0px;
  10042. word-wrap:break-word;
  10043. text-transform:none;
  10044. }
  10045. #u4918_img {
  10046. border-width:0px;
  10047. position:absolute;
  10048. left:0px;
  10049. top:0px;
  10050. width:88px;
  10051. height:35px;
  10052. }
  10053. #u4918 {
  10054. border-width:0px;
  10055. position:absolute;
  10056. left:53px;
  10057. top:147px;
  10058. width:88px;
  10059. height:35px;
  10060. display:flex;
  10061. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10062. font-weight:400;
  10063. font-style:normal;
  10064. font-size:12px;
  10065. color:#606266;
  10066. }
  10067. #u4918 .text {
  10068. position:absolute;
  10069. align-self:center;
  10070. padding:2px 2px 2px 0px;
  10071. box-sizing:border-box;
  10072. width:100%;
  10073. }
  10074. #u4918_text {
  10075. border-width:0px;
  10076. word-wrap:break-word;
  10077. text-transform:none;
  10078. visibility:hidden;
  10079. }
  10080. #u4919_img {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:0px;
  10084. top:0px;
  10085. width:154px;
  10086. height:35px;
  10087. }
  10088. #u4919 {
  10089. border-width:0px;
  10090. position:absolute;
  10091. left:141px;
  10092. top:147px;
  10093. width:154px;
  10094. height:35px;
  10095. display:flex;
  10096. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10097. font-weight:400;
  10098. font-style:normal;
  10099. font-size:12px;
  10100. color:#606266;
  10101. }
  10102. #u4919 .text {
  10103. position:absolute;
  10104. align-self:center;
  10105. padding:2px 2px 2px 0px;
  10106. box-sizing:border-box;
  10107. width:100%;
  10108. }
  10109. #u4919_text {
  10110. border-width:0px;
  10111. word-wrap:break-word;
  10112. text-transform:none;
  10113. visibility:hidden;
  10114. }
  10115. #u4920_img {
  10116. border-width:0px;
  10117. position:absolute;
  10118. left:0px;
  10119. top:0px;
  10120. width:103px;
  10121. height:35px;
  10122. }
  10123. #u4920 {
  10124. border-width:0px;
  10125. position:absolute;
  10126. left:295px;
  10127. top:147px;
  10128. width:103px;
  10129. height:35px;
  10130. display:flex;
  10131. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10132. font-weight:400;
  10133. font-style:normal;
  10134. font-size:12px;
  10135. color:#606266;
  10136. }
  10137. #u4920 .text {
  10138. position:absolute;
  10139. align-self:center;
  10140. padding:2px 2px 2px 0px;
  10141. box-sizing:border-box;
  10142. width:100%;
  10143. }
  10144. #u4920_text {
  10145. border-width:0px;
  10146. word-wrap:break-word;
  10147. text-transform:none;
  10148. visibility:hidden;
  10149. }
  10150. #u4921_img {
  10151. border-width:0px;
  10152. position:absolute;
  10153. left:0px;
  10154. top:0px;
  10155. width:103px;
  10156. height:35px;
  10157. }
  10158. #u4921 {
  10159. border-width:0px;
  10160. position:absolute;
  10161. left:398px;
  10162. top:147px;
  10163. width:103px;
  10164. height:35px;
  10165. display:flex;
  10166. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10167. font-weight:400;
  10168. font-style:normal;
  10169. font-size:12px;
  10170. color:#606266;
  10171. }
  10172. #u4921 .text {
  10173. position:absolute;
  10174. align-self:center;
  10175. padding:2px 2px 2px 0px;
  10176. box-sizing:border-box;
  10177. width:100%;
  10178. }
  10179. #u4921_text {
  10180. border-width:0px;
  10181. word-wrap:break-word;
  10182. text-transform:none;
  10183. visibility:hidden;
  10184. }
  10185. #u4922_img {
  10186. border-width:0px;
  10187. position:absolute;
  10188. left:0px;
  10189. top:0px;
  10190. width:88px;
  10191. height:35px;
  10192. }
  10193. #u4922 {
  10194. border-width:0px;
  10195. position:absolute;
  10196. left:501px;
  10197. top:147px;
  10198. width:88px;
  10199. height:35px;
  10200. display:flex;
  10201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10202. font-weight:400;
  10203. font-style:normal;
  10204. font-size:12px;
  10205. color:#606266;
  10206. }
  10207. #u4922 .text {
  10208. position:absolute;
  10209. align-self:center;
  10210. padding:2px 2px 2px 0px;
  10211. box-sizing:border-box;
  10212. width:100%;
  10213. }
  10214. #u4922_text {
  10215. border-width:0px;
  10216. word-wrap:break-word;
  10217. text-transform:none;
  10218. visibility:hidden;
  10219. }
  10220. #u4923_img {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:0px;
  10224. top:0px;
  10225. width:102px;
  10226. height:35px;
  10227. }
  10228. #u4923 {
  10229. border-width:0px;
  10230. position:absolute;
  10231. left:589px;
  10232. top:147px;
  10233. width:102px;
  10234. height:35px;
  10235. display:flex;
  10236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10237. font-weight:400;
  10238. font-style:normal;
  10239. font-size:12px;
  10240. color:#606266;
  10241. }
  10242. #u4923 .text {
  10243. position:absolute;
  10244. align-self:center;
  10245. padding:2px 2px 2px 0px;
  10246. box-sizing:border-box;
  10247. width:100%;
  10248. }
  10249. #u4923_text {
  10250. border-width:0px;
  10251. word-wrap:break-word;
  10252. text-transform:none;
  10253. visibility:hidden;
  10254. }
  10255. #u4924_img {
  10256. border-width:0px;
  10257. position:absolute;
  10258. left:0px;
  10259. top:0px;
  10260. width:102px;
  10261. height:35px;
  10262. }
  10263. #u4924 {
  10264. border-width:0px;
  10265. position:absolute;
  10266. left:691px;
  10267. top:147px;
  10268. width:102px;
  10269. height:35px;
  10270. display:flex;
  10271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10272. font-weight:400;
  10273. font-style:normal;
  10274. font-size:12px;
  10275. color:#606266;
  10276. }
  10277. #u4924 .text {
  10278. position:absolute;
  10279. align-self:center;
  10280. padding:2px 2px 2px 0px;
  10281. box-sizing:border-box;
  10282. width:100%;
  10283. }
  10284. #u4924_text {
  10285. border-width:0px;
  10286. word-wrap:break-word;
  10287. text-transform:none;
  10288. visibility:hidden;
  10289. }
  10290. #u4925_img {
  10291. border-width:0px;
  10292. position:absolute;
  10293. left:0px;
  10294. top:0px;
  10295. width:103px;
  10296. height:35px;
  10297. }
  10298. #u4925 {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:793px;
  10302. top:147px;
  10303. width:103px;
  10304. height:35px;
  10305. display:flex;
  10306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10307. font-weight:400;
  10308. font-style:normal;
  10309. font-size:12px;
  10310. color:#606266;
  10311. }
  10312. #u4925 .text {
  10313. position:absolute;
  10314. align-self:center;
  10315. padding:2px 2px 2px 0px;
  10316. box-sizing:border-box;
  10317. width:100%;
  10318. }
  10319. #u4925_text {
  10320. border-width:0px;
  10321. word-wrap:break-word;
  10322. text-transform:none;
  10323. visibility:hidden;
  10324. }
  10325. #u4926_img {
  10326. border-width:0px;
  10327. position:absolute;
  10328. left:0px;
  10329. top:0px;
  10330. width:103px;
  10331. height:35px;
  10332. }
  10333. #u4926 {
  10334. border-width:0px;
  10335. position:absolute;
  10336. left:896px;
  10337. top:147px;
  10338. width:103px;
  10339. height:35px;
  10340. display:flex;
  10341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10342. font-weight:400;
  10343. font-style:normal;
  10344. font-size:12px;
  10345. color:#606266;
  10346. }
  10347. #u4926 .text {
  10348. position:absolute;
  10349. align-self:center;
  10350. padding:2px 2px 2px 0px;
  10351. box-sizing:border-box;
  10352. width:100%;
  10353. }
  10354. #u4926_text {
  10355. border-width:0px;
  10356. word-wrap:break-word;
  10357. text-transform:none;
  10358. visibility:hidden;
  10359. }
  10360. #u4927_img {
  10361. border-width:0px;
  10362. position:absolute;
  10363. left:0px;
  10364. top:0px;
  10365. width:103px;
  10366. height:35px;
  10367. }
  10368. #u4927 {
  10369. border-width:0px;
  10370. position:absolute;
  10371. left:999px;
  10372. top:147px;
  10373. width:103px;
  10374. height:35px;
  10375. display:flex;
  10376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10377. font-weight:400;
  10378. font-style:normal;
  10379. font-size:12px;
  10380. color:#606266;
  10381. }
  10382. #u4927 .text {
  10383. position:absolute;
  10384. align-self:center;
  10385. padding:2px 2px 2px 0px;
  10386. box-sizing:border-box;
  10387. width:100%;
  10388. }
  10389. #u4927_text {
  10390. border-width:0px;
  10391. word-wrap:break-word;
  10392. text-transform:none;
  10393. visibility:hidden;
  10394. }
  10395. #u4928_img {
  10396. border-width:0px;
  10397. position:absolute;
  10398. left:0px;
  10399. top:0px;
  10400. width:116px;
  10401. height:35px;
  10402. }
  10403. #u4928 {
  10404. border-width:0px;
  10405. position:absolute;
  10406. left:1102px;
  10407. top:147px;
  10408. width:116px;
  10409. height:35px;
  10410. display:flex;
  10411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10412. font-weight:400;
  10413. font-style:normal;
  10414. font-size:12px;
  10415. color:#02A7F0;
  10416. }
  10417. #u4928 .text {
  10418. position:absolute;
  10419. align-self:center;
  10420. padding:2px 2px 2px 0px;
  10421. box-sizing:border-box;
  10422. width:100%;
  10423. }
  10424. #u4928_text {
  10425. border-width:0px;
  10426. word-wrap:break-word;
  10427. text-transform:none;
  10428. visibility:hidden;
  10429. }
  10430. #u4929_img {
  10431. border-width:0px;
  10432. position:absolute;
  10433. left:0px;
  10434. top:0px;
  10435. width:53px;
  10436. height:35px;
  10437. }
  10438. #u4929 {
  10439. border-width:0px;
  10440. position:absolute;
  10441. left:0px;
  10442. top:182px;
  10443. width:53px;
  10444. height:35px;
  10445. display:flex;
  10446. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10447. font-weight:400;
  10448. font-style:normal;
  10449. font-size:12px;
  10450. color:#606266;
  10451. }
  10452. #u4929 .text {
  10453. position:absolute;
  10454. align-self:center;
  10455. padding:2px 2px 2px 0px;
  10456. box-sizing:border-box;
  10457. width:100%;
  10458. }
  10459. #u4929_text {
  10460. border-width:0px;
  10461. word-wrap:break-word;
  10462. text-transform:none;
  10463. visibility:hidden;
  10464. }
  10465. #u4930_img {
  10466. border-width:0px;
  10467. position:absolute;
  10468. left:0px;
  10469. top:0px;
  10470. width:88px;
  10471. height:35px;
  10472. }
  10473. #u4930 {
  10474. border-width:0px;
  10475. position:absolute;
  10476. left:53px;
  10477. top:182px;
  10478. width:88px;
  10479. height:35px;
  10480. display:flex;
  10481. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10482. font-weight:400;
  10483. font-style:normal;
  10484. font-size:12px;
  10485. color:#606266;
  10486. }
  10487. #u4930 .text {
  10488. position:absolute;
  10489. align-self:center;
  10490. padding:2px 2px 2px 0px;
  10491. box-sizing:border-box;
  10492. width:100%;
  10493. }
  10494. #u4930_text {
  10495. border-width:0px;
  10496. word-wrap:break-word;
  10497. text-transform:none;
  10498. visibility:hidden;
  10499. }
  10500. #u4931_img {
  10501. border-width:0px;
  10502. position:absolute;
  10503. left:0px;
  10504. top:0px;
  10505. width:154px;
  10506. height:35px;
  10507. }
  10508. #u4931 {
  10509. border-width:0px;
  10510. position:absolute;
  10511. left:141px;
  10512. top:182px;
  10513. width:154px;
  10514. height:35px;
  10515. display:flex;
  10516. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10517. font-weight:400;
  10518. font-style:normal;
  10519. font-size:12px;
  10520. color:#606266;
  10521. }
  10522. #u4931 .text {
  10523. position:absolute;
  10524. align-self:center;
  10525. padding:2px 2px 2px 0px;
  10526. box-sizing:border-box;
  10527. width:100%;
  10528. }
  10529. #u4931_text {
  10530. border-width:0px;
  10531. word-wrap:break-word;
  10532. text-transform:none;
  10533. visibility:hidden;
  10534. }
  10535. #u4932_img {
  10536. border-width:0px;
  10537. position:absolute;
  10538. left:0px;
  10539. top:0px;
  10540. width:103px;
  10541. height:35px;
  10542. }
  10543. #u4932 {
  10544. border-width:0px;
  10545. position:absolute;
  10546. left:295px;
  10547. top:182px;
  10548. width:103px;
  10549. height:35px;
  10550. display:flex;
  10551. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10552. font-weight:400;
  10553. font-style:normal;
  10554. font-size:12px;
  10555. color:#606266;
  10556. }
  10557. #u4932 .text {
  10558. position:absolute;
  10559. align-self:center;
  10560. padding:2px 2px 2px 0px;
  10561. box-sizing:border-box;
  10562. width:100%;
  10563. }
  10564. #u4932_text {
  10565. border-width:0px;
  10566. word-wrap:break-word;
  10567. text-transform:none;
  10568. visibility:hidden;
  10569. }
  10570. #u4933_img {
  10571. border-width:0px;
  10572. position:absolute;
  10573. left:0px;
  10574. top:0px;
  10575. width:103px;
  10576. height:35px;
  10577. }
  10578. #u4933 {
  10579. border-width:0px;
  10580. position:absolute;
  10581. left:398px;
  10582. top:182px;
  10583. width:103px;
  10584. height:35px;
  10585. display:flex;
  10586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10587. font-weight:400;
  10588. font-style:normal;
  10589. font-size:12px;
  10590. color:#606266;
  10591. }
  10592. #u4933 .text {
  10593. position:absolute;
  10594. align-self:center;
  10595. padding:2px 2px 2px 0px;
  10596. box-sizing:border-box;
  10597. width:100%;
  10598. }
  10599. #u4933_text {
  10600. border-width:0px;
  10601. word-wrap:break-word;
  10602. text-transform:none;
  10603. visibility:hidden;
  10604. }
  10605. #u4934_img {
  10606. border-width:0px;
  10607. position:absolute;
  10608. left:0px;
  10609. top:0px;
  10610. width:88px;
  10611. height:35px;
  10612. }
  10613. #u4934 {
  10614. border-width:0px;
  10615. position:absolute;
  10616. left:501px;
  10617. top:182px;
  10618. width:88px;
  10619. height:35px;
  10620. display:flex;
  10621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10622. font-weight:400;
  10623. font-style:normal;
  10624. font-size:12px;
  10625. color:#606266;
  10626. }
  10627. #u4934 .text {
  10628. position:absolute;
  10629. align-self:center;
  10630. padding:2px 2px 2px 0px;
  10631. box-sizing:border-box;
  10632. width:100%;
  10633. }
  10634. #u4934_text {
  10635. border-width:0px;
  10636. word-wrap:break-word;
  10637. text-transform:none;
  10638. visibility:hidden;
  10639. }
  10640. #u4935_img {
  10641. border-width:0px;
  10642. position:absolute;
  10643. left:0px;
  10644. top:0px;
  10645. width:102px;
  10646. height:35px;
  10647. }
  10648. #u4935 {
  10649. border-width:0px;
  10650. position:absolute;
  10651. left:589px;
  10652. top:182px;
  10653. width:102px;
  10654. height:35px;
  10655. display:flex;
  10656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10657. font-weight:400;
  10658. font-style:normal;
  10659. font-size:12px;
  10660. color:#606266;
  10661. }
  10662. #u4935 .text {
  10663. position:absolute;
  10664. align-self:center;
  10665. padding:2px 2px 2px 0px;
  10666. box-sizing:border-box;
  10667. width:100%;
  10668. }
  10669. #u4935_text {
  10670. border-width:0px;
  10671. word-wrap:break-word;
  10672. text-transform:none;
  10673. visibility:hidden;
  10674. }
  10675. #u4936_img {
  10676. border-width:0px;
  10677. position:absolute;
  10678. left:0px;
  10679. top:0px;
  10680. width:102px;
  10681. height:35px;
  10682. }
  10683. #u4936 {
  10684. border-width:0px;
  10685. position:absolute;
  10686. left:691px;
  10687. top:182px;
  10688. width:102px;
  10689. height:35px;
  10690. display:flex;
  10691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10692. font-weight:400;
  10693. font-style:normal;
  10694. font-size:12px;
  10695. color:#606266;
  10696. }
  10697. #u4936 .text {
  10698. position:absolute;
  10699. align-self:center;
  10700. padding:2px 2px 2px 0px;
  10701. box-sizing:border-box;
  10702. width:100%;
  10703. }
  10704. #u4936_text {
  10705. border-width:0px;
  10706. word-wrap:break-word;
  10707. text-transform:none;
  10708. visibility:hidden;
  10709. }
  10710. #u4937_img {
  10711. border-width:0px;
  10712. position:absolute;
  10713. left:0px;
  10714. top:0px;
  10715. width:103px;
  10716. height:35px;
  10717. }
  10718. #u4937 {
  10719. border-width:0px;
  10720. position:absolute;
  10721. left:793px;
  10722. top:182px;
  10723. width:103px;
  10724. height:35px;
  10725. display:flex;
  10726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10727. font-weight:400;
  10728. font-style:normal;
  10729. font-size:12px;
  10730. color:#606266;
  10731. }
  10732. #u4937 .text {
  10733. position:absolute;
  10734. align-self:center;
  10735. padding:2px 2px 2px 0px;
  10736. box-sizing:border-box;
  10737. width:100%;
  10738. }
  10739. #u4937_text {
  10740. border-width:0px;
  10741. word-wrap:break-word;
  10742. text-transform:none;
  10743. visibility:hidden;
  10744. }
  10745. #u4938_img {
  10746. border-width:0px;
  10747. position:absolute;
  10748. left:0px;
  10749. top:0px;
  10750. width:103px;
  10751. height:35px;
  10752. }
  10753. #u4938 {
  10754. border-width:0px;
  10755. position:absolute;
  10756. left:896px;
  10757. top:182px;
  10758. width:103px;
  10759. height:35px;
  10760. display:flex;
  10761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10762. font-weight:400;
  10763. font-style:normal;
  10764. font-size:12px;
  10765. color:#606266;
  10766. }
  10767. #u4938 .text {
  10768. position:absolute;
  10769. align-self:center;
  10770. padding:2px 2px 2px 0px;
  10771. box-sizing:border-box;
  10772. width:100%;
  10773. }
  10774. #u4938_text {
  10775. border-width:0px;
  10776. word-wrap:break-word;
  10777. text-transform:none;
  10778. visibility:hidden;
  10779. }
  10780. #u4939_img {
  10781. border-width:0px;
  10782. position:absolute;
  10783. left:0px;
  10784. top:0px;
  10785. width:103px;
  10786. height:35px;
  10787. }
  10788. #u4939 {
  10789. border-width:0px;
  10790. position:absolute;
  10791. left:999px;
  10792. top:182px;
  10793. width:103px;
  10794. height:35px;
  10795. display:flex;
  10796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10797. font-weight:400;
  10798. font-style:normal;
  10799. font-size:12px;
  10800. color:#606266;
  10801. }
  10802. #u4939 .text {
  10803. position:absolute;
  10804. align-self:center;
  10805. padding:2px 2px 2px 0px;
  10806. box-sizing:border-box;
  10807. width:100%;
  10808. }
  10809. #u4939_text {
  10810. border-width:0px;
  10811. word-wrap:break-word;
  10812. text-transform:none;
  10813. visibility:hidden;
  10814. }
  10815. #u4940_img {
  10816. border-width:0px;
  10817. position:absolute;
  10818. left:0px;
  10819. top:0px;
  10820. width:116px;
  10821. height:35px;
  10822. }
  10823. #u4940 {
  10824. border-width:0px;
  10825. position:absolute;
  10826. left:1102px;
  10827. top:182px;
  10828. width:116px;
  10829. height:35px;
  10830. display:flex;
  10831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10832. font-weight:400;
  10833. font-style:normal;
  10834. font-size:12px;
  10835. color:#606266;
  10836. }
  10837. #u4940 .text {
  10838. position:absolute;
  10839. align-self:center;
  10840. padding:2px 2px 2px 0px;
  10841. box-sizing:border-box;
  10842. width:100%;
  10843. }
  10844. #u4940_text {
  10845. border-width:0px;
  10846. word-wrap:break-word;
  10847. text-transform:none;
  10848. visibility:hidden;
  10849. }
  10850. #u4941_img {
  10851. border-width:0px;
  10852. position:absolute;
  10853. left:0px;
  10854. top:0px;
  10855. width:53px;
  10856. height:35px;
  10857. }
  10858. #u4941 {
  10859. border-width:0px;
  10860. position:absolute;
  10861. left:0px;
  10862. top:217px;
  10863. width:53px;
  10864. height:35px;
  10865. display:flex;
  10866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10867. font-weight:400;
  10868. font-style:normal;
  10869. font-size:12px;
  10870. color:#606266;
  10871. }
  10872. #u4941 .text {
  10873. position:absolute;
  10874. align-self:center;
  10875. padding:2px 2px 2px 0px;
  10876. box-sizing:border-box;
  10877. width:100%;
  10878. }
  10879. #u4941_text {
  10880. border-width:0px;
  10881. word-wrap:break-word;
  10882. text-transform:none;
  10883. visibility:hidden;
  10884. }
  10885. #u4942_img {
  10886. border-width:0px;
  10887. position:absolute;
  10888. left:0px;
  10889. top:0px;
  10890. width:88px;
  10891. height:35px;
  10892. }
  10893. #u4942 {
  10894. border-width:0px;
  10895. position:absolute;
  10896. left:53px;
  10897. top:217px;
  10898. width:88px;
  10899. height:35px;
  10900. display:flex;
  10901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10902. font-weight:400;
  10903. font-style:normal;
  10904. font-size:12px;
  10905. color:#606266;
  10906. }
  10907. #u4942 .text {
  10908. position:absolute;
  10909. align-self:center;
  10910. padding:2px 2px 2px 0px;
  10911. box-sizing:border-box;
  10912. width:100%;
  10913. }
  10914. #u4942_text {
  10915. border-width:0px;
  10916. word-wrap:break-word;
  10917. text-transform:none;
  10918. visibility:hidden;
  10919. }
  10920. #u4943_img {
  10921. border-width:0px;
  10922. position:absolute;
  10923. left:0px;
  10924. top:0px;
  10925. width:154px;
  10926. height:35px;
  10927. }
  10928. #u4943 {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:141px;
  10932. top:217px;
  10933. width:154px;
  10934. height:35px;
  10935. display:flex;
  10936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10937. font-weight:400;
  10938. font-style:normal;
  10939. font-size:12px;
  10940. color:#606266;
  10941. }
  10942. #u4943 .text {
  10943. position:absolute;
  10944. align-self:center;
  10945. padding:2px 2px 2px 0px;
  10946. box-sizing:border-box;
  10947. width:100%;
  10948. }
  10949. #u4943_text {
  10950. border-width:0px;
  10951. word-wrap:break-word;
  10952. text-transform:none;
  10953. visibility:hidden;
  10954. }
  10955. #u4944_img {
  10956. border-width:0px;
  10957. position:absolute;
  10958. left:0px;
  10959. top:0px;
  10960. width:103px;
  10961. height:35px;
  10962. }
  10963. #u4944 {
  10964. border-width:0px;
  10965. position:absolute;
  10966. left:295px;
  10967. top:217px;
  10968. width:103px;
  10969. height:35px;
  10970. display:flex;
  10971. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  10972. font-weight:400;
  10973. font-style:normal;
  10974. font-size:12px;
  10975. color:#606266;
  10976. }
  10977. #u4944 .text {
  10978. position:absolute;
  10979. align-self:center;
  10980. padding:2px 2px 2px 0px;
  10981. box-sizing:border-box;
  10982. width:100%;
  10983. }
  10984. #u4944_text {
  10985. border-width:0px;
  10986. word-wrap:break-word;
  10987. text-transform:none;
  10988. visibility:hidden;
  10989. }
  10990. #u4945_img {
  10991. border-width:0px;
  10992. position:absolute;
  10993. left:0px;
  10994. top:0px;
  10995. width:103px;
  10996. height:35px;
  10997. }
  10998. #u4945 {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:398px;
  11002. top:217px;
  11003. width:103px;
  11004. height:35px;
  11005. display:flex;
  11006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11007. font-weight:400;
  11008. font-style:normal;
  11009. font-size:12px;
  11010. color:#606266;
  11011. }
  11012. #u4945 .text {
  11013. position:absolute;
  11014. align-self:center;
  11015. padding:2px 2px 2px 0px;
  11016. box-sizing:border-box;
  11017. width:100%;
  11018. }
  11019. #u4945_text {
  11020. border-width:0px;
  11021. word-wrap:break-word;
  11022. text-transform:none;
  11023. visibility:hidden;
  11024. }
  11025. #u4946_img {
  11026. border-width:0px;
  11027. position:absolute;
  11028. left:0px;
  11029. top:0px;
  11030. width:88px;
  11031. height:35px;
  11032. }
  11033. #u4946 {
  11034. border-width:0px;
  11035. position:absolute;
  11036. left:501px;
  11037. top:217px;
  11038. width:88px;
  11039. height:35px;
  11040. display:flex;
  11041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11042. font-weight:400;
  11043. font-style:normal;
  11044. font-size:12px;
  11045. color:#606266;
  11046. }
  11047. #u4946 .text {
  11048. position:absolute;
  11049. align-self:center;
  11050. padding:2px 2px 2px 0px;
  11051. box-sizing:border-box;
  11052. width:100%;
  11053. }
  11054. #u4946_text {
  11055. border-width:0px;
  11056. word-wrap:break-word;
  11057. text-transform:none;
  11058. visibility:hidden;
  11059. }
  11060. #u4947_img {
  11061. border-width:0px;
  11062. position:absolute;
  11063. left:0px;
  11064. top:0px;
  11065. width:102px;
  11066. height:35px;
  11067. }
  11068. #u4947 {
  11069. border-width:0px;
  11070. position:absolute;
  11071. left:589px;
  11072. top:217px;
  11073. width:102px;
  11074. height:35px;
  11075. display:flex;
  11076. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11077. font-weight:400;
  11078. font-style:normal;
  11079. font-size:12px;
  11080. color:#606266;
  11081. }
  11082. #u4947 .text {
  11083. position:absolute;
  11084. align-self:center;
  11085. padding:2px 2px 2px 0px;
  11086. box-sizing:border-box;
  11087. width:100%;
  11088. }
  11089. #u4947_text {
  11090. border-width:0px;
  11091. word-wrap:break-word;
  11092. text-transform:none;
  11093. visibility:hidden;
  11094. }
  11095. #u4948_img {
  11096. border-width:0px;
  11097. position:absolute;
  11098. left:0px;
  11099. top:0px;
  11100. width:102px;
  11101. height:35px;
  11102. }
  11103. #u4948 {
  11104. border-width:0px;
  11105. position:absolute;
  11106. left:691px;
  11107. top:217px;
  11108. width:102px;
  11109. height:35px;
  11110. display:flex;
  11111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11112. font-weight:400;
  11113. font-style:normal;
  11114. font-size:12px;
  11115. color:#606266;
  11116. }
  11117. #u4948 .text {
  11118. position:absolute;
  11119. align-self:center;
  11120. padding:2px 2px 2px 0px;
  11121. box-sizing:border-box;
  11122. width:100%;
  11123. }
  11124. #u4948_text {
  11125. border-width:0px;
  11126. word-wrap:break-word;
  11127. text-transform:none;
  11128. visibility:hidden;
  11129. }
  11130. #u4949_img {
  11131. border-width:0px;
  11132. position:absolute;
  11133. left:0px;
  11134. top:0px;
  11135. width:103px;
  11136. height:35px;
  11137. }
  11138. #u4949 {
  11139. border-width:0px;
  11140. position:absolute;
  11141. left:793px;
  11142. top:217px;
  11143. width:103px;
  11144. height:35px;
  11145. display:flex;
  11146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11147. font-weight:400;
  11148. font-style:normal;
  11149. font-size:12px;
  11150. color:#606266;
  11151. }
  11152. #u4949 .text {
  11153. position:absolute;
  11154. align-self:center;
  11155. padding:2px 2px 2px 0px;
  11156. box-sizing:border-box;
  11157. width:100%;
  11158. }
  11159. #u4949_text {
  11160. border-width:0px;
  11161. word-wrap:break-word;
  11162. text-transform:none;
  11163. visibility:hidden;
  11164. }
  11165. #u4950_img {
  11166. border-width:0px;
  11167. position:absolute;
  11168. left:0px;
  11169. top:0px;
  11170. width:103px;
  11171. height:35px;
  11172. }
  11173. #u4950 {
  11174. border-width:0px;
  11175. position:absolute;
  11176. left:896px;
  11177. top:217px;
  11178. width:103px;
  11179. height:35px;
  11180. display:flex;
  11181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11182. font-weight:400;
  11183. font-style:normal;
  11184. font-size:12px;
  11185. color:#606266;
  11186. }
  11187. #u4950 .text {
  11188. position:absolute;
  11189. align-self:center;
  11190. padding:2px 2px 2px 0px;
  11191. box-sizing:border-box;
  11192. width:100%;
  11193. }
  11194. #u4950_text {
  11195. border-width:0px;
  11196. word-wrap:break-word;
  11197. text-transform:none;
  11198. visibility:hidden;
  11199. }
  11200. #u4951_img {
  11201. border-width:0px;
  11202. position:absolute;
  11203. left:0px;
  11204. top:0px;
  11205. width:103px;
  11206. height:35px;
  11207. }
  11208. #u4951 {
  11209. border-width:0px;
  11210. position:absolute;
  11211. left:999px;
  11212. top:217px;
  11213. width:103px;
  11214. height:35px;
  11215. display:flex;
  11216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11217. font-weight:400;
  11218. font-style:normal;
  11219. font-size:12px;
  11220. color:#606266;
  11221. }
  11222. #u4951 .text {
  11223. position:absolute;
  11224. align-self:center;
  11225. padding:2px 2px 2px 0px;
  11226. box-sizing:border-box;
  11227. width:100%;
  11228. }
  11229. #u4951_text {
  11230. border-width:0px;
  11231. word-wrap:break-word;
  11232. text-transform:none;
  11233. visibility:hidden;
  11234. }
  11235. #u4952_img {
  11236. border-width:0px;
  11237. position:absolute;
  11238. left:0px;
  11239. top:0px;
  11240. width:116px;
  11241. height:35px;
  11242. }
  11243. #u4952 {
  11244. border-width:0px;
  11245. position:absolute;
  11246. left:1102px;
  11247. top:217px;
  11248. width:116px;
  11249. height:35px;
  11250. display:flex;
  11251. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11252. font-weight:400;
  11253. font-style:normal;
  11254. font-size:12px;
  11255. color:#606266;
  11256. }
  11257. #u4952 .text {
  11258. position:absolute;
  11259. align-self:center;
  11260. padding:2px 2px 2px 0px;
  11261. box-sizing:border-box;
  11262. width:100%;
  11263. }
  11264. #u4952_text {
  11265. border-width:0px;
  11266. word-wrap:break-word;
  11267. text-transform:none;
  11268. visibility:hidden;
  11269. }
  11270. #u4953_img {
  11271. border-width:0px;
  11272. position:absolute;
  11273. left:0px;
  11274. top:0px;
  11275. width:53px;
  11276. height:32px;
  11277. }
  11278. #u4953 {
  11279. border-width:0px;
  11280. position:absolute;
  11281. left:0px;
  11282. top:252px;
  11283. width:53px;
  11284. height:32px;
  11285. display:flex;
  11286. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11287. font-weight:400;
  11288. font-style:normal;
  11289. font-size:12px;
  11290. color:#606266;
  11291. }
  11292. #u4953 .text {
  11293. position:absolute;
  11294. align-self:center;
  11295. padding:2px 2px 2px 0px;
  11296. box-sizing:border-box;
  11297. width:100%;
  11298. }
  11299. #u4953_text {
  11300. border-width:0px;
  11301. word-wrap:break-word;
  11302. text-transform:none;
  11303. visibility:hidden;
  11304. }
  11305. #u4954_img {
  11306. border-width:0px;
  11307. position:absolute;
  11308. left:0px;
  11309. top:0px;
  11310. width:88px;
  11311. height:32px;
  11312. }
  11313. #u4954 {
  11314. border-width:0px;
  11315. position:absolute;
  11316. left:53px;
  11317. top:252px;
  11318. width:88px;
  11319. height:32px;
  11320. display:flex;
  11321. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11322. font-weight:400;
  11323. font-style:normal;
  11324. font-size:12px;
  11325. color:#606266;
  11326. }
  11327. #u4954 .text {
  11328. position:absolute;
  11329. align-self:center;
  11330. padding:2px 2px 2px 0px;
  11331. box-sizing:border-box;
  11332. width:100%;
  11333. }
  11334. #u4954_text {
  11335. border-width:0px;
  11336. word-wrap:break-word;
  11337. text-transform:none;
  11338. visibility:hidden;
  11339. }
  11340. #u4955_img {
  11341. border-width:0px;
  11342. position:absolute;
  11343. left:0px;
  11344. top:0px;
  11345. width:154px;
  11346. height:32px;
  11347. }
  11348. #u4955 {
  11349. border-width:0px;
  11350. position:absolute;
  11351. left:141px;
  11352. top:252px;
  11353. width:154px;
  11354. height:32px;
  11355. display:flex;
  11356. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11357. font-weight:400;
  11358. font-style:normal;
  11359. font-size:12px;
  11360. color:#606266;
  11361. }
  11362. #u4955 .text {
  11363. position:absolute;
  11364. align-self:center;
  11365. padding:2px 2px 2px 0px;
  11366. box-sizing:border-box;
  11367. width:100%;
  11368. }
  11369. #u4955_text {
  11370. border-width:0px;
  11371. word-wrap:break-word;
  11372. text-transform:none;
  11373. visibility:hidden;
  11374. }
  11375. #u4956_img {
  11376. border-width:0px;
  11377. position:absolute;
  11378. left:0px;
  11379. top:0px;
  11380. width:103px;
  11381. height:32px;
  11382. }
  11383. #u4956 {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:295px;
  11387. top:252px;
  11388. width:103px;
  11389. height:32px;
  11390. display:flex;
  11391. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11392. font-weight:400;
  11393. font-style:normal;
  11394. font-size:12px;
  11395. color:#606266;
  11396. }
  11397. #u4956 .text {
  11398. position:absolute;
  11399. align-self:center;
  11400. padding:2px 2px 2px 0px;
  11401. box-sizing:border-box;
  11402. width:100%;
  11403. }
  11404. #u4956_text {
  11405. border-width:0px;
  11406. word-wrap:break-word;
  11407. text-transform:none;
  11408. visibility:hidden;
  11409. }
  11410. #u4957_img {
  11411. border-width:0px;
  11412. position:absolute;
  11413. left:0px;
  11414. top:0px;
  11415. width:103px;
  11416. height:32px;
  11417. }
  11418. #u4957 {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:398px;
  11422. top:252px;
  11423. width:103px;
  11424. height:32px;
  11425. display:flex;
  11426. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11427. font-weight:400;
  11428. font-style:normal;
  11429. font-size:12px;
  11430. color:#606266;
  11431. }
  11432. #u4957 .text {
  11433. position:absolute;
  11434. align-self:center;
  11435. padding:2px 2px 2px 0px;
  11436. box-sizing:border-box;
  11437. width:100%;
  11438. }
  11439. #u4957_text {
  11440. border-width:0px;
  11441. word-wrap:break-word;
  11442. text-transform:none;
  11443. visibility:hidden;
  11444. }
  11445. #u4958_img {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:0px;
  11449. top:0px;
  11450. width:88px;
  11451. height:32px;
  11452. }
  11453. #u4958 {
  11454. border-width:0px;
  11455. position:absolute;
  11456. left:501px;
  11457. top:252px;
  11458. width:88px;
  11459. height:32px;
  11460. display:flex;
  11461. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11462. font-weight:400;
  11463. font-style:normal;
  11464. font-size:12px;
  11465. color:#606266;
  11466. }
  11467. #u4958 .text {
  11468. position:absolute;
  11469. align-self:center;
  11470. padding:2px 2px 2px 0px;
  11471. box-sizing:border-box;
  11472. width:100%;
  11473. }
  11474. #u4958_text {
  11475. border-width:0px;
  11476. word-wrap:break-word;
  11477. text-transform:none;
  11478. visibility:hidden;
  11479. }
  11480. #u4959_img {
  11481. border-width:0px;
  11482. position:absolute;
  11483. left:0px;
  11484. top:0px;
  11485. width:102px;
  11486. height:32px;
  11487. }
  11488. #u4959 {
  11489. border-width:0px;
  11490. position:absolute;
  11491. left:589px;
  11492. top:252px;
  11493. width:102px;
  11494. height:32px;
  11495. display:flex;
  11496. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11497. font-weight:400;
  11498. font-style:normal;
  11499. font-size:12px;
  11500. color:#606266;
  11501. }
  11502. #u4959 .text {
  11503. position:absolute;
  11504. align-self:center;
  11505. padding:2px 2px 2px 0px;
  11506. box-sizing:border-box;
  11507. width:100%;
  11508. }
  11509. #u4959_text {
  11510. border-width:0px;
  11511. word-wrap:break-word;
  11512. text-transform:none;
  11513. visibility:hidden;
  11514. }
  11515. #u4960_img {
  11516. border-width:0px;
  11517. position:absolute;
  11518. left:0px;
  11519. top:0px;
  11520. width:102px;
  11521. height:32px;
  11522. }
  11523. #u4960 {
  11524. border-width:0px;
  11525. position:absolute;
  11526. left:691px;
  11527. top:252px;
  11528. width:102px;
  11529. height:32px;
  11530. display:flex;
  11531. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11532. font-weight:400;
  11533. font-style:normal;
  11534. font-size:12px;
  11535. color:#606266;
  11536. }
  11537. #u4960 .text {
  11538. position:absolute;
  11539. align-self:center;
  11540. padding:2px 2px 2px 0px;
  11541. box-sizing:border-box;
  11542. width:100%;
  11543. }
  11544. #u4960_text {
  11545. border-width:0px;
  11546. word-wrap:break-word;
  11547. text-transform:none;
  11548. visibility:hidden;
  11549. }
  11550. #u4961_img {
  11551. border-width:0px;
  11552. position:absolute;
  11553. left:0px;
  11554. top:0px;
  11555. width:103px;
  11556. height:32px;
  11557. }
  11558. #u4961 {
  11559. border-width:0px;
  11560. position:absolute;
  11561. left:793px;
  11562. top:252px;
  11563. width:103px;
  11564. height:32px;
  11565. display:flex;
  11566. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11567. font-weight:400;
  11568. font-style:normal;
  11569. font-size:12px;
  11570. color:#606266;
  11571. }
  11572. #u4961 .text {
  11573. position:absolute;
  11574. align-self:center;
  11575. padding:2px 2px 2px 0px;
  11576. box-sizing:border-box;
  11577. width:100%;
  11578. }
  11579. #u4961_text {
  11580. border-width:0px;
  11581. word-wrap:break-word;
  11582. text-transform:none;
  11583. visibility:hidden;
  11584. }
  11585. #u4962_img {
  11586. border-width:0px;
  11587. position:absolute;
  11588. left:0px;
  11589. top:0px;
  11590. width:103px;
  11591. height:32px;
  11592. }
  11593. #u4962 {
  11594. border-width:0px;
  11595. position:absolute;
  11596. left:896px;
  11597. top:252px;
  11598. width:103px;
  11599. height:32px;
  11600. display:flex;
  11601. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11602. font-weight:400;
  11603. font-style:normal;
  11604. font-size:12px;
  11605. color:#606266;
  11606. }
  11607. #u4962 .text {
  11608. position:absolute;
  11609. align-self:center;
  11610. padding:2px 2px 2px 0px;
  11611. box-sizing:border-box;
  11612. width:100%;
  11613. }
  11614. #u4962_text {
  11615. border-width:0px;
  11616. word-wrap:break-word;
  11617. text-transform:none;
  11618. visibility:hidden;
  11619. }
  11620. #u4963_img {
  11621. border-width:0px;
  11622. position:absolute;
  11623. left:0px;
  11624. top:0px;
  11625. width:103px;
  11626. height:32px;
  11627. }
  11628. #u4963 {
  11629. border-width:0px;
  11630. position:absolute;
  11631. left:999px;
  11632. top:252px;
  11633. width:103px;
  11634. height:32px;
  11635. display:flex;
  11636. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11637. font-weight:400;
  11638. font-style:normal;
  11639. font-size:12px;
  11640. color:#606266;
  11641. }
  11642. #u4963 .text {
  11643. position:absolute;
  11644. align-self:center;
  11645. padding:2px 2px 2px 0px;
  11646. box-sizing:border-box;
  11647. width:100%;
  11648. }
  11649. #u4963_text {
  11650. border-width:0px;
  11651. word-wrap:break-word;
  11652. text-transform:none;
  11653. visibility:hidden;
  11654. }
  11655. #u4964_img {
  11656. border-width:0px;
  11657. position:absolute;
  11658. left:0px;
  11659. top:0px;
  11660. width:116px;
  11661. height:32px;
  11662. }
  11663. #u4964 {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:1102px;
  11667. top:252px;
  11668. width:116px;
  11669. height:32px;
  11670. display:flex;
  11671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  11672. font-weight:400;
  11673. font-style:normal;
  11674. font-size:12px;
  11675. color:#606266;
  11676. }
  11677. #u4964 .text {
  11678. position:absolute;
  11679. align-self:center;
  11680. padding:2px 2px 2px 0px;
  11681. box-sizing:border-box;
  11682. width:100%;
  11683. }
  11684. #u4964_text {
  11685. border-width:0px;
  11686. word-wrap:break-word;
  11687. text-transform:none;
  11688. visibility:hidden;
  11689. }
  11690. #u4965 {
  11691. border-width:0px;
  11692. position:absolute;
  11693. left:0px;
  11694. top:0px;
  11695. width:0px;
  11696. height:0px;
  11697. }
  11698. #u4966_div {
  11699. border-width:0px;
  11700. position:absolute;
  11701. left:0px;
  11702. top:0px;
  11703. width:140px;
  11704. height:30px;
  11705. background:inherit;
  11706. background-color:rgba(255, 255, 255, 1);
  11707. box-sizing:border-box;
  11708. border-width:1px;
  11709. border-style:solid;
  11710. border-color:rgba(201, 201, 201, 1);
  11711. border-radius:4px;
  11712. -moz-box-shadow:none;
  11713. -webkit-box-shadow:none;
  11714. box-shadow:none;
  11715. font-family:'Microsoft YaHei', sans-serif;
  11716. font-weight:400;
  11717. font-style:normal;
  11718. font-size:14px;
  11719. color:#CCCCCC;
  11720. text-align:left;
  11721. }
  11722. #u4966 {
  11723. border-width:0px;
  11724. position:absolute;
  11725. left:1985px;
  11726. top:181px;
  11727. width:140px;
  11728. height:30px;
  11729. display:flex;
  11730. font-family:'Microsoft YaHei', sans-serif;
  11731. font-weight:400;
  11732. font-style:normal;
  11733. font-size:14px;
  11734. color:#CCCCCC;
  11735. text-align:left;
  11736. }
  11737. #u4966 .text {
  11738. position:absolute;
  11739. align-self:center;
  11740. padding:2px 8px 2px 8px;
  11741. box-sizing:border-box;
  11742. width:100%;
  11743. }
  11744. #u4966_text {
  11745. border-width:0px;
  11746. word-wrap:break-word;
  11747. text-transform:none;
  11748. visibility:hidden;
  11749. }
  11750. #u4967_input {
  11751. position:absolute;
  11752. left:0px;
  11753. top:0px;
  11754. width:127px;
  11755. height:25px;
  11756. padding:2px 2px 2px 2px;
  11757. font-family:'Microsoft YaHei', sans-serif;
  11758. font-weight:400;
  11759. font-style:normal;
  11760. font-size:10px;
  11761. letter-spacing:normal;
  11762. color:#000000;
  11763. vertical-align:none;
  11764. text-align:left;
  11765. text-transform:none;
  11766. background-color:transparent;
  11767. border-color:transparent;
  11768. }
  11769. #u4967_input.disabled {
  11770. position:absolute;
  11771. left:0px;
  11772. top:0px;
  11773. width:127px;
  11774. height:25px;
  11775. padding:2px 2px 2px 2px;
  11776. font-family:'Microsoft YaHei', sans-serif;
  11777. font-weight:400;
  11778. font-style:normal;
  11779. font-size:10px;
  11780. letter-spacing:normal;
  11781. color:#000000;
  11782. vertical-align:none;
  11783. text-align:left;
  11784. text-transform:none;
  11785. background-color:transparent;
  11786. border-color:transparent;
  11787. }
  11788. #u4967_div {
  11789. border-width:0px;
  11790. position:absolute;
  11791. left:0px;
  11792. top:0px;
  11793. width:127px;
  11794. height:25px;
  11795. background:inherit;
  11796. background-color:rgba(255, 255, 255, 1);
  11797. border:none;
  11798. border-radius:0px;
  11799. -moz-box-shadow:none;
  11800. -webkit-box-shadow:none;
  11801. box-shadow:none;
  11802. font-family:'Microsoft YaHei', sans-serif;
  11803. font-weight:400;
  11804. font-style:normal;
  11805. font-size:10px;
  11806. }
  11807. #u4967 {
  11808. border-width:0px;
  11809. position:absolute;
  11810. left:1993px;
  11811. top:182px;
  11812. width:127px;
  11813. height:25px;
  11814. display:flex;
  11815. font-family:'Microsoft YaHei', sans-serif;
  11816. font-weight:400;
  11817. font-style:normal;
  11818. font-size:10px;
  11819. }
  11820. #u4967 .text {
  11821. position:absolute;
  11822. align-self:center;
  11823. padding:2px 2px 2px 2px;
  11824. box-sizing:border-box;
  11825. width:100%;
  11826. }
  11827. #u4967_div.disabled {
  11828. border-width:0px;
  11829. position:absolute;
  11830. left:0px;
  11831. top:0px;
  11832. width:127px;
  11833. height:25px;
  11834. background:inherit;
  11835. background-color:rgba(240, 240, 240, 1);
  11836. border:none;
  11837. border-radius:0px;
  11838. -moz-box-shadow:none;
  11839. -webkit-box-shadow:none;
  11840. box-shadow:none;
  11841. font-family:'Microsoft YaHei', sans-serif;
  11842. font-weight:400;
  11843. font-style:normal;
  11844. font-size:10px;
  11845. }
  11846. #u4967.disabled {
  11847. }
  11848. #u4968 {
  11849. border-width:0px;
  11850. position:absolute;
  11851. left:0px;
  11852. top:0px;
  11853. width:0px;
  11854. height:0px;
  11855. }
  11856. #u4969_div {
  11857. border-width:0px;
  11858. position:absolute;
  11859. left:0px;
  11860. top:0px;
  11861. width:140px;
  11862. height:30px;
  11863. background:inherit;
  11864. background-color:rgba(255, 255, 255, 1);
  11865. box-sizing:border-box;
  11866. border-width:1px;
  11867. border-style:solid;
  11868. border-color:rgba(215, 215, 215, 1);
  11869. border-radius:4px;
  11870. -moz-box-shadow:none;
  11871. -webkit-box-shadow:none;
  11872. box-shadow:none;
  11873. font-size:11px;
  11874. }
  11875. #u4969 {
  11876. border-width:0px;
  11877. position:absolute;
  11878. left:2435px;
  11879. top:181px;
  11880. width:140px;
  11881. height:30px;
  11882. display:flex;
  11883. font-size:11px;
  11884. }
  11885. #u4969 .text {
  11886. position:absolute;
  11887. align-self:center;
  11888. padding:2px 2px 2px 2px;
  11889. box-sizing:border-box;
  11890. width:100%;
  11891. }
  11892. #u4969_text {
  11893. border-width:0px;
  11894. word-wrap:break-word;
  11895. text-transform:none;
  11896. visibility:hidden;
  11897. }
  11898. #u4970_input {
  11899. position:absolute;
  11900. left:0px;
  11901. top:0px;
  11902. width:120px;
  11903. height:23px;
  11904. padding:2px 2px 2px 2px;
  11905. font-family:'ArialMT', 'Arial', sans-serif;
  11906. font-weight:400;
  11907. font-style:normal;
  11908. font-size:11px;
  11909. letter-spacing:normal;
  11910. color:#AAAAAA;
  11911. vertical-align:none;
  11912. text-align:left;
  11913. text-transform:none;
  11914. background-color:transparent;
  11915. border-color:transparent;
  11916. }
  11917. #u4970_input.disabled {
  11918. position:absolute;
  11919. left:0px;
  11920. top:0px;
  11921. width:120px;
  11922. height:23px;
  11923. padding:2px 2px 2px 2px;
  11924. font-family:'ArialMT', 'Arial', sans-serif;
  11925. font-weight:400;
  11926. font-style:normal;
  11927. font-size:11px;
  11928. letter-spacing:normal;
  11929. color:#AAAAAA;
  11930. vertical-align:none;
  11931. text-align:left;
  11932. text-transform:none;
  11933. background-color:transparent;
  11934. border-color:transparent;
  11935. }
  11936. #u4970_div {
  11937. border-width:0px;
  11938. position:absolute;
  11939. left:0px;
  11940. top:0px;
  11941. width:120px;
  11942. height:23px;
  11943. background:inherit;
  11944. background-color:rgba(255, 255, 255, 1);
  11945. border:none;
  11946. border-radius:0px;
  11947. -moz-box-shadow:none;
  11948. -webkit-box-shadow:none;
  11949. box-shadow:none;
  11950. font-size:11px;
  11951. color:#AAAAAA;
  11952. }
  11953. #u4970 {
  11954. border-width:0px;
  11955. position:absolute;
  11956. left:2442px;
  11957. top:183px;
  11958. width:120px;
  11959. height:23px;
  11960. display:flex;
  11961. font-size:11px;
  11962. color:#AAAAAA;
  11963. }
  11964. #u4970 .text {
  11965. position:absolute;
  11966. align-self:flex-start;
  11967. padding:2px 2px 2px 2px;
  11968. box-sizing:border-box;
  11969. width:100%;
  11970. }
  11971. #u4970_div.disabled {
  11972. border-width:0px;
  11973. position:absolute;
  11974. left:0px;
  11975. top:0px;
  11976. width:120px;
  11977. height:23px;
  11978. background:inherit;
  11979. background-color:rgba(240, 240, 240, 1);
  11980. border:none;
  11981. border-radius:0px;
  11982. -moz-box-shadow:none;
  11983. -webkit-box-shadow:none;
  11984. box-shadow:none;
  11985. font-size:11px;
  11986. color:#AAAAAA;
  11987. }
  11988. #u4970.disabled {
  11989. }
  11990. .u4970_input_option {
  11991. font-size:11px;
  11992. }
  11993. #u4971_div {
  11994. border-width:0px;
  11995. position:absolute;
  11996. left:0px;
  11997. top:0px;
  11998. width:59px;
  11999. height:30px;
  12000. background:inherit;
  12001. background-color:rgba(24, 144, 255, 1);
  12002. box-sizing:border-box;
  12003. border-width:1px;
  12004. border-style:solid;
  12005. border-color:rgba(0, 153, 255, 1);
  12006. border-radius:4px;
  12007. -moz-box-shadow:none;
  12008. -webkit-box-shadow:none;
  12009. box-shadow:none;
  12010. font-family:'Microsoft YaHei', sans-serif;
  12011. font-weight:400;
  12012. font-style:normal;
  12013. font-size:14px;
  12014. color:#FFFFFF;
  12015. }
  12016. #u4971 {
  12017. border-width:0px;
  12018. position:absolute;
  12019. left:2765px;
  12020. top:181px;
  12021. width:59px;
  12022. height:30px;
  12023. display:flex;
  12024. font-family:'Microsoft YaHei', sans-serif;
  12025. font-weight:400;
  12026. font-style:normal;
  12027. font-size:14px;
  12028. color:#FFFFFF;
  12029. }
  12030. #u4971 .text {
  12031. position:absolute;
  12032. align-self:center;
  12033. padding:5px 15px 5px 15px;
  12034. box-sizing:border-box;
  12035. width:100%;
  12036. }
  12037. #u4971_text {
  12038. border-width:0px;
  12039. white-space:nowrap;
  12040. text-transform:none;
  12041. }
  12042. #u4972 {
  12043. border-width:0px;
  12044. position:absolute;
  12045. left:0px;
  12046. top:0px;
  12047. width:0px;
  12048. height:0px;
  12049. }
  12050. #u4973_div {
  12051. border-width:0px;
  12052. position:absolute;
  12053. left:0px;
  12054. top:0px;
  12055. width:160px;
  12056. height:30px;
  12057. background:inherit;
  12058. background-color:rgba(255, 255, 255, 1);
  12059. box-sizing:border-box;
  12060. border-width:1px;
  12061. border-style:solid;
  12062. border-color:rgba(215, 215, 215, 1);
  12063. border-radius:4px;
  12064. -moz-box-shadow:none;
  12065. -webkit-box-shadow:none;
  12066. box-shadow:none;
  12067. font-size:11px;
  12068. }
  12069. #u4973 {
  12070. border-width:0px;
  12071. position:absolute;
  12072. left:2585px;
  12073. top:181px;
  12074. width:160px;
  12075. height:30px;
  12076. display:flex;
  12077. font-size:11px;
  12078. }
  12079. #u4973 .text {
  12080. position:absolute;
  12081. align-self:center;
  12082. padding:2px 2px 2px 2px;
  12083. box-sizing:border-box;
  12084. width:100%;
  12085. }
  12086. #u4973_text {
  12087. border-width:0px;
  12088. word-wrap:break-word;
  12089. text-transform:none;
  12090. visibility:hidden;
  12091. }
  12092. #u4974_input {
  12093. position:absolute;
  12094. left:0px;
  12095. top:0px;
  12096. width:140px;
  12097. height:23px;
  12098. padding:2px 2px 2px 2px;
  12099. font-family:'ArialMT', 'Arial', sans-serif;
  12100. font-weight:400;
  12101. font-style:normal;
  12102. font-size:11px;
  12103. letter-spacing:normal;
  12104. color:#AAAAAA;
  12105. vertical-align:none;
  12106. text-align:left;
  12107. text-transform:none;
  12108. background-color:transparent;
  12109. border-color:transparent;
  12110. }
  12111. #u4974_input.disabled {
  12112. position:absolute;
  12113. left:0px;
  12114. top:0px;
  12115. width:140px;
  12116. height:23px;
  12117. padding:2px 2px 2px 2px;
  12118. font-family:'ArialMT', 'Arial', sans-serif;
  12119. font-weight:400;
  12120. font-style:normal;
  12121. font-size:11px;
  12122. letter-spacing:normal;
  12123. color:#AAAAAA;
  12124. vertical-align:none;
  12125. text-align:left;
  12126. text-transform:none;
  12127. background-color:transparent;
  12128. border-color:transparent;
  12129. }
  12130. #u4974_div {
  12131. border-width:0px;
  12132. position:absolute;
  12133. left:0px;
  12134. top:0px;
  12135. width:140px;
  12136. height:23px;
  12137. background:inherit;
  12138. background-color:rgba(255, 255, 255, 1);
  12139. border:none;
  12140. border-radius:0px;
  12141. -moz-box-shadow:none;
  12142. -webkit-box-shadow:none;
  12143. box-shadow:none;
  12144. font-size:11px;
  12145. color:#AAAAAA;
  12146. }
  12147. #u4974 {
  12148. border-width:0px;
  12149. position:absolute;
  12150. left:2592px;
  12151. top:183px;
  12152. width:140px;
  12153. height:23px;
  12154. display:flex;
  12155. font-size:11px;
  12156. color:#AAAAAA;
  12157. }
  12158. #u4974 .text {
  12159. position:absolute;
  12160. align-self:flex-start;
  12161. padding:2px 2px 2px 2px;
  12162. box-sizing:border-box;
  12163. width:100%;
  12164. }
  12165. #u4974_div.disabled {
  12166. border-width:0px;
  12167. position:absolute;
  12168. left:0px;
  12169. top:0px;
  12170. width:140px;
  12171. height:23px;
  12172. background:inherit;
  12173. background-color:rgba(240, 240, 240, 1);
  12174. border:none;
  12175. border-radius:0px;
  12176. -moz-box-shadow:none;
  12177. -webkit-box-shadow:none;
  12178. box-shadow:none;
  12179. font-size:11px;
  12180. color:#AAAAAA;
  12181. }
  12182. #u4974.disabled {
  12183. }
  12184. .u4974_input_option {
  12185. font-size:11px;
  12186. }
  12187. #u4975 {
  12188. border-width:0px;
  12189. position:absolute;
  12190. left:0px;
  12191. top:0px;
  12192. width:0px;
  12193. height:0px;
  12194. }
  12195. #u4976_div {
  12196. border-width:0px;
  12197. position:absolute;
  12198. left:0px;
  12199. top:0px;
  12200. width:140px;
  12201. height:30px;
  12202. background:inherit;
  12203. background-color:rgba(255, 255, 255, 1);
  12204. box-sizing:border-box;
  12205. border-width:1px;
  12206. border-style:solid;
  12207. border-color:rgba(201, 201, 201, 1);
  12208. border-radius:4px;
  12209. -moz-box-shadow:none;
  12210. -webkit-box-shadow:none;
  12211. box-shadow:none;
  12212. font-family:'Microsoft YaHei', sans-serif;
  12213. font-weight:400;
  12214. font-style:normal;
  12215. font-size:14px;
  12216. color:#CCCCCC;
  12217. text-align:left;
  12218. }
  12219. #u4976 {
  12220. border-width:0px;
  12221. position:absolute;
  12222. left:2135px;
  12223. top:181px;
  12224. width:140px;
  12225. height:30px;
  12226. display:flex;
  12227. font-family:'Microsoft YaHei', sans-serif;
  12228. font-weight:400;
  12229. font-style:normal;
  12230. font-size:14px;
  12231. color:#CCCCCC;
  12232. text-align:left;
  12233. }
  12234. #u4976 .text {
  12235. position:absolute;
  12236. align-self:center;
  12237. padding:2px 8px 2px 8px;
  12238. box-sizing:border-box;
  12239. width:100%;
  12240. }
  12241. #u4976_text {
  12242. border-width:0px;
  12243. word-wrap:break-word;
  12244. text-transform:none;
  12245. visibility:hidden;
  12246. }
  12247. #u4977_input {
  12248. position:absolute;
  12249. left:0px;
  12250. top:0px;
  12251. width:127px;
  12252. height:25px;
  12253. padding:2px 2px 2px 2px;
  12254. font-family:'Microsoft YaHei', sans-serif;
  12255. font-weight:400;
  12256. font-style:normal;
  12257. font-size:10px;
  12258. letter-spacing:normal;
  12259. color:#000000;
  12260. vertical-align:none;
  12261. text-align:left;
  12262. text-transform:none;
  12263. background-color:transparent;
  12264. border-color:transparent;
  12265. }
  12266. #u4977_input.disabled {
  12267. position:absolute;
  12268. left:0px;
  12269. top:0px;
  12270. width:127px;
  12271. height:25px;
  12272. padding:2px 2px 2px 2px;
  12273. font-family:'Microsoft YaHei', sans-serif;
  12274. font-weight:400;
  12275. font-style:normal;
  12276. font-size:10px;
  12277. letter-spacing:normal;
  12278. color:#000000;
  12279. vertical-align:none;
  12280. text-align:left;
  12281. text-transform:none;
  12282. background-color:transparent;
  12283. border-color:transparent;
  12284. }
  12285. #u4977_div {
  12286. border-width:0px;
  12287. position:absolute;
  12288. left:0px;
  12289. top:0px;
  12290. width:127px;
  12291. height:25px;
  12292. background:inherit;
  12293. background-color:rgba(255, 255, 255, 1);
  12294. border:none;
  12295. border-radius:0px;
  12296. -moz-box-shadow:none;
  12297. -webkit-box-shadow:none;
  12298. box-shadow:none;
  12299. font-family:'Microsoft YaHei', sans-serif;
  12300. font-weight:400;
  12301. font-style:normal;
  12302. font-size:10px;
  12303. }
  12304. #u4977 {
  12305. border-width:0px;
  12306. position:absolute;
  12307. left:2143px;
  12308. top:182px;
  12309. width:127px;
  12310. height:25px;
  12311. display:flex;
  12312. font-family:'Microsoft YaHei', sans-serif;
  12313. font-weight:400;
  12314. font-style:normal;
  12315. font-size:10px;
  12316. }
  12317. #u4977 .text {
  12318. position:absolute;
  12319. align-self:center;
  12320. padding:2px 2px 2px 2px;
  12321. box-sizing:border-box;
  12322. width:100%;
  12323. }
  12324. #u4977_div.disabled {
  12325. border-width:0px;
  12326. position:absolute;
  12327. left:0px;
  12328. top:0px;
  12329. width:127px;
  12330. height:25px;
  12331. background:inherit;
  12332. background-color:rgba(240, 240, 240, 1);
  12333. border:none;
  12334. border-radius:0px;
  12335. -moz-box-shadow:none;
  12336. -webkit-box-shadow:none;
  12337. box-shadow:none;
  12338. font-family:'Microsoft YaHei', sans-serif;
  12339. font-weight:400;
  12340. font-style:normal;
  12341. font-size:10px;
  12342. }
  12343. #u4977.disabled {
  12344. }
  12345. #u4978 {
  12346. border-width:0px;
  12347. position:absolute;
  12348. left:0px;
  12349. top:0px;
  12350. width:0px;
  12351. height:0px;
  12352. }
  12353. #u4979_div {
  12354. border-width:0px;
  12355. position:absolute;
  12356. left:0px;
  12357. top:0px;
  12358. width:140px;
  12359. height:30px;
  12360. background:inherit;
  12361. background-color:rgba(255, 255, 255, 1);
  12362. box-sizing:border-box;
  12363. border-width:1px;
  12364. border-style:solid;
  12365. border-color:rgba(201, 201, 201, 1);
  12366. border-radius:4px;
  12367. -moz-box-shadow:none;
  12368. -webkit-box-shadow:none;
  12369. box-shadow:none;
  12370. font-family:'Microsoft YaHei', sans-serif;
  12371. font-weight:400;
  12372. font-style:normal;
  12373. font-size:14px;
  12374. color:#CCCCCC;
  12375. text-align:left;
  12376. }
  12377. #u4979 {
  12378. border-width:0px;
  12379. position:absolute;
  12380. left:2285px;
  12381. top:181px;
  12382. width:140px;
  12383. height:30px;
  12384. display:flex;
  12385. font-family:'Microsoft YaHei', sans-serif;
  12386. font-weight:400;
  12387. font-style:normal;
  12388. font-size:14px;
  12389. color:#CCCCCC;
  12390. text-align:left;
  12391. }
  12392. #u4979 .text {
  12393. position:absolute;
  12394. align-self:center;
  12395. padding:2px 8px 2px 8px;
  12396. box-sizing:border-box;
  12397. width:100%;
  12398. }
  12399. #u4979_text {
  12400. border-width:0px;
  12401. word-wrap:break-word;
  12402. text-transform:none;
  12403. visibility:hidden;
  12404. }
  12405. #u4980_input {
  12406. position:absolute;
  12407. left:0px;
  12408. top:0px;
  12409. width:127px;
  12410. height:25px;
  12411. padding:2px 2px 2px 2px;
  12412. font-family:'Microsoft YaHei', sans-serif;
  12413. font-weight:400;
  12414. font-style:normal;
  12415. font-size:10px;
  12416. letter-spacing:normal;
  12417. color:#000000;
  12418. vertical-align:none;
  12419. text-align:left;
  12420. text-transform:none;
  12421. background-color:transparent;
  12422. border-color:transparent;
  12423. }
  12424. #u4980_input.disabled {
  12425. position:absolute;
  12426. left:0px;
  12427. top:0px;
  12428. width:127px;
  12429. height:25px;
  12430. padding:2px 2px 2px 2px;
  12431. font-family:'Microsoft YaHei', sans-serif;
  12432. font-weight:400;
  12433. font-style:normal;
  12434. font-size:10px;
  12435. letter-spacing:normal;
  12436. color:#000000;
  12437. vertical-align:none;
  12438. text-align:left;
  12439. text-transform:none;
  12440. background-color:transparent;
  12441. border-color:transparent;
  12442. }
  12443. #u4980_div {
  12444. border-width:0px;
  12445. position:absolute;
  12446. left:0px;
  12447. top:0px;
  12448. width:127px;
  12449. height:25px;
  12450. background:inherit;
  12451. background-color:rgba(255, 255, 255, 1);
  12452. border:none;
  12453. border-radius:0px;
  12454. -moz-box-shadow:none;
  12455. -webkit-box-shadow:none;
  12456. box-shadow:none;
  12457. font-family:'Microsoft YaHei', sans-serif;
  12458. font-weight:400;
  12459. font-style:normal;
  12460. font-size:10px;
  12461. }
  12462. #u4980 {
  12463. border-width:0px;
  12464. position:absolute;
  12465. left:2293px;
  12466. top:182px;
  12467. width:127px;
  12468. height:25px;
  12469. display:flex;
  12470. font-family:'Microsoft YaHei', sans-serif;
  12471. font-weight:400;
  12472. font-style:normal;
  12473. font-size:10px;
  12474. }
  12475. #u4980 .text {
  12476. position:absolute;
  12477. align-self:center;
  12478. padding:2px 2px 2px 2px;
  12479. box-sizing:border-box;
  12480. width:100%;
  12481. }
  12482. #u4980_div.disabled {
  12483. border-width:0px;
  12484. position:absolute;
  12485. left:0px;
  12486. top:0px;
  12487. width:127px;
  12488. height:25px;
  12489. background:inherit;
  12490. background-color:rgba(240, 240, 240, 1);
  12491. border:none;
  12492. border-radius:0px;
  12493. -moz-box-shadow:none;
  12494. -webkit-box-shadow:none;
  12495. box-shadow:none;
  12496. font-family:'Microsoft YaHei', sans-serif;
  12497. font-weight:400;
  12498. font-style:normal;
  12499. font-size:10px;
  12500. }
  12501. #u4980.disabled {
  12502. }
  12503. #u4981_div {
  12504. border-width:0px;
  12505. position:absolute;
  12506. left:0px;
  12507. top:0px;
  12508. width:55px;
  12509. height:30px;
  12510. background:inherit;
  12511. background-color:rgba(255, 255, 255, 1);
  12512. box-sizing:border-box;
  12513. border-width:1px;
  12514. border-style:solid;
  12515. border-color:rgba(170, 170, 170, 1);
  12516. border-radius:4px;
  12517. -moz-box-shadow:none;
  12518. -webkit-box-shadow:none;
  12519. box-shadow:none;
  12520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12521. font-weight:400;
  12522. font-style:normal;
  12523. font-size:12px;
  12524. color:#555555;
  12525. }
  12526. #u4981 {
  12527. border-width:0px;
  12528. position:absolute;
  12529. left:2834px;
  12530. top:181px;
  12531. width:55px;
  12532. height:30px;
  12533. display:flex;
  12534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12535. font-weight:400;
  12536. font-style:normal;
  12537. font-size:12px;
  12538. color:#555555;
  12539. }
  12540. #u4981 .text {
  12541. position:absolute;
  12542. align-self:center;
  12543. padding:5px 15px 5px 15px;
  12544. box-sizing:border-box;
  12545. width:100%;
  12546. }
  12547. #u4981_text {
  12548. border-width:0px;
  12549. white-space:nowrap;
  12550. text-transform:none;
  12551. }
  12552. #u4982 {
  12553. border-width:0px;
  12554. position:absolute;
  12555. left:0px;
  12556. top:0px;
  12557. width:0px;
  12558. height:0px;
  12559. }
  12560. #u4983_div {
  12561. border-width:0px;
  12562. position:absolute;
  12563. left:0px;
  12564. top:0px;
  12565. width:200px;
  12566. height:1192px;
  12567. background:inherit;
  12568. background-color:rgba(255, 255, 255, 1);
  12569. border:none;
  12570. border-radius:0px;
  12571. -moz-box-shadow:none;
  12572. -webkit-box-shadow:none;
  12573. box-shadow:none;
  12574. }
  12575. #u4983 {
  12576. border-width:0px;
  12577. position:absolute;
  12578. left:1755px;
  12579. top:51px;
  12580. width:200px;
  12581. height:1192px;
  12582. display:flex;
  12583. }
  12584. #u4983 .text {
  12585. position:absolute;
  12586. align-self:center;
  12587. padding:2px 2px 2px 2px;
  12588. box-sizing:border-box;
  12589. width:100%;
  12590. }
  12591. #u4983_text {
  12592. border-width:0px;
  12593. word-wrap:break-word;
  12594. text-transform:none;
  12595. visibility:hidden;
  12596. }
  12597. #u4984_div {
  12598. border-width:0px;
  12599. position:absolute;
  12600. left:0px;
  12601. top:0px;
  12602. width:200px;
  12603. height:60px;
  12604. background:inherit;
  12605. background-color:rgba(224, 231, 247, 1);
  12606. border:none;
  12607. border-radius:0px;
  12608. -moz-box-shadow:none;
  12609. -webkit-box-shadow:none;
  12610. box-shadow:none;
  12611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12612. font-weight:500;
  12613. font-style:normal;
  12614. font-size:18px;
  12615. }
  12616. #u4984 {
  12617. border-width:0px;
  12618. position:absolute;
  12619. left:1755px;
  12620. top:51px;
  12621. width:200px;
  12622. height:60px;
  12623. display:flex;
  12624. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12625. font-weight:500;
  12626. font-style:normal;
  12627. font-size:18px;
  12628. }
  12629. #u4984 .text {
  12630. position:absolute;
  12631. align-self:center;
  12632. padding:0px 0px 0px 20px;
  12633. box-sizing:border-box;
  12634. width:100%;
  12635. }
  12636. #u4984_text {
  12637. border-width:0px;
  12638. word-wrap:break-word;
  12639. text-transform:none;
  12640. }
  12641. #u4985_div {
  12642. border-width:0px;
  12643. position:absolute;
  12644. left:0px;
  12645. top:0px;
  12646. width:65px;
  12647. height:22px;
  12648. background:inherit;
  12649. background-color:rgba(255, 255, 255, 0);
  12650. border:none;
  12651. border-radius:0px;
  12652. -moz-box-shadow:none;
  12653. -webkit-box-shadow:none;
  12654. box-shadow:none;
  12655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12656. font-weight:400;
  12657. font-style:normal;
  12658. font-size:16px;
  12659. }
  12660. #u4985 {
  12661. border-width:0px;
  12662. position:absolute;
  12663. left:1782px;
  12664. top:275px;
  12665. width:65px;
  12666. height:22px;
  12667. display:flex;
  12668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12669. font-weight:400;
  12670. font-style:normal;
  12671. font-size:16px;
  12672. }
  12673. #u4985 .text {
  12674. position:absolute;
  12675. align-self:flex-start;
  12676. padding:0px 0px 0px 0px;
  12677. box-sizing:border-box;
  12678. width:100%;
  12679. }
  12680. #u4985_text {
  12681. border-width:0px;
  12682. white-space:nowrap;
  12683. text-transform:none;
  12684. }
  12685. #u4986_img {
  12686. border-width:0px;
  12687. position:absolute;
  12688. left:0px;
  12689. top:0px;
  12690. width:201px;
  12691. height:2px;
  12692. }
  12693. #u4986 {
  12694. border-width:0px;
  12695. position:absolute;
  12696. left:1755px;
  12697. top:213px;
  12698. width:200px;
  12699. height:1px;
  12700. display:flex;
  12701. }
  12702. #u4986 .text {
  12703. position:absolute;
  12704. align-self:center;
  12705. padding:2px 2px 2px 2px;
  12706. box-sizing:border-box;
  12707. width:100%;
  12708. }
  12709. #u4986_text {
  12710. border-width:0px;
  12711. word-wrap:break-word;
  12712. text-transform:none;
  12713. visibility:hidden;
  12714. }
  12715. #u4987_div {
  12716. border-width:0px;
  12717. position:absolute;
  12718. left:0px;
  12719. top:0px;
  12720. width:65px;
  12721. height:22px;
  12722. background:inherit;
  12723. background-color:rgba(255, 255, 255, 0);
  12724. border:none;
  12725. border-radius:0px;
  12726. -moz-box-shadow:none;
  12727. -webkit-box-shadow:none;
  12728. box-shadow:none;
  12729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12730. font-weight:400;
  12731. font-style:normal;
  12732. font-size:16px;
  12733. }
  12734. #u4987 {
  12735. border-width:0px;
  12736. position:absolute;
  12737. left:1782px;
  12738. top:167px;
  12739. width:65px;
  12740. height:22px;
  12741. display:flex;
  12742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12743. font-weight:400;
  12744. font-style:normal;
  12745. font-size:16px;
  12746. }
  12747. #u4987 .text {
  12748. position:absolute;
  12749. align-self:flex-start;
  12750. padding:0px 0px 0px 0px;
  12751. box-sizing:border-box;
  12752. width:100%;
  12753. }
  12754. #u4987_text {
  12755. border-width:0px;
  12756. white-space:nowrap;
  12757. text-transform:none;
  12758. }
  12759. #u4988_div {
  12760. border-width:0px;
  12761. position:absolute;
  12762. left:0px;
  12763. top:0px;
  12764. width:65px;
  12765. height:22px;
  12766. background:inherit;
  12767. background-color:rgba(255, 255, 255, 0);
  12768. border:none;
  12769. border-radius:0px;
  12770. -moz-box-shadow:none;
  12771. -webkit-box-shadow:none;
  12772. box-shadow:none;
  12773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12774. font-weight:400;
  12775. font-style:normal;
  12776. font-size:16px;
  12777. }
  12778. #u4988 {
  12779. border-width:0px;
  12780. position:absolute;
  12781. left:1782px;
  12782. top:380px;
  12783. width:65px;
  12784. height:22px;
  12785. display:flex;
  12786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12787. font-weight:400;
  12788. font-style:normal;
  12789. font-size:16px;
  12790. }
  12791. #u4988 .text {
  12792. position:absolute;
  12793. align-self:flex-start;
  12794. padding:0px 0px 0px 0px;
  12795. box-sizing:border-box;
  12796. width:100%;
  12797. }
  12798. #u4988_text {
  12799. border-width:0px;
  12800. white-space:nowrap;
  12801. text-transform:none;
  12802. }
  12803. #u4989_div {
  12804. border-width:0px;
  12805. position:absolute;
  12806. left:0px;
  12807. top:0px;
  12808. width:49px;
  12809. height:17px;
  12810. background:inherit;
  12811. background-color:rgba(255, 255, 255, 0);
  12812. border:none;
  12813. border-radius:0px;
  12814. -moz-box-shadow:none;
  12815. -webkit-box-shadow:none;
  12816. box-shadow:none;
  12817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12818. font-weight:400;
  12819. font-style:normal;
  12820. font-size:12px;
  12821. color:#AAAAAA;
  12822. }
  12823. #u4989 {
  12824. border-width:0px;
  12825. position:absolute;
  12826. left:1782px;
  12827. top:239px;
  12828. width:49px;
  12829. height:17px;
  12830. display:flex;
  12831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12832. font-weight:400;
  12833. font-style:normal;
  12834. font-size:12px;
  12835. color:#AAAAAA;
  12836. }
  12837. #u4989 .text {
  12838. position:absolute;
  12839. align-self:flex-start;
  12840. padding:0px 0px 0px 0px;
  12841. box-sizing:border-box;
  12842. width:100%;
  12843. }
  12844. #u4989_text {
  12845. border-width:0px;
  12846. white-space:nowrap;
  12847. text-transform:none;
  12848. }
  12849. #u4990_div {
  12850. border-width:0px;
  12851. position:absolute;
  12852. left:0px;
  12853. top:0px;
  12854. width:49px;
  12855. height:17px;
  12856. background:inherit;
  12857. background-color:rgba(255, 255, 255, 0);
  12858. border:none;
  12859. border-radius:0px;
  12860. -moz-box-shadow:none;
  12861. -webkit-box-shadow:none;
  12862. box-shadow:none;
  12863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12864. font-weight:400;
  12865. font-style:normal;
  12866. font-size:12px;
  12867. color:#AAAAAA;
  12868. }
  12869. #u4990 {
  12870. border-width:0px;
  12871. position:absolute;
  12872. left:1782px;
  12873. top:131px;
  12874. width:49px;
  12875. height:17px;
  12876. display:flex;
  12877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12878. font-weight:400;
  12879. font-style:normal;
  12880. font-size:12px;
  12881. color:#AAAAAA;
  12882. }
  12883. #u4990 .text {
  12884. position:absolute;
  12885. align-self:flex-start;
  12886. padding:0px 0px 0px 0px;
  12887. box-sizing:border-box;
  12888. width:100%;
  12889. }
  12890. #u4990_text {
  12891. border-width:0px;
  12892. white-space:nowrap;
  12893. text-transform:none;
  12894. }
  12895. #u4991_div {
  12896. border-width:0px;
  12897. position:absolute;
  12898. left:0px;
  12899. top:0px;
  12900. width:65px;
  12901. height:22px;
  12902. background:inherit;
  12903. background-color:rgba(255, 255, 255, 0);
  12904. border:none;
  12905. border-radius:0px;
  12906. -moz-box-shadow:none;
  12907. -webkit-box-shadow:none;
  12908. box-shadow:none;
  12909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12910. font-weight:400;
  12911. font-style:normal;
  12912. font-size:16px;
  12913. }
  12914. #u4991 {
  12915. border-width:0px;
  12916. position:absolute;
  12917. left:1782px;
  12918. top:422px;
  12919. width:65px;
  12920. height:22px;
  12921. display:flex;
  12922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12923. font-weight:400;
  12924. font-style:normal;
  12925. font-size:16px;
  12926. }
  12927. #u4991 .text {
  12928. position:absolute;
  12929. align-self:flex-start;
  12930. padding:0px 0px 0px 0px;
  12931. box-sizing:border-box;
  12932. width:100%;
  12933. }
  12934. #u4991_text {
  12935. border-width:0px;
  12936. white-space:nowrap;
  12937. text-transform:none;
  12938. }
  12939. #u4992_img {
  12940. border-width:0px;
  12941. position:absolute;
  12942. left:0px;
  12943. top:0px;
  12944. width:201px;
  12945. height:2px;
  12946. }
  12947. #u4992 {
  12948. border-width:0px;
  12949. position:absolute;
  12950. left:1755px;
  12951. top:317px;
  12952. width:200px;
  12953. height:1px;
  12954. display:flex;
  12955. }
  12956. #u4992 .text {
  12957. position:absolute;
  12958. align-self:center;
  12959. padding:2px 2px 2px 2px;
  12960. box-sizing:border-box;
  12961. width:100%;
  12962. }
  12963. #u4992_text {
  12964. border-width:0px;
  12965. word-wrap:break-word;
  12966. text-transform:none;
  12967. visibility:hidden;
  12968. }
  12969. #u4993_div {
  12970. border-width:0px;
  12971. position:absolute;
  12972. left:0px;
  12973. top:0px;
  12974. width:49px;
  12975. height:17px;
  12976. background:inherit;
  12977. background-color:rgba(255, 255, 255, 0);
  12978. border:none;
  12979. border-radius:0px;
  12980. -moz-box-shadow:none;
  12981. -webkit-box-shadow:none;
  12982. box-shadow:none;
  12983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12984. font-weight:400;
  12985. font-style:normal;
  12986. font-size:12px;
  12987. color:#AAAAAA;
  12988. }
  12989. #u4993 {
  12990. border-width:0px;
  12991. position:absolute;
  12992. left:1782px;
  12993. top:343px;
  12994. width:49px;
  12995. height:17px;
  12996. display:flex;
  12997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12998. font-weight:400;
  12999. font-style:normal;
  13000. font-size:12px;
  13001. color:#AAAAAA;
  13002. }
  13003. #u4993 .text {
  13004. position:absolute;
  13005. align-self:flex-start;
  13006. padding:0px 0px 0px 0px;
  13007. box-sizing:border-box;
  13008. width:100%;
  13009. }
  13010. #u4993_text {
  13011. border-width:0px;
  13012. white-space:nowrap;
  13013. text-transform:none;
  13014. }
  13015. #u4994_div {
  13016. border-width:0px;
  13017. position:absolute;
  13018. left:0px;
  13019. top:0px;
  13020. width:65px;
  13021. height:22px;
  13022. background:inherit;
  13023. background-color:rgba(255, 255, 255, 0);
  13024. border:none;
  13025. border-radius:0px;
  13026. -moz-box-shadow:none;
  13027. -webkit-box-shadow:none;
  13028. box-shadow:none;
  13029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13030. font-weight:400;
  13031. font-style:normal;
  13032. font-size:16px;
  13033. }
  13034. #u4994 {
  13035. border-width:0px;
  13036. position:absolute;
  13037. left:1782px;
  13038. top:464px;
  13039. width:65px;
  13040. height:22px;
  13041. display:flex;
  13042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13043. font-weight:400;
  13044. font-style:normal;
  13045. font-size:16px;
  13046. }
  13047. #u4994 .text {
  13048. position:absolute;
  13049. align-self:flex-start;
  13050. padding:0px 0px 0px 0px;
  13051. box-sizing:border-box;
  13052. width:100%;
  13053. }
  13054. #u4994_text {
  13055. border-width:0px;
  13056. white-space:nowrap;
  13057. text-transform:none;
  13058. }
  13059. #u4995 {
  13060. border-width:0px;
  13061. position:absolute;
  13062. left:0px;
  13063. top:0px;
  13064. width:0px;
  13065. height:0px;
  13066. }
  13067. #u4996_div {
  13068. border-width:0px;
  13069. position:absolute;
  13070. left:0px;
  13071. top:0px;
  13072. width:200px;
  13073. height:1192px;
  13074. background:inherit;
  13075. background-color:rgba(255, 255, 255, 1);
  13076. border:none;
  13077. border-radius:0px;
  13078. -moz-box-shadow:none;
  13079. -webkit-box-shadow:none;
  13080. box-shadow:none;
  13081. }
  13082. #u4996 {
  13083. border-width:0px;
  13084. position:absolute;
  13085. left:120px;
  13086. top:50px;
  13087. width:200px;
  13088. height:1192px;
  13089. display:flex;
  13090. }
  13091. #u4996 .text {
  13092. position:absolute;
  13093. align-self:center;
  13094. padding:2px 2px 2px 2px;
  13095. box-sizing:border-box;
  13096. width:100%;
  13097. }
  13098. #u4996_text {
  13099. border-width:0px;
  13100. word-wrap:break-word;
  13101. text-transform:none;
  13102. visibility:hidden;
  13103. }
  13104. #u4997_div {
  13105. border-width:0px;
  13106. position:absolute;
  13107. left:0px;
  13108. top:0px;
  13109. width:200px;
  13110. height:60px;
  13111. background:inherit;
  13112. background-color:rgba(224, 231, 247, 1);
  13113. border:none;
  13114. border-radius:0px;
  13115. -moz-box-shadow:none;
  13116. -webkit-box-shadow:none;
  13117. box-shadow:none;
  13118. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13119. font-weight:500;
  13120. font-style:normal;
  13121. font-size:18px;
  13122. }
  13123. #u4997 {
  13124. border-width:0px;
  13125. position:absolute;
  13126. left:120px;
  13127. top:50px;
  13128. width:200px;
  13129. height:60px;
  13130. display:flex;
  13131. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13132. font-weight:500;
  13133. font-style:normal;
  13134. font-size:18px;
  13135. }
  13136. #u4997 .text {
  13137. position:absolute;
  13138. align-self:center;
  13139. padding:0px 0px 0px 20px;
  13140. box-sizing:border-box;
  13141. width:100%;
  13142. }
  13143. #u4997_text {
  13144. border-width:0px;
  13145. word-wrap:break-word;
  13146. text-transform:none;
  13147. }
  13148. #u4998_div {
  13149. border-width:0px;
  13150. position:absolute;
  13151. left:0px;
  13152. top:0px;
  13153. width:65px;
  13154. height:22px;
  13155. background:inherit;
  13156. background-color:rgba(255, 255, 255, 0);
  13157. border:none;
  13158. border-radius:0px;
  13159. -moz-box-shadow:none;
  13160. -webkit-box-shadow:none;
  13161. box-shadow:none;
  13162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13163. font-weight:400;
  13164. font-style:normal;
  13165. font-size:16px;
  13166. }
  13167. #u4998 {
  13168. border-width:0px;
  13169. position:absolute;
  13170. left:147px;
  13171. top:166px;
  13172. width:65px;
  13173. height:22px;
  13174. display:flex;
  13175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13176. font-weight:400;
  13177. font-style:normal;
  13178. font-size:16px;
  13179. }
  13180. #u4998 .text {
  13181. position:absolute;
  13182. align-self:flex-start;
  13183. padding:0px 0px 0px 0px;
  13184. box-sizing:border-box;
  13185. width:100%;
  13186. }
  13187. #u4998_text {
  13188. border-width:0px;
  13189. white-space:nowrap;
  13190. text-transform:none;
  13191. }
  13192. #u4999_div {
  13193. border-width:0px;
  13194. position:absolute;
  13195. left:0px;
  13196. top:0px;
  13197. width:65px;
  13198. height:22px;
  13199. background:inherit;
  13200. background-color:rgba(255, 255, 255, 0);
  13201. border:none;
  13202. border-radius:0px;
  13203. -moz-box-shadow:none;
  13204. -webkit-box-shadow:none;
  13205. box-shadow:none;
  13206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13207. font-weight:400;
  13208. font-style:normal;
  13209. font-size:16px;
  13210. }
  13211. #u4999 {
  13212. border-width:0px;
  13213. position:absolute;
  13214. left:147px;
  13215. top:271px;
  13216. width:65px;
  13217. height:22px;
  13218. display:flex;
  13219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13220. font-weight:400;
  13221. font-style:normal;
  13222. font-size:16px;
  13223. }
  13224. #u4999 .text {
  13225. position:absolute;
  13226. align-self:flex-start;
  13227. padding:0px 0px 0px 0px;
  13228. box-sizing:border-box;
  13229. width:100%;
  13230. }
  13231. #u4999_text {
  13232. border-width:0px;
  13233. white-space:nowrap;
  13234. text-transform:none;
  13235. }
  13236. #u5000_div {
  13237. border-width:0px;
  13238. position:absolute;
  13239. left:0px;
  13240. top:0px;
  13241. width:49px;
  13242. height:17px;
  13243. background:inherit;
  13244. background-color:rgba(255, 255, 255, 0);
  13245. border:none;
  13246. border-radius:0px;
  13247. -moz-box-shadow:none;
  13248. -webkit-box-shadow:none;
  13249. box-shadow:none;
  13250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13251. font-weight:400;
  13252. font-style:normal;
  13253. font-size:12px;
  13254. color:#AAAAAA;
  13255. }
  13256. #u5000 {
  13257. border-width:0px;
  13258. position:absolute;
  13259. left:147px;
  13260. top:130px;
  13261. width:49px;
  13262. height:17px;
  13263. display:flex;
  13264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13265. font-weight:400;
  13266. font-style:normal;
  13267. font-size:12px;
  13268. color:#AAAAAA;
  13269. }
  13270. #u5000 .text {
  13271. position:absolute;
  13272. align-self:flex-start;
  13273. padding:0px 0px 0px 0px;
  13274. box-sizing:border-box;
  13275. width:100%;
  13276. }
  13277. #u5000_text {
  13278. border-width:0px;
  13279. white-space:nowrap;
  13280. text-transform:none;
  13281. }
  13282. #u5001_div {
  13283. border-width:0px;
  13284. position:absolute;
  13285. left:0px;
  13286. top:0px;
  13287. width:65px;
  13288. height:22px;
  13289. background:inherit;
  13290. background-color:rgba(255, 255, 255, 0);
  13291. border:none;
  13292. border-radius:0px;
  13293. -moz-box-shadow:none;
  13294. -webkit-box-shadow:none;
  13295. box-shadow:none;
  13296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13297. font-weight:400;
  13298. font-style:normal;
  13299. font-size:16px;
  13300. }
  13301. #u5001 {
  13302. border-width:0px;
  13303. position:absolute;
  13304. left:147px;
  13305. top:313px;
  13306. width:65px;
  13307. height:22px;
  13308. display:flex;
  13309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13310. font-weight:400;
  13311. font-style:normal;
  13312. font-size:16px;
  13313. }
  13314. #u5001 .text {
  13315. position:absolute;
  13316. align-self:flex-start;
  13317. padding:0px 0px 0px 0px;
  13318. box-sizing:border-box;
  13319. width:100%;
  13320. }
  13321. #u5001_text {
  13322. border-width:0px;
  13323. white-space:nowrap;
  13324. text-transform:none;
  13325. }
  13326. #u5002_img {
  13327. border-width:0px;
  13328. position:absolute;
  13329. left:0px;
  13330. top:0px;
  13331. width:201px;
  13332. height:2px;
  13333. }
  13334. #u5002 {
  13335. border-width:0px;
  13336. position:absolute;
  13337. left:120px;
  13338. top:208px;
  13339. width:200px;
  13340. height:1px;
  13341. display:flex;
  13342. }
  13343. #u5002 .text {
  13344. position:absolute;
  13345. align-self:center;
  13346. padding:2px 2px 2px 2px;
  13347. box-sizing:border-box;
  13348. width:100%;
  13349. }
  13350. #u5002_text {
  13351. border-width:0px;
  13352. word-wrap:break-word;
  13353. text-transform:none;
  13354. visibility:hidden;
  13355. }
  13356. #u5003_div {
  13357. border-width:0px;
  13358. position:absolute;
  13359. left:0px;
  13360. top:0px;
  13361. width:49px;
  13362. height:17px;
  13363. background:inherit;
  13364. background-color:rgba(255, 255, 255, 0);
  13365. border:none;
  13366. border-radius:0px;
  13367. -moz-box-shadow:none;
  13368. -webkit-box-shadow:none;
  13369. box-shadow:none;
  13370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13371. font-weight:400;
  13372. font-style:normal;
  13373. font-size:12px;
  13374. color:#AAAAAA;
  13375. }
  13376. #u5003 {
  13377. border-width:0px;
  13378. position:absolute;
  13379. left:147px;
  13380. top:234px;
  13381. width:49px;
  13382. height:17px;
  13383. display:flex;
  13384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13385. font-weight:400;
  13386. font-style:normal;
  13387. font-size:12px;
  13388. color:#AAAAAA;
  13389. }
  13390. #u5003 .text {
  13391. position:absolute;
  13392. align-self:flex-start;
  13393. padding:0px 0px 0px 0px;
  13394. box-sizing:border-box;
  13395. width:100%;
  13396. }
  13397. #u5003_text {
  13398. border-width:0px;
  13399. white-space:nowrap;
  13400. text-transform:none;
  13401. }
  13402. #u5004_div {
  13403. border-width:0px;
  13404. position:absolute;
  13405. left:0px;
  13406. top:0px;
  13407. width:65px;
  13408. height:22px;
  13409. background:inherit;
  13410. background-color:rgba(255, 255, 255, 0);
  13411. border:none;
  13412. border-radius:0px;
  13413. -moz-box-shadow:none;
  13414. -webkit-box-shadow:none;
  13415. box-shadow:none;
  13416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13417. font-weight:400;
  13418. font-style:normal;
  13419. font-size:16px;
  13420. }
  13421. #u5004 {
  13422. border-width:0px;
  13423. position:absolute;
  13424. left:147px;
  13425. top:355px;
  13426. width:65px;
  13427. height:22px;
  13428. display:flex;
  13429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13430. font-weight:400;
  13431. font-style:normal;
  13432. font-size:16px;
  13433. }
  13434. #u5004 .text {
  13435. position:absolute;
  13436. align-self:flex-start;
  13437. padding:0px 0px 0px 0px;
  13438. box-sizing:border-box;
  13439. width:100%;
  13440. }
  13441. #u5004_text {
  13442. border-width:0px;
  13443. white-space:nowrap;
  13444. text-transform:none;
  13445. }