styles.css 127 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u5222_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. #u5222 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u5222 .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. #u5222_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u5223_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. #u5223 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u5223 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u5223_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u5224 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u5225_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u5225 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u5225 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u5225_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u5226_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. #u5226 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u5226 .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. #u5226_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u5227_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. #u5227 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u5227 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u5227_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u5228_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. #u5228 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u5228 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u5228_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u5229 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u5230_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. #u5230 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u5230 .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. #u5230_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u5231_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u5231 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u5231 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u5231_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u5232 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u5233_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. #u5233 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u5233 .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. #u5233_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u5234_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u5234 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u5234 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u5234_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u5235 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u5236_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. #u5236 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u5236 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u5236_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u5237_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u5237 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u5237 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u5237_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u5238 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u5239_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. #u5239 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u5239 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u5239_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u5240_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u5240 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u5240 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u5240_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u5241 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u5242_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. #u5242 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u5242 .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. #u5242_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u5243_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u5243 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u5243 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u5243_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u5244 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u5245_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. #u5245 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u5245 .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. #u5245_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u5246_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u5246 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u5246 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u5246_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u5247 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u5248_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. #u5248 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  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. #u5248 .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. #u5248_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u5249_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u5249 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u5249 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u5249_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u5250 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u5251_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. #u5251 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  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. #u5251 .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. #u5251_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u5252_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u5252 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u5252 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u5252_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u5253 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u5254_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. #u5254 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  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. #u5254 .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. #u5254_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u5255_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u5255 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u5255 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u5255_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u5256_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u5256_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u5256_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u5256 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u5256 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u5256_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u5256.disabled {
  1100. }
  1101. .u5256_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u5257_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u5257 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u5257 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u5257_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u5258_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u5258 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u5258 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u5258_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u5259_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u5259 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u5259 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u5259_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u5260 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u5261_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  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. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u5261 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u5261 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u5261_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u5262_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u5262 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u5262 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u5262_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u5263 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u5264_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. #u5264 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  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. #u5264 .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. #u5264_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u5265_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u5265 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u5265 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u5265_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u5266 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u5267_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. #u5267 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  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. #u5267 .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. #u5267_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u5268_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u5268 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u5268 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u5268_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u5269 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u5270_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. #u5270 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  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. #u5270 .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. #u5270_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u5271_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u5271 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u5271 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u5271_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u5272 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u5273_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. #u5273 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  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. #u5273 .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. #u5273_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u5274_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u5274 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u5274 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u5274_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u5275_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:1260px;
  1636. height:1192px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 1);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1642. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1643. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1644. }
  1645. #u5275 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:330px;
  1649. top:50px;
  1650. width:1260px;
  1651. height:1192px;
  1652. display:flex;
  1653. }
  1654. #u5275 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u5275_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u5276 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:350px;
  1671. top:153px;
  1672. width:1220px;
  1673. height:287px;
  1674. }
  1675. #u5277_img {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:31px;
  1681. height:38px;
  1682. }
  1683. #u5277 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:31px;
  1689. height:38px;
  1690. display:flex;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:12px;
  1695. color:#FFFFFF;
  1696. }
  1697. #u5277 .text {
  1698. position:absolute;
  1699. align-self:center;
  1700. padding:2px 2px 2px 0px;
  1701. box-sizing:border-box;
  1702. width:100%;
  1703. }
  1704. #u5277_text {
  1705. border-width:0px;
  1706. word-wrap:break-word;
  1707. text-transform:none;
  1708. }
  1709. #u5278_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:82px;
  1715. height:38px;
  1716. }
  1717. #u5278 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:31px;
  1721. top:0px;
  1722. width:82px;
  1723. height:38px;
  1724. display:flex;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:12px;
  1729. color:#FFFFFF;
  1730. }
  1731. #u5278 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u5278_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. }
  1743. #u5279_img {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:96px;
  1749. height:38px;
  1750. }
  1751. #u5279 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:113px;
  1755. top:0px;
  1756. width:96px;
  1757. height:38px;
  1758. display:flex;
  1759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1760. font-weight:400;
  1761. font-style:normal;
  1762. font-size:12px;
  1763. color:#FFFFFF;
  1764. }
  1765. #u5279 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 0px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u5279_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. }
  1777. #u5280_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:96px;
  1783. height:38px;
  1784. }
  1785. #u5280 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:209px;
  1789. top:0px;
  1790. width:96px;
  1791. height:38px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:12px;
  1797. color:#FFFFFF;
  1798. }
  1799. #u5280 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u5280_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u5281_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:62px;
  1817. height:38px;
  1818. }
  1819. #u5281 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:305px;
  1823. top:0px;
  1824. width:62px;
  1825. height:38px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:12px;
  1831. color:#FFFFFF;
  1832. }
  1833. #u5281 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:2px 2px 2px 0px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u5281_text {
  1841. border-width:0px;
  1842. word-wrap:break-word;
  1843. text-transform:none;
  1844. }
  1845. #u5282_img {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:62px;
  1851. height:38px;
  1852. }
  1853. #u5282 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:367px;
  1857. top:0px;
  1858. width:62px;
  1859. height:38px;
  1860. display:flex;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u5282 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u5282_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. }
  1879. #u5283_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:62px;
  1885. height:38px;
  1886. }
  1887. #u5283 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:429px;
  1891. top:0px;
  1892. width:62px;
  1893. height:38px;
  1894. display:flex;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:12px;
  1899. color:#FFFFFF;
  1900. }
  1901. #u5283 .text {
  1902. position:absolute;
  1903. align-self:center;
  1904. padding:2px 2px 2px 0px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u5283_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. }
  1913. #u5284_img {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:0px;
  1917. top:0px;
  1918. width:102px;
  1919. height:38px;
  1920. }
  1921. #u5284 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:491px;
  1925. top:0px;
  1926. width:102px;
  1927. height:38px;
  1928. display:flex;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:12px;
  1933. color:#FFFFFF;
  1934. }
  1935. #u5284 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 0px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u5284_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u5285_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:83px;
  1953. height:38px;
  1954. }
  1955. #u5285 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:593px;
  1959. top:0px;
  1960. width:83px;
  1961. height:38px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. color:#FFFFFF;
  1968. }
  1969. #u5285 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u5285_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. }
  1981. #u5286_img {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:83px;
  1987. height:38px;
  1988. }
  1989. #u5286 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:676px;
  1993. top:0px;
  1994. width:83px;
  1995. height:38px;
  1996. display:flex;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:12px;
  2001. color:#FFFFFF;
  2002. }
  2003. #u5286 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 2px 2px 0px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u5286_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. }
  2015. #u5287_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:83px;
  2021. height:38px;
  2022. }
  2023. #u5287 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:759px;
  2027. top:0px;
  2028. width:83px;
  2029. height:38px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:12px;
  2035. color:#FFFFFF;
  2036. }
  2037. #u5287 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 0px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u5287_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u5288_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:83px;
  2055. height:38px;
  2056. }
  2057. #u5288 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:842px;
  2061. top:0px;
  2062. width:83px;
  2063. height:38px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:12px;
  2069. color:#FFFFFF;
  2070. }
  2071. #u5288 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u5288_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u5289_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:83px;
  2089. height:38px;
  2090. }
  2091. #u5289 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:925px;
  2095. top:0px;
  2096. width:83px;
  2097. height:38px;
  2098. display:flex;
  2099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2100. font-weight:400;
  2101. font-style:normal;
  2102. font-size:12px;
  2103. color:#FFFFFF;
  2104. }
  2105. #u5289 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:2px 2px 2px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u5289_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. }
  2117. #u5290_img {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:83px;
  2123. height:38px;
  2124. }
  2125. #u5290 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:1008px;
  2129. top:0px;
  2130. width:83px;
  2131. height:38px;
  2132. display:flex;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:12px;
  2137. color:#FFFFFF;
  2138. }
  2139. #u5290 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u5290_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. }
  2151. #u5291_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:129px;
  2157. height:38px;
  2158. }
  2159. #u5291 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:1091px;
  2163. top:0px;
  2164. width:129px;
  2165. height:38px;
  2166. display:flex;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. color:#FFFFFF;
  2172. }
  2173. #u5291 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u5291_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u5292_img {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:31px;
  2191. height:39px;
  2192. }
  2193. #u5292 {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:38px;
  2198. width:31px;
  2199. height:39px;
  2200. display:flex;
  2201. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:12px;
  2205. }
  2206. #u5292 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 0px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u5292_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. }
  2218. #u5293_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:82px;
  2224. height:39px;
  2225. }
  2226. #u5293 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:31px;
  2230. top:38px;
  2231. width:82px;
  2232. height:39px;
  2233. display:flex;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. color:#333333;
  2239. }
  2240. #u5293 .text {
  2241. position:absolute;
  2242. align-self:center;
  2243. padding:2px 2px 2px 0px;
  2244. box-sizing:border-box;
  2245. width:100%;
  2246. }
  2247. #u5293_text {
  2248. border-width:0px;
  2249. word-wrap:break-word;
  2250. text-transform:none;
  2251. visibility:hidden;
  2252. }
  2253. #u5294_img {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:0px;
  2257. top:0px;
  2258. width:96px;
  2259. height:39px;
  2260. }
  2261. #u5294 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:113px;
  2265. top:38px;
  2266. width:96px;
  2267. height:39px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:12px;
  2273. color:#333333;
  2274. }
  2275. #u5294 .text {
  2276. position:absolute;
  2277. align-self:center;
  2278. padding:2px 2px 2px 0px;
  2279. box-sizing:border-box;
  2280. width:100%;
  2281. }
  2282. #u5294_text {
  2283. border-width:0px;
  2284. word-wrap:break-word;
  2285. text-transform:none;
  2286. visibility:hidden;
  2287. }
  2288. #u5295_img {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:96px;
  2294. height:39px;
  2295. }
  2296. #u5295 {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:209px;
  2300. top:38px;
  2301. width:96px;
  2302. height:39px;
  2303. display:flex;
  2304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2305. font-weight:400;
  2306. font-style:normal;
  2307. font-size:12px;
  2308. color:#333333;
  2309. }
  2310. #u5295 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:2px 2px 2px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u5295_text {
  2318. border-width:0px;
  2319. word-wrap:break-word;
  2320. text-transform:none;
  2321. visibility:hidden;
  2322. }
  2323. #u5296_img {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:62px;
  2329. height:39px;
  2330. }
  2331. #u5296 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:305px;
  2335. top:38px;
  2336. width:62px;
  2337. height:39px;
  2338. display:flex;
  2339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2340. font-weight:400;
  2341. font-style:normal;
  2342. font-size:12px;
  2343. color:#333333;
  2344. }
  2345. #u5296 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 0px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u5296_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u5297_img {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:62px;
  2364. height:39px;
  2365. }
  2366. #u5297 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:367px;
  2370. top:38px;
  2371. width:62px;
  2372. height:39px;
  2373. display:flex;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:12px;
  2378. color:#333333;
  2379. }
  2380. #u5297 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:2px 2px 2px 0px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u5297_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. visibility:hidden;
  2392. }
  2393. #u5298_img {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:62px;
  2399. height:39px;
  2400. }
  2401. #u5298 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:429px;
  2405. top:38px;
  2406. width:62px;
  2407. height:39px;
  2408. display:flex;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:12px;
  2413. color:#333333;
  2414. }
  2415. #u5298 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 0px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u5298_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u5299_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:102px;
  2434. height:39px;
  2435. }
  2436. #u5299 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:491px;
  2440. top:38px;
  2441. width:102px;
  2442. height:39px;
  2443. display:flex;
  2444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:12px;
  2448. color:#333333;
  2449. }
  2450. #u5299 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 2px 2px 0px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u5299_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. visibility:hidden;
  2462. }
  2463. #u5300_img {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:83px;
  2469. height:39px;
  2470. }
  2471. #u5300 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:593px;
  2475. top:38px;
  2476. width:83px;
  2477. height:39px;
  2478. display:flex;
  2479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2480. font-weight:400;
  2481. font-style:normal;
  2482. font-size:12px;
  2483. color:#333333;
  2484. }
  2485. #u5300 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 0px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u5300_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. }
  2497. #u5301_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:83px;
  2503. height:39px;
  2504. }
  2505. #u5301 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:676px;
  2509. top:38px;
  2510. width:83px;
  2511. height:39px;
  2512. display:flex;
  2513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:12px;
  2517. color:#333333;
  2518. }
  2519. #u5301 .text {
  2520. position:absolute;
  2521. align-self:center;
  2522. padding:2px 2px 2px 0px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u5301_text {
  2527. border-width:0px;
  2528. word-wrap:break-word;
  2529. text-transform:none;
  2530. }
  2531. #u5302_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:83px;
  2537. height:39px;
  2538. }
  2539. #u5302 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:759px;
  2543. top:38px;
  2544. width:83px;
  2545. height:39px;
  2546. display:flex;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:12px;
  2551. color:#333333;
  2552. }
  2553. #u5302 .text {
  2554. position:absolute;
  2555. align-self:center;
  2556. padding:2px 2px 2px 0px;
  2557. box-sizing:border-box;
  2558. width:100%;
  2559. }
  2560. #u5302_text {
  2561. border-width:0px;
  2562. word-wrap:break-word;
  2563. text-transform:none;
  2564. visibility:hidden;
  2565. }
  2566. #u5303_img {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:83px;
  2572. height:39px;
  2573. }
  2574. #u5303 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:842px;
  2578. top:38px;
  2579. width:83px;
  2580. height:39px;
  2581. display:flex;
  2582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2583. font-weight:400;
  2584. font-style:normal;
  2585. font-size:12px;
  2586. color:#333333;
  2587. }
  2588. #u5303 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 2px 2px 0px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u5303_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. visibility:hidden;
  2600. }
  2601. #u5304_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:83px;
  2607. height:39px;
  2608. }
  2609. #u5304 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:925px;
  2613. top:38px;
  2614. width:83px;
  2615. height:39px;
  2616. display:flex;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:12px;
  2621. color:#333333;
  2622. }
  2623. #u5304 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:2px 2px 2px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u5304_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. visibility:hidden;
  2635. }
  2636. #u5305_img {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:0px;
  2640. top:0px;
  2641. width:83px;
  2642. height:39px;
  2643. }
  2644. #u5305 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:1008px;
  2648. top:38px;
  2649. width:83px;
  2650. height:39px;
  2651. display:flex;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:12px;
  2656. color:#333333;
  2657. }
  2658. #u5305 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 0px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u5305_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. visibility:hidden;
  2670. }
  2671. #u5306_img {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:129px;
  2677. height:39px;
  2678. }
  2679. #u5306 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:1091px;
  2683. top:38px;
  2684. width:129px;
  2685. height:39px;
  2686. display:flex;
  2687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2688. font-weight:400;
  2689. font-style:normal;
  2690. font-size:12px;
  2691. color:#1890FF;
  2692. }
  2693. #u5306 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 0px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u5306_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. }
  2705. #u5307_img {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:31px;
  2711. height:35px;
  2712. }
  2713. #u5307 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:77px;
  2718. width:31px;
  2719. height:35px;
  2720. display:flex;
  2721. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:12px;
  2725. color:#606266;
  2726. }
  2727. #u5307 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 0px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u5307_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. }
  2739. #u5308_img {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:82px;
  2745. height:35px;
  2746. }
  2747. #u5308 {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:31px;
  2751. top:77px;
  2752. width:82px;
  2753. height:35px;
  2754. display:flex;
  2755. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2756. font-weight:400;
  2757. font-style:normal;
  2758. font-size:12px;
  2759. color:#606266;
  2760. }
  2761. #u5308 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 0px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u5308_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u5309_img {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:96px;
  2780. height:35px;
  2781. }
  2782. #u5309 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:113px;
  2786. top:77px;
  2787. width:96px;
  2788. height:35px;
  2789. display:flex;
  2790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:12px;
  2794. color:#606266;
  2795. }
  2796. #u5309 .text {
  2797. position:absolute;
  2798. align-self:center;
  2799. padding:2px 2px 2px 0px;
  2800. box-sizing:border-box;
  2801. width:100%;
  2802. }
  2803. #u5309_text {
  2804. border-width:0px;
  2805. word-wrap:break-word;
  2806. text-transform:none;
  2807. visibility:hidden;
  2808. }
  2809. #u5310_img {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:96px;
  2815. height:35px;
  2816. }
  2817. #u5310 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:209px;
  2821. top:77px;
  2822. width:96px;
  2823. height:35px;
  2824. display:flex;
  2825. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:12px;
  2829. color:#606266;
  2830. }
  2831. #u5310 .text {
  2832. position:absolute;
  2833. align-self:center;
  2834. padding:2px 2px 2px 0px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u5310_text {
  2839. border-width:0px;
  2840. word-wrap:break-word;
  2841. text-transform:none;
  2842. visibility:hidden;
  2843. }
  2844. #u5311_img {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:62px;
  2850. height:35px;
  2851. }
  2852. #u5311 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:305px;
  2856. top:77px;
  2857. width:62px;
  2858. height:35px;
  2859. display:flex;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:12px;
  2864. color:#606266;
  2865. }
  2866. #u5311 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 0px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u5311_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u5312_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:62px;
  2885. height:35px;
  2886. }
  2887. #u5312 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:367px;
  2891. top:77px;
  2892. width:62px;
  2893. height:35px;
  2894. display:flex;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:12px;
  2899. color:#606266;
  2900. }
  2901. #u5312 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 0px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u5312_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u5313_img {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:62px;
  2920. height:35px;
  2921. }
  2922. #u5313 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:429px;
  2926. top:77px;
  2927. width:62px;
  2928. height:35px;
  2929. display:flex;
  2930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2931. font-weight:400;
  2932. font-style:normal;
  2933. font-size:12px;
  2934. color:#606266;
  2935. }
  2936. #u5313 .text {
  2937. position:absolute;
  2938. align-self:center;
  2939. padding:2px 2px 2px 0px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u5313_text {
  2944. border-width:0px;
  2945. word-wrap:break-word;
  2946. text-transform:none;
  2947. visibility:hidden;
  2948. }
  2949. #u5314_img {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:102px;
  2955. height:35px;
  2956. }
  2957. #u5314 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:491px;
  2961. top:77px;
  2962. width:102px;
  2963. height:35px;
  2964. display:flex;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:12px;
  2969. color:#606266;
  2970. }
  2971. #u5314 .text {
  2972. position:absolute;
  2973. align-self:center;
  2974. padding:2px 2px 2px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u5314_text {
  2979. border-width:0px;
  2980. word-wrap:break-word;
  2981. text-transform:none;
  2982. visibility:hidden;
  2983. }
  2984. #u5315_img {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:83px;
  2990. height:35px;
  2991. }
  2992. #u5315 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:593px;
  2996. top:77px;
  2997. width:83px;
  2998. height:35px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:12px;
  3004. color:#606266;
  3005. }
  3006. #u5315 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 0px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u5315_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. }
  3018. #u5316_img {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:83px;
  3024. height:35px;
  3025. }
  3026. #u5316 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:676px;
  3030. top:77px;
  3031. width:83px;
  3032. height:35px;
  3033. display:flex;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:12px;
  3038. color:#606266;
  3039. }
  3040. #u5316 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u5316_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. }
  3052. #u5317_img {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:83px;
  3058. height:35px;
  3059. }
  3060. #u5317 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:759px;
  3064. top:77px;
  3065. width:83px;
  3066. height:35px;
  3067. display:flex;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:12px;
  3072. color:#606266;
  3073. }
  3074. #u5317 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u5317_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u5318_img {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:83px;
  3093. height:35px;
  3094. }
  3095. #u5318 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:842px;
  3099. top:77px;
  3100. width:83px;
  3101. height:35px;
  3102. display:flex;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:12px;
  3107. color:#606266;
  3108. }
  3109. #u5318 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 0px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u5318_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u5319_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:83px;
  3128. height:35px;
  3129. }
  3130. #u5319 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:925px;
  3134. top:77px;
  3135. width:83px;
  3136. height:35px;
  3137. display:flex;
  3138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3139. font-weight:400;
  3140. font-style:normal;
  3141. font-size:12px;
  3142. color:#606266;
  3143. }
  3144. #u5319 .text {
  3145. position:absolute;
  3146. align-self:center;
  3147. padding:2px 2px 2px 0px;
  3148. box-sizing:border-box;
  3149. width:100%;
  3150. }
  3151. #u5319_text {
  3152. border-width:0px;
  3153. word-wrap:break-word;
  3154. text-transform:none;
  3155. visibility:hidden;
  3156. }
  3157. #u5320_img {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:83px;
  3163. height:35px;
  3164. }
  3165. #u5320 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1008px;
  3169. top:77px;
  3170. width:83px;
  3171. height:35px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:12px;
  3177. color:#606266;
  3178. }
  3179. #u5320 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:2px 2px 2px 0px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u5320_text {
  3187. border-width:0px;
  3188. word-wrap:break-word;
  3189. text-transform:none;
  3190. visibility:hidden;
  3191. }
  3192. #u5321_img {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:129px;
  3198. height:35px;
  3199. }
  3200. #u5321 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:1091px;
  3204. top:77px;
  3205. width:129px;
  3206. height:35px;
  3207. display:flex;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:12px;
  3212. color:#1890FF;
  3213. }
  3214. #u5321 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 0px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u5321_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. }
  3226. #u5322_img {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:31px;
  3232. height:35px;
  3233. }
  3234. #u5322 {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:112px;
  3239. width:31px;
  3240. height:35px;
  3241. display:flex;
  3242. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:12px;
  3246. color:#606266;
  3247. }
  3248. #u5322 .text {
  3249. position:absolute;
  3250. align-self:center;
  3251. padding:2px 2px 2px 0px;
  3252. box-sizing:border-box;
  3253. width:100%;
  3254. }
  3255. #u5322_text {
  3256. border-width:0px;
  3257. word-wrap:break-word;
  3258. text-transform:none;
  3259. visibility:hidden;
  3260. }
  3261. #u5323_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:82px;
  3267. height:35px;
  3268. }
  3269. #u5323 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:31px;
  3273. top:112px;
  3274. width:82px;
  3275. height:35px;
  3276. display:flex;
  3277. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:12px;
  3281. color:#606266;
  3282. }
  3283. #u5323 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:2px 2px 2px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u5323_text {
  3291. border-width:0px;
  3292. word-wrap:break-word;
  3293. text-transform:none;
  3294. visibility:hidden;
  3295. }
  3296. #u5324_img {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:96px;
  3302. height:35px;
  3303. }
  3304. #u5324 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:113px;
  3308. top:112px;
  3309. width:96px;
  3310. height:35px;
  3311. display:flex;
  3312. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:12px;
  3316. color:#606266;
  3317. }
  3318. #u5324 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 0px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u5324_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. visibility:hidden;
  3330. }
  3331. #u5325_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:96px;
  3337. height:35px;
  3338. }
  3339. #u5325 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:209px;
  3343. top:112px;
  3344. width:96px;
  3345. height:35px;
  3346. display:flex;
  3347. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. color:#606266;
  3352. }
  3353. #u5325 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u5325_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. visibility:hidden;
  3365. }
  3366. #u5326_img {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:62px;
  3372. height:35px;
  3373. }
  3374. #u5326 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:305px;
  3378. top:112px;
  3379. width:62px;
  3380. height:35px;
  3381. display:flex;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. color:#606266;
  3387. }
  3388. #u5326 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 0px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u5326_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u5327_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:62px;
  3407. height:35px;
  3408. }
  3409. #u5327 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:367px;
  3413. top:112px;
  3414. width:62px;
  3415. height:35px;
  3416. display:flex;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. color:#606266;
  3422. }
  3423. #u5327 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 2px 2px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u5327_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u5328_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:62px;
  3442. height:35px;
  3443. }
  3444. #u5328 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:429px;
  3448. top:112px;
  3449. width:62px;
  3450. height:35px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:12px;
  3456. color:#606266;
  3457. }
  3458. #u5328 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 0px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u5328_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u5329_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:102px;
  3477. height:35px;
  3478. }
  3479. #u5329 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:491px;
  3483. top:112px;
  3484. width:102px;
  3485. height:35px;
  3486. display:flex;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:12px;
  3491. color:#606266;
  3492. }
  3493. #u5329 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u5329_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. visibility:hidden;
  3505. }
  3506. #u5330_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:83px;
  3512. height:35px;
  3513. }
  3514. #u5330 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:593px;
  3518. top:112px;
  3519. width:83px;
  3520. height:35px;
  3521. display:flex;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:12px;
  3526. color:#606266;
  3527. }
  3528. #u5330 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 2px 2px 0px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u5330_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. }
  3540. #u5331_img {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:83px;
  3546. height:35px;
  3547. }
  3548. #u5331 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:676px;
  3552. top:112px;
  3553. width:83px;
  3554. height:35px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:12px;
  3560. color:#606266;
  3561. }
  3562. #u5331 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 0px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u5331_text {
  3570. border-width:0px;
  3571. word-wrap:break-word;
  3572. text-transform:none;
  3573. visibility:hidden;
  3574. }
  3575. #u5332_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:83px;
  3581. height:35px;
  3582. }
  3583. #u5332 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:759px;
  3587. top:112px;
  3588. width:83px;
  3589. height:35px;
  3590. display:flex;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:12px;
  3595. color:#606266;
  3596. }
  3597. #u5332 .text {
  3598. position:absolute;
  3599. align-self:center;
  3600. padding:2px 2px 2px 0px;
  3601. box-sizing:border-box;
  3602. width:100%;
  3603. }
  3604. #u5332_text {
  3605. border-width:0px;
  3606. word-wrap:break-word;
  3607. text-transform:none;
  3608. visibility:hidden;
  3609. }
  3610. #u5333_img {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:83px;
  3616. height:35px;
  3617. }
  3618. #u5333 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:842px;
  3622. top:112px;
  3623. width:83px;
  3624. height:35px;
  3625. display:flex;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:12px;
  3630. color:#606266;
  3631. }
  3632. #u5333 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 0px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u5333_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. visibility:hidden;
  3644. }
  3645. #u5334_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:83px;
  3651. height:35px;
  3652. }
  3653. #u5334 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:925px;
  3657. top:112px;
  3658. width:83px;
  3659. height:35px;
  3660. display:flex;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:12px;
  3665. color:#606266;
  3666. }
  3667. #u5334 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 0px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u5334_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u5335_img {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:83px;
  3686. height:35px;
  3687. }
  3688. #u5335 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:1008px;
  3692. top:112px;
  3693. width:83px;
  3694. height:35px;
  3695. display:flex;
  3696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3697. font-weight:400;
  3698. font-style:normal;
  3699. font-size:12px;
  3700. color:#606266;
  3701. }
  3702. #u5335 .text {
  3703. position:absolute;
  3704. align-self:center;
  3705. padding:2px 2px 2px 0px;
  3706. box-sizing:border-box;
  3707. width:100%;
  3708. }
  3709. #u5335_text {
  3710. border-width:0px;
  3711. word-wrap:break-word;
  3712. text-transform:none;
  3713. visibility:hidden;
  3714. }
  3715. #u5336_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:129px;
  3721. height:35px;
  3722. }
  3723. #u5336 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:1091px;
  3727. top:112px;
  3728. width:129px;
  3729. height:35px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:12px;
  3735. color:#1890FF;
  3736. }
  3737. #u5336 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u5336_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u5337_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:31px;
  3756. height:36px;
  3757. }
  3758. #u5337 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:147px;
  3763. width:31px;
  3764. height:36px;
  3765. display:flex;
  3766. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:12px;
  3770. color:#606266;
  3771. }
  3772. #u5337 .text {
  3773. position:absolute;
  3774. align-self:center;
  3775. padding:2px 2px 2px 0px;
  3776. box-sizing:border-box;
  3777. width:100%;
  3778. }
  3779. #u5337_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. visibility:hidden;
  3784. }
  3785. #u5338_img {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:82px;
  3791. height:36px;
  3792. }
  3793. #u5338 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:31px;
  3797. top:147px;
  3798. width:82px;
  3799. height:36px;
  3800. display:flex;
  3801. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3802. font-weight:400;
  3803. font-style:normal;
  3804. font-size:12px;
  3805. color:#606266;
  3806. }
  3807. #u5338 .text {
  3808. position:absolute;
  3809. align-self:center;
  3810. padding:2px 2px 2px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u5338_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. visibility:hidden;
  3819. }
  3820. #u5339_img {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:96px;
  3826. height:36px;
  3827. }
  3828. #u5339 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:113px;
  3832. top:147px;
  3833. width:96px;
  3834. height:36px;
  3835. display:flex;
  3836. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3837. font-weight:400;
  3838. font-style:normal;
  3839. font-size:12px;
  3840. color:#606266;
  3841. }
  3842. #u5339 .text {
  3843. position:absolute;
  3844. align-self:center;
  3845. padding:2px 2px 2px 0px;
  3846. box-sizing:border-box;
  3847. width:100%;
  3848. }
  3849. #u5339_text {
  3850. border-width:0px;
  3851. word-wrap:break-word;
  3852. text-transform:none;
  3853. visibility:hidden;
  3854. }
  3855. #u5340_img {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:0px;
  3860. width:96px;
  3861. height:36px;
  3862. }
  3863. #u5340 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:209px;
  3867. top:147px;
  3868. width:96px;
  3869. height:36px;
  3870. display:flex;
  3871. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. font-size:12px;
  3875. color:#606266;
  3876. }
  3877. #u5340 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 0px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u5340_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u5341_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:62px;
  3896. height:36px;
  3897. }
  3898. #u5341 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:305px;
  3902. top:147px;
  3903. width:62px;
  3904. height:36px;
  3905. display:flex;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:12px;
  3910. color:#606266;
  3911. }
  3912. #u5341 .text {
  3913. position:absolute;
  3914. align-self:center;
  3915. padding:2px 2px 2px 0px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u5341_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. visibility:hidden;
  3924. }
  3925. #u5342_img {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:62px;
  3931. height:36px;
  3932. }
  3933. #u5342 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:367px;
  3937. top:147px;
  3938. width:62px;
  3939. height:36px;
  3940. display:flex;
  3941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3942. font-weight:400;
  3943. font-style:normal;
  3944. font-size:12px;
  3945. color:#606266;
  3946. }
  3947. #u5342 .text {
  3948. position:absolute;
  3949. align-self:center;
  3950. padding:2px 2px 2px 0px;
  3951. box-sizing:border-box;
  3952. width:100%;
  3953. }
  3954. #u5342_text {
  3955. border-width:0px;
  3956. word-wrap:break-word;
  3957. text-transform:none;
  3958. visibility:hidden;
  3959. }
  3960. #u5343_img {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:62px;
  3966. height:36px;
  3967. }
  3968. #u5343 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:429px;
  3972. top:147px;
  3973. width:62px;
  3974. height:36px;
  3975. display:flex;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:12px;
  3980. color:#606266;
  3981. }
  3982. #u5343 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 0px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u5343_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. visibility:hidden;
  3994. }
  3995. #u5344_img {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:102px;
  4001. height:36px;
  4002. }
  4003. #u5344 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:491px;
  4007. top:147px;
  4008. width:102px;
  4009. height:36px;
  4010. display:flex;
  4011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:12px;
  4015. color:#606266;
  4016. }
  4017. #u5344 .text {
  4018. position:absolute;
  4019. align-self:center;
  4020. padding:2px 2px 2px 0px;
  4021. box-sizing:border-box;
  4022. width:100%;
  4023. }
  4024. #u5344_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. visibility:hidden;
  4029. }
  4030. #u5345_img {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:83px;
  4036. height:36px;
  4037. }
  4038. #u5345 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:593px;
  4042. top:147px;
  4043. width:83px;
  4044. height:36px;
  4045. display:flex;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:12px;
  4050. color:#606266;
  4051. }
  4052. #u5345 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:2px 2px 2px 0px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u5345_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. }
  4064. #u5346_img {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:83px;
  4070. height:36px;
  4071. }
  4072. #u5346 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:676px;
  4076. top:147px;
  4077. width:83px;
  4078. height:36px;
  4079. display:flex;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:12px;
  4084. color:#606266;
  4085. }
  4086. #u5346 .text {
  4087. position:absolute;
  4088. align-self:center;
  4089. padding:2px 2px 2px 0px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u5346_text {
  4094. border-width:0px;
  4095. word-wrap:break-word;
  4096. text-transform:none;
  4097. visibility:hidden;
  4098. }
  4099. #u5347_img {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:83px;
  4105. height:36px;
  4106. }
  4107. #u5347 {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:759px;
  4111. top:147px;
  4112. width:83px;
  4113. height:36px;
  4114. display:flex;
  4115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4116. font-weight:400;
  4117. font-style:normal;
  4118. font-size:12px;
  4119. color:#606266;
  4120. }
  4121. #u5347 .text {
  4122. position:absolute;
  4123. align-self:center;
  4124. padding:2px 2px 2px 0px;
  4125. box-sizing:border-box;
  4126. width:100%;
  4127. }
  4128. #u5347_text {
  4129. border-width:0px;
  4130. word-wrap:break-word;
  4131. text-transform:none;
  4132. visibility:hidden;
  4133. }
  4134. #u5348_img {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:83px;
  4140. height:36px;
  4141. }
  4142. #u5348 {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:842px;
  4146. top:147px;
  4147. width:83px;
  4148. height:36px;
  4149. display:flex;
  4150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. font-size:12px;
  4154. color:#606266;
  4155. }
  4156. #u5348 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 0px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u5348_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. visibility:hidden;
  4168. }
  4169. #u5349_img {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:83px;
  4175. height:36px;
  4176. }
  4177. #u5349 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:925px;
  4181. top:147px;
  4182. width:83px;
  4183. height:36px;
  4184. display:flex;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:12px;
  4189. color:#606266;
  4190. }
  4191. #u5349 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 0px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u5349_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. visibility:hidden;
  4203. }
  4204. #u5350_img {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:83px;
  4210. height:36px;
  4211. }
  4212. #u5350 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:1008px;
  4216. top:147px;
  4217. width:83px;
  4218. height:36px;
  4219. display:flex;
  4220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4221. font-weight:400;
  4222. font-style:normal;
  4223. font-size:12px;
  4224. color:#606266;
  4225. }
  4226. #u5350 .text {
  4227. position:absolute;
  4228. align-self:center;
  4229. padding:2px 2px 2px 0px;
  4230. box-sizing:border-box;
  4231. width:100%;
  4232. }
  4233. #u5350_text {
  4234. border-width:0px;
  4235. word-wrap:break-word;
  4236. text-transform:none;
  4237. visibility:hidden;
  4238. }
  4239. #u5351_img {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:129px;
  4245. height:36px;
  4246. }
  4247. #u5351 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:1091px;
  4251. top:147px;
  4252. width:129px;
  4253. height:36px;
  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:#02A7F0;
  4260. }
  4261. #u5351 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 0px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u5351_text {
  4269. border-width:0px;
  4270. word-wrap:break-word;
  4271. text-transform:none;
  4272. visibility:hidden;
  4273. }
  4274. #u5352_img {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:31px;
  4280. height:35px;
  4281. }
  4282. #u5352 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:183px;
  4287. width:31px;
  4288. height:35px;
  4289. display:flex;
  4290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. color:#606266;
  4295. }
  4296. #u5352 .text {
  4297. position:absolute;
  4298. align-self:center;
  4299. padding:2px 2px 2px 0px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u5352_text {
  4304. border-width:0px;
  4305. word-wrap:break-word;
  4306. text-transform:none;
  4307. visibility:hidden;
  4308. }
  4309. #u5353_img {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:82px;
  4315. height:35px;
  4316. }
  4317. #u5353 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:31px;
  4321. top:183px;
  4322. width:82px;
  4323. height:35px;
  4324. display:flex;
  4325. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4326. font-weight:400;
  4327. font-style:normal;
  4328. font-size:12px;
  4329. color:#606266;
  4330. }
  4331. #u5353 .text {
  4332. position:absolute;
  4333. align-self:center;
  4334. padding:2px 2px 2px 0px;
  4335. box-sizing:border-box;
  4336. width:100%;
  4337. }
  4338. #u5353_text {
  4339. border-width:0px;
  4340. word-wrap:break-word;
  4341. text-transform:none;
  4342. visibility:hidden;
  4343. }
  4344. #u5354_img {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:96px;
  4350. height:35px;
  4351. }
  4352. #u5354 {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:113px;
  4356. top:183px;
  4357. width:96px;
  4358. height:35px;
  4359. display:flex;
  4360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:12px;
  4364. color:#606266;
  4365. }
  4366. #u5354 .text {
  4367. position:absolute;
  4368. align-self:center;
  4369. padding:2px 2px 2px 0px;
  4370. box-sizing:border-box;
  4371. width:100%;
  4372. }
  4373. #u5354_text {
  4374. border-width:0px;
  4375. word-wrap:break-word;
  4376. text-transform:none;
  4377. visibility:hidden;
  4378. }
  4379. #u5355_img {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:96px;
  4385. height:35px;
  4386. }
  4387. #u5355 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:209px;
  4391. top:183px;
  4392. width:96px;
  4393. height:35px;
  4394. display:flex;
  4395. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:12px;
  4399. color:#606266;
  4400. }
  4401. #u5355 .text {
  4402. position:absolute;
  4403. align-self:center;
  4404. padding:2px 2px 2px 0px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u5355_text {
  4409. border-width:0px;
  4410. word-wrap:break-word;
  4411. text-transform:none;
  4412. visibility:hidden;
  4413. }
  4414. #u5356_img {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:62px;
  4420. height:35px;
  4421. }
  4422. #u5356 {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:305px;
  4426. top:183px;
  4427. width:62px;
  4428. height:35px;
  4429. display:flex;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:12px;
  4434. color:#606266;
  4435. }
  4436. #u5356 .text {
  4437. position:absolute;
  4438. align-self:center;
  4439. padding:2px 2px 2px 0px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u5356_text {
  4444. border-width:0px;
  4445. word-wrap:break-word;
  4446. text-transform:none;
  4447. visibility:hidden;
  4448. }
  4449. #u5357_img {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:62px;
  4455. height:35px;
  4456. }
  4457. #u5357 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:367px;
  4461. top:183px;
  4462. width:62px;
  4463. height:35px;
  4464. display:flex;
  4465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4466. font-weight:400;
  4467. font-style:normal;
  4468. font-size:12px;
  4469. color:#606266;
  4470. }
  4471. #u5357 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 0px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u5357_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u5358_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:62px;
  4490. height:35px;
  4491. }
  4492. #u5358 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:429px;
  4496. top:183px;
  4497. width:62px;
  4498. height:35px;
  4499. display:flex;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:12px;
  4504. color:#606266;
  4505. }
  4506. #u5358 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:2px 2px 2px 0px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u5358_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }
  4519. #u5359_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:102px;
  4525. height:35px;
  4526. }
  4527. #u5359 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:491px;
  4531. top:183px;
  4532. width:102px;
  4533. height:35px;
  4534. display:flex;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. color:#606266;
  4540. }
  4541. #u5359 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:2px 2px 2px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u5359_text {
  4549. border-width:0px;
  4550. word-wrap:break-word;
  4551. text-transform:none;
  4552. visibility:hidden;
  4553. }
  4554. #u5360_img {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:83px;
  4560. height:35px;
  4561. }
  4562. #u5360 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:593px;
  4566. top:183px;
  4567. width:83px;
  4568. height:35px;
  4569. display:flex;
  4570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:12px;
  4574. color:#606266;
  4575. }
  4576. #u5360 .text {
  4577. position:absolute;
  4578. align-self:center;
  4579. padding:2px 2px 2px 0px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u5360_text {
  4584. border-width:0px;
  4585. word-wrap:break-word;
  4586. text-transform:none;
  4587. visibility:hidden;
  4588. }
  4589. #u5361_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:83px;
  4595. height:35px;
  4596. }
  4597. #u5361 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:676px;
  4601. top:183px;
  4602. width:83px;
  4603. height:35px;
  4604. display:flex;
  4605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:12px;
  4609. color:#606266;
  4610. }
  4611. #u5361 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 0px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u5361_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u5362_img {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:83px;
  4630. height:35px;
  4631. }
  4632. #u5362 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:759px;
  4636. top:183px;
  4637. width:83px;
  4638. height:35px;
  4639. display:flex;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:12px;
  4644. color:#606266;
  4645. }
  4646. #u5362 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:2px 2px 2px 0px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u5362_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. visibility:hidden;
  4658. }
  4659. #u5363_img {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:83px;
  4665. height:35px;
  4666. }
  4667. #u5363 {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:842px;
  4671. top:183px;
  4672. width:83px;
  4673. height:35px;
  4674. display:flex;
  4675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4676. font-weight:400;
  4677. font-style:normal;
  4678. font-size:12px;
  4679. color:#606266;
  4680. }
  4681. #u5363 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 2px 2px 0px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u5363_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u5364_img {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:83px;
  4700. height:35px;
  4701. }
  4702. #u5364 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:925px;
  4706. top:183px;
  4707. width:83px;
  4708. height:35px;
  4709. display:flex;
  4710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:12px;
  4714. color:#606266;
  4715. }
  4716. #u5364 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:2px 2px 2px 0px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u5364_text {
  4724. border-width:0px;
  4725. word-wrap:break-word;
  4726. text-transform:none;
  4727. visibility:hidden;
  4728. }
  4729. #u5365_img {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:83px;
  4735. height:35px;
  4736. }
  4737. #u5365 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:1008px;
  4741. top:183px;
  4742. width:83px;
  4743. height:35px;
  4744. display:flex;
  4745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. font-size:12px;
  4749. color:#606266;
  4750. }
  4751. #u5365 .text {
  4752. position:absolute;
  4753. align-self:center;
  4754. padding:2px 2px 2px 0px;
  4755. box-sizing:border-box;
  4756. width:100%;
  4757. }
  4758. #u5365_text {
  4759. border-width:0px;
  4760. word-wrap:break-word;
  4761. text-transform:none;
  4762. visibility:hidden;
  4763. }
  4764. #u5366_img {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:129px;
  4770. height:35px;
  4771. }
  4772. #u5366 {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:1091px;
  4776. top:183px;
  4777. width:129px;
  4778. height:35px;
  4779. display:flex;
  4780. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4781. font-weight:400;
  4782. font-style:normal;
  4783. font-size:12px;
  4784. color:#606266;
  4785. }
  4786. #u5366 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:2px 2px 2px 0px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u5366_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. visibility:hidden;
  4798. }
  4799. #u5367_img {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:0px;
  4803. top:0px;
  4804. width:31px;
  4805. height:34px;
  4806. }
  4807. #u5367 {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:218px;
  4812. width:31px;
  4813. height:34px;
  4814. display:flex;
  4815. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4816. font-weight:400;
  4817. font-style:normal;
  4818. font-size:12px;
  4819. color:#606266;
  4820. }
  4821. #u5367 .text {
  4822. position:absolute;
  4823. align-self:center;
  4824. padding:2px 2px 2px 0px;
  4825. box-sizing:border-box;
  4826. width:100%;
  4827. }
  4828. #u5367_text {
  4829. border-width:0px;
  4830. word-wrap:break-word;
  4831. text-transform:none;
  4832. visibility:hidden;
  4833. }
  4834. #u5368_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:82px;
  4840. height:34px;
  4841. }
  4842. #u5368 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:31px;
  4846. top:218px;
  4847. width:82px;
  4848. height:34px;
  4849. display:flex;
  4850. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:12px;
  4854. color:#606266;
  4855. }
  4856. #u5368 .text {
  4857. position:absolute;
  4858. align-self:center;
  4859. padding:2px 2px 2px 0px;
  4860. box-sizing:border-box;
  4861. width:100%;
  4862. }
  4863. #u5368_text {
  4864. border-width:0px;
  4865. word-wrap:break-word;
  4866. text-transform:none;
  4867. visibility:hidden;
  4868. }
  4869. #u5369_img {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:96px;
  4875. height:34px;
  4876. }
  4877. #u5369 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:113px;
  4881. top:218px;
  4882. width:96px;
  4883. height:34px;
  4884. display:flex;
  4885. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:12px;
  4889. color:#606266;
  4890. }
  4891. #u5369 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 0px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u5369_text {
  4899. border-width:0px;
  4900. word-wrap:break-word;
  4901. text-transform:none;
  4902. visibility:hidden;
  4903. }
  4904. #u5370_img {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:96px;
  4910. height:34px;
  4911. }
  4912. #u5370 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:209px;
  4916. top:218px;
  4917. width:96px;
  4918. height:34px;
  4919. display:flex;
  4920. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4921. font-weight:400;
  4922. font-style:normal;
  4923. font-size:12px;
  4924. color:#606266;
  4925. }
  4926. #u5370 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 0px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u5370_text {
  4934. border-width:0px;
  4935. word-wrap:break-word;
  4936. text-transform:none;
  4937. visibility:hidden;
  4938. }
  4939. #u5371_img {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:62px;
  4945. height:34px;
  4946. }
  4947. #u5371 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:305px;
  4951. top:218px;
  4952. width:62px;
  4953. height:34px;
  4954. display:flex;
  4955. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:12px;
  4959. color:#606266;
  4960. }
  4961. #u5371 .text {
  4962. position:absolute;
  4963. align-self:center;
  4964. padding:2px 2px 2px 0px;
  4965. box-sizing:border-box;
  4966. width:100%;
  4967. }
  4968. #u5371_text {
  4969. border-width:0px;
  4970. word-wrap:break-word;
  4971. text-transform:none;
  4972. visibility:hidden;
  4973. }
  4974. #u5372_img {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:62px;
  4980. height:34px;
  4981. }
  4982. #u5372 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:367px;
  4986. top:218px;
  4987. width:62px;
  4988. height:34px;
  4989. display:flex;
  4990. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:12px;
  4994. color:#606266;
  4995. }
  4996. #u5372 .text {
  4997. position:absolute;
  4998. align-self:center;
  4999. padding:2px 2px 2px 0px;
  5000. box-sizing:border-box;
  5001. width:100%;
  5002. }
  5003. #u5372_text {
  5004. border-width:0px;
  5005. word-wrap:break-word;
  5006. text-transform:none;
  5007. visibility:hidden;
  5008. }
  5009. #u5373_img {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:62px;
  5015. height:34px;
  5016. }
  5017. #u5373 {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:429px;
  5021. top:218px;
  5022. width:62px;
  5023. height:34px;
  5024. display:flex;
  5025. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5026. font-weight:400;
  5027. font-style:normal;
  5028. font-size:12px;
  5029. color:#606266;
  5030. }
  5031. #u5373 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 2px 2px 0px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u5373_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. visibility:hidden;
  5043. }
  5044. #u5374_img {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:102px;
  5050. height:34px;
  5051. }
  5052. #u5374 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:491px;
  5056. top:218px;
  5057. width:102px;
  5058. height:34px;
  5059. display:flex;
  5060. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. font-size:12px;
  5064. color:#606266;
  5065. }
  5066. #u5374 .text {
  5067. position:absolute;
  5068. align-self:center;
  5069. padding:2px 2px 2px 0px;
  5070. box-sizing:border-box;
  5071. width:100%;
  5072. }
  5073. #u5374_text {
  5074. border-width:0px;
  5075. word-wrap:break-word;
  5076. text-transform:none;
  5077. visibility:hidden;
  5078. }
  5079. #u5375_img {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:83px;
  5085. height:34px;
  5086. }
  5087. #u5375 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:593px;
  5091. top:218px;
  5092. width:83px;
  5093. height:34px;
  5094. display:flex;
  5095. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5096. font-weight:400;
  5097. font-style:normal;
  5098. font-size:12px;
  5099. color:#606266;
  5100. }
  5101. #u5375 .text {
  5102. position:absolute;
  5103. align-self:center;
  5104. padding:2px 2px 2px 0px;
  5105. box-sizing:border-box;
  5106. width:100%;
  5107. }
  5108. #u5375_text {
  5109. border-width:0px;
  5110. word-wrap:break-word;
  5111. text-transform:none;
  5112. visibility:hidden;
  5113. }
  5114. #u5376_img {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:83px;
  5120. height:34px;
  5121. }
  5122. #u5376 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:676px;
  5126. top:218px;
  5127. width:83px;
  5128. height:34px;
  5129. display:flex;
  5130. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:12px;
  5134. color:#606266;
  5135. }
  5136. #u5376 .text {
  5137. position:absolute;
  5138. align-self:center;
  5139. padding:2px 2px 2px 0px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u5376_text {
  5144. border-width:0px;
  5145. word-wrap:break-word;
  5146. text-transform:none;
  5147. visibility:hidden;
  5148. }
  5149. #u5377_img {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:83px;
  5155. height:34px;
  5156. }
  5157. #u5377 {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:759px;
  5161. top:218px;
  5162. width:83px;
  5163. height:34px;
  5164. display:flex;
  5165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5166. font-weight:400;
  5167. font-style:normal;
  5168. font-size:12px;
  5169. color:#606266;
  5170. }
  5171. #u5377 .text {
  5172. position:absolute;
  5173. align-self:center;
  5174. padding:2px 2px 2px 0px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u5377_text {
  5179. border-width:0px;
  5180. word-wrap:break-word;
  5181. text-transform:none;
  5182. visibility:hidden;
  5183. }
  5184. #u5378_img {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:83px;
  5190. height:34px;
  5191. }
  5192. #u5378 {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:842px;
  5196. top:218px;
  5197. width:83px;
  5198. height:34px;
  5199. display:flex;
  5200. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:12px;
  5204. color:#606266;
  5205. }
  5206. #u5378 .text {
  5207. position:absolute;
  5208. align-self:center;
  5209. padding:2px 2px 2px 0px;
  5210. box-sizing:border-box;
  5211. width:100%;
  5212. }
  5213. #u5378_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. visibility:hidden;
  5218. }
  5219. #u5379_img {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:83px;
  5225. height:34px;
  5226. }
  5227. #u5379 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:925px;
  5231. top:218px;
  5232. width:83px;
  5233. height:34px;
  5234. display:flex;
  5235. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5236. font-weight:400;
  5237. font-style:normal;
  5238. font-size:12px;
  5239. color:#606266;
  5240. }
  5241. #u5379 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 0px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u5379_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u5380_img {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:83px;
  5260. height:34px;
  5261. }
  5262. #u5380 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:1008px;
  5266. top:218px;
  5267. width:83px;
  5268. height:34px;
  5269. display:flex;
  5270. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:12px;
  5274. color:#606266;
  5275. }
  5276. #u5380 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:2px 2px 2px 0px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u5380_text {
  5284. border-width:0px;
  5285. word-wrap:break-word;
  5286. text-transform:none;
  5287. visibility:hidden;
  5288. }
  5289. #u5381_img {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:129px;
  5295. height:34px;
  5296. }
  5297. #u5381 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:1091px;
  5301. top:218px;
  5302. width:129px;
  5303. height:34px;
  5304. display:flex;
  5305. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:12px;
  5309. color:#606266;
  5310. }
  5311. #u5381 .text {
  5312. position:absolute;
  5313. align-self:center;
  5314. padding:2px 2px 2px 0px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u5381_text {
  5319. border-width:0px;
  5320. word-wrap:break-word;
  5321. text-transform:none;
  5322. visibility:hidden;
  5323. }
  5324. #u5382_img {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:31px;
  5330. height:35px;
  5331. }
  5332. #u5382 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:252px;
  5337. width:31px;
  5338. height:35px;
  5339. display:flex;
  5340. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:12px;
  5344. color:#606266;
  5345. }
  5346. #u5382 .text {
  5347. position:absolute;
  5348. align-self:center;
  5349. padding:2px 2px 2px 0px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u5382_text {
  5354. border-width:0px;
  5355. word-wrap:break-word;
  5356. text-transform:none;
  5357. visibility:hidden;
  5358. }
  5359. #u5383_img {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:0px;
  5363. top:0px;
  5364. width:82px;
  5365. height:35px;
  5366. }
  5367. #u5383 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:31px;
  5371. top:252px;
  5372. width:82px;
  5373. height:35px;
  5374. display:flex;
  5375. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:12px;
  5379. color:#606266;
  5380. }
  5381. #u5383 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 0px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u5383_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u5384_img {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:96px;
  5400. height:35px;
  5401. }
  5402. #u5384 {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:113px;
  5406. top:252px;
  5407. width:96px;
  5408. height:35px;
  5409. display:flex;
  5410. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5411. font-weight:400;
  5412. font-style:normal;
  5413. font-size:12px;
  5414. color:#606266;
  5415. }
  5416. #u5384 .text {
  5417. position:absolute;
  5418. align-self:center;
  5419. padding:2px 2px 2px 0px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u5384_text {
  5424. border-width:0px;
  5425. word-wrap:break-word;
  5426. text-transform:none;
  5427. visibility:hidden;
  5428. }
  5429. #u5385_img {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:96px;
  5435. height:35px;
  5436. }
  5437. #u5385 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:209px;
  5441. top:252px;
  5442. width:96px;
  5443. height:35px;
  5444. display:flex;
  5445. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:12px;
  5449. color:#606266;
  5450. }
  5451. #u5385 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:2px 2px 2px 0px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u5385_text {
  5459. border-width:0px;
  5460. word-wrap:break-word;
  5461. text-transform:none;
  5462. visibility:hidden;
  5463. }
  5464. #u5386_img {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:62px;
  5470. height:35px;
  5471. }
  5472. #u5386 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:305px;
  5476. top:252px;
  5477. width:62px;
  5478. height:35px;
  5479. display:flex;
  5480. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5481. font-weight:400;
  5482. font-style:normal;
  5483. font-size:12px;
  5484. color:#606266;
  5485. }
  5486. #u5386 .text {
  5487. position:absolute;
  5488. align-self:center;
  5489. padding:2px 2px 2px 0px;
  5490. box-sizing:border-box;
  5491. width:100%;
  5492. }
  5493. #u5386_text {
  5494. border-width:0px;
  5495. word-wrap:break-word;
  5496. text-transform:none;
  5497. visibility:hidden;
  5498. }
  5499. #u5387_img {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:62px;
  5505. height:35px;
  5506. }
  5507. #u5387 {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:367px;
  5511. top:252px;
  5512. width:62px;
  5513. height:35px;
  5514. display:flex;
  5515. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:12px;
  5519. color:#606266;
  5520. }
  5521. #u5387 .text {
  5522. position:absolute;
  5523. align-self:center;
  5524. padding:2px 2px 2px 0px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u5387_text {
  5529. border-width:0px;
  5530. word-wrap:break-word;
  5531. text-transform:none;
  5532. visibility:hidden;
  5533. }
  5534. #u5388_img {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:62px;
  5540. height:35px;
  5541. }
  5542. #u5388 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:429px;
  5546. top:252px;
  5547. width:62px;
  5548. height:35px;
  5549. display:flex;
  5550. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:12px;
  5554. color:#606266;
  5555. }
  5556. #u5388 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 2px 2px 0px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u5388_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. visibility:hidden;
  5568. }
  5569. #u5389_img {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:102px;
  5575. height:35px;
  5576. }
  5577. #u5389 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:491px;
  5581. top:252px;
  5582. width:102px;
  5583. height:35px;
  5584. display:flex;
  5585. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:12px;
  5589. color:#606266;
  5590. }
  5591. #u5389 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:2px 2px 2px 0px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u5389_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. visibility:hidden;
  5603. }
  5604. #u5390_img {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:83px;
  5610. height:35px;
  5611. }
  5612. #u5390 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:593px;
  5616. top:252px;
  5617. width:83px;
  5618. height:35px;
  5619. display:flex;
  5620. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:12px;
  5624. color:#606266;
  5625. }
  5626. #u5390 .text {
  5627. position:absolute;
  5628. align-self:center;
  5629. padding:2px 2px 2px 0px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u5390_text {
  5634. border-width:0px;
  5635. word-wrap:break-word;
  5636. text-transform:none;
  5637. visibility:hidden;
  5638. }
  5639. #u5391_img {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:83px;
  5645. height:35px;
  5646. }
  5647. #u5391 {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:676px;
  5651. top:252px;
  5652. width:83px;
  5653. height:35px;
  5654. display:flex;
  5655. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5656. font-weight:400;
  5657. font-style:normal;
  5658. font-size:12px;
  5659. color:#606266;
  5660. }
  5661. #u5391 .text {
  5662. position:absolute;
  5663. align-self:center;
  5664. padding:2px 2px 2px 0px;
  5665. box-sizing:border-box;
  5666. width:100%;
  5667. }
  5668. #u5391_text {
  5669. border-width:0px;
  5670. word-wrap:break-word;
  5671. text-transform:none;
  5672. visibility:hidden;
  5673. }
  5674. #u5392_img {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:83px;
  5680. height:35px;
  5681. }
  5682. #u5392 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:759px;
  5686. top:252px;
  5687. width:83px;
  5688. height:35px;
  5689. display:flex;
  5690. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:12px;
  5694. color:#606266;
  5695. }
  5696. #u5392 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:2px 2px 2px 0px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u5392_text {
  5704. border-width:0px;
  5705. word-wrap:break-word;
  5706. text-transform:none;
  5707. visibility:hidden;
  5708. }
  5709. #u5393_img {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:0px;
  5714. width:83px;
  5715. height:35px;
  5716. }
  5717. #u5393 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:842px;
  5721. top:252px;
  5722. width:83px;
  5723. height:35px;
  5724. display:flex;
  5725. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:12px;
  5729. color:#606266;
  5730. }
  5731. #u5393 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:2px 2px 2px 0px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u5393_text {
  5739. border-width:0px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. visibility:hidden;
  5743. }
  5744. #u5394_img {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:83px;
  5750. height:35px;
  5751. }
  5752. #u5394 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:925px;
  5756. top:252px;
  5757. width:83px;
  5758. height:35px;
  5759. display:flex;
  5760. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. font-size:12px;
  5764. color:#606266;
  5765. }
  5766. #u5394 .text {
  5767. position:absolute;
  5768. align-self:center;
  5769. padding:2px 2px 2px 0px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u5394_text {
  5774. border-width:0px;
  5775. word-wrap:break-word;
  5776. text-transform:none;
  5777. visibility:hidden;
  5778. }
  5779. #u5395_img {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:83px;
  5785. height:35px;
  5786. }
  5787. #u5395 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:1008px;
  5791. top:252px;
  5792. width:83px;
  5793. height:35px;
  5794. display:flex;
  5795. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5796. font-weight:400;
  5797. font-style:normal;
  5798. font-size:12px;
  5799. color:#606266;
  5800. }
  5801. #u5395 .text {
  5802. position:absolute;
  5803. align-self:center;
  5804. padding:2px 2px 2px 0px;
  5805. box-sizing:border-box;
  5806. width:100%;
  5807. }
  5808. #u5395_text {
  5809. border-width:0px;
  5810. word-wrap:break-word;
  5811. text-transform:none;
  5812. visibility:hidden;
  5813. }
  5814. #u5396_img {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:129px;
  5820. height:35px;
  5821. }
  5822. #u5396 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:1091px;
  5826. top:252px;
  5827. width:129px;
  5828. height:35px;
  5829. display:flex;
  5830. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5831. font-weight:400;
  5832. font-style:normal;
  5833. font-size:12px;
  5834. color:#606266;
  5835. }
  5836. #u5396 .text {
  5837. position:absolute;
  5838. align-self:center;
  5839. padding:2px 2px 2px 0px;
  5840. box-sizing:border-box;
  5841. width:100%;
  5842. }
  5843. #u5396_text {
  5844. border-width:0px;
  5845. word-wrap:break-word;
  5846. text-transform:none;
  5847. visibility:hidden;
  5848. }
  5849. #u5397 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:0px;
  5855. height:0px;
  5856. }
  5857. #u5398_div {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:140px;
  5863. height:30px;
  5864. background:inherit;
  5865. background-color:rgba(255, 255, 255, 1);
  5866. box-sizing:border-box;
  5867. border-width:1px;
  5868. border-style:solid;
  5869. border-color:rgba(201, 201, 201, 1);
  5870. border-radius:4px;
  5871. -moz-box-shadow:none;
  5872. -webkit-box-shadow:none;
  5873. box-shadow:none;
  5874. font-family:'Microsoft YaHei', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:14px;
  5878. color:#CCCCCC;
  5879. text-align:left;
  5880. }
  5881. #u5398 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:350px;
  5885. top:101px;
  5886. width:140px;
  5887. height:30px;
  5888. display:flex;
  5889. font-family:'Microsoft YaHei', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:14px;
  5893. color:#CCCCCC;
  5894. text-align:left;
  5895. }
  5896. #u5398 .text {
  5897. position:absolute;
  5898. align-self:center;
  5899. padding:2px 8px 2px 8px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u5398_text {
  5904. border-width:0px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. visibility:hidden;
  5908. }
  5909. #u5399_input {
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:127px;
  5914. height:25px;
  5915. padding:2px 2px 2px 2px;
  5916. font-family:'Microsoft YaHei', sans-serif;
  5917. font-weight:400;
  5918. font-style:normal;
  5919. font-size:10px;
  5920. letter-spacing:normal;
  5921. color:#000000;
  5922. vertical-align:none;
  5923. text-align:left;
  5924. text-transform:none;
  5925. background-color:transparent;
  5926. border-color:transparent;
  5927. }
  5928. #u5399_input.disabled {
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:127px;
  5933. height:25px;
  5934. padding:2px 2px 2px 2px;
  5935. font-family:'Microsoft YaHei', sans-serif;
  5936. font-weight:400;
  5937. font-style:normal;
  5938. font-size:10px;
  5939. letter-spacing:normal;
  5940. color:#000000;
  5941. vertical-align:none;
  5942. text-align:left;
  5943. text-transform:none;
  5944. background-color:transparent;
  5945. border-color:transparent;
  5946. }
  5947. #u5399_div {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:127px;
  5953. height:25px;
  5954. background:inherit;
  5955. background-color:rgba(255, 255, 255, 1);
  5956. border:none;
  5957. border-radius:0px;
  5958. -moz-box-shadow:none;
  5959. -webkit-box-shadow:none;
  5960. box-shadow:none;
  5961. font-family:'Microsoft YaHei', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:10px;
  5965. }
  5966. #u5399 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:358px;
  5970. top:102px;
  5971. width:127px;
  5972. height:25px;
  5973. display:flex;
  5974. font-family:'Microsoft YaHei', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:10px;
  5978. }
  5979. #u5399 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:2px 2px 2px 2px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u5399_div.disabled {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:127px;
  5992. height:25px;
  5993. background:inherit;
  5994. background-color:rgba(240, 240, 240, 1);
  5995. border:none;
  5996. border-radius:0px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-family:'Microsoft YaHei', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:10px;
  6004. }
  6005. #u5399.disabled {
  6006. }
  6007. #u5400_div {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:0px;
  6011. top:0px;
  6012. width:59px;
  6013. height:30px;
  6014. background:inherit;
  6015. background-color:rgba(0, 153, 255, 1);
  6016. box-sizing:border-box;
  6017. border-width:1px;
  6018. border-style:solid;
  6019. border-color:rgba(0, 153, 255, 1);
  6020. border-radius:4px;
  6021. -moz-box-shadow:none;
  6022. -webkit-box-shadow:none;
  6023. box-shadow:none;
  6024. font-family:'Microsoft YaHei', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:14px;
  6028. color:#FFFFFF;
  6029. }
  6030. #u5400 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:1100px;
  6034. top:101px;
  6035. width:59px;
  6036. height:30px;
  6037. display:flex;
  6038. font-family:'Microsoft YaHei', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:14px;
  6042. color:#FFFFFF;
  6043. }
  6044. #u5400 .text {
  6045. position:absolute;
  6046. align-self:center;
  6047. padding:5px 15px 5px 15px;
  6048. box-sizing:border-box;
  6049. width:100%;
  6050. }
  6051. #u5400_text {
  6052. border-width:0px;
  6053. white-space:nowrap;
  6054. text-transform:none;
  6055. }
  6056. #u5401 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:0px;
  6062. height:0px;
  6063. }
  6064. #u5402_div {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:140px;
  6070. height:30px;
  6071. background:inherit;
  6072. background-color:rgba(255, 255, 255, 1);
  6073. box-sizing:border-box;
  6074. border-width:1px;
  6075. border-style:solid;
  6076. border-color:rgba(215, 215, 215, 1);
  6077. border-radius:4px;
  6078. -moz-box-shadow:none;
  6079. -webkit-box-shadow:none;
  6080. box-shadow:none;
  6081. font-size:11px;
  6082. }
  6083. #u5402 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:800px;
  6087. top:101px;
  6088. width:140px;
  6089. height:30px;
  6090. display:flex;
  6091. font-size:11px;
  6092. }
  6093. #u5402 .text {
  6094. position:absolute;
  6095. align-self:center;
  6096. padding:2px 2px 2px 2px;
  6097. box-sizing:border-box;
  6098. width:100%;
  6099. }
  6100. #u5402_text {
  6101. border-width:0px;
  6102. word-wrap:break-word;
  6103. text-transform:none;
  6104. visibility:hidden;
  6105. }
  6106. #u5403_input {
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:123px;
  6111. height:23px;
  6112. padding:2px 2px 2px 2px;
  6113. font-family:'ArialMT', 'Arial', sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. font-size:11px;
  6117. letter-spacing:normal;
  6118. color:#AAAAAA;
  6119. vertical-align:none;
  6120. text-align:left;
  6121. text-transform:none;
  6122. background-color:transparent;
  6123. border-color:transparent;
  6124. }
  6125. #u5403_input.disabled {
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:123px;
  6130. height:23px;
  6131. padding:2px 2px 2px 2px;
  6132. font-family:'ArialMT', 'Arial', sans-serif;
  6133. font-weight:400;
  6134. font-style:normal;
  6135. font-size:11px;
  6136. letter-spacing:normal;
  6137. color:#AAAAAA;
  6138. vertical-align:none;
  6139. text-align:left;
  6140. text-transform:none;
  6141. background-color:transparent;
  6142. border-color:transparent;
  6143. }
  6144. #u5403_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:123px;
  6150. height:23px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 1);
  6153. border:none;
  6154. border-radius:0px;
  6155. -moz-box-shadow:none;
  6156. -webkit-box-shadow:none;
  6157. box-shadow:none;
  6158. font-size:11px;
  6159. color:#AAAAAA;
  6160. }
  6161. #u5403 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:806px;
  6165. top:103px;
  6166. width:123px;
  6167. height:23px;
  6168. display:flex;
  6169. font-size:11px;
  6170. color:#AAAAAA;
  6171. }
  6172. #u5403 .text {
  6173. position:absolute;
  6174. align-self:flex-start;
  6175. padding:2px 2px 2px 2px;
  6176. box-sizing:border-box;
  6177. width:100%;
  6178. }
  6179. #u5403_div.disabled {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:123px;
  6185. height:23px;
  6186. background:inherit;
  6187. background-color:rgba(240, 240, 240, 1);
  6188. border:none;
  6189. border-radius:0px;
  6190. -moz-box-shadow:none;
  6191. -webkit-box-shadow:none;
  6192. box-shadow:none;
  6193. font-size:11px;
  6194. color:#AAAAAA;
  6195. }
  6196. #u5403.disabled {
  6197. }
  6198. .u5403_input_option {
  6199. font-size:11px;
  6200. }
  6201. #u5404 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:0px;
  6207. height:0px;
  6208. }
  6209. #u5405_div {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:140px;
  6215. height:30px;
  6216. background:inherit;
  6217. background-color:rgba(255, 255, 255, 1);
  6218. box-sizing:border-box;
  6219. border-width:1px;
  6220. border-style:solid;
  6221. border-color:rgba(201, 201, 201, 1);
  6222. border-radius:4px;
  6223. -moz-box-shadow:none;
  6224. -webkit-box-shadow:none;
  6225. box-shadow:none;
  6226. font-family:'Microsoft YaHei', sans-serif;
  6227. font-weight:400;
  6228. font-style:normal;
  6229. font-size:14px;
  6230. color:#CCCCCC;
  6231. text-align:left;
  6232. }
  6233. #u5405 {
  6234. border-width:0px;
  6235. position:absolute;
  6236. left:500px;
  6237. top:101px;
  6238. width:140px;
  6239. height:30px;
  6240. display:flex;
  6241. font-family:'Microsoft YaHei', sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. font-size:14px;
  6245. color:#CCCCCC;
  6246. text-align:left;
  6247. }
  6248. #u5405 .text {
  6249. position:absolute;
  6250. align-self:center;
  6251. padding:2px 8px 2px 8px;
  6252. box-sizing:border-box;
  6253. width:100%;
  6254. }
  6255. #u5405_text {
  6256. border-width:0px;
  6257. word-wrap:break-word;
  6258. text-transform:none;
  6259. visibility:hidden;
  6260. }
  6261. #u5406_input {
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:127px;
  6266. height:25px;
  6267. padding:2px 2px 2px 2px;
  6268. font-family:'Microsoft YaHei', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:10px;
  6272. letter-spacing:normal;
  6273. color:#000000;
  6274. vertical-align:none;
  6275. text-align:left;
  6276. text-transform:none;
  6277. background-color:transparent;
  6278. border-color:transparent;
  6279. }
  6280. #u5406_input.disabled {
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:127px;
  6285. height:25px;
  6286. padding:2px 2px 2px 2px;
  6287. font-family:'Microsoft YaHei', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:10px;
  6291. letter-spacing:normal;
  6292. color:#000000;
  6293. vertical-align:none;
  6294. text-align:left;
  6295. text-transform:none;
  6296. background-color:transparent;
  6297. border-color:transparent;
  6298. }
  6299. #u5406_div {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:127px;
  6305. height:25px;
  6306. background:inherit;
  6307. background-color:rgba(255, 255, 255, 1);
  6308. border:none;
  6309. border-radius:0px;
  6310. -moz-box-shadow:none;
  6311. -webkit-box-shadow:none;
  6312. box-shadow:none;
  6313. font-family:'Microsoft YaHei', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:10px;
  6317. }
  6318. #u5406 {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:508px;
  6322. top:102px;
  6323. width:127px;
  6324. height:25px;
  6325. display:flex;
  6326. font-family:'Microsoft YaHei', sans-serif;
  6327. font-weight:400;
  6328. font-style:normal;
  6329. font-size:10px;
  6330. }
  6331. #u5406 .text {
  6332. position:absolute;
  6333. align-self:center;
  6334. padding:2px 2px 2px 2px;
  6335. box-sizing:border-box;
  6336. width:100%;
  6337. }
  6338. #u5406_div.disabled {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:127px;
  6344. height:25px;
  6345. background:inherit;
  6346. background-color:rgba(240, 240, 240, 1);
  6347. border:none;
  6348. border-radius:0px;
  6349. -moz-box-shadow:none;
  6350. -webkit-box-shadow:none;
  6351. box-shadow:none;
  6352. font-family:'Microsoft YaHei', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:10px;
  6356. }
  6357. #u5406.disabled {
  6358. }
  6359. #u5407 {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:0px;
  6365. height:0px;
  6366. }
  6367. #u5408_div {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:140px;
  6373. height:30px;
  6374. background:inherit;
  6375. background-color:rgba(255, 255, 255, 1);
  6376. box-sizing:border-box;
  6377. border-width:1px;
  6378. border-style:solid;
  6379. border-color:rgba(215, 215, 215, 1);
  6380. border-radius:4px;
  6381. -moz-box-shadow:none;
  6382. -webkit-box-shadow:none;
  6383. box-shadow:none;
  6384. font-size:11px;
  6385. }
  6386. #u5408 {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:650px;
  6390. top:101px;
  6391. width:140px;
  6392. height:30px;
  6393. display:flex;
  6394. font-size:11px;
  6395. }
  6396. #u5408 .text {
  6397. position:absolute;
  6398. align-self:center;
  6399. padding:2px 2px 2px 2px;
  6400. box-sizing:border-box;
  6401. width:100%;
  6402. }
  6403. #u5408_text {
  6404. border-width:0px;
  6405. word-wrap:break-word;
  6406. text-transform:none;
  6407. visibility:hidden;
  6408. }
  6409. #u5409_input {
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:120px;
  6414. height:23px;
  6415. padding:2px 2px 2px 2px;
  6416. font-family:'ArialMT', 'Arial', sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:11px;
  6420. letter-spacing:normal;
  6421. color:#AAAAAA;
  6422. vertical-align:none;
  6423. text-align:left;
  6424. text-transform:none;
  6425. background-color:transparent;
  6426. border-color:transparent;
  6427. }
  6428. #u5409_input.disabled {
  6429. position:absolute;
  6430. left:0px;
  6431. top:0px;
  6432. width:120px;
  6433. height:23px;
  6434. padding:2px 2px 2px 2px;
  6435. font-family:'ArialMT', 'Arial', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. font-size:11px;
  6439. letter-spacing:normal;
  6440. color:#AAAAAA;
  6441. vertical-align:none;
  6442. text-align:left;
  6443. text-transform:none;
  6444. background-color:transparent;
  6445. border-color:transparent;
  6446. }
  6447. #u5409_div {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:120px;
  6453. height:23px;
  6454. background:inherit;
  6455. background-color:rgba(255, 255, 255, 1);
  6456. border:none;
  6457. border-radius:0px;
  6458. -moz-box-shadow:none;
  6459. -webkit-box-shadow:none;
  6460. box-shadow:none;
  6461. font-size:11px;
  6462. color:#AAAAAA;
  6463. }
  6464. #u5409 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:657px;
  6468. top:103px;
  6469. width:120px;
  6470. height:23px;
  6471. display:flex;
  6472. font-size:11px;
  6473. color:#AAAAAA;
  6474. }
  6475. #u5409 .text {
  6476. position:absolute;
  6477. align-self:flex-start;
  6478. padding:2px 2px 2px 2px;
  6479. box-sizing:border-box;
  6480. width:100%;
  6481. }
  6482. #u5409_div.disabled {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:120px;
  6488. height:23px;
  6489. background:inherit;
  6490. background-color:rgba(240, 240, 240, 1);
  6491. border:none;
  6492. border-radius:0px;
  6493. -moz-box-shadow:none;
  6494. -webkit-box-shadow:none;
  6495. box-shadow:none;
  6496. font-size:11px;
  6497. color:#AAAAAA;
  6498. }
  6499. #u5409.disabled {
  6500. }
  6501. .u5409_input_option {
  6502. font-size:11px;
  6503. }
  6504. #u5410_div {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:55px;
  6510. height:30px;
  6511. background:inherit;
  6512. background-color:rgba(255, 255, 255, 1);
  6513. box-sizing:border-box;
  6514. border-width:1px;
  6515. border-style:solid;
  6516. border-color:rgba(170, 170, 170, 1);
  6517. border-radius:4px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:12px;
  6525. color:#555555;
  6526. }
  6527. #u5410 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:1169px;
  6531. top:101px;
  6532. width:55px;
  6533. height:30px;
  6534. display:flex;
  6535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:12px;
  6539. color:#555555;
  6540. }
  6541. #u5410 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:5px 15px 5px 15px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u5410_text {
  6549. border-width:0px;
  6550. white-space:nowrap;
  6551. text-transform:none;
  6552. }
  6553. #u5411_div {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:85px;
  6559. height:50px;
  6560. background:inherit;
  6561. background-color:rgba(255, 255, 255, 0);
  6562. border:none;
  6563. border-left:0px;
  6564. border-top:0px;
  6565. border-right:0px;
  6566. border-radius:0px;
  6567. border-bottom-right-radius:0px;
  6568. border-bottom-left-radius:0px;
  6569. -moz-box-shadow:none;
  6570. -webkit-box-shadow:none;
  6571. box-shadow:none;
  6572. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6573. font-weight:500;
  6574. font-style:normal;
  6575. }
  6576. #u5411 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:350px;
  6580. top:51px;
  6581. width:85px;
  6582. height:50px;
  6583. display:flex;
  6584. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6585. font-weight:500;
  6586. font-style:normal;
  6587. }
  6588. #u5411 .text {
  6589. position:absolute;
  6590. align-self:center;
  6591. padding:0px 0px 0px 0px;
  6592. box-sizing:border-box;
  6593. width:100%;
  6594. }
  6595. #u5411_text {
  6596. border-width:0px;
  6597. white-space:nowrap;
  6598. text-transform:none;
  6599. }
  6600. #u5412 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:0px;
  6606. height:0px;
  6607. }
  6608. #u5413_div {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:500px;
  6614. height:180px;
  6615. background:inherit;
  6616. background-color:rgba(255, 255, 255, 1);
  6617. border:none;
  6618. border-radius:4px;
  6619. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6620. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6621. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6622. font-family:'Microsoft YaHei', sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. }
  6626. #u5413 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:705px;
  6630. top:393px;
  6631. width:500px;
  6632. height:180px;
  6633. display:flex;
  6634. font-family:'Microsoft YaHei', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. }
  6638. #u5413 .text {
  6639. position:absolute;
  6640. align-self:center;
  6641. padding:2px 2px 2px 2px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u5413_text {
  6646. border-width:0px;
  6647. word-wrap:break-word;
  6648. text-transform:none;
  6649. visibility:hidden;
  6650. }
  6651. #u5414_div {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:419px;
  6657. height:44px;
  6658. background:inherit;
  6659. background-color:rgba(255, 255, 255, 0);
  6660. border:none;
  6661. border-radius:0px;
  6662. -moz-box-shadow:none;
  6663. -webkit-box-shadow:none;
  6664. box-shadow:none;
  6665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:14px;
  6669. line-height:22px;
  6670. }
  6671. #u5414 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:765px;
  6675. top:448px;
  6676. width:419px;
  6677. height:44px;
  6678. display:flex;
  6679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:14px;
  6683. line-height:22px;
  6684. }
  6685. #u5414 .text {
  6686. position:absolute;
  6687. align-self:flex-start;
  6688. padding:0px 0px 0px 0px;
  6689. box-sizing:border-box;
  6690. width:100%;
  6691. }
  6692. #u5414_text {
  6693. border-width:0px;
  6694. word-wrap:break-word;
  6695. text-transform:none;
  6696. }
  6697. #u5415_div {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:181px;
  6703. height:21px;
  6704. background:inherit;
  6705. background-color:rgba(255, 255, 255, 0);
  6706. border:none;
  6707. border-radius:0px;
  6708. -moz-box-shadow:none;
  6709. -webkit-box-shadow:none;
  6710. box-shadow:none;
  6711. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6712. font-weight:650;
  6713. font-style:normal;
  6714. font-size:18px;
  6715. color:#000000;
  6716. line-height:22px;
  6717. }
  6718. #u5415 {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:765px;
  6722. top:418px;
  6723. width:181px;
  6724. height:21px;
  6725. display:flex;
  6726. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6727. font-weight:650;
  6728. font-style:normal;
  6729. font-size:18px;
  6730. color:#000000;
  6731. line-height:22px;
  6732. }
  6733. #u5415 .text {
  6734. position:absolute;
  6735. align-self:flex-start;
  6736. padding:0px 0px 0px 0px;
  6737. box-sizing:border-box;
  6738. width:100%;
  6739. }
  6740. #u5415_text {
  6741. border-width:0px;
  6742. white-space:nowrap;
  6743. text-transform:none;
  6744. }
  6745. #u5416_div {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:61px;
  6751. height:32px;
  6752. background:inherit;
  6753. background-color:rgba(24, 144, 255, 1);
  6754. border:none;
  6755. border-radius:4px;
  6756. -moz-box-shadow:none;
  6757. -webkit-box-shadow:none;
  6758. box-shadow:none;
  6759. font-family:'Microsoft YaHei', sans-serif;
  6760. font-weight:400;
  6761. font-style:normal;
  6762. font-size:14px;
  6763. color:#FFFFFF;
  6764. }
  6765. #u5416 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:1123px;
  6769. top:518px;
  6770. width:61px;
  6771. height:32px;
  6772. display:flex;
  6773. font-family:'Microsoft YaHei', sans-serif;
  6774. font-weight:400;
  6775. font-style:normal;
  6776. font-size:14px;
  6777. color:#FFFFFF;
  6778. }
  6779. #u5416 .text {
  6780. position:absolute;
  6781. align-self:center;
  6782. padding:2px 16px 2px 16px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u5416_text {
  6787. border-width:0px;
  6788. white-space:nowrap;
  6789. text-transform:none;
  6790. }
  6791. #u5417_div {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:66px;
  6797. height:32px;
  6798. background:inherit;
  6799. background-color:rgba(255, 255, 255, 1);
  6800. box-sizing:border-box;
  6801. border-width:1px;
  6802. border-style:solid;
  6803. border-color:rgba(217, 217, 217, 1);
  6804. border-radius:4px;
  6805. -moz-box-shadow:none;
  6806. -webkit-box-shadow:none;
  6807. box-shadow:none;
  6808. font-family:'Microsoft YaHei', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. font-size:14px;
  6812. color:rgba(0, 0, 0, 0.647058823529412);
  6813. line-height:21px;
  6814. }
  6815. #u5417 {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:1044px;
  6819. top:518px;
  6820. width:66px;
  6821. height:32px;
  6822. display:flex;
  6823. font-family:'Microsoft YaHei', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:14px;
  6827. color:rgba(0, 0, 0, 0.647058823529412);
  6828. line-height:21px;
  6829. }
  6830. #u5417 .text {
  6831. position:absolute;
  6832. align-self:center;
  6833. padding:2px 16px 2px 16px;
  6834. box-sizing:border-box;
  6835. width:100%;
  6836. }
  6837. #u5417_text {
  6838. border-width:0px;
  6839. white-space:nowrap;
  6840. text-transform:none;
  6841. }
  6842. #u5418_img {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:24px;
  6848. height:24px;
  6849. }
  6850. #u5418 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:730px;
  6854. top:416px;
  6855. width:24px;
  6856. height:24px;
  6857. display:flex;
  6858. font-family:'Microsoft YaHei', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:52px;
  6862. color:#FAAD14;
  6863. }
  6864. #u5418 .text {
  6865. position:absolute;
  6866. align-self:center;
  6867. padding:2px 2px 2px 2px;
  6868. box-sizing:border-box;
  6869. width:100%;
  6870. }
  6871. #u5418_text {
  6872. border-width:0px;
  6873. word-wrap:break-word;
  6874. text-transform:none;
  6875. visibility:hidden;
  6876. }
  6877. #u5419 {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:0px;
  6883. height:0px;
  6884. }
  6885. #u5420_div {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:0px;
  6889. top:0px;
  6890. width:140px;
  6891. height:30px;
  6892. background:inherit;
  6893. background-color:rgba(255, 255, 255, 1);
  6894. box-sizing:border-box;
  6895. border-width:1px;
  6896. border-style:solid;
  6897. border-color:rgba(215, 215, 215, 1);
  6898. border-radius:4px;
  6899. -moz-box-shadow:none;
  6900. -webkit-box-shadow:none;
  6901. box-shadow:none;
  6902. font-size:11px;
  6903. }
  6904. #u5420 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:950px;
  6908. top:101px;
  6909. width:140px;
  6910. height:30px;
  6911. display:flex;
  6912. font-size:11px;
  6913. }
  6914. #u5420 .text {
  6915. position:absolute;
  6916. align-self:center;
  6917. padding:2px 2px 2px 2px;
  6918. box-sizing:border-box;
  6919. width:100%;
  6920. }
  6921. #u5420_text {
  6922. border-width:0px;
  6923. word-wrap:break-word;
  6924. text-transform:none;
  6925. visibility:hidden;
  6926. }
  6927. #u5421_input {
  6928. position:absolute;
  6929. left:0px;
  6930. top:0px;
  6931. width:120px;
  6932. height:23px;
  6933. padding:2px 2px 2px 2px;
  6934. font-family:'ArialMT', 'Arial', sans-serif;
  6935. font-weight:400;
  6936. font-style:normal;
  6937. font-size:11px;
  6938. letter-spacing:normal;
  6939. color:#AAAAAA;
  6940. vertical-align:none;
  6941. text-align:left;
  6942. text-transform:none;
  6943. background-color:transparent;
  6944. border-color:transparent;
  6945. }
  6946. #u5421_input.disabled {
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:120px;
  6951. height:23px;
  6952. padding:2px 2px 2px 2px;
  6953. font-family:'ArialMT', 'Arial', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:11px;
  6957. letter-spacing:normal;
  6958. color:#AAAAAA;
  6959. vertical-align:none;
  6960. text-align:left;
  6961. text-transform:none;
  6962. background-color:transparent;
  6963. border-color:transparent;
  6964. }
  6965. #u5421_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:120px;
  6971. height:23px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 1);
  6974. border:none;
  6975. border-radius:0px;
  6976. -moz-box-shadow:none;
  6977. -webkit-box-shadow:none;
  6978. box-shadow:none;
  6979. font-size:11px;
  6980. color:#AAAAAA;
  6981. }
  6982. #u5421 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:957px;
  6986. top:103px;
  6987. width:120px;
  6988. height:23px;
  6989. display:flex;
  6990. font-size:11px;
  6991. color:#AAAAAA;
  6992. }
  6993. #u5421 .text {
  6994. position:absolute;
  6995. align-self:flex-start;
  6996. padding:2px 2px 2px 2px;
  6997. box-sizing:border-box;
  6998. width:100%;
  6999. }
  7000. #u5421_div.disabled {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:120px;
  7006. height:23px;
  7007. background:inherit;
  7008. background-color:rgba(240, 240, 240, 1);
  7009. border:none;
  7010. border-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-size:11px;
  7015. color:#AAAAAA;
  7016. }
  7017. #u5421.disabled {
  7018. }
  7019. .u5421_input_option {
  7020. font-size:11px;
  7021. }
  7022. #u5422 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:0px;
  7028. height:0px;
  7029. }
  7030. #u5423_div {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:200px;
  7036. height:1192px;
  7037. background:inherit;
  7038. background-color:rgba(255, 255, 255, 1);
  7039. border:none;
  7040. border-radius:0px;
  7041. -moz-box-shadow:none;
  7042. -webkit-box-shadow:none;
  7043. box-shadow:none;
  7044. }
  7045. #u5423 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:120px;
  7049. top:50px;
  7050. width:200px;
  7051. height:1192px;
  7052. display:flex;
  7053. }
  7054. #u5423 .text {
  7055. position:absolute;
  7056. align-self:center;
  7057. padding:2px 2px 2px 2px;
  7058. box-sizing:border-box;
  7059. width:100%;
  7060. }
  7061. #u5423_text {
  7062. border-width:0px;
  7063. word-wrap:break-word;
  7064. text-transform:none;
  7065. visibility:hidden;
  7066. }
  7067. #u5424_div {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:200px;
  7073. height:60px;
  7074. background:inherit;
  7075. background-color:rgba(224, 231, 247, 1);
  7076. border:none;
  7077. border-radius:0px;
  7078. -moz-box-shadow:none;
  7079. -webkit-box-shadow:none;
  7080. box-shadow:none;
  7081. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7082. font-weight:500;
  7083. font-style:normal;
  7084. font-size:18px;
  7085. }
  7086. #u5424 {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:120px;
  7090. top:50px;
  7091. width:200px;
  7092. height:60px;
  7093. display:flex;
  7094. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7095. font-weight:500;
  7096. font-style:normal;
  7097. font-size:18px;
  7098. }
  7099. #u5424 .text {
  7100. position:absolute;
  7101. align-self:center;
  7102. padding:0px 0px 0px 20px;
  7103. box-sizing:border-box;
  7104. width:100%;
  7105. }
  7106. #u5424_text {
  7107. border-width:0px;
  7108. word-wrap:break-word;
  7109. text-transform:none;
  7110. }
  7111. #u5425_div {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:0px;
  7115. top:0px;
  7116. width:65px;
  7117. height:22px;
  7118. background:inherit;
  7119. background-color:rgba(255, 255, 255, 0);
  7120. border:none;
  7121. border-radius:0px;
  7122. -moz-box-shadow:none;
  7123. -webkit-box-shadow:none;
  7124. box-shadow:none;
  7125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7126. font-weight:400;
  7127. font-style:normal;
  7128. font-size:16px;
  7129. }
  7130. #u5425 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:147px;
  7134. top:166px;
  7135. width:65px;
  7136. height:22px;
  7137. display:flex;
  7138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7139. font-weight:400;
  7140. font-style:normal;
  7141. font-size:16px;
  7142. }
  7143. #u5425 .text {
  7144. position:absolute;
  7145. align-self:flex-start;
  7146. padding:0px 0px 0px 0px;
  7147. box-sizing:border-box;
  7148. width:100%;
  7149. }
  7150. #u5425_text {
  7151. border-width:0px;
  7152. white-space:nowrap;
  7153. text-transform:none;
  7154. }
  7155. #u5426_div {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:65px;
  7161. height:22px;
  7162. background:inherit;
  7163. background-color:rgba(255, 255, 255, 0);
  7164. border:none;
  7165. border-radius:0px;
  7166. -moz-box-shadow:none;
  7167. -webkit-box-shadow:none;
  7168. box-shadow:none;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:16px;
  7173. }
  7174. #u5426 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:147px;
  7178. top:271px;
  7179. width:65px;
  7180. height:22px;
  7181. display:flex;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:16px;
  7186. }
  7187. #u5426 .text {
  7188. position:absolute;
  7189. align-self:flex-start;
  7190. padding:0px 0px 0px 0px;
  7191. box-sizing:border-box;
  7192. width:100%;
  7193. }
  7194. #u5426_text {
  7195. border-width:0px;
  7196. white-space:nowrap;
  7197. text-transform:none;
  7198. }
  7199. #u5427_div {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:0px;
  7203. top:0px;
  7204. width:49px;
  7205. height:17px;
  7206. background:inherit;
  7207. background-color:rgba(255, 255, 255, 0);
  7208. border:none;
  7209. border-radius:0px;
  7210. -moz-box-shadow:none;
  7211. -webkit-box-shadow:none;
  7212. box-shadow:none;
  7213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7214. font-weight:400;
  7215. font-style:normal;
  7216. font-size:12px;
  7217. color:#AAAAAA;
  7218. }
  7219. #u5427 {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:147px;
  7223. top:130px;
  7224. width:49px;
  7225. height:17px;
  7226. display:flex;
  7227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:12px;
  7231. color:#AAAAAA;
  7232. }
  7233. #u5427 .text {
  7234. position:absolute;
  7235. align-self:flex-start;
  7236. padding:0px 0px 0px 0px;
  7237. box-sizing:border-box;
  7238. width:100%;
  7239. }
  7240. #u5427_text {
  7241. border-width:0px;
  7242. white-space:nowrap;
  7243. text-transform:none;
  7244. }
  7245. #u5428_div {
  7246. border-width:0px;
  7247. position:absolute;
  7248. left:0px;
  7249. top:0px;
  7250. width:65px;
  7251. height:22px;
  7252. background:inherit;
  7253. background-color:rgba(255, 255, 255, 0);
  7254. border:none;
  7255. border-radius:0px;
  7256. -moz-box-shadow:none;
  7257. -webkit-box-shadow:none;
  7258. box-shadow:none;
  7259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7260. font-weight:400;
  7261. font-style:normal;
  7262. font-size:16px;
  7263. }
  7264. #u5428 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:147px;
  7268. top:313px;
  7269. width:65px;
  7270. height:22px;
  7271. display:flex;
  7272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7273. font-weight:400;
  7274. font-style:normal;
  7275. font-size:16px;
  7276. }
  7277. #u5428 .text {
  7278. position:absolute;
  7279. align-self:flex-start;
  7280. padding:0px 0px 0px 0px;
  7281. box-sizing:border-box;
  7282. width:100%;
  7283. }
  7284. #u5428_text {
  7285. border-width:0px;
  7286. white-space:nowrap;
  7287. text-transform:none;
  7288. }
  7289. #u5429_img {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:201px;
  7295. height:2px;
  7296. }
  7297. #u5429 {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:120px;
  7301. top:208px;
  7302. width:200px;
  7303. height:1px;
  7304. display:flex;
  7305. }
  7306. #u5429 .text {
  7307. position:absolute;
  7308. align-self:center;
  7309. padding:2px 2px 2px 2px;
  7310. box-sizing:border-box;
  7311. width:100%;
  7312. }
  7313. #u5429_text {
  7314. border-width:0px;
  7315. word-wrap:break-word;
  7316. text-transform:none;
  7317. visibility:hidden;
  7318. }
  7319. #u5430_div {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:49px;
  7325. height:17px;
  7326. background:inherit;
  7327. background-color:rgba(255, 255, 255, 0);
  7328. border:none;
  7329. border-radius:0px;
  7330. -moz-box-shadow:none;
  7331. -webkit-box-shadow:none;
  7332. box-shadow:none;
  7333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7334. font-weight:400;
  7335. font-style:normal;
  7336. font-size:12px;
  7337. color:#AAAAAA;
  7338. }
  7339. #u5430 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:147px;
  7343. top:234px;
  7344. width:49px;
  7345. height:17px;
  7346. display:flex;
  7347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:12px;
  7351. color:#AAAAAA;
  7352. }
  7353. #u5430 .text {
  7354. position:absolute;
  7355. align-self:flex-start;
  7356. padding:0px 0px 0px 0px;
  7357. box-sizing:border-box;
  7358. width:100%;
  7359. }
  7360. #u5430_text {
  7361. border-width:0px;
  7362. white-space:nowrap;
  7363. text-transform:none;
  7364. }
  7365. #u5431_div {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:0px;
  7369. top:0px;
  7370. width:65px;
  7371. height:22px;
  7372. background:inherit;
  7373. background-color:rgba(255, 255, 255, 0);
  7374. border:none;
  7375. border-radius:0px;
  7376. -moz-box-shadow:none;
  7377. -webkit-box-shadow:none;
  7378. box-shadow:none;
  7379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:16px;
  7383. }
  7384. #u5431 {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:147px;
  7388. top:355px;
  7389. width:65px;
  7390. height:22px;
  7391. display:flex;
  7392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7393. font-weight:400;
  7394. font-style:normal;
  7395. font-size:16px;
  7396. }
  7397. #u5431 .text {
  7398. position:absolute;
  7399. align-self:flex-start;
  7400. padding:0px 0px 0px 0px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u5431_text {
  7405. border-width:0px;
  7406. white-space:nowrap;
  7407. text-transform:none;
  7408. }