styles.css 136 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780
  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. #u26648_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u26648 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u26648 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u26648_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u26649_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u26649 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u26649 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u26649_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u26650_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u26650 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u26650 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u26650_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u26651 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u26652_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u26652 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u26652 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u26652_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u26653_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u26653 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u26653 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u26653_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u26654_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u26654 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u26654 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u26654_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u26655 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u26656_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u26656_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u26656_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u26656 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u26656 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u26656_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u26656.disabled {
  356. }
  357. .u26656_input_option {
  358. font-size:14px;
  359. }
  360. #u26657_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u26657 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u26657 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u26657_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u26658_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u26658 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u26658 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u26658_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u26659_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u26659 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u26659 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u26659_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u26660 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u26661_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u26661 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u26661 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u26661_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u26662_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u26662 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u26662 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u26662_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u26663 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u26664_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u26664 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u26664 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u26664_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u26665_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u26665 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u26665 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u26665_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u26666 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u26667_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u26667 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u26667 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u26667_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u26668_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u26668 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u26668 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u26668_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u26669 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u26670_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u26670 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u26670 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u26670_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u26671_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u26671 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u26671 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u26671_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u26672 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u26673_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u26673 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u26673 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u26673_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u26674_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u26674 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u26674 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u26674_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u26675 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u26676_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u26676 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u26676 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u26676_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u26677_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u26677 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u26677 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u26677_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u26678 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u26679_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u26679 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u26679 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u26679_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u26680_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u26680 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u26680 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u26680_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u26681 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u26682_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u26682 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u26682 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u26682_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u26683_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u26683 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u26683 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u26683_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u26684 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u26685_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u26685 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u26685 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u26685_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u26686_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u26686 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u26686 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u26686_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u26687 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u26688_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u26688 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u26688 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u26688_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u26689_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u26689 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u26689 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u26689_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u26690_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u26690 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u26690 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u26690_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u26691_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u26691 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u26691 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u26691_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u26692_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u26692 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u26692 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u26692_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u26693_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u26693 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u26693 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u26693_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u26694 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u26695_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u26695 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u26695 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u26695_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u26696_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u26696 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u26696 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u26696_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u26697 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u26698_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u26698 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u26698 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u26698_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u26699_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u26699 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u26699 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u26699_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u26700 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u26701_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u26701 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u26701 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u26701_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u26702_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u26702 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u26702 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u26702_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u26703_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1259px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. }
  1737. #u26703 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:50px;
  1742. width:1259px;
  1743. height:1180px;
  1744. display:flex;
  1745. }
  1746. #u26703 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u26703_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u26704_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:73px;
  1765. height:50px;
  1766. background:inherit;
  1767. background-color:rgba(255, 255, 255, 0);
  1768. border:none;
  1769. border-left:0px;
  1770. border-top:0px;
  1771. border-right:0px;
  1772. border-radius:0px;
  1773. border-bottom-right-radius:0px;
  1774. border-bottom-left-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1779. font-weight:400;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u26704 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:349px;
  1787. top:52px;
  1788. width:73px;
  1789. height:50px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:18px;
  1795. }
  1796. #u26704 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u26704_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u26705 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:352px;
  1812. top:312px;
  1813. width:1215px;
  1814. height:366px;
  1815. }
  1816. #u26706_img {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:121px;
  1822. height:39px;
  1823. }
  1824. #u26706 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:121px;
  1830. height:39px;
  1831. display:flex;
  1832. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:12px;
  1836. color:#FFFFFF;
  1837. }
  1838. #u26706 .text {
  1839. position:absolute;
  1840. align-self:center;
  1841. padding:2px 2px 2px 0px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u26706_text {
  1846. border-width:0px;
  1847. word-wrap:break-word;
  1848. text-transform:none;
  1849. }
  1850. #u26707_img {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:121px;
  1856. height:39px;
  1857. }
  1858. #u26707 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:121px;
  1862. top:0px;
  1863. width:121px;
  1864. height:39px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:12px;
  1870. color:#FFFFFF;
  1871. }
  1872. #u26707 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u26707_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. }
  1884. #u26708_img {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:121px;
  1890. height:39px;
  1891. }
  1892. #u26708 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:242px;
  1896. top:0px;
  1897. width:121px;
  1898. height:39px;
  1899. display:flex;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:12px;
  1904. color:#FFFFFF;
  1905. }
  1906. #u26708 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u26708_text {
  1914. border-width:0px;
  1915. word-wrap:break-word;
  1916. text-transform:none;
  1917. }
  1918. #u26709_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:121px;
  1924. height:39px;
  1925. }
  1926. #u26709 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:363px;
  1930. top:0px;
  1931. width:121px;
  1932. height:39px;
  1933. display:flex;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:12px;
  1938. color:#FFFFFF;
  1939. }
  1940. #u26709 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u26709_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u26710_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:121px;
  1958. height:39px;
  1959. }
  1960. #u26710 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:484px;
  1964. top:0px;
  1965. width:121px;
  1966. height:39px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. color:#FFFFFF;
  1973. }
  1974. #u26710 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u26710_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u26711_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:121px;
  1992. height:39px;
  1993. }
  1994. #u26711 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:605px;
  1998. top:0px;
  1999. width:121px;
  2000. height:39px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:12px;
  2006. color:#FFFFFF;
  2007. }
  2008. #u26711 .text {
  2009. position:absolute;
  2010. align-self:center;
  2011. padding:2px 2px 2px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u26711_text {
  2016. border-width:0px;
  2017. word-wrap:break-word;
  2018. text-transform:none;
  2019. }
  2020. #u26712_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:121px;
  2026. height:39px;
  2027. }
  2028. #u26712 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:726px;
  2032. top:0px;
  2033. width:121px;
  2034. height:39px;
  2035. display:flex;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u26712 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u26712_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. }
  2054. #u26713_img {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:121px;
  2060. height:39px;
  2061. }
  2062. #u26713 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:847px;
  2066. top:0px;
  2067. width:121px;
  2068. height:39px;
  2069. display:flex;
  2070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:12px;
  2074. color:#FFFFFF;
  2075. }
  2076. #u26713 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 2px 2px 0px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u26713_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. }
  2088. #u26714_img {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:121px;
  2094. height:39px;
  2095. }
  2096. #u26714 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:968px;
  2100. top:0px;
  2101. width:121px;
  2102. height:39px;
  2103. display:flex;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:12px;
  2108. color:#FFFFFF;
  2109. }
  2110. #u26714 .text {
  2111. position:absolute;
  2112. align-self:center;
  2113. padding:2px 2px 2px 0px;
  2114. box-sizing:border-box;
  2115. width:100%;
  2116. }
  2117. #u26714_text {
  2118. border-width:0px;
  2119. word-wrap:break-word;
  2120. text-transform:none;
  2121. }
  2122. #u26715_img {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:0px;
  2127. width:126px;
  2128. height:39px;
  2129. }
  2130. #u26715 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:1089px;
  2134. top:0px;
  2135. width:126px;
  2136. height:39px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:12px;
  2142. color:#FFFFFF;
  2143. }
  2144. #u26715 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:2px 2px 2px 0px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u26715_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. }
  2156. #u26716_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:121px;
  2162. height:38px;
  2163. }
  2164. #u26716 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:39px;
  2169. width:121px;
  2170. height:38px;
  2171. display:flex;
  2172. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:12px;
  2176. }
  2177. #u26716 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 2px 2px 0px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u26716_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u26717_img {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:121px;
  2196. height:38px;
  2197. }
  2198. #u26717 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:121px;
  2202. top:39px;
  2203. width:121px;
  2204. height:38px;
  2205. display:flex;
  2206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:12px;
  2210. }
  2211. #u26717 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:2px 2px 2px 0px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u26717_text {
  2219. border-width:0px;
  2220. word-wrap:break-word;
  2221. text-transform:none;
  2222. }
  2223. #u26718_img {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:121px;
  2229. height:38px;
  2230. }
  2231. #u26718 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:242px;
  2235. top:39px;
  2236. width:121px;
  2237. height:38px;
  2238. display:flex;
  2239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:12px;
  2243. }
  2244. #u26718 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u26718_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. visibility:hidden;
  2256. }
  2257. #u26719_img {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:121px;
  2263. height:38px;
  2264. }
  2265. #u26719 {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:363px;
  2269. top:39px;
  2270. width:121px;
  2271. height:38px;
  2272. display:flex;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:12px;
  2277. }
  2278. #u26719 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 2px 2px 0px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u26719_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. }
  2290. #u26720_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:121px;
  2296. height:38px;
  2297. }
  2298. #u26720 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:484px;
  2302. top:39px;
  2303. width:121px;
  2304. height:38px;
  2305. display:flex;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:12px;
  2310. }
  2311. #u26720 .text {
  2312. position:absolute;
  2313. align-self:center;
  2314. padding:2px 2px 2px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u26720_text {
  2319. border-width:0px;
  2320. word-wrap:break-word;
  2321. text-transform:none;
  2322. }
  2323. #u26721_img {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:121px;
  2329. height:38px;
  2330. }
  2331. #u26721 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:605px;
  2335. top:39px;
  2336. width:121px;
  2337. height:38px;
  2338. display:flex;
  2339. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2340. font-weight:400;
  2341. font-style:normal;
  2342. font-size:12px;
  2343. }
  2344. #u26721 .text {
  2345. position:absolute;
  2346. align-self:center;
  2347. padding:2px 2px 2px 0px;
  2348. box-sizing:border-box;
  2349. width:100%;
  2350. }
  2351. #u26721_text {
  2352. border-width:0px;
  2353. word-wrap:break-word;
  2354. text-transform:none;
  2355. visibility:hidden;
  2356. }
  2357. #u26722_img {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:0px;
  2361. top:0px;
  2362. width:121px;
  2363. height:38px;
  2364. }
  2365. #u26722 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:726px;
  2369. top:39px;
  2370. width:121px;
  2371. height:38px;
  2372. display:flex;
  2373. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:12px;
  2377. }
  2378. #u26722 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:2px 2px 2px 0px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u26722_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. visibility:hidden;
  2390. }
  2391. #u26723_img {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:121px;
  2397. height:38px;
  2398. }
  2399. #u26723 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:847px;
  2403. top:39px;
  2404. width:121px;
  2405. height:38px;
  2406. display:flex;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:12px;
  2411. }
  2412. #u26723 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:2px 2px 2px 0px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u26723_text {
  2420. border-width:0px;
  2421. word-wrap:break-word;
  2422. text-transform:none;
  2423. visibility:hidden;
  2424. }
  2425. #u26724_img {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:121px;
  2431. height:38px;
  2432. }
  2433. #u26724 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:968px;
  2437. top:39px;
  2438. width:121px;
  2439. height:38px;
  2440. display:flex;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. }
  2446. #u26724 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u26724_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u26725_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:126px;
  2465. height:38px;
  2466. }
  2467. #u26725 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:1089px;
  2471. top:39px;
  2472. width:126px;
  2473. height:38px;
  2474. display:flex;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. color:#1890FF;
  2480. }
  2481. #u26725 .text {
  2482. position:absolute;
  2483. align-self:center;
  2484. padding:2px 2px 2px 0px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u26725_text {
  2489. border-width:0px;
  2490. word-wrap:break-word;
  2491. text-transform:none;
  2492. }
  2493. #u26726_img {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:121px;
  2499. height:38px;
  2500. }
  2501. #u26726 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:77px;
  2506. width:121px;
  2507. height:38px;
  2508. display:flex;
  2509. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:12px;
  2513. }
  2514. #u26726 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 2px 2px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u26726_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u26727_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:121px;
  2533. height:38px;
  2534. }
  2535. #u26727 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:121px;
  2539. top:77px;
  2540. width:121px;
  2541. height:38px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. }
  2548. #u26727 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 2px 2px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u26727_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u26728_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:121px;
  2567. height:38px;
  2568. }
  2569. #u26728 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:242px;
  2573. top:77px;
  2574. width:121px;
  2575. height:38px;
  2576. display:flex;
  2577. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. }
  2582. #u26728 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:2px 2px 2px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u26728_text {
  2590. border-width:0px;
  2591. word-wrap:break-word;
  2592. text-transform:none;
  2593. visibility:hidden;
  2594. }
  2595. #u26729_img {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:121px;
  2601. height:38px;
  2602. }
  2603. #u26729 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:363px;
  2607. top:77px;
  2608. width:121px;
  2609. height:38px;
  2610. display:flex;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:12px;
  2615. }
  2616. #u26729 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 2px 2px 0px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u26729_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. }
  2628. #u26730_img {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:121px;
  2634. height:38px;
  2635. }
  2636. #u26730 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:484px;
  2640. top:77px;
  2641. width:121px;
  2642. height:38px;
  2643. display:flex;
  2644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2645. font-weight:400;
  2646. font-style:normal;
  2647. font-size:12px;
  2648. }
  2649. #u26730 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 0px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u26730_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. }
  2661. #u26731_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:121px;
  2667. height:38px;
  2668. }
  2669. #u26731 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:605px;
  2673. top:77px;
  2674. width:121px;
  2675. height:38px;
  2676. display:flex;
  2677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:12px;
  2681. }
  2682. #u26731 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u26731_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u26732_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:121px;
  2701. height:38px;
  2702. }
  2703. #u26732 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:726px;
  2707. top:77px;
  2708. width:121px;
  2709. height:38px;
  2710. display:flex;
  2711. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:12px;
  2715. }
  2716. #u26732 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 0px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u26732_text {
  2724. border-width:0px;
  2725. word-wrap:break-word;
  2726. text-transform:none;
  2727. visibility:hidden;
  2728. }
  2729. #u26733_img {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:121px;
  2735. height:38px;
  2736. }
  2737. #u26733 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:847px;
  2741. top:77px;
  2742. width:121px;
  2743. height:38px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. }
  2750. #u26733 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u26733_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u26734_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:121px;
  2769. height:38px;
  2770. }
  2771. #u26734 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:968px;
  2775. top:77px;
  2776. width:121px;
  2777. height:38px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. }
  2784. #u26734 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 0px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u26734_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u26735_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:126px;
  2803. height:38px;
  2804. }
  2805. #u26735 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:1089px;
  2809. top:77px;
  2810. width:126px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:12px;
  2817. color:#333333;
  2818. }
  2819. #u26735 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 0px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u26735_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. }
  2831. #u26736_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:121px;
  2837. height:38px;
  2838. }
  2839. #u26736 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:115px;
  2844. width:121px;
  2845. height:38px;
  2846. display:flex;
  2847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:12px;
  2851. }
  2852. #u26736 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 0px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u26736_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. visibility:hidden;
  2864. }
  2865. #u26737_img {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:121px;
  2871. height:38px;
  2872. }
  2873. #u26737 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:121px;
  2877. top:115px;
  2878. width:121px;
  2879. height:38px;
  2880. display:flex;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. }
  2886. #u26737 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 0px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u26737_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u26738_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:121px;
  2905. height:38px;
  2906. }
  2907. #u26738 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:242px;
  2911. top:115px;
  2912. width:121px;
  2913. height:38px;
  2914. display:flex;
  2915. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. }
  2920. #u26738 .text {
  2921. position:absolute;
  2922. align-self:center;
  2923. padding:2px 2px 2px 0px;
  2924. box-sizing:border-box;
  2925. width:100%;
  2926. }
  2927. #u26738_text {
  2928. border-width:0px;
  2929. word-wrap:break-word;
  2930. text-transform:none;
  2931. visibility:hidden;
  2932. }
  2933. #u26739_img {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:121px;
  2939. height:38px;
  2940. }
  2941. #u26739 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:363px;
  2945. top:115px;
  2946. width:121px;
  2947. height:38px;
  2948. display:flex;
  2949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:12px;
  2953. }
  2954. #u26739 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:2px 2px 2px 0px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u26739_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. visibility:hidden;
  2966. }
  2967. #u26740_img {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:121px;
  2973. height:38px;
  2974. }
  2975. #u26740 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:484px;
  2979. top:115px;
  2980. width:121px;
  2981. height:38px;
  2982. display:flex;
  2983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:12px;
  2987. }
  2988. #u26740 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 0px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u26740_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. }
  3000. #u26741_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:121px;
  3006. height:38px;
  3007. }
  3008. #u26741 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:605px;
  3012. top:115px;
  3013. width:121px;
  3014. height:38px;
  3015. display:flex;
  3016. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:12px;
  3020. }
  3021. #u26741 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u26741_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u26742_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:121px;
  3040. height:38px;
  3041. }
  3042. #u26742 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:726px;
  3046. top:115px;
  3047. width:121px;
  3048. height:38px;
  3049. display:flex;
  3050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:12px;
  3054. }
  3055. #u26742 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 0px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u26742_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u26743_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:121px;
  3074. height:38px;
  3075. }
  3076. #u26743 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:847px;
  3080. top:115px;
  3081. width:121px;
  3082. height:38px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. }
  3089. #u26743 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 0px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u26743_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. visibility:hidden;
  3101. }
  3102. #u26744_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:121px;
  3108. height:38px;
  3109. }
  3110. #u26744 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:968px;
  3114. top:115px;
  3115. width:121px;
  3116. height:38px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:12px;
  3122. }
  3123. #u26744 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u26744_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u26745_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:126px;
  3142. height:38px;
  3143. }
  3144. #u26745 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:1089px;
  3148. top:115px;
  3149. width:126px;
  3150. height:38px;
  3151. display:flex;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:12px;
  3156. }
  3157. #u26745 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u26745_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. }
  3169. #u26746_img {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:121px;
  3175. height:38px;
  3176. }
  3177. #u26746 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:153px;
  3182. width:121px;
  3183. height:38px;
  3184. display:flex;
  3185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:12px;
  3189. }
  3190. #u26746 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 0px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u26746_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u26747_img {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:121px;
  3209. height:38px;
  3210. }
  3211. #u26747 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:121px;
  3215. top:153px;
  3216. width:121px;
  3217. height:38px;
  3218. display:flex;
  3219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:12px;
  3223. }
  3224. #u26747 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 0px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u26747_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u26748_img {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:121px;
  3243. height:38px;
  3244. }
  3245. #u26748 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:242px;
  3249. top:153px;
  3250. width:121px;
  3251. height:38px;
  3252. display:flex;
  3253. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3254. font-weight:400;
  3255. font-style:normal;
  3256. font-size:12px;
  3257. }
  3258. #u26748 .text {
  3259. position:absolute;
  3260. align-self:center;
  3261. padding:2px 2px 2px 0px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u26748_text {
  3266. border-width:0px;
  3267. word-wrap:break-word;
  3268. text-transform:none;
  3269. visibility:hidden;
  3270. }
  3271. #u26749_img {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:121px;
  3277. height:38px;
  3278. }
  3279. #u26749 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:363px;
  3283. top:153px;
  3284. width:121px;
  3285. height:38px;
  3286. display:flex;
  3287. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. }
  3292. #u26749 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 2px 2px 0px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u26749_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. visibility:hidden;
  3304. }
  3305. #u26750_img {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:121px;
  3311. height:38px;
  3312. }
  3313. #u26750 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:484px;
  3317. top:153px;
  3318. width:121px;
  3319. height:38px;
  3320. display:flex;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:12px;
  3325. }
  3326. #u26750 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 0px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u26750_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u26751_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:121px;
  3345. height:38px;
  3346. }
  3347. #u26751 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:605px;
  3351. top:153px;
  3352. width:121px;
  3353. height:38px;
  3354. display:flex;
  3355. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:12px;
  3359. }
  3360. #u26751 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u26751_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. visibility:hidden;
  3372. }
  3373. #u26752_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:121px;
  3379. height:38px;
  3380. }
  3381. #u26752 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:726px;
  3385. top:153px;
  3386. width:121px;
  3387. height:38px;
  3388. display:flex;
  3389. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:12px;
  3393. }
  3394. #u26752 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:2px 2px 2px 0px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u26752_text {
  3402. border-width:0px;
  3403. word-wrap:break-word;
  3404. text-transform:none;
  3405. visibility:hidden;
  3406. }
  3407. #u26753_img {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:121px;
  3413. height:38px;
  3414. }
  3415. #u26753 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:847px;
  3419. top:153px;
  3420. width:121px;
  3421. height:38px;
  3422. display:flex;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:12px;
  3427. }
  3428. #u26753 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 0px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u26753_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. visibility:hidden;
  3440. }
  3441. #u26754_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:121px;
  3447. height:38px;
  3448. }
  3449. #u26754 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:968px;
  3453. top:153px;
  3454. width:121px;
  3455. height:38px;
  3456. display:flex;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:12px;
  3461. }
  3462. #u26754 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 2px 2px 0px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u26754_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. visibility:hidden;
  3474. }
  3475. #u26755_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:126px;
  3481. height:38px;
  3482. }
  3483. #u26755 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:1089px;
  3487. top:153px;
  3488. width:126px;
  3489. height:38px;
  3490. display:flex;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:12px;
  3495. color:#1890FF;
  3496. }
  3497. #u26755 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u26755_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u26756_img {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:121px;
  3516. height:35px;
  3517. }
  3518. #u26756 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:191px;
  3523. width:121px;
  3524. height:35px;
  3525. display:flex;
  3526. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3527. font-weight:400;
  3528. font-style:normal;
  3529. font-size:12px;
  3530. color:#606266;
  3531. }
  3532. #u26756 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u26756_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u26757_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:121px;
  3551. height:35px;
  3552. }
  3553. #u26757 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:121px;
  3557. top:191px;
  3558. width:121px;
  3559. height:35px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. color:#606266;
  3566. }
  3567. #u26757 .text {
  3568. position:absolute;
  3569. align-self:center;
  3570. padding:2px 2px 2px 0px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u26757_text {
  3575. border-width:0px;
  3576. word-wrap:break-word;
  3577. text-transform:none;
  3578. visibility:hidden;
  3579. }
  3580. #u26758_img {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:121px;
  3586. height:35px;
  3587. }
  3588. #u26758 {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:242px;
  3592. top:191px;
  3593. width:121px;
  3594. height:35px;
  3595. display:flex;
  3596. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3597. font-weight:400;
  3598. font-style:normal;
  3599. font-size:12px;
  3600. color:#606266;
  3601. }
  3602. #u26758 .text {
  3603. position:absolute;
  3604. align-self:center;
  3605. padding:2px 2px 2px 0px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u26758_text {
  3610. border-width:0px;
  3611. word-wrap:break-word;
  3612. text-transform:none;
  3613. visibility:hidden;
  3614. }
  3615. #u26759_img {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:0px;
  3619. top:0px;
  3620. width:121px;
  3621. height:35px;
  3622. }
  3623. #u26759 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:363px;
  3627. top:191px;
  3628. width:121px;
  3629. height:35px;
  3630. display:flex;
  3631. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:12px;
  3635. color:#606266;
  3636. }
  3637. #u26759 .text {
  3638. position:absolute;
  3639. align-self:center;
  3640. padding:2px 2px 2px 0px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u26759_text {
  3645. border-width:0px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. visibility:hidden;
  3649. }
  3650. #u26760_img {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:121px;
  3656. height:35px;
  3657. }
  3658. #u26760 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:484px;
  3662. top:191px;
  3663. width:121px;
  3664. height:35px;
  3665. display:flex;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:12px;
  3670. color:#606266;
  3671. }
  3672. #u26760 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:2px 2px 2px 0px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u26760_text {
  3680. border-width:0px;
  3681. word-wrap:break-word;
  3682. text-transform:none;
  3683. visibility:hidden;
  3684. }
  3685. #u26761_img {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:121px;
  3691. height:35px;
  3692. }
  3693. #u26761 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:605px;
  3697. top:191px;
  3698. width:121px;
  3699. height:35px;
  3700. display:flex;
  3701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:12px;
  3705. color:#606266;
  3706. }
  3707. #u26761 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 0px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u26761_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u26762_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:121px;
  3726. height:35px;
  3727. }
  3728. #u26762 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:726px;
  3732. top:191px;
  3733. width:121px;
  3734. height:35px;
  3735. display:flex;
  3736. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. font-size:12px;
  3740. color:#606266;
  3741. }
  3742. #u26762 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 0px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u26762_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. visibility:hidden;
  3754. }
  3755. #u26763_img {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:121px;
  3761. height:35px;
  3762. }
  3763. #u26763 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:847px;
  3767. top:191px;
  3768. width:121px;
  3769. height:35px;
  3770. display:flex;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:12px;
  3775. color:#606266;
  3776. }
  3777. #u26763 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 0px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u26763_text {
  3785. border-width:0px;
  3786. word-wrap:break-word;
  3787. text-transform:none;
  3788. visibility:hidden;
  3789. }
  3790. #u26764_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:121px;
  3796. height:35px;
  3797. }
  3798. #u26764 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:968px;
  3802. top:191px;
  3803. width:121px;
  3804. height:35px;
  3805. display:flex;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. color:#606266;
  3811. }
  3812. #u26764 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 2px 2px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u26764_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. visibility:hidden;
  3824. }
  3825. #u26765_img {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:126px;
  3831. height:35px;
  3832. }
  3833. #u26765 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:1089px;
  3837. top:191px;
  3838. width:126px;
  3839. height:35px;
  3840. display:flex;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:12px;
  3845. color:#02A7F0;
  3846. }
  3847. #u26765 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u26765_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u26766_img {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:121px;
  3866. height:35px;
  3867. }
  3868. #u26766 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:226px;
  3873. width:121px;
  3874. height:35px;
  3875. display:flex;
  3876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:12px;
  3880. color:#606266;
  3881. }
  3882. #u26766 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 0px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u26766_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u26767_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:121px;
  3901. height:35px;
  3902. }
  3903. #u26767 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:121px;
  3907. top:226px;
  3908. width:121px;
  3909. height:35px;
  3910. display:flex;
  3911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:12px;
  3915. color:#606266;
  3916. }
  3917. #u26767 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:2px 2px 2px 0px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u26767_text {
  3925. border-width:0px;
  3926. word-wrap:break-word;
  3927. text-transform:none;
  3928. visibility:hidden;
  3929. }
  3930. #u26768_img {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:121px;
  3936. height:35px;
  3937. }
  3938. #u26768 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:242px;
  3942. top:226px;
  3943. width:121px;
  3944. height:35px;
  3945. display:flex;
  3946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:12px;
  3950. color:#606266;
  3951. }
  3952. #u26768 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 0px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u26768_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u26769_img {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:121px;
  3971. height:35px;
  3972. }
  3973. #u26769 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:363px;
  3977. top:226px;
  3978. width:121px;
  3979. height:35px;
  3980. display:flex;
  3981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3982. font-weight:400;
  3983. font-style:normal;
  3984. font-size:12px;
  3985. color:#606266;
  3986. }
  3987. #u26769 .text {
  3988. position:absolute;
  3989. align-self:center;
  3990. padding:2px 2px 2px 0px;
  3991. box-sizing:border-box;
  3992. width:100%;
  3993. }
  3994. #u26769_text {
  3995. border-width:0px;
  3996. word-wrap:break-word;
  3997. text-transform:none;
  3998. visibility:hidden;
  3999. }
  4000. #u26770_img {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:121px;
  4006. height:35px;
  4007. }
  4008. #u26770 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:484px;
  4012. top:226px;
  4013. width:121px;
  4014. height:35px;
  4015. display:flex;
  4016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:12px;
  4020. color:#606266;
  4021. }
  4022. #u26770 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:2px 2px 2px 0px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u26770_text {
  4030. border-width:0px;
  4031. word-wrap:break-word;
  4032. text-transform:none;
  4033. visibility:hidden;
  4034. }
  4035. #u26771_img {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:121px;
  4041. height:35px;
  4042. }
  4043. #u26771 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:605px;
  4047. top:226px;
  4048. width:121px;
  4049. height:35px;
  4050. display:flex;
  4051. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:12px;
  4055. color:#606266;
  4056. }
  4057. #u26771 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 0px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u26771_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u26772_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:121px;
  4076. height:35px;
  4077. }
  4078. #u26772 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:726px;
  4082. top:226px;
  4083. width:121px;
  4084. height:35px;
  4085. display:flex;
  4086. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4087. font-weight:400;
  4088. font-style:normal;
  4089. font-size:12px;
  4090. color:#606266;
  4091. }
  4092. #u26772 .text {
  4093. position:absolute;
  4094. align-self:center;
  4095. padding:2px 2px 2px 0px;
  4096. box-sizing:border-box;
  4097. width:100%;
  4098. }
  4099. #u26772_text {
  4100. border-width:0px;
  4101. word-wrap:break-word;
  4102. text-transform:none;
  4103. visibility:hidden;
  4104. }
  4105. #u26773_img {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:121px;
  4111. height:35px;
  4112. }
  4113. #u26773 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:847px;
  4117. top:226px;
  4118. width:121px;
  4119. height:35px;
  4120. display:flex;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:12px;
  4125. color:#606266;
  4126. }
  4127. #u26773 .text {
  4128. position:absolute;
  4129. align-self:center;
  4130. padding:2px 2px 2px 0px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u26773_text {
  4135. border-width:0px;
  4136. word-wrap:break-word;
  4137. text-transform:none;
  4138. visibility:hidden;
  4139. }
  4140. #u26774_img {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:121px;
  4146. height:35px;
  4147. }
  4148. #u26774 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:968px;
  4152. top:226px;
  4153. width:121px;
  4154. height:35px;
  4155. display:flex;
  4156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4157. font-weight:400;
  4158. font-style:normal;
  4159. font-size:12px;
  4160. color:#606266;
  4161. }
  4162. #u26774 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:2px 2px 2px 0px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u26774_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. visibility:hidden;
  4174. }
  4175. #u26775_img {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:126px;
  4181. height:35px;
  4182. }
  4183. #u26775 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:1089px;
  4187. top:226px;
  4188. width:126px;
  4189. height:35px;
  4190. display:flex;
  4191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. font-size:12px;
  4195. color:#02A7F0;
  4196. }
  4197. #u26775 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:2px 2px 2px 0px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u26775_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u26776_img {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:121px;
  4216. height:35px;
  4217. }
  4218. #u26776 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:261px;
  4223. width:121px;
  4224. height:35px;
  4225. display:flex;
  4226. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:12px;
  4230. color:#606266;
  4231. }
  4232. #u26776 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:2px 2px 2px 0px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u26776_text {
  4240. border-width:0px;
  4241. word-wrap:break-word;
  4242. text-transform:none;
  4243. visibility:hidden;
  4244. }
  4245. #u26777_img {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:121px;
  4251. height:35px;
  4252. }
  4253. #u26777 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:121px;
  4257. top:261px;
  4258. width:121px;
  4259. height:35px;
  4260. display:flex;
  4261. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:12px;
  4265. color:#606266;
  4266. }
  4267. #u26777 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u26777_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u26778_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:121px;
  4286. height:35px;
  4287. }
  4288. #u26778 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:242px;
  4292. top:261px;
  4293. width:121px;
  4294. height:35px;
  4295. display:flex;
  4296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:12px;
  4300. color:#606266;
  4301. }
  4302. #u26778 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:2px 2px 2px 0px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u26778_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u26779_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:121px;
  4321. height:35px;
  4322. }
  4323. #u26779 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:363px;
  4327. top:261px;
  4328. width:121px;
  4329. height:35px;
  4330. display:flex;
  4331. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:12px;
  4335. color:#606266;
  4336. }
  4337. #u26779 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 0px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u26779_text {
  4345. border-width:0px;
  4346. word-wrap:break-word;
  4347. text-transform:none;
  4348. visibility:hidden;
  4349. }
  4350. #u26780_img {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:0px;
  4355. width:121px;
  4356. height:35px;
  4357. }
  4358. #u26780 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:484px;
  4362. top:261px;
  4363. width:121px;
  4364. height:35px;
  4365. display:flex;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. color:#606266;
  4371. }
  4372. #u26780 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 0px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u26780_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. visibility:hidden;
  4384. }
  4385. #u26781_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:121px;
  4391. height:35px;
  4392. }
  4393. #u26781 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:605px;
  4397. top:261px;
  4398. width:121px;
  4399. height:35px;
  4400. display:flex;
  4401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:12px;
  4405. color:#606266;
  4406. }
  4407. #u26781 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 0px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u26781_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u26782_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:121px;
  4426. height:35px;
  4427. }
  4428. #u26782 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:726px;
  4432. top:261px;
  4433. width:121px;
  4434. height:35px;
  4435. display:flex;
  4436. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:12px;
  4440. color:#606266;
  4441. }
  4442. #u26782 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 0px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u26782_text {
  4450. border-width:0px;
  4451. word-wrap:break-word;
  4452. text-transform:none;
  4453. visibility:hidden;
  4454. }
  4455. #u26783_img {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:121px;
  4461. height:35px;
  4462. }
  4463. #u26783 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:847px;
  4467. top:261px;
  4468. width:121px;
  4469. height:35px;
  4470. display:flex;
  4471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:12px;
  4475. color:#606266;
  4476. }
  4477. #u26783 .text {
  4478. position:absolute;
  4479. align-self:center;
  4480. padding:2px 2px 2px 0px;
  4481. box-sizing:border-box;
  4482. width:100%;
  4483. }
  4484. #u26783_text {
  4485. border-width:0px;
  4486. word-wrap:break-word;
  4487. text-transform:none;
  4488. visibility:hidden;
  4489. }
  4490. #u26784_img {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:121px;
  4496. height:35px;
  4497. }
  4498. #u26784 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:968px;
  4502. top:261px;
  4503. width:121px;
  4504. height:35px;
  4505. display:flex;
  4506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. color:#606266;
  4511. }
  4512. #u26784 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u26784_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. visibility:hidden;
  4524. }
  4525. #u26785_img {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:126px;
  4531. height:35px;
  4532. }
  4533. #u26785 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:1089px;
  4537. top:261px;
  4538. width:126px;
  4539. height:35px;
  4540. display:flex;
  4541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:12px;
  4545. color:#02A7F0;
  4546. }
  4547. #u26785 .text {
  4548. position:absolute;
  4549. align-self:center;
  4550. padding:2px 2px 2px 0px;
  4551. box-sizing:border-box;
  4552. width:100%;
  4553. }
  4554. #u26785_text {
  4555. border-width:0px;
  4556. word-wrap:break-word;
  4557. text-transform:none;
  4558. visibility:hidden;
  4559. }
  4560. #u26786_img {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:121px;
  4566. height:35px;
  4567. }
  4568. #u26786 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:296px;
  4573. width:121px;
  4574. height:35px;
  4575. display:flex;
  4576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:12px;
  4580. color:#606266;
  4581. }
  4582. #u26786 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:2px 2px 2px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u26786_text {
  4590. border-width:0px;
  4591. word-wrap:break-word;
  4592. text-transform:none;
  4593. visibility:hidden;
  4594. }
  4595. #u26787_img {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:121px;
  4601. height:35px;
  4602. }
  4603. #u26787 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:121px;
  4607. top:296px;
  4608. width:121px;
  4609. height:35px;
  4610. display:flex;
  4611. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:12px;
  4615. color:#606266;
  4616. }
  4617. #u26787 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 0px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u26787_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u26788_img {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:121px;
  4636. height:35px;
  4637. }
  4638. #u26788 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:242px;
  4642. top:296px;
  4643. width:121px;
  4644. height:35px;
  4645. display:flex;
  4646. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:12px;
  4650. color:#606266;
  4651. }
  4652. #u26788 .text {
  4653. position:absolute;
  4654. align-self:center;
  4655. padding:2px 2px 2px 0px;
  4656. box-sizing:border-box;
  4657. width:100%;
  4658. }
  4659. #u26788_text {
  4660. border-width:0px;
  4661. word-wrap:break-word;
  4662. text-transform:none;
  4663. visibility:hidden;
  4664. }
  4665. #u26789_img {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:121px;
  4671. height:35px;
  4672. }
  4673. #u26789 {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:363px;
  4677. top:296px;
  4678. width:121px;
  4679. height:35px;
  4680. display:flex;
  4681. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:12px;
  4685. color:#606266;
  4686. }
  4687. #u26789 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:2px 2px 2px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u26789_text {
  4695. border-width:0px;
  4696. word-wrap:break-word;
  4697. text-transform:none;
  4698. visibility:hidden;
  4699. }
  4700. #u26790_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:121px;
  4706. height:35px;
  4707. }
  4708. #u26790 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:484px;
  4712. top:296px;
  4713. width:121px;
  4714. height:35px;
  4715. display:flex;
  4716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:12px;
  4720. color:#606266;
  4721. }
  4722. #u26790 .text {
  4723. position:absolute;
  4724. align-self:center;
  4725. padding:2px 2px 2px 0px;
  4726. box-sizing:border-box;
  4727. width:100%;
  4728. }
  4729. #u26790_text {
  4730. border-width:0px;
  4731. word-wrap:break-word;
  4732. text-transform:none;
  4733. visibility:hidden;
  4734. }
  4735. #u26791_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:121px;
  4741. height:35px;
  4742. }
  4743. #u26791 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:605px;
  4747. top:296px;
  4748. width:121px;
  4749. height:35px;
  4750. display:flex;
  4751. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4752. font-weight:400;
  4753. font-style:normal;
  4754. font-size:12px;
  4755. color:#606266;
  4756. }
  4757. #u26791 .text {
  4758. position:absolute;
  4759. align-self:center;
  4760. padding:2px 2px 2px 0px;
  4761. box-sizing:border-box;
  4762. width:100%;
  4763. }
  4764. #u26791_text {
  4765. border-width:0px;
  4766. word-wrap:break-word;
  4767. text-transform:none;
  4768. visibility:hidden;
  4769. }
  4770. #u26792_img {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:0px;
  4774. top:0px;
  4775. width:121px;
  4776. height:35px;
  4777. }
  4778. #u26792 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:726px;
  4782. top:296px;
  4783. width:121px;
  4784. height:35px;
  4785. display:flex;
  4786. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:12px;
  4790. color:#606266;
  4791. }
  4792. #u26792 .text {
  4793. position:absolute;
  4794. align-self:center;
  4795. padding:2px 2px 2px 0px;
  4796. box-sizing:border-box;
  4797. width:100%;
  4798. }
  4799. #u26792_text {
  4800. border-width:0px;
  4801. word-wrap:break-word;
  4802. text-transform:none;
  4803. visibility:hidden;
  4804. }
  4805. #u26793_img {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:121px;
  4811. height:35px;
  4812. }
  4813. #u26793 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:847px;
  4817. top:296px;
  4818. width:121px;
  4819. height:35px;
  4820. display:flex;
  4821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. font-size:12px;
  4825. color:#606266;
  4826. }
  4827. #u26793 .text {
  4828. position:absolute;
  4829. align-self:center;
  4830. padding:2px 2px 2px 0px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u26793_text {
  4835. border-width:0px;
  4836. word-wrap:break-word;
  4837. text-transform:none;
  4838. visibility:hidden;
  4839. }
  4840. #u26794_img {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:121px;
  4846. height:35px;
  4847. }
  4848. #u26794 {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:968px;
  4852. top:296px;
  4853. width:121px;
  4854. height:35px;
  4855. display:flex;
  4856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:12px;
  4860. color:#606266;
  4861. }
  4862. #u26794 .text {
  4863. position:absolute;
  4864. align-self:center;
  4865. padding:2px 2px 2px 0px;
  4866. box-sizing:border-box;
  4867. width:100%;
  4868. }
  4869. #u26794_text {
  4870. border-width:0px;
  4871. word-wrap:break-word;
  4872. text-transform:none;
  4873. visibility:hidden;
  4874. }
  4875. #u26795_img {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:126px;
  4881. height:35px;
  4882. }
  4883. #u26795 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:1089px;
  4887. top:296px;
  4888. width:126px;
  4889. height:35px;
  4890. display:flex;
  4891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. font-size:12px;
  4895. color:#02A7F0;
  4896. }
  4897. #u26795 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 0px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u26795_text {
  4905. border-width:0px;
  4906. word-wrap:break-word;
  4907. text-transform:none;
  4908. visibility:hidden;
  4909. }
  4910. #u26796_img {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:121px;
  4916. height:35px;
  4917. }
  4918. #u26796 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:331px;
  4923. width:121px;
  4924. height:35px;
  4925. display:flex;
  4926. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:12px;
  4930. color:#606266;
  4931. }
  4932. #u26796 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:2px 2px 2px 0px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u26796_text {
  4940. border-width:0px;
  4941. word-wrap:break-word;
  4942. text-transform:none;
  4943. visibility:hidden;
  4944. }
  4945. #u26797_img {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:121px;
  4951. height:35px;
  4952. }
  4953. #u26797 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:121px;
  4957. top:331px;
  4958. width:121px;
  4959. height:35px;
  4960. display:flex;
  4961. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:12px;
  4965. color:#606266;
  4966. }
  4967. #u26797 .text {
  4968. position:absolute;
  4969. align-self:center;
  4970. padding:2px 2px 2px 0px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u26797_text {
  4975. border-width:0px;
  4976. word-wrap:break-word;
  4977. text-transform:none;
  4978. visibility:hidden;
  4979. }
  4980. #u26798_img {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:121px;
  4986. height:35px;
  4987. }
  4988. #u26798 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:242px;
  4992. top:331px;
  4993. width:121px;
  4994. height:35px;
  4995. display:flex;
  4996. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:12px;
  5000. color:#606266;
  5001. }
  5002. #u26798 .text {
  5003. position:absolute;
  5004. align-self:center;
  5005. padding:2px 2px 2px 0px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u26798_text {
  5010. border-width:0px;
  5011. word-wrap:break-word;
  5012. text-transform:none;
  5013. visibility:hidden;
  5014. }
  5015. #u26799_img {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:121px;
  5021. height:35px;
  5022. }
  5023. #u26799 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:363px;
  5027. top:331px;
  5028. width:121px;
  5029. height:35px;
  5030. display:flex;
  5031. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5032. font-weight:400;
  5033. font-style:normal;
  5034. font-size:12px;
  5035. color:#606266;
  5036. }
  5037. #u26799 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 0px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u26799_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u26800_img {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:121px;
  5056. height:35px;
  5057. }
  5058. #u26800 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:484px;
  5062. top:331px;
  5063. width:121px;
  5064. height:35px;
  5065. display:flex;
  5066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:12px;
  5070. color:#606266;
  5071. }
  5072. #u26800 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 0px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u26800_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u26801_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:121px;
  5091. height:35px;
  5092. }
  5093. #u26801 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:605px;
  5097. top:331px;
  5098. width:121px;
  5099. height:35px;
  5100. display:flex;
  5101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:12px;
  5105. color:#606266;
  5106. }
  5107. #u26801 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:2px 2px 2px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u26801_text {
  5115. border-width:0px;
  5116. word-wrap:break-word;
  5117. text-transform:none;
  5118. visibility:hidden;
  5119. }
  5120. #u26802_img {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:0px;
  5124. top:0px;
  5125. width:121px;
  5126. height:35px;
  5127. }
  5128. #u26802 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:726px;
  5132. top:331px;
  5133. width:121px;
  5134. height:35px;
  5135. display:flex;
  5136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:12px;
  5140. color:#606266;
  5141. }
  5142. #u26802 .text {
  5143. position:absolute;
  5144. align-self:center;
  5145. padding:2px 2px 2px 0px;
  5146. box-sizing:border-box;
  5147. width:100%;
  5148. }
  5149. #u26802_text {
  5150. border-width:0px;
  5151. word-wrap:break-word;
  5152. text-transform:none;
  5153. visibility:hidden;
  5154. }
  5155. #u26803_img {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:121px;
  5161. height:35px;
  5162. }
  5163. #u26803 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:847px;
  5167. top:331px;
  5168. width:121px;
  5169. height:35px;
  5170. display:flex;
  5171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5172. font-weight:400;
  5173. font-style:normal;
  5174. font-size:12px;
  5175. color:#606266;
  5176. }
  5177. #u26803 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 0px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u26803_text {
  5185. border-width:0px;
  5186. word-wrap:break-word;
  5187. text-transform:none;
  5188. visibility:hidden;
  5189. }
  5190. #u26804_img {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:121px;
  5196. height:35px;
  5197. }
  5198. #u26804 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:968px;
  5202. top:331px;
  5203. width:121px;
  5204. height:35px;
  5205. display:flex;
  5206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:12px;
  5210. color:#606266;
  5211. }
  5212. #u26804 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 0px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u26804_text {
  5220. border-width:0px;
  5221. word-wrap:break-word;
  5222. text-transform:none;
  5223. visibility:hidden;
  5224. }
  5225. #u26805_img {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:126px;
  5231. height:35px;
  5232. }
  5233. #u26805 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:1089px;
  5237. top:331px;
  5238. width:126px;
  5239. height:35px;
  5240. display:flex;
  5241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:12px;
  5245. color:#02A7F0;
  5246. }
  5247. #u26805 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 0px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u26805_text {
  5255. border-width:0px;
  5256. word-wrap:break-word;
  5257. text-transform:none;
  5258. visibility:hidden;
  5259. }
  5260. #u26806 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:0px;
  5266. height:0px;
  5267. }
  5268. #u26807_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:59px;
  5274. height:30px;
  5275. background:inherit;
  5276. background-color:rgba(24, 144, 255, 1);
  5277. box-sizing:border-box;
  5278. border-width:1px;
  5279. border-style:solid;
  5280. border-color:rgba(0, 153, 255, 1);
  5281. border-radius:4px;
  5282. -moz-box-shadow:none;
  5283. -webkit-box-shadow:none;
  5284. box-shadow:none;
  5285. font-family:'Microsoft YaHei', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:14px;
  5289. color:#FFFFFF;
  5290. }
  5291. #u26807 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:652px;
  5295. top:215px;
  5296. width:59px;
  5297. height:30px;
  5298. display:flex;
  5299. font-family:'Microsoft YaHei', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:14px;
  5303. color:#FFFFFF;
  5304. }
  5305. #u26807 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:5px 15px 5px 15px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u26807_text {
  5313. border-width:0px;
  5314. white-space:nowrap;
  5315. text-transform:none;
  5316. }
  5317. #u26808_div {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:55px;
  5323. height:30px;
  5324. background:inherit;
  5325. background-color:rgba(255, 255, 255, 1);
  5326. box-sizing:border-box;
  5327. border-width:1px;
  5328. border-style:solid;
  5329. border-color:rgba(170, 170, 170, 1);
  5330. border-radius:4px;
  5331. -moz-box-shadow:none;
  5332. -webkit-box-shadow:none;
  5333. box-shadow:none;
  5334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:12px;
  5338. color:#555555;
  5339. }
  5340. #u26808 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:721px;
  5344. top:215px;
  5345. width:55px;
  5346. height:30px;
  5347. display:flex;
  5348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5349. font-weight:400;
  5350. font-style:normal;
  5351. font-size:12px;
  5352. color:#555555;
  5353. }
  5354. #u26808 .text {
  5355. position:absolute;
  5356. align-self:center;
  5357. padding:5px 15px 5px 15px;
  5358. box-sizing:border-box;
  5359. width:100%;
  5360. }
  5361. #u26808_text {
  5362. border-width:0px;
  5363. white-space:nowrap;
  5364. text-transform:none;
  5365. }
  5366. #u26809 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:0px;
  5372. height:0px;
  5373. }
  5374. #u26810_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:140px;
  5380. height:30px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 1);
  5383. box-sizing:border-box;
  5384. border-width:1px;
  5385. border-style:solid;
  5386. border-color:rgba(201, 201, 201, 1);
  5387. border-radius:4px;
  5388. -moz-box-shadow:none;
  5389. -webkit-box-shadow:none;
  5390. box-shadow:none;
  5391. font-family:'Microsoft YaHei', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:14px;
  5395. color:#CCCCCC;
  5396. text-align:left;
  5397. }
  5398. #u26810 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:802px;
  5402. top:174px;
  5403. width:140px;
  5404. height:30px;
  5405. display:flex;
  5406. font-family:'Microsoft YaHei', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:14px;
  5410. color:#CCCCCC;
  5411. text-align:left;
  5412. }
  5413. #u26810 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 8px 2px 8px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u26810_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. visibility:hidden;
  5425. }
  5426. #u26811_input {
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:127px;
  5431. height:25px;
  5432. padding:2px 2px 2px 2px;
  5433. font-family:'Microsoft YaHei', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:10px;
  5437. letter-spacing:normal;
  5438. color:#000000;
  5439. vertical-align:none;
  5440. text-align:left;
  5441. text-transform:none;
  5442. background-color:transparent;
  5443. border-color:transparent;
  5444. }
  5445. #u26811_input.disabled {
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:127px;
  5450. height:25px;
  5451. padding:2px 2px 2px 2px;
  5452. font-family:'Microsoft YaHei', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:10px;
  5456. letter-spacing:normal;
  5457. color:#000000;
  5458. vertical-align:none;
  5459. text-align:left;
  5460. text-transform:none;
  5461. background-color:transparent;
  5462. border-color:transparent;
  5463. }
  5464. #u26811_div {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:127px;
  5470. height:25px;
  5471. background:inherit;
  5472. background-color:rgba(255, 255, 255, 1);
  5473. border:none;
  5474. border-radius:0px;
  5475. -moz-box-shadow:none;
  5476. -webkit-box-shadow:none;
  5477. box-shadow:none;
  5478. font-family:'Microsoft YaHei', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:10px;
  5482. }
  5483. #u26811 {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:810px;
  5487. top:175px;
  5488. width:127px;
  5489. height:25px;
  5490. display:flex;
  5491. font-family:'Microsoft YaHei', sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:10px;
  5495. }
  5496. #u26811 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:2px 2px 2px 2px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u26811_div.disabled {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:127px;
  5509. height:25px;
  5510. background:inherit;
  5511. background-color:rgba(240, 240, 240, 1);
  5512. border:none;
  5513. border-radius:0px;
  5514. -moz-box-shadow:none;
  5515. -webkit-box-shadow:none;
  5516. box-shadow:none;
  5517. font-family:'Microsoft YaHei', sans-serif;
  5518. font-weight:400;
  5519. font-style:normal;
  5520. font-size:10px;
  5521. }
  5522. #u26811.disabled {
  5523. }
  5524. #u26812 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:0px;
  5530. height:0px;
  5531. }
  5532. #u26813_div {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:140px;
  5538. height:30px;
  5539. background:inherit;
  5540. background-color:rgba(255, 255, 255, 1);
  5541. box-sizing:border-box;
  5542. border-width:1px;
  5543. border-style:solid;
  5544. border-color:rgba(215, 215, 215, 1);
  5545. border-radius:4px;
  5546. -moz-box-shadow:none;
  5547. -webkit-box-shadow:none;
  5548. box-shadow:none;
  5549. font-size:11px;
  5550. }
  5551. #u26813 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:502px;
  5555. top:174px;
  5556. width:140px;
  5557. height:30px;
  5558. display:flex;
  5559. font-size:11px;
  5560. }
  5561. #u26813 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 2px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u26813_text {
  5569. border-width:0px;
  5570. word-wrap:break-word;
  5571. text-transform:none;
  5572. visibility:hidden;
  5573. }
  5574. #u26814_input {
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:126px;
  5579. height:23px;
  5580. padding:2px 2px 2px 2px;
  5581. font-family:'ArialMT', 'Arial', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:11px;
  5585. letter-spacing:normal;
  5586. color:#AAAAAA;
  5587. vertical-align:none;
  5588. text-align:left;
  5589. text-transform:none;
  5590. background-color:transparent;
  5591. border-color:transparent;
  5592. }
  5593. #u26814_input.disabled {
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:126px;
  5598. height:23px;
  5599. padding:2px 2px 2px 2px;
  5600. font-family:'ArialMT', 'Arial', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:11px;
  5604. letter-spacing:normal;
  5605. color:#AAAAAA;
  5606. vertical-align:none;
  5607. text-align:left;
  5608. text-transform:none;
  5609. background-color:transparent;
  5610. border-color:transparent;
  5611. }
  5612. #u26814_div {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:126px;
  5618. height:23px;
  5619. background:inherit;
  5620. background-color:rgba(255, 255, 255, 1);
  5621. border:none;
  5622. border-radius:0px;
  5623. -moz-box-shadow:none;
  5624. -webkit-box-shadow:none;
  5625. box-shadow:none;
  5626. font-size:11px;
  5627. color:#AAAAAA;
  5628. }
  5629. #u26814 {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:509px;
  5633. top:176px;
  5634. width:126px;
  5635. height:23px;
  5636. display:flex;
  5637. font-size:11px;
  5638. color:#AAAAAA;
  5639. }
  5640. #u26814 .text {
  5641. position:absolute;
  5642. align-self:flex-start;
  5643. padding:2px 2px 2px 2px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u26814_div.disabled {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:126px;
  5653. height:23px;
  5654. background:inherit;
  5655. background-color:rgba(240, 240, 240, 1);
  5656. border:none;
  5657. border-radius:0px;
  5658. -moz-box-shadow:none;
  5659. -webkit-box-shadow:none;
  5660. box-shadow:none;
  5661. font-size:11px;
  5662. color:#AAAAAA;
  5663. }
  5664. #u26814.disabled {
  5665. }
  5666. .u26814_input_option {
  5667. font-size:11px;
  5668. }
  5669. #u26815 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:0px;
  5675. height:0px;
  5676. }
  5677. #u26816_div {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:140px;
  5683. height:30px;
  5684. background:inherit;
  5685. background-color:rgba(255, 255, 255, 1);
  5686. box-sizing:border-box;
  5687. border-width:1px;
  5688. border-style:solid;
  5689. border-color:rgba(215, 215, 215, 1);
  5690. border-radius:4px;
  5691. -moz-box-shadow:none;
  5692. -webkit-box-shadow:none;
  5693. box-shadow:none;
  5694. font-size:11px;
  5695. }
  5696. #u26816 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:502px;
  5700. top:216px;
  5701. width:140px;
  5702. height:30px;
  5703. display:flex;
  5704. font-size:11px;
  5705. }
  5706. #u26816 .text {
  5707. position:absolute;
  5708. align-self:center;
  5709. padding:2px 2px 2px 2px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u26816_text {
  5714. border-width:0px;
  5715. word-wrap:break-word;
  5716. text-transform:none;
  5717. visibility:hidden;
  5718. }
  5719. #u26817_input {
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:126px;
  5724. height:23px;
  5725. padding:2px 2px 2px 2px;
  5726. font-family:'ArialMT', 'Arial', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:11px;
  5730. letter-spacing:normal;
  5731. color:#AAAAAA;
  5732. vertical-align:none;
  5733. text-align:left;
  5734. text-transform:none;
  5735. background-color:transparent;
  5736. border-color:transparent;
  5737. }
  5738. #u26817_input.disabled {
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:126px;
  5743. height:23px;
  5744. padding:2px 2px 2px 2px;
  5745. font-family:'ArialMT', 'Arial', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:11px;
  5749. letter-spacing:normal;
  5750. color:#AAAAAA;
  5751. vertical-align:none;
  5752. text-align:left;
  5753. text-transform:none;
  5754. background-color:transparent;
  5755. border-color:transparent;
  5756. }
  5757. #u26817_div {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:126px;
  5763. height:23px;
  5764. background:inherit;
  5765. background-color:rgba(255, 255, 255, 1);
  5766. border:none;
  5767. border-radius:0px;
  5768. -moz-box-shadow:none;
  5769. -webkit-box-shadow:none;
  5770. box-shadow:none;
  5771. font-size:11px;
  5772. color:#AAAAAA;
  5773. }
  5774. #u26817 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:509px;
  5778. top:218px;
  5779. width:126px;
  5780. height:23px;
  5781. display:flex;
  5782. font-size:11px;
  5783. color:#AAAAAA;
  5784. }
  5785. #u26817 .text {
  5786. position:absolute;
  5787. align-self:flex-start;
  5788. padding:2px 2px 2px 2px;
  5789. box-sizing:border-box;
  5790. width:100%;
  5791. }
  5792. #u26817_div.disabled {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:0px;
  5796. top:0px;
  5797. width:126px;
  5798. height:23px;
  5799. background:inherit;
  5800. background-color:rgba(240, 240, 240, 1);
  5801. border:none;
  5802. border-radius:0px;
  5803. -moz-box-shadow:none;
  5804. -webkit-box-shadow:none;
  5805. box-shadow:none;
  5806. font-size:11px;
  5807. color:#AAAAAA;
  5808. }
  5809. #u26817.disabled {
  5810. }
  5811. .u26817_input_option {
  5812. font-size:11px;
  5813. }
  5814. #u26818_div {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:43px;
  5820. height:50px;
  5821. background:inherit;
  5822. background-color:rgba(255, 255, 255, 0);
  5823. box-sizing:border-box;
  5824. border-width:2px;
  5825. border-style:solid;
  5826. border-color:rgba(24, 144, 255, 1);
  5827. border-left:0px;
  5828. border-top:0px;
  5829. border-right:0px;
  5830. border-radius:0px;
  5831. border-bottom-right-radius:0px;
  5832. border-bottom-left-radius:0px;
  5833. -moz-box-shadow:none;
  5834. -webkit-box-shadow:none;
  5835. box-shadow:none;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:14px;
  5840. color:#1890FF;
  5841. }
  5842. #u26818 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:352px;
  5846. top:102px;
  5847. width:43px;
  5848. height:50px;
  5849. display:flex;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:14px;
  5854. color:#1890FF;
  5855. }
  5856. #u26818 .text {
  5857. position:absolute;
  5858. align-self:center;
  5859. padding:0px 0px 0px 0px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u26818_text {
  5864. border-width:0px;
  5865. white-space:nowrap;
  5866. text-transform:none;
  5867. }
  5868. #u26819_div {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:43px;
  5874. height:50px;
  5875. background:inherit;
  5876. background-color:rgba(255, 255, 255, 0);
  5877. border:none;
  5878. border-left:0px;
  5879. border-top:0px;
  5880. border-right:0px;
  5881. border-radius:0px;
  5882. border-bottom-right-radius:0px;
  5883. border-bottom-left-radius:0px;
  5884. -moz-box-shadow:none;
  5885. -webkit-box-shadow:none;
  5886. box-shadow:none;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:14px;
  5891. }
  5892. #u26819 {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:425px;
  5896. top:102px;
  5897. width:43px;
  5898. height:50px;
  5899. display:flex;
  5900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:14px;
  5904. }
  5905. #u26819 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:0px 0px 0px 0px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u26819_text {
  5913. border-width:0px;
  5914. white-space:nowrap;
  5915. text-transform:none;
  5916. }
  5917. #u26820_div {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:43px;
  5923. height:50px;
  5924. background:inherit;
  5925. background-color:rgba(255, 255, 255, 0);
  5926. border:none;
  5927. border-left:0px;
  5928. border-top:0px;
  5929. border-right:0px;
  5930. border-radius:0px;
  5931. border-bottom-right-radius:0px;
  5932. border-bottom-left-radius:0px;
  5933. -moz-box-shadow:none;
  5934. -webkit-box-shadow:none;
  5935. box-shadow:none;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:14px;
  5940. }
  5941. #u26820 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:498px;
  5945. top:102px;
  5946. width:43px;
  5947. height:50px;
  5948. display:flex;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. font-size:14px;
  5953. }
  5954. #u26820 .text {
  5955. position:absolute;
  5956. align-self:center;
  5957. padding:0px 0px 0px 0px;
  5958. box-sizing:border-box;
  5959. width:100%;
  5960. }
  5961. #u26820_text {
  5962. border-width:0px;
  5963. white-space:nowrap;
  5964. text-transform:none;
  5965. }
  5966. #u26821_div {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:73px;
  5972. height:30px;
  5973. background:inherit;
  5974. background-color:rgba(24, 144, 255, 1);
  5975. border:none;
  5976. border-radius:4px;
  5977. -moz-box-shadow:none;
  5978. -webkit-box-shadow:none;
  5979. box-shadow:none;
  5980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:14px;
  5984. color:#FFFFFF;
  5985. }
  5986. #u26821 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:352px;
  5990. top:262px;
  5991. width:73px;
  5992. height:30px;
  5993. display:flex;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:14px;
  5998. color:#FFFFFF;
  5999. }
  6000. #u26821 .text {
  6001. position:absolute;
  6002. align-self:center;
  6003. padding:5px 15px 5px 15px;
  6004. box-sizing:border-box;
  6005. width:100%;
  6006. }
  6007. #u26821_text {
  6008. border-width:0px;
  6009. white-space:nowrap;
  6010. text-transform:none;
  6011. }
  6012. #u26822_div {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:59px;
  6018. height:30px;
  6019. background:inherit;
  6020. background-color:rgba(255, 255, 255, 1);
  6021. box-sizing:border-box;
  6022. border-width:1px;
  6023. border-style:solid;
  6024. border-color:rgba(170, 170, 170, 1);
  6025. border-radius:4px;
  6026. -moz-box-shadow:none;
  6027. -webkit-box-shadow:none;
  6028. box-shadow:none;
  6029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. font-size:14px;
  6033. color:#555555;
  6034. }
  6035. #u26822 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:532px;
  6039. top:262px;
  6040. width:59px;
  6041. height:30px;
  6042. display:flex;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:14px;
  6047. color:#555555;
  6048. }
  6049. #u26822 .text {
  6050. position:absolute;
  6051. align-self:center;
  6052. padding:5px 15px 5px 15px;
  6053. box-sizing:border-box;
  6054. width:100%;
  6055. }
  6056. #u26822_text {
  6057. border-width:0px;
  6058. white-space:nowrap;
  6059. text-transform:none;
  6060. }
  6061. #u26823_div {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:87px;
  6067. height:30px;
  6068. background:inherit;
  6069. background-color:rgba(255, 255, 255, 1);
  6070. box-sizing:border-box;
  6071. border-width:1px;
  6072. border-style:solid;
  6073. border-color:rgba(170, 170, 170, 1);
  6074. border-radius:4px;
  6075. -moz-box-shadow:none;
  6076. -webkit-box-shadow:none;
  6077. box-shadow:none;
  6078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:14px;
  6082. color:#555555;
  6083. }
  6084. #u26823 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:435px;
  6088. top:262px;
  6089. width:87px;
  6090. height:30px;
  6091. display:flex;
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:14px;
  6096. color:#555555;
  6097. }
  6098. #u26823 .text {
  6099. position:absolute;
  6100. align-self:center;
  6101. padding:5px 15px 5px 15px;
  6102. box-sizing:border-box;
  6103. width:100%;
  6104. }
  6105. #u26823_text {
  6106. border-width:0px;
  6107. white-space:nowrap;
  6108. text-transform:none;
  6109. }
  6110. #u26824 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:0px;
  6116. height:0px;
  6117. }
  6118. #u26825_div {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:140px;
  6124. height:30px;
  6125. background:inherit;
  6126. background-color:rgba(255, 255, 255, 1);
  6127. box-sizing:border-box;
  6128. border-width:1px;
  6129. border-style:solid;
  6130. border-color:rgba(201, 201, 201, 1);
  6131. border-radius:4px;
  6132. -moz-box-shadow:none;
  6133. -webkit-box-shadow:none;
  6134. box-shadow:none;
  6135. font-family:'Microsoft YaHei', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:14px;
  6139. color:#CCCCCC;
  6140. text-align:left;
  6141. }
  6142. #u26825 {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:952px;
  6146. top:174px;
  6147. width:140px;
  6148. height:30px;
  6149. display:flex;
  6150. font-family:'Microsoft YaHei', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:14px;
  6154. color:#CCCCCC;
  6155. text-align:left;
  6156. }
  6157. #u26825 .text {
  6158. position:absolute;
  6159. align-self:center;
  6160. padding:2px 8px 2px 8px;
  6161. box-sizing:border-box;
  6162. width:100%;
  6163. }
  6164. #u26825_text {
  6165. border-width:0px;
  6166. word-wrap:break-word;
  6167. text-transform:none;
  6168. visibility:hidden;
  6169. }
  6170. #u26826_input {
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:127px;
  6175. height:25px;
  6176. padding:2px 2px 2px 2px;
  6177. font-family:'Microsoft YaHei', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:10px;
  6181. letter-spacing:normal;
  6182. color:#000000;
  6183. vertical-align:none;
  6184. text-align:left;
  6185. text-transform:none;
  6186. background-color:transparent;
  6187. border-color:transparent;
  6188. }
  6189. #u26826_input.disabled {
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:127px;
  6194. height:25px;
  6195. padding:2px 2px 2px 2px;
  6196. font-family:'Microsoft YaHei', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:10px;
  6200. letter-spacing:normal;
  6201. color:#000000;
  6202. vertical-align:none;
  6203. text-align:left;
  6204. text-transform:none;
  6205. background-color:transparent;
  6206. border-color:transparent;
  6207. }
  6208. #u26826_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:127px;
  6214. height:25px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 1);
  6217. border:none;
  6218. border-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. font-family:'Microsoft YaHei', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:10px;
  6226. }
  6227. #u26826 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:960px;
  6231. top:175px;
  6232. width:127px;
  6233. height:25px;
  6234. display:flex;
  6235. font-family:'Microsoft YaHei', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:10px;
  6239. }
  6240. #u26826 .text {
  6241. position:absolute;
  6242. align-self:center;
  6243. padding:2px 2px 2px 2px;
  6244. box-sizing:border-box;
  6245. width:100%;
  6246. }
  6247. #u26826_div.disabled {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:0px;
  6251. top:0px;
  6252. width:127px;
  6253. height:25px;
  6254. background:inherit;
  6255. background-color:rgba(240, 240, 240, 1);
  6256. border:none;
  6257. border-radius:0px;
  6258. -moz-box-shadow:none;
  6259. -webkit-box-shadow:none;
  6260. box-shadow:none;
  6261. font-family:'Microsoft YaHei', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:10px;
  6265. }
  6266. #u26826.disabled {
  6267. }
  6268. #u26827 {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:0px;
  6274. height:0px;
  6275. }
  6276. #u26828_div {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:140px;
  6282. height:30px;
  6283. background:inherit;
  6284. background-color:rgba(255, 255, 255, 1);
  6285. box-sizing:border-box;
  6286. border-width:1px;
  6287. border-style:solid;
  6288. border-color:rgba(201, 201, 201, 1);
  6289. border-radius:4px;
  6290. -moz-box-shadow:none;
  6291. -webkit-box-shadow:none;
  6292. box-shadow:none;
  6293. font-family:'Microsoft YaHei', sans-serif;
  6294. font-weight:400;
  6295. font-style:normal;
  6296. font-size:14px;
  6297. color:#CCCCCC;
  6298. text-align:left;
  6299. }
  6300. #u26828 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:1102px;
  6304. top:174px;
  6305. width:140px;
  6306. height:30px;
  6307. display:flex;
  6308. font-family:'Microsoft YaHei', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:14px;
  6312. color:#CCCCCC;
  6313. text-align:left;
  6314. }
  6315. #u26828 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 8px 2px 8px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u26828_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. visibility:hidden;
  6327. }
  6328. #u26829_input {
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:127px;
  6333. height:25px;
  6334. padding:2px 2px 2px 2px;
  6335. font-family:'Microsoft YaHei', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:10px;
  6339. letter-spacing:normal;
  6340. color:#000000;
  6341. vertical-align:none;
  6342. text-align:left;
  6343. text-transform:none;
  6344. background-color:transparent;
  6345. border-color:transparent;
  6346. }
  6347. #u26829_input.disabled {
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:127px;
  6352. height:25px;
  6353. padding:2px 2px 2px 2px;
  6354. font-family:'Microsoft YaHei', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:10px;
  6358. letter-spacing:normal;
  6359. color:#000000;
  6360. vertical-align:none;
  6361. text-align:left;
  6362. text-transform:none;
  6363. background-color:transparent;
  6364. border-color:transparent;
  6365. }
  6366. #u26829_div {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:127px;
  6372. height:25px;
  6373. background:inherit;
  6374. background-color:rgba(255, 255, 255, 1);
  6375. border:none;
  6376. border-radius:0px;
  6377. -moz-box-shadow:none;
  6378. -webkit-box-shadow:none;
  6379. box-shadow:none;
  6380. font-family:'Microsoft YaHei', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:10px;
  6384. }
  6385. #u26829 {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:1110px;
  6389. top:175px;
  6390. width:127px;
  6391. height:25px;
  6392. display:flex;
  6393. font-family:'Microsoft YaHei', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. font-size:10px;
  6397. }
  6398. #u26829 .text {
  6399. position:absolute;
  6400. align-self:center;
  6401. padding:2px 2px 2px 2px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u26829_div.disabled {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:127px;
  6411. height:25px;
  6412. background:inherit;
  6413. background-color:rgba(240, 240, 240, 1);
  6414. border:none;
  6415. border-radius:0px;
  6416. -moz-box-shadow:none;
  6417. -webkit-box-shadow:none;
  6418. box-shadow:none;
  6419. font-family:'Microsoft YaHei', sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:10px;
  6423. }
  6424. #u26829.disabled {
  6425. }
  6426. #u26830 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:0px;
  6430. top:0px;
  6431. width:0px;
  6432. height:0px;
  6433. }
  6434. #u26831_div {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:140px;
  6440. height:30px;
  6441. background:inherit;
  6442. background-color:rgba(255, 255, 255, 1);
  6443. box-sizing:border-box;
  6444. border-width:1px;
  6445. border-style:solid;
  6446. border-color:rgba(215, 215, 215, 1);
  6447. border-radius:4px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. font-size:11px;
  6452. }
  6453. #u26831 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:1252px;
  6457. top:174px;
  6458. width:140px;
  6459. height:30px;
  6460. display:flex;
  6461. font-size:11px;
  6462. }
  6463. #u26831 .text {
  6464. position:absolute;
  6465. align-self:center;
  6466. padding:2px 2px 2px 2px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u26831_text {
  6471. border-width:0px;
  6472. word-wrap:break-word;
  6473. text-transform:none;
  6474. visibility:hidden;
  6475. }
  6476. #u26832_input {
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:126px;
  6481. height:23px;
  6482. padding:2px 2px 2px 2px;
  6483. font-family:'ArialMT', 'Arial', sans-serif;
  6484. font-weight:400;
  6485. font-style:normal;
  6486. font-size:11px;
  6487. letter-spacing:normal;
  6488. color:#AAAAAA;
  6489. vertical-align:none;
  6490. text-align:left;
  6491. text-transform:none;
  6492. background-color:transparent;
  6493. border-color:transparent;
  6494. }
  6495. #u26832_input.disabled {
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:126px;
  6500. height:23px;
  6501. padding:2px 2px 2px 2px;
  6502. font-family:'ArialMT', 'Arial', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:11px;
  6506. letter-spacing:normal;
  6507. color:#AAAAAA;
  6508. vertical-align:none;
  6509. text-align:left;
  6510. text-transform:none;
  6511. background-color:transparent;
  6512. border-color:transparent;
  6513. }
  6514. #u26832_div {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:126px;
  6520. height:23px;
  6521. background:inherit;
  6522. background-color:rgba(255, 255, 255, 1);
  6523. border:none;
  6524. border-radius:0px;
  6525. -moz-box-shadow:none;
  6526. -webkit-box-shadow:none;
  6527. box-shadow:none;
  6528. font-size:11px;
  6529. color:#AAAAAA;
  6530. }
  6531. #u26832 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:1259px;
  6535. top:176px;
  6536. width:126px;
  6537. height:23px;
  6538. display:flex;
  6539. font-size:11px;
  6540. color:#AAAAAA;
  6541. }
  6542. #u26832 .text {
  6543. position:absolute;
  6544. align-self:flex-start;
  6545. padding:2px 2px 2px 2px;
  6546. box-sizing:border-box;
  6547. width:100%;
  6548. }
  6549. #u26832_div.disabled {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:126px;
  6555. height:23px;
  6556. background:inherit;
  6557. background-color:rgba(240, 240, 240, 1);
  6558. border:none;
  6559. border-radius:0px;
  6560. -moz-box-shadow:none;
  6561. -webkit-box-shadow:none;
  6562. box-shadow:none;
  6563. font-size:11px;
  6564. color:#AAAAAA;
  6565. }
  6566. #u26832.disabled {
  6567. }
  6568. .u26832_input_option {
  6569. font-size:11px;
  6570. }
  6571. #u26833 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:0px;
  6577. height:0px;
  6578. }
  6579. #u26834_div {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:140px;
  6585. height:30px;
  6586. background:inherit;
  6587. background-color:rgba(255, 255, 255, 1);
  6588. box-sizing:border-box;
  6589. border-width:1px;
  6590. border-style:solid;
  6591. border-color:rgba(215, 215, 215, 1);
  6592. border-radius:4px;
  6593. -moz-box-shadow:none;
  6594. -webkit-box-shadow:none;
  6595. box-shadow:none;
  6596. font-size:11px;
  6597. }
  6598. #u26834 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:352px;
  6602. top:215px;
  6603. width:140px;
  6604. height:30px;
  6605. display:flex;
  6606. font-size:11px;
  6607. }
  6608. #u26834 .text {
  6609. position:absolute;
  6610. align-self:center;
  6611. padding:2px 2px 2px 2px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u26834_text {
  6616. border-width:0px;
  6617. word-wrap:break-word;
  6618. text-transform:none;
  6619. visibility:hidden;
  6620. }
  6621. #u26835_input {
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:126px;
  6626. height:23px;
  6627. padding:2px 2px 2px 2px;
  6628. font-family:'ArialMT', 'Arial', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:11px;
  6632. letter-spacing:normal;
  6633. color:#AAAAAA;
  6634. vertical-align:none;
  6635. text-align:left;
  6636. text-transform:none;
  6637. background-color:transparent;
  6638. border-color:transparent;
  6639. }
  6640. #u26835_input.disabled {
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:126px;
  6645. height:23px;
  6646. padding:2px 2px 2px 2px;
  6647. font-family:'ArialMT', 'Arial', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:11px;
  6651. letter-spacing:normal;
  6652. color:#AAAAAA;
  6653. vertical-align:none;
  6654. text-align:left;
  6655. text-transform:none;
  6656. background-color:transparent;
  6657. border-color:transparent;
  6658. }
  6659. #u26835_div {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:126px;
  6665. height:23px;
  6666. background:inherit;
  6667. background-color:rgba(255, 255, 255, 1);
  6668. border:none;
  6669. border-radius:0px;
  6670. -moz-box-shadow:none;
  6671. -webkit-box-shadow:none;
  6672. box-shadow:none;
  6673. font-size:11px;
  6674. color:#AAAAAA;
  6675. }
  6676. #u26835 {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:359px;
  6680. top:217px;
  6681. width:126px;
  6682. height:23px;
  6683. display:flex;
  6684. font-size:11px;
  6685. color:#AAAAAA;
  6686. }
  6687. #u26835 .text {
  6688. position:absolute;
  6689. align-self:flex-start;
  6690. padding:2px 2px 2px 2px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u26835_div.disabled {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:126px;
  6700. height:23px;
  6701. background:inherit;
  6702. background-color:rgba(240, 240, 240, 1);
  6703. border:none;
  6704. border-radius:0px;
  6705. -moz-box-shadow:none;
  6706. -webkit-box-shadow:none;
  6707. box-shadow:none;
  6708. font-size:11px;
  6709. color:#AAAAAA;
  6710. }
  6711. #u26835.disabled {
  6712. }
  6713. .u26835_input_option {
  6714. font-size:11px;
  6715. }
  6716. #u26836 {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:0px;
  6722. height:0px;
  6723. }
  6724. #u26837_div {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:140px;
  6730. height:30px;
  6731. background:inherit;
  6732. background-color:rgba(255, 255, 255, 1);
  6733. box-sizing:border-box;
  6734. border-width:1px;
  6735. border-style:solid;
  6736. border-color:rgba(215, 215, 215, 1);
  6737. border-radius:4px;
  6738. -moz-box-shadow:none;
  6739. -webkit-box-shadow:none;
  6740. box-shadow:none;
  6741. font-size:11px;
  6742. }
  6743. #u26837 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:352px;
  6747. top:174px;
  6748. width:140px;
  6749. height:30px;
  6750. display:flex;
  6751. font-size:11px;
  6752. }
  6753. #u26837 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u26837_text {
  6761. border-width:0px;
  6762. word-wrap:break-word;
  6763. text-transform:none;
  6764. visibility:hidden;
  6765. }
  6766. #u26838_input {
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:126px;
  6771. height:23px;
  6772. padding:2px 2px 2px 2px;
  6773. font-family:'ArialMT', 'Arial', sans-serif;
  6774. font-weight:400;
  6775. font-style:normal;
  6776. font-size:11px;
  6777. letter-spacing:normal;
  6778. color:#AAAAAA;
  6779. vertical-align:none;
  6780. text-align:left;
  6781. text-transform:none;
  6782. background-color:transparent;
  6783. border-color:transparent;
  6784. }
  6785. #u26838_input.disabled {
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:126px;
  6790. height:23px;
  6791. padding:2px 2px 2px 2px;
  6792. font-family:'ArialMT', 'Arial', sans-serif;
  6793. font-weight:400;
  6794. font-style:normal;
  6795. font-size:11px;
  6796. letter-spacing:normal;
  6797. color:#AAAAAA;
  6798. vertical-align:none;
  6799. text-align:left;
  6800. text-transform:none;
  6801. background-color:transparent;
  6802. border-color:transparent;
  6803. }
  6804. #u26838_div {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:126px;
  6810. height:23px;
  6811. background:inherit;
  6812. background-color:rgba(255, 255, 255, 1);
  6813. border:none;
  6814. border-radius:0px;
  6815. -moz-box-shadow:none;
  6816. -webkit-box-shadow:none;
  6817. box-shadow:none;
  6818. font-size:11px;
  6819. color:#AAAAAA;
  6820. }
  6821. #u26838 {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:359px;
  6825. top:176px;
  6826. width:126px;
  6827. height:23px;
  6828. display:flex;
  6829. font-size:11px;
  6830. color:#AAAAAA;
  6831. }
  6832. #u26838 .text {
  6833. position:absolute;
  6834. align-self:flex-start;
  6835. padding:2px 2px 2px 2px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u26838_div.disabled {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:126px;
  6845. height:23px;
  6846. background:inherit;
  6847. background-color:rgba(240, 240, 240, 1);
  6848. border:none;
  6849. border-radius:0px;
  6850. -moz-box-shadow:none;
  6851. -webkit-box-shadow:none;
  6852. box-shadow:none;
  6853. font-size:11px;
  6854. color:#AAAAAA;
  6855. }
  6856. #u26838.disabled {
  6857. }
  6858. .u26838_input_option {
  6859. font-size:11px;
  6860. }
  6861. #u26839 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:0px;
  6867. height:0px;
  6868. }
  6869. #u26840_div {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:140px;
  6875. height:30px;
  6876. background:inherit;
  6877. background-color:rgba(255, 255, 255, 1);
  6878. box-sizing:border-box;
  6879. border-width:1px;
  6880. border-style:solid;
  6881. border-color:rgba(215, 215, 215, 1);
  6882. border-radius:4px;
  6883. -moz-box-shadow:none;
  6884. -webkit-box-shadow:none;
  6885. box-shadow:none;
  6886. font-size:11px;
  6887. }
  6888. #u26840 {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:650px;
  6892. top:174px;
  6893. width:140px;
  6894. height:30px;
  6895. display:flex;
  6896. font-size:11px;
  6897. }
  6898. #u26840 .text {
  6899. position:absolute;
  6900. align-self:center;
  6901. padding:2px 2px 2px 2px;
  6902. box-sizing:border-box;
  6903. width:100%;
  6904. }
  6905. #u26840_text {
  6906. border-width:0px;
  6907. word-wrap:break-word;
  6908. text-transform:none;
  6909. visibility:hidden;
  6910. }
  6911. #u26841_input {
  6912. position:absolute;
  6913. left:0px;
  6914. top:0px;
  6915. width:126px;
  6916. height:23px;
  6917. padding:2px 2px 2px 2px;
  6918. font-family:'ArialMT', 'Arial', sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. font-size:11px;
  6922. letter-spacing:normal;
  6923. color:#AAAAAA;
  6924. vertical-align:none;
  6925. text-align:left;
  6926. text-transform:none;
  6927. background-color:transparent;
  6928. border-color:transparent;
  6929. }
  6930. #u26841_input.disabled {
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:126px;
  6935. height:23px;
  6936. padding:2px 2px 2px 2px;
  6937. font-family:'ArialMT', 'Arial', sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:11px;
  6941. letter-spacing:normal;
  6942. color:#AAAAAA;
  6943. vertical-align:none;
  6944. text-align:left;
  6945. text-transform:none;
  6946. background-color:transparent;
  6947. border-color:transparent;
  6948. }
  6949. #u26841_div {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:126px;
  6955. height:23px;
  6956. background:inherit;
  6957. background-color:rgba(255, 255, 255, 1);
  6958. border:none;
  6959. border-radius:0px;
  6960. -moz-box-shadow:none;
  6961. -webkit-box-shadow:none;
  6962. box-shadow:none;
  6963. font-size:11px;
  6964. color:#AAAAAA;
  6965. }
  6966. #u26841 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:657px;
  6970. top:176px;
  6971. width:126px;
  6972. height:23px;
  6973. display:flex;
  6974. font-size:11px;
  6975. color:#AAAAAA;
  6976. }
  6977. #u26841 .text {
  6978. position:absolute;
  6979. align-self:flex-start;
  6980. padding:2px 2px 2px 2px;
  6981. box-sizing:border-box;
  6982. width:100%;
  6983. }
  6984. #u26841_div.disabled {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:126px;
  6990. height:23px;
  6991. background:inherit;
  6992. background-color:rgba(240, 240, 240, 1);
  6993. border:none;
  6994. border-radius:0px;
  6995. -moz-box-shadow:none;
  6996. -webkit-box-shadow:none;
  6997. box-shadow:none;
  6998. font-size:11px;
  6999. color:#AAAAAA;
  7000. }
  7001. #u26841.disabled {
  7002. }
  7003. .u26841_input_option {
  7004. font-size:11px;
  7005. }
  7006. #u26842 {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:0px;
  7012. height:0px;
  7013. }
  7014. #u26843_div {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:464px;
  7020. height:34px;
  7021. background:inherit;
  7022. background-color:rgba(255, 242, 241, 1);
  7023. box-sizing:border-box;
  7024. border-width:1px;
  7025. border-style:solid;
  7026. border-color:rgba(255, 102, 0, 1);
  7027. border-radius:6px;
  7028. -moz-box-shadow:none;
  7029. -webkit-box-shadow:none;
  7030. box-shadow:none;
  7031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:12px;
  7035. color:#666666;
  7036. text-align:left;
  7037. line-height:18px;
  7038. }
  7039. #u26843 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:874px;
  7043. top:720px;
  7044. width:464px;
  7045. height:34px;
  7046. display:flex;
  7047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:12px;
  7051. color:#666666;
  7052. text-align:left;
  7053. line-height:18px;
  7054. }
  7055. #u26843 .text {
  7056. position:absolute;
  7057. align-self:center;
  7058. padding:8px 16px 8px 40px;
  7059. box-sizing:border-box;
  7060. width:100%;
  7061. }
  7062. #u26843_text {
  7063. border-width:0px;
  7064. word-wrap:break-word;
  7065. text-transform:none;
  7066. }
  7067. #u26844_img {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:9px;
  7073. height:9px;
  7074. }
  7075. #u26844 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:1315px;
  7079. top:733px;
  7080. width:9px;
  7081. height:9px;
  7082. display:flex;
  7083. font-family:'Microsoft YaHei', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. }
  7087. #u26844 .text {
  7088. position:absolute;
  7089. align-self:center;
  7090. padding:2px 2px 2px 2px;
  7091. box-sizing:border-box;
  7092. width:100%;
  7093. }
  7094. #u26844_text {
  7095. border-width:0px;
  7096. word-wrap:break-word;
  7097. text-transform:none;
  7098. visibility:hidden;
  7099. }
  7100. #u26845_img {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:14px;
  7106. height:14px;
  7107. }
  7108. #u26845 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:889px;
  7112. top:730px;
  7113. width:14px;
  7114. height:14px;
  7115. display:flex;
  7116. }
  7117. #u26845 .text {
  7118. position:absolute;
  7119. align-self:center;
  7120. padding:2px 2px 2px 2px;
  7121. box-sizing:border-box;
  7122. width:100%;
  7123. }
  7124. #u26845_text {
  7125. border-width:0px;
  7126. word-wrap:break-word;
  7127. text-transform:none;
  7128. visibility:hidden;
  7129. }
  7130. #u26846 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:1504px;
  7134. top:380px;
  7135. width:0px;
  7136. height:0px;
  7137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7138. font-weight:400;
  7139. font-style:normal;
  7140. color:#0089FE;
  7141. }
  7142. #u26846_seg0 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:-5px;
  7146. top:0px;
  7147. width:10px;
  7148. height:362px;
  7149. }
  7150. #u26846_seg1 {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:-166px;
  7154. top:352px;
  7155. width:171px;
  7156. height:10px;
  7157. }
  7158. #u26846_seg2 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:-9px;
  7162. top:-6px;
  7163. width:18px;
  7164. height:18px;
  7165. }
  7166. #u26846_seg3 {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:-181px;
  7170. top:341px;
  7171. width:32px;
  7172. height:32px;
  7173. }
  7174. #u26846_text {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:-50px;
  7178. top:254px;
  7179. width:100px;
  7180. word-wrap:break-word;
  7181. text-transform:none;
  7182. visibility:hidden;
  7183. }
  7184. #u26847_div {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:661px;
  7190. height:60px;
  7191. background:inherit;
  7192. background-color:rgba(255, 255, 255, 0);
  7193. border:none;
  7194. border-left:0px;
  7195. border-top:0px;
  7196. border-right:0px;
  7197. border-radius:0px;
  7198. border-bottom-right-radius:0px;
  7199. border-bottom-left-radius:0px;
  7200. -moz-box-shadow:none;
  7201. -webkit-box-shadow:none;
  7202. box-shadow:none;
  7203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7204. font-weight:400;
  7205. font-style:normal;
  7206. font-size:14px;
  7207. color:#D9001B;
  7208. }
  7209. #u26847 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:874px;
  7213. top:780px;
  7214. width:661px;
  7215. height:60px;
  7216. display:flex;
  7217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:14px;
  7221. color:#D9001B;
  7222. }
  7223. #u26847 .text {
  7224. position:absolute;
  7225. align-self:center;
  7226. padding:0px 0px 0px 0px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u26847_text {
  7231. border-width:0px;
  7232. white-space:nowrap;
  7233. text-transform:none;
  7234. }
  7235. #u26848 {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:0px;
  7241. height:0px;
  7242. }
  7243. #u26849_div {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:0px;
  7247. top:0px;
  7248. width:200px;
  7249. height:1180px;
  7250. background:inherit;
  7251. background-color:rgba(255, 255, 255, 1);
  7252. border:none;
  7253. border-radius:0px;
  7254. -moz-box-shadow:none;
  7255. -webkit-box-shadow:none;
  7256. box-shadow:none;
  7257. }
  7258. #u26849 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:120px;
  7262. top:51px;
  7263. width:200px;
  7264. height:1180px;
  7265. display:flex;
  7266. }
  7267. #u26849 .text {
  7268. position:absolute;
  7269. align-self:center;
  7270. padding:2px 2px 2px 2px;
  7271. box-sizing:border-box;
  7272. width:100%;
  7273. }
  7274. #u26849_text {
  7275. border-width:0px;
  7276. word-wrap:break-word;
  7277. text-transform:none;
  7278. visibility:hidden;
  7279. }
  7280. #u26850_div {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:0px;
  7284. top:0px;
  7285. width:200px;
  7286. height:60px;
  7287. background:inherit;
  7288. background-color:rgba(224, 231, 247, 1);
  7289. border:none;
  7290. border-radius:0px;
  7291. -moz-box-shadow:none;
  7292. -webkit-box-shadow:none;
  7293. box-shadow:none;
  7294. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7295. font-weight:500;
  7296. font-style:normal;
  7297. font-size:18px;
  7298. }
  7299. #u26850 {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:120px;
  7303. top:51px;
  7304. width:200px;
  7305. height:60px;
  7306. display:flex;
  7307. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7308. font-weight:500;
  7309. font-style:normal;
  7310. font-size:18px;
  7311. }
  7312. #u26850 .text {
  7313. position:absolute;
  7314. align-self:center;
  7315. padding:0px 0px 0px 20px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u26850_text {
  7320. border-width:0px;
  7321. word-wrap:break-word;
  7322. text-transform:none;
  7323. }
  7324. #u26851_div {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:65px;
  7330. height:22px;
  7331. background:inherit;
  7332. background-color:rgba(255, 255, 255, 0);
  7333. border:none;
  7334. border-radius:0px;
  7335. -moz-box-shadow:none;
  7336. -webkit-box-shadow:none;
  7337. box-shadow:none;
  7338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7339. font-weight:400;
  7340. font-style:normal;
  7341. font-size:16px;
  7342. }
  7343. #u26851 {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:142px;
  7347. top:162px;
  7348. width:65px;
  7349. height:22px;
  7350. display:flex;
  7351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7352. font-weight:400;
  7353. font-style:normal;
  7354. font-size:16px;
  7355. }
  7356. #u26851 .text {
  7357. position:absolute;
  7358. align-self:flex-start;
  7359. padding:0px 0px 0px 0px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u26851_text {
  7364. border-width:0px;
  7365. white-space:nowrap;
  7366. text-transform:none;
  7367. }
  7368. #u26852_div {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:49px;
  7374. height:17px;
  7375. background:inherit;
  7376. background-color:rgba(255, 255, 255, 0);
  7377. border:none;
  7378. border-radius:0px;
  7379. -moz-box-shadow:none;
  7380. -webkit-box-shadow:none;
  7381. box-shadow:none;
  7382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:12px;
  7386. color:#AAAAAA;
  7387. }
  7388. #u26852 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:142px;
  7392. top:126px;
  7393. width:49px;
  7394. height:17px;
  7395. display:flex;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:12px;
  7400. color:#AAAAAA;
  7401. }
  7402. #u26852 .text {
  7403. position:absolute;
  7404. align-self:flex-start;
  7405. padding:0px 0px 0px 0px;
  7406. box-sizing:border-box;
  7407. width:100%;
  7408. }
  7409. #u26852_text {
  7410. border-width:0px;
  7411. white-space:nowrap;
  7412. text-transform:none;
  7413. }
  7414. #u26853_img {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:201px;
  7420. height:2px;
  7421. }
  7422. #u26853 {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:120px;
  7426. top:246px;
  7427. width:200px;
  7428. height:1px;
  7429. display:flex;
  7430. }
  7431. #u26853 .text {
  7432. position:absolute;
  7433. align-self:center;
  7434. padding:2px 2px 2px 2px;
  7435. box-sizing:border-box;
  7436. width:100%;
  7437. }
  7438. #u26853_text {
  7439. border-width:0px;
  7440. word-wrap:break-word;
  7441. text-transform:none;
  7442. visibility:hidden;
  7443. }
  7444. #u26854_div {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:65px;
  7450. height:22px;
  7451. background:inherit;
  7452. background-color:rgba(255, 255, 255, 0);
  7453. border:none;
  7454. border-radius:0px;
  7455. -moz-box-shadow:none;
  7456. -webkit-box-shadow:none;
  7457. box-shadow:none;
  7458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7459. font-weight:400;
  7460. font-style:normal;
  7461. font-size:16px;
  7462. }
  7463. #u26854 {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:142px;
  7467. top:302px;
  7468. width:65px;
  7469. height:22px;
  7470. display:flex;
  7471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:16px;
  7475. }
  7476. #u26854 .text {
  7477. position:absolute;
  7478. align-self:flex-start;
  7479. padding:0px 0px 0px 0px;
  7480. box-sizing:border-box;
  7481. width:100%;
  7482. }
  7483. #u26854_text {
  7484. border-width:0px;
  7485. white-space:nowrap;
  7486. text-transform:none;
  7487. }
  7488. #u26855_div {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:0px;
  7492. top:0px;
  7493. width:49px;
  7494. height:17px;
  7495. background:inherit;
  7496. background-color:rgba(255, 255, 255, 0);
  7497. border:none;
  7498. border-radius:0px;
  7499. -moz-box-shadow:none;
  7500. -webkit-box-shadow:none;
  7501. box-shadow:none;
  7502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7503. font-weight:400;
  7504. font-style:normal;
  7505. font-size:12px;
  7506. color:#AAAAAA;
  7507. }
  7508. #u26855 {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:142px;
  7512. top:266px;
  7513. width:49px;
  7514. height:17px;
  7515. display:flex;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:12px;
  7520. color:#AAAAAA;
  7521. }
  7522. #u26855 .text {
  7523. position:absolute;
  7524. align-self:flex-start;
  7525. padding:0px 0px 0px 0px;
  7526. box-sizing:border-box;
  7527. width:100%;
  7528. }
  7529. #u26855_text {
  7530. border-width:0px;
  7531. white-space:nowrap;
  7532. text-transform:none;
  7533. }
  7534. #u26856_div {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:0px;
  7538. top:0px;
  7539. width:65px;
  7540. height:22px;
  7541. background:inherit;
  7542. background-color:rgba(255, 255, 255, 0);
  7543. border:none;
  7544. border-radius:0px;
  7545. -moz-box-shadow:none;
  7546. -webkit-box-shadow:none;
  7547. box-shadow:none;
  7548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7549. font-weight:400;
  7550. font-style:normal;
  7551. font-size:16px;
  7552. }
  7553. #u26856 {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:142px;
  7557. top:344px;
  7558. width:65px;
  7559. height:22px;
  7560. display:flex;
  7561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7562. font-weight:400;
  7563. font-style:normal;
  7564. font-size:16px;
  7565. }
  7566. #u26856 .text {
  7567. position:absolute;
  7568. align-self:flex-start;
  7569. padding:0px 0px 0px 0px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u26856_text {
  7574. border-width:0px;
  7575. white-space:nowrap;
  7576. text-transform:none;
  7577. }
  7578. #u26857_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:65px;
  7584. height:22px;
  7585. background:inherit;
  7586. background-color:rgba(255, 255, 255, 0);
  7587. border:none;
  7588. border-radius:0px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:16px;
  7596. }
  7597. #u26857 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:142px;
  7601. top:204px;
  7602. width:65px;
  7603. height:22px;
  7604. display:flex;
  7605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:16px;
  7609. }
  7610. #u26857 .text {
  7611. position:absolute;
  7612. align-self:flex-start;
  7613. padding:0px 0px 0px 0px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u26857_text {
  7618. border-width:0px;
  7619. white-space:nowrap;
  7620. text-transform:none;
  7621. }
  7622. #u26858_div {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:548px;
  7628. height:20px;
  7629. background:inherit;
  7630. background-color:rgba(255, 255, 255, 0);
  7631. border:none;
  7632. border-left:0px;
  7633. border-top:0px;
  7634. border-right:0px;
  7635. border-radius:0px;
  7636. border-bottom-right-radius:0px;
  7637. border-bottom-left-radius:0px;
  7638. -moz-box-shadow:none;
  7639. -webkit-box-shadow:none;
  7640. box-shadow:none;
  7641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. font-size:14px;
  7645. color:#D9001B;
  7646. }
  7647. #u26858 {
  7648. border-width:0px;
  7649. position:absolute;
  7650. left:447px;
  7651. top:70px;
  7652. width:548px;
  7653. height:20px;
  7654. display:flex;
  7655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7656. font-weight:400;
  7657. font-style:normal;
  7658. font-size:14px;
  7659. color:#D9001B;
  7660. }
  7661. #u26858 .text {
  7662. position:absolute;
  7663. align-self:center;
  7664. padding:0px 0px 0px 0px;
  7665. box-sizing:border-box;
  7666. width:100%;
  7667. }
  7668. #u26858_text {
  7669. border-width:0px;
  7670. white-space:nowrap;
  7671. text-transform:none;
  7672. }
  7673. #u26859 {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:0px;
  7677. top:0px;
  7678. width:0px;
  7679. height:0px;
  7680. }
  7681. #u26860_div {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:0px;
  7685. top:0px;
  7686. width:237px;
  7687. height:50px;
  7688. background:inherit;
  7689. background-color:rgba(255, 255, 255, 0);
  7690. border:none;
  7691. border-left:0px;
  7692. border-top:0px;
  7693. border-right:0px;
  7694. border-radius:0px;
  7695. border-bottom-right-radius:0px;
  7696. border-bottom-left-radius:0px;
  7697. -moz-box-shadow:none;
  7698. -webkit-box-shadow:none;
  7699. box-shadow:none;
  7700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7701. font-weight:400;
  7702. font-style:normal;
  7703. font-size:14px;
  7704. color:#0089FE;
  7705. }
  7706. #u26860 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:1321px;
  7710. top:60px;
  7711. width:237px;
  7712. height:50px;
  7713. display:flex;
  7714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7715. font-weight:400;
  7716. font-style:normal;
  7717. font-size:14px;
  7718. color:#0089FE;
  7719. }
  7720. #u26860 .text {
  7721. position:absolute;
  7722. align-self:center;
  7723. padding:0px 0px 0px 0px;
  7724. box-sizing:border-box;
  7725. width:100%;
  7726. }
  7727. #u26860_text {
  7728. border-width:0px;
  7729. word-wrap:break-word;
  7730. text-transform:none;
  7731. }
  7732. #u26861_div {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:0px;
  7736. top:0px;
  7737. width:133px;
  7738. height:30px;
  7739. background:inherit;
  7740. background-color:rgba(255, 255, 255, 1);
  7741. box-sizing:border-box;
  7742. border-width:1px;
  7743. border-style:solid;
  7744. border-color:rgba(0, 137, 254, 1);
  7745. border-radius:4px;
  7746. -moz-box-shadow:none;
  7747. -webkit-box-shadow:none;
  7748. box-shadow:none;
  7749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7750. font-weight:400;
  7751. font-style:normal;
  7752. font-size:14px;
  7753. color:#0089FE;
  7754. }
  7755. #u26861 {
  7756. border-width:0px;
  7757. position:absolute;
  7758. left:1425px;
  7759. top:70px;
  7760. width:133px;
  7761. height:30px;
  7762. display:flex;
  7763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7764. font-weight:400;
  7765. font-style:normal;
  7766. font-size:14px;
  7767. color:#0089FE;
  7768. }
  7769. #u26861 .text {
  7770. position:absolute;
  7771. align-self:center;
  7772. padding:5px 10px 5px 10px;
  7773. box-sizing:border-box;
  7774. width:100%;
  7775. }
  7776. #u26861_text {
  7777. border-width:0px;
  7778. white-space:nowrap;
  7779. text-transform:none;
  7780. }