styles.css 130 KB

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