styles.css 182 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3019px;
  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. #u25437_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. #u25437 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u25437 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u25437_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u25438_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. #u25438 {
  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. #u25438 .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. #u25438_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u25439_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. #u25439 {
  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. #u25439 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u25439_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u25440 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u25441_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u25441 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u25441 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u25441_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u25442_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. #u25442 {
  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. #u25442 .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. #u25442_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u25443_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. #u25443 {
  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. #u25443 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u25443_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u25444 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u25445_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. #u25445 {
  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. #u25445 .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. #u25445_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u25446_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u25446 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u25446 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u25446_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u25447 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u25448_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. #u25448 {
  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. #u25448 .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. #u25448_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u25449_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u25449 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u25449 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u25449_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u25450 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u25451_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. #u25451 {
  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. #u25451 .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. #u25451_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u25452_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u25452 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u25452 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u25452_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u25453 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u25454_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. #u25454 {
  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. #u25454 .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. #u25454_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u25455_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u25455 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u25455 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u25455_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u25456 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u25457_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. #u25457 {
  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. #u25457 .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. #u25457_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u25458_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u25458 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u25458 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u25458_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u25459 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u25460_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. #u25460 {
  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. #u25460 .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. #u25460_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u25461_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u25461 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u25461 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u25461_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u25462 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u25463_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. #u25463 {
  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. #u25463 .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. #u25463_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u25464_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u25464 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u25464 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u25464_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u25465 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u25466_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. #u25466 {
  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. #u25466 .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. #u25466_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u25467_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u25467 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u25467 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u25467_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u25468 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u25469_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. #u25469 {
  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. #u25469 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u25469_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u25470_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u25470 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u25470 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u25470_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u25471 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u25472_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. #u25472 {
  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. #u25472 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u25472_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u25473_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u25473 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u25473 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u25473_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u25474 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u25475_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. #u25475 {
  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. #u25475 .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. #u25475_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u25476_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u25476 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u25476 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u25476_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u25477 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u25478_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. #u25478_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. #u25478_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. #u25478 {
  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. #u25478 .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. #u25478_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. #u25478.disabled {
  1276. }
  1277. .u25478_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u25479_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u25479 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u25479 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u25479_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u25480_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. #u25480 {
  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. #u25480 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u25480_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u25481_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u25481 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u25481 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u25481_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u25482 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u25483_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. #u25483 {
  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. #u25483 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u25483_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u25484_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u25484 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u25484 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u25484_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u25485_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u25485 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u25485 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u25485_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u25486_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u25486 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u25486 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u25486_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u25487_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u25487 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u25487 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u25487_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u25488 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u25489_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. #u25489 {
  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. #u25489 .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. #u25489_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u25490_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u25490 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u25490 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u25490_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u25491_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(242, 242, 242, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u25491 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:333px;
  1664. top:50px;
  1665. width:1260px;
  1666. height:1180px;
  1667. display:flex;
  1668. }
  1669. #u25491 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u25491_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u25492 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:357px;
  1686. top:229px;
  1687. width:1212px;
  1688. height:372px;
  1689. }
  1690. #u25493_img {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:152px;
  1696. height:30px;
  1697. }
  1698. #u25493 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:152px;
  1704. height:30px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:14px;
  1710. color:#FFFFFF;
  1711. }
  1712. #u25493 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 2px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u25493_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. }
  1724. #u25494_img {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:225px;
  1730. height:30px;
  1731. }
  1732. #u25494 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:152px;
  1736. top:0px;
  1737. width:225px;
  1738. height:30px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#FFFFFF;
  1745. }
  1746. #u25494 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u25494_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. }
  1758. #u25495_img {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:183px;
  1764. height:30px;
  1765. }
  1766. #u25495 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:377px;
  1770. top:0px;
  1771. width:183px;
  1772. height:30px;
  1773. display:flex;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:14px;
  1778. color:#FFFFFF;
  1779. }
  1780. #u25495 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u25495_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. }
  1792. #u25496_img {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:128px;
  1798. height:30px;
  1799. }
  1800. #u25496 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:560px;
  1804. top:0px;
  1805. width:128px;
  1806. height:30px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u25496 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u25496_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. }
  1826. #u25497_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:128px;
  1832. height:30px;
  1833. }
  1834. #u25497 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:688px;
  1838. top:0px;
  1839. width:128px;
  1840. height:30px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:14px;
  1846. color:#FFFFFF;
  1847. }
  1848. #u25497 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:2px 2px 2px 2px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u25497_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. }
  1860. #u25498_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:128px;
  1866. height:30px;
  1867. }
  1868. #u25498 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:816px;
  1872. top:0px;
  1873. width:128px;
  1874. height:30px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:14px;
  1880. color:#FFFFFF;
  1881. }
  1882. #u25498 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:2px 2px 2px 2px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u25498_text {
  1890. border-width:0px;
  1891. word-wrap:break-word;
  1892. text-transform:none;
  1893. }
  1894. #u25499_img {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:128px;
  1900. height:30px;
  1901. }
  1902. #u25499 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:944px;
  1906. top:0px;
  1907. width:128px;
  1908. height:30px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:14px;
  1914. color:#FFFFFF;
  1915. }
  1916. #u25499 .text {
  1917. position:absolute;
  1918. align-self:center;
  1919. padding:2px 2px 2px 2px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u25499_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. }
  1928. #u25500_img {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:140px;
  1934. height:30px;
  1935. }
  1936. #u25500 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:1072px;
  1940. top:0px;
  1941. width:140px;
  1942. height:30px;
  1943. display:flex;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:14px;
  1948. color:#FFFFFF;
  1949. }
  1950. #u25500 .text {
  1951. position:absolute;
  1952. align-self:center;
  1953. padding:2px 2px 2px 2px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u25500_text {
  1958. border-width:0px;
  1959. word-wrap:break-word;
  1960. text-transform:none;
  1961. }
  1962. #u25501_img {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:152px;
  1968. height:38px;
  1969. }
  1970. #u25501 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:30px;
  1975. width:152px;
  1976. height:38px;
  1977. display:flex;
  1978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:14px;
  1982. }
  1983. #u25501 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 2px 2px 2px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u25501_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. visibility:hidden;
  1995. }
  1996. #u25502_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:225px;
  2002. height:38px;
  2003. }
  2004. #u25502 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:152px;
  2008. top:30px;
  2009. width:225px;
  2010. height:38px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:14px;
  2016. }
  2017. #u25502 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:2px 2px 2px 2px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u25502_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. }
  2029. #u25503_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:183px;
  2035. height:38px;
  2036. }
  2037. #u25503 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:377px;
  2041. top:30px;
  2042. width:183px;
  2043. height:38px;
  2044. display:flex;
  2045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:14px;
  2049. }
  2050. #u25503 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 2px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u25503_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u25504_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:128px;
  2068. height:38px;
  2069. }
  2070. #u25504 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:560px;
  2074. top:30px;
  2075. width:128px;
  2076. height:38px;
  2077. display:flex;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:14px;
  2082. }
  2083. #u25504 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 2px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u25504_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u25505_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:128px;
  2101. height:38px;
  2102. }
  2103. #u25505 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:688px;
  2107. top:30px;
  2108. width:128px;
  2109. height:38px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:14px;
  2115. }
  2116. #u25505 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 2px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u25505_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. visibility:hidden;
  2128. }
  2129. #u25506_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:128px;
  2135. height:38px;
  2136. }
  2137. #u25506 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:816px;
  2141. top:30px;
  2142. width:128px;
  2143. height:38px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:14px;
  2149. }
  2150. #u25506 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 2px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u25506_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. visibility:hidden;
  2162. }
  2163. #u25507_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:128px;
  2169. height:38px;
  2170. }
  2171. #u25507 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:944px;
  2175. top:30px;
  2176. width:128px;
  2177. height:38px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:14px;
  2183. }
  2184. #u25507 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 2px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u25507_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. visibility:hidden;
  2196. }
  2197. #u25508_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:140px;
  2203. height:38px;
  2204. }
  2205. #u25508 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:1072px;
  2209. top:30px;
  2210. width:140px;
  2211. height:38px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:14px;
  2217. color:#1890FF;
  2218. }
  2219. #u25508 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u25508_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u25509_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:152px;
  2237. height:38px;
  2238. }
  2239. #u25509 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:68px;
  2244. width:152px;
  2245. height:38px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:14px;
  2251. }
  2252. #u25509 .text {
  2253. position:absolute;
  2254. align-self:center;
  2255. padding:2px 2px 2px 2px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u25509_text {
  2260. border-width:0px;
  2261. word-wrap:break-word;
  2262. text-transform:none;
  2263. visibility:hidden;
  2264. }
  2265. #u25510_img {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:225px;
  2271. height:38px;
  2272. }
  2273. #u25510 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:152px;
  2277. top:68px;
  2278. width:225px;
  2279. height:38px;
  2280. display:flex;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:14px;
  2285. }
  2286. #u25510 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 2px 2px 2px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u25510_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. }
  2298. #u25511_img {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:183px;
  2304. height:38px;
  2305. }
  2306. #u25511 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:377px;
  2310. top:68px;
  2311. width:183px;
  2312. height:38px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:14px;
  2318. }
  2319. #u25511 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 2px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u25511_text {
  2327. border-width:0px;
  2328. word-wrap:break-word;
  2329. text-transform:none;
  2330. }
  2331. #u25512_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:128px;
  2337. height:38px;
  2338. }
  2339. #u25512 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:560px;
  2343. top:68px;
  2344. width:128px;
  2345. height:38px;
  2346. display:flex;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-weight:400;
  2349. font-style:normal;
  2350. font-size:14px;
  2351. }
  2352. #u25512 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:2px 2px 2px 2px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u25512_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. }
  2364. #u25513_img {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:128px;
  2370. height:38px;
  2371. }
  2372. #u25513 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:688px;
  2376. top:68px;
  2377. width:128px;
  2378. height:38px;
  2379. display:flex;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:14px;
  2384. }
  2385. #u25513 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u25513_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. visibility:hidden;
  2397. }
  2398. #u25514_img {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:128px;
  2404. height:38px;
  2405. }
  2406. #u25514 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:816px;
  2410. top:68px;
  2411. width:128px;
  2412. height:38px;
  2413. display:flex;
  2414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. font-size:14px;
  2418. }
  2419. #u25514 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 2px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u25514_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. visibility:hidden;
  2431. }
  2432. #u25515_img {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:128px;
  2438. height:38px;
  2439. }
  2440. #u25515 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:944px;
  2444. top:68px;
  2445. width:128px;
  2446. height:38px;
  2447. display:flex;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:14px;
  2452. }
  2453. #u25515 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u25515_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. visibility:hidden;
  2465. }
  2466. #u25516_img {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:140px;
  2472. height:38px;
  2473. }
  2474. #u25516 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:1072px;
  2478. top:68px;
  2479. width:140px;
  2480. height:38px;
  2481. display:flex;
  2482. font-size:14px;
  2483. }
  2484. #u25516 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u25516_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. visibility:hidden;
  2496. }
  2497. #u25517_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:152px;
  2503. height:38px;
  2504. }
  2505. #u25517 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:106px;
  2510. width:152px;
  2511. height:38px;
  2512. display:flex;
  2513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:14px;
  2517. }
  2518. #u25517 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 2px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u25517_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u25518_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:225px;
  2537. height:38px;
  2538. }
  2539. #u25518 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:152px;
  2543. top:106px;
  2544. width:225px;
  2545. height:38px;
  2546. display:flex;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. }
  2552. #u25518 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:2px 2px 2px 2px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u25518_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. }
  2564. #u25519_img {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:183px;
  2570. height:38px;
  2571. }
  2572. #u25519 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:377px;
  2576. top:106px;
  2577. width:183px;
  2578. height:38px;
  2579. display:flex;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:14px;
  2584. }
  2585. #u25519 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u25519_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. }
  2597. #u25520_img {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:128px;
  2603. height:38px;
  2604. }
  2605. #u25520 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:560px;
  2609. top:106px;
  2610. width:128px;
  2611. height:38px;
  2612. display:flex;
  2613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2614. font-weight:400;
  2615. font-style:normal;
  2616. font-size:14px;
  2617. }
  2618. #u25520 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 2px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u25520_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. }
  2630. #u25521_img {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:128px;
  2636. height:38px;
  2637. }
  2638. #u25521 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:688px;
  2642. top:106px;
  2643. width:128px;
  2644. height:38px;
  2645. display:flex;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:14px;
  2650. }
  2651. #u25521 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 2px 2px 2px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u25521_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. visibility:hidden;
  2663. }
  2664. #u25522_img {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:128px;
  2670. height:38px;
  2671. }
  2672. #u25522 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:816px;
  2676. top:106px;
  2677. width:128px;
  2678. height:38px;
  2679. display:flex;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:14px;
  2684. }
  2685. #u25522 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 2px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u25522_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. visibility:hidden;
  2697. }
  2698. #u25523_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:128px;
  2704. height:38px;
  2705. }
  2706. #u25523 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:944px;
  2710. top:106px;
  2711. width:128px;
  2712. height:38px;
  2713. display:flex;
  2714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:14px;
  2718. }
  2719. #u25523 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 2px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u25523_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. visibility:hidden;
  2731. }
  2732. #u25524_img {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:140px;
  2738. height:38px;
  2739. }
  2740. #u25524 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:1072px;
  2744. top:106px;
  2745. width:140px;
  2746. height:38px;
  2747. display:flex;
  2748. font-size:14px;
  2749. }
  2750. #u25524 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 2px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u25524_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u25525_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:152px;
  2769. height:38px;
  2770. }
  2771. #u25525 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:144px;
  2776. width:152px;
  2777. height:38px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:14px;
  2783. }
  2784. #u25525 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u25525_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u25526_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:225px;
  2803. height:38px;
  2804. }
  2805. #u25526 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:152px;
  2809. top:144px;
  2810. width:225px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:14px;
  2817. }
  2818. #u25526 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 2px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u25526_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. visibility:hidden;
  2830. }
  2831. #u25527_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:183px;
  2837. height:38px;
  2838. }
  2839. #u25527 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:377px;
  2843. top:144px;
  2844. width:183px;
  2845. height:38px;
  2846. display:flex;
  2847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:14px;
  2851. }
  2852. #u25527 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 2px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u25527_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. }
  2864. #u25528_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:128px;
  2870. height:38px;
  2871. }
  2872. #u25528 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:560px;
  2876. top:144px;
  2877. width:128px;
  2878. height:38px;
  2879. display:flex;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:14px;
  2884. }
  2885. #u25528 .text {
  2886. position:absolute;
  2887. align-self:center;
  2888. padding:2px 2px 2px 2px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u25528_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. }
  2897. #u25529_img {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:128px;
  2903. height:38px;
  2904. }
  2905. #u25529 {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:688px;
  2909. top:144px;
  2910. width:128px;
  2911. height:38px;
  2912. display:flex;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:14px;
  2917. }
  2918. #u25529 .text {
  2919. position:absolute;
  2920. align-self:center;
  2921. padding:2px 2px 2px 2px;
  2922. box-sizing:border-box;
  2923. width:100%;
  2924. }
  2925. #u25529_text {
  2926. border-width:0px;
  2927. word-wrap:break-word;
  2928. text-transform:none;
  2929. visibility:hidden;
  2930. }
  2931. #u25530_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:128px;
  2937. height:38px;
  2938. }
  2939. #u25530 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:816px;
  2943. top:144px;
  2944. width:128px;
  2945. height:38px;
  2946. display:flex;
  2947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. font-size:14px;
  2951. }
  2952. #u25530 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u25530_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u25531_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:128px;
  2971. height:38px;
  2972. }
  2973. #u25531 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:944px;
  2977. top:144px;
  2978. width:128px;
  2979. height:38px;
  2980. display:flex;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:14px;
  2985. }
  2986. #u25531 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:2px 2px 2px 2px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u25531_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u25532_img {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:140px;
  3005. height:38px;
  3006. }
  3007. #u25532 {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:1072px;
  3011. top:144px;
  3012. width:140px;
  3013. height:38px;
  3014. display:flex;
  3015. font-size:14px;
  3016. }
  3017. #u25532 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 2px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u25532_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u25533_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:152px;
  3036. height:38px;
  3037. }
  3038. #u25533 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:182px;
  3043. width:152px;
  3044. height:38px;
  3045. display:flex;
  3046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:14px;
  3050. }
  3051. #u25533 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 2px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u25533_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u25534_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:225px;
  3070. height:38px;
  3071. }
  3072. #u25534 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:152px;
  3076. top:182px;
  3077. width:225px;
  3078. height:38px;
  3079. display:flex;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:14px;
  3084. }
  3085. #u25534 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:2px 2px 2px 2px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u25534_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u25535_img {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:183px;
  3104. height:38px;
  3105. }
  3106. #u25535 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:377px;
  3110. top:182px;
  3111. width:183px;
  3112. height:38px;
  3113. display:flex;
  3114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3115. font-weight:400;
  3116. font-style:normal;
  3117. font-size:14px;
  3118. }
  3119. #u25535 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u25535_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. }
  3131. #u25536_img {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:128px;
  3137. height:38px;
  3138. }
  3139. #u25536 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:560px;
  3143. top:182px;
  3144. width:128px;
  3145. height:38px;
  3146. display:flex;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:14px;
  3151. }
  3152. #u25536 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 2px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u25536_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. }
  3164. #u25537_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:128px;
  3170. height:38px;
  3171. }
  3172. #u25537 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:688px;
  3176. top:182px;
  3177. width:128px;
  3178. height:38px;
  3179. display:flex;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:14px;
  3184. }
  3185. #u25537 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 2px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u25537_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u25538_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:128px;
  3204. height:38px;
  3205. }
  3206. #u25538 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:816px;
  3210. top:182px;
  3211. width:128px;
  3212. height:38px;
  3213. display:flex;
  3214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:14px;
  3218. }
  3219. #u25538 .text {
  3220. position:absolute;
  3221. align-self:center;
  3222. padding:2px 2px 2px 2px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u25538_text {
  3227. border-width:0px;
  3228. word-wrap:break-word;
  3229. text-transform:none;
  3230. visibility:hidden;
  3231. }
  3232. #u25539_img {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:0px;
  3236. top:0px;
  3237. width:128px;
  3238. height:38px;
  3239. }
  3240. #u25539 {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:944px;
  3244. top:182px;
  3245. width:128px;
  3246. height:38px;
  3247. display:flex;
  3248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:14px;
  3252. }
  3253. #u25539 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u25539_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. visibility:hidden;
  3265. }
  3266. #u25540_img {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:140px;
  3272. height:38px;
  3273. }
  3274. #u25540 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:1072px;
  3278. top:182px;
  3279. width:140px;
  3280. height:38px;
  3281. display:flex;
  3282. font-size:14px;
  3283. }
  3284. #u25540 .text {
  3285. position:absolute;
  3286. align-self:center;
  3287. padding:2px 2px 2px 2px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u25540_text {
  3292. border-width:0px;
  3293. word-wrap:break-word;
  3294. text-transform:none;
  3295. visibility:hidden;
  3296. }
  3297. #u25541_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:152px;
  3303. height:38px;
  3304. }
  3305. #u25541 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:220px;
  3310. width:152px;
  3311. height:38px;
  3312. display:flex;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:14px;
  3317. }
  3318. #u25541 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 2px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u25541_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. visibility:hidden;
  3330. }
  3331. #u25542_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:225px;
  3337. height:38px;
  3338. }
  3339. #u25542 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:152px;
  3343. top:220px;
  3344. width:225px;
  3345. height:38px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:14px;
  3351. }
  3352. #u25542 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 2px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u25542_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u25543_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:183px;
  3371. height:38px;
  3372. }
  3373. #u25543 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:377px;
  3377. top:220px;
  3378. width:183px;
  3379. height:38px;
  3380. display:flex;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:14px;
  3385. }
  3386. #u25543 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 2px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u25543_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. }
  3398. #u25544_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:128px;
  3404. height:38px;
  3405. }
  3406. #u25544 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:560px;
  3410. top:220px;
  3411. width:128px;
  3412. height:38px;
  3413. display:flex;
  3414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:14px;
  3418. }
  3419. #u25544 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:2px 2px 2px 2px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u25544_text {
  3427. border-width:0px;
  3428. word-wrap:break-word;
  3429. text-transform:none;
  3430. }
  3431. #u25545_img {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:128px;
  3437. height:38px;
  3438. }
  3439. #u25545 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:688px;
  3443. top:220px;
  3444. width:128px;
  3445. height:38px;
  3446. display:flex;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:14px;
  3451. }
  3452. #u25545 .text {
  3453. position:absolute;
  3454. align-self:center;
  3455. padding:2px 2px 2px 2px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u25545_text {
  3460. border-width:0px;
  3461. word-wrap:break-word;
  3462. text-transform:none;
  3463. visibility:hidden;
  3464. }
  3465. #u25546_img {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:128px;
  3471. height:38px;
  3472. }
  3473. #u25546 {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:816px;
  3477. top:220px;
  3478. width:128px;
  3479. height:38px;
  3480. display:flex;
  3481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:14px;
  3485. }
  3486. #u25546 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:2px 2px 2px 2px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u25546_text {
  3494. border-width:0px;
  3495. word-wrap:break-word;
  3496. text-transform:none;
  3497. visibility:hidden;
  3498. }
  3499. #u25547_img {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:128px;
  3505. height:38px;
  3506. }
  3507. #u25547 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:944px;
  3511. top:220px;
  3512. width:128px;
  3513. height:38px;
  3514. display:flex;
  3515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:14px;
  3519. }
  3520. #u25547 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 2px 2px 2px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u25547_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u25548_img {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:140px;
  3539. height:38px;
  3540. }
  3541. #u25548 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:1072px;
  3545. top:220px;
  3546. width:140px;
  3547. height:38px;
  3548. display:flex;
  3549. font-size:14px;
  3550. }
  3551. #u25548 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:2px 2px 2px 2px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u25548_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. visibility:hidden;
  3563. }
  3564. #u25549_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:152px;
  3570. height:38px;
  3571. }
  3572. #u25549 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:258px;
  3577. width:152px;
  3578. height:38px;
  3579. display:flex;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:14px;
  3584. }
  3585. #u25549 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u25549_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u25550_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:225px;
  3604. height:38px;
  3605. }
  3606. #u25550 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:152px;
  3610. top:258px;
  3611. width:225px;
  3612. height:38px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:14px;
  3618. }
  3619. #u25550 .text {
  3620. position:absolute;
  3621. align-self:center;
  3622. padding:2px 2px 2px 2px;
  3623. box-sizing:border-box;
  3624. width:100%;
  3625. }
  3626. #u25550_text {
  3627. border-width:0px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. visibility:hidden;
  3631. }
  3632. #u25551_img {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:183px;
  3638. height:38px;
  3639. }
  3640. #u25551 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:377px;
  3644. top:258px;
  3645. width:183px;
  3646. height:38px;
  3647. display:flex;
  3648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:14px;
  3652. }
  3653. #u25551 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 2px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u25551_text {
  3661. border-width:0px;
  3662. word-wrap:break-word;
  3663. text-transform:none;
  3664. }
  3665. #u25552_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:128px;
  3671. height:38px;
  3672. }
  3673. #u25552 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:560px;
  3677. top:258px;
  3678. width:128px;
  3679. height:38px;
  3680. display:flex;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:14px;
  3685. }
  3686. #u25552 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u25552_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. }
  3698. #u25553_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:128px;
  3704. height:38px;
  3705. }
  3706. #u25553 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:688px;
  3710. top:258px;
  3711. width:128px;
  3712. height:38px;
  3713. display:flex;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:14px;
  3718. }
  3719. #u25553 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 2px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u25553_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u25554_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:128px;
  3738. height:38px;
  3739. }
  3740. #u25554 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:816px;
  3744. top:258px;
  3745. width:128px;
  3746. height:38px;
  3747. display:flex;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:14px;
  3752. }
  3753. #u25554 .text {
  3754. position:absolute;
  3755. align-self:center;
  3756. padding:2px 2px 2px 2px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u25554_text {
  3761. border-width:0px;
  3762. word-wrap:break-word;
  3763. text-transform:none;
  3764. visibility:hidden;
  3765. }
  3766. #u25555_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:128px;
  3772. height:38px;
  3773. }
  3774. #u25555 {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:944px;
  3778. top:258px;
  3779. width:128px;
  3780. height:38px;
  3781. display:flex;
  3782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3783. font-weight:400;
  3784. font-style:normal;
  3785. font-size:14px;
  3786. }
  3787. #u25555 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 2px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u25555_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u25556_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:140px;
  3806. height:38px;
  3807. }
  3808. #u25556 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:1072px;
  3812. top:258px;
  3813. width:140px;
  3814. height:38px;
  3815. display:flex;
  3816. font-size:14px;
  3817. }
  3818. #u25556 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 2px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u25556_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u25557_img {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:152px;
  3837. height:38px;
  3838. }
  3839. #u25557 {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:296px;
  3844. width:152px;
  3845. height:38px;
  3846. display:flex;
  3847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3848. font-weight:400;
  3849. font-style:normal;
  3850. font-size:14px;
  3851. }
  3852. #u25557 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:2px 2px 2px 2px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u25557_text {
  3860. border-width:0px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. visibility:hidden;
  3864. }
  3865. #u25558_img {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:225px;
  3871. height:38px;
  3872. }
  3873. #u25558 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:152px;
  3877. top:296px;
  3878. width:225px;
  3879. height:38px;
  3880. display:flex;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:14px;
  3885. }
  3886. #u25558 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:2px 2px 2px 2px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u25558_text {
  3894. border-width:0px;
  3895. word-wrap:break-word;
  3896. text-transform:none;
  3897. visibility:hidden;
  3898. }
  3899. #u25559_img {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:183px;
  3905. height:38px;
  3906. }
  3907. #u25559 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:377px;
  3911. top:296px;
  3912. width:183px;
  3913. height:38px;
  3914. display:flex;
  3915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:14px;
  3919. }
  3920. #u25559 .text {
  3921. position:absolute;
  3922. align-self:center;
  3923. padding:2px 2px 2px 2px;
  3924. box-sizing:border-box;
  3925. width:100%;
  3926. }
  3927. #u25559_text {
  3928. border-width:0px;
  3929. word-wrap:break-word;
  3930. text-transform:none;
  3931. visibility:hidden;
  3932. }
  3933. #u25560_img {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:128px;
  3939. height:38px;
  3940. }
  3941. #u25560 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:560px;
  3945. top:296px;
  3946. width:128px;
  3947. height:38px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:14px;
  3953. }
  3954. #u25560 .text {
  3955. position:absolute;
  3956. align-self:center;
  3957. padding:2px 2px 2px 2px;
  3958. box-sizing:border-box;
  3959. width:100%;
  3960. }
  3961. #u25560_text {
  3962. border-width:0px;
  3963. word-wrap:break-word;
  3964. text-transform:none;
  3965. }
  3966. #u25561_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:128px;
  3972. height:38px;
  3973. }
  3974. #u25561 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:688px;
  3978. top:296px;
  3979. width:128px;
  3980. height:38px;
  3981. display:flex;
  3982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:14px;
  3986. }
  3987. #u25561 .text {
  3988. position:absolute;
  3989. align-self:center;
  3990. padding:2px 2px 2px 2px;
  3991. box-sizing:border-box;
  3992. width:100%;
  3993. }
  3994. #u25561_text {
  3995. border-width:0px;
  3996. word-wrap:break-word;
  3997. text-transform:none;
  3998. visibility:hidden;
  3999. }
  4000. #u25562_img {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:128px;
  4006. height:38px;
  4007. }
  4008. #u25562 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:816px;
  4012. top:296px;
  4013. width:128px;
  4014. height:38px;
  4015. display:flex;
  4016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:14px;
  4020. }
  4021. #u25562 .text {
  4022. position:absolute;
  4023. align-self:center;
  4024. padding:2px 2px 2px 2px;
  4025. box-sizing:border-box;
  4026. width:100%;
  4027. }
  4028. #u25562_text {
  4029. border-width:0px;
  4030. word-wrap:break-word;
  4031. text-transform:none;
  4032. visibility:hidden;
  4033. }
  4034. #u25563_img {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:128px;
  4040. height:38px;
  4041. }
  4042. #u25563 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:944px;
  4046. top:296px;
  4047. width:128px;
  4048. height:38px;
  4049. display:flex;
  4050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4051. font-weight:400;
  4052. font-style:normal;
  4053. font-size:14px;
  4054. }
  4055. #u25563 .text {
  4056. position:absolute;
  4057. align-self:center;
  4058. padding:2px 2px 2px 2px;
  4059. box-sizing:border-box;
  4060. width:100%;
  4061. }
  4062. #u25563_text {
  4063. border-width:0px;
  4064. word-wrap:break-word;
  4065. text-transform:none;
  4066. visibility:hidden;
  4067. }
  4068. #u25564_img {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:140px;
  4074. height:38px;
  4075. }
  4076. #u25564 {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:1072px;
  4080. top:296px;
  4081. width:140px;
  4082. height:38px;
  4083. display:flex;
  4084. font-size:14px;
  4085. }
  4086. #u25564 .text {
  4087. position:absolute;
  4088. align-self:center;
  4089. padding:2px 2px 2px 2px;
  4090. box-sizing:border-box;
  4091. width:100%;
  4092. }
  4093. #u25564_text {
  4094. border-width:0px;
  4095. word-wrap:break-word;
  4096. text-transform:none;
  4097. visibility:hidden;
  4098. }
  4099. #u25565_img {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:152px;
  4105. height:38px;
  4106. }
  4107. #u25565 {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:334px;
  4112. width:152px;
  4113. height:38px;
  4114. display:flex;
  4115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4116. font-weight:400;
  4117. font-style:normal;
  4118. font-size:14px;
  4119. }
  4120. #u25565 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 2px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u25565_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u25566_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:225px;
  4139. height:38px;
  4140. }
  4141. #u25566 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:152px;
  4145. top:334px;
  4146. width:225px;
  4147. height:38px;
  4148. display:flex;
  4149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:14px;
  4153. }
  4154. #u25566 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 2px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u25566_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u25567_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:183px;
  4173. height:38px;
  4174. }
  4175. #u25567 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:377px;
  4179. top:334px;
  4180. width:183px;
  4181. height:38px;
  4182. display:flex;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:14px;
  4187. }
  4188. #u25567 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 2px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u25567_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u25568_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:128px;
  4207. height:38px;
  4208. }
  4209. #u25568 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:560px;
  4213. top:334px;
  4214. width:128px;
  4215. height:38px;
  4216. display:flex;
  4217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:14px;
  4221. }
  4222. #u25568 .text {
  4223. position:absolute;
  4224. align-self:center;
  4225. padding:2px 2px 2px 2px;
  4226. box-sizing:border-box;
  4227. width:100%;
  4228. }
  4229. #u25568_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u25569_img {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:128px;
  4241. height:38px;
  4242. }
  4243. #u25569 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:688px;
  4247. top:334px;
  4248. width:128px;
  4249. height:38px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:14px;
  4255. }
  4256. #u25569 .text {
  4257. position:absolute;
  4258. align-self:center;
  4259. padding:2px 2px 2px 2px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u25569_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. visibility:hidden;
  4268. }
  4269. #u25570_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:128px;
  4275. height:38px;
  4276. }
  4277. #u25570 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:816px;
  4281. top:334px;
  4282. width:128px;
  4283. height:38px;
  4284. display:flex;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:14px;
  4289. }
  4290. #u25570 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:2px 2px 2px 2px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u25570_text {
  4298. border-width:0px;
  4299. word-wrap:break-word;
  4300. text-transform:none;
  4301. visibility:hidden;
  4302. }
  4303. #u25571_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:128px;
  4309. height:38px;
  4310. }
  4311. #u25571 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:944px;
  4315. top:334px;
  4316. width:128px;
  4317. height:38px;
  4318. display:flex;
  4319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4320. font-weight:400;
  4321. font-style:normal;
  4322. font-size:14px;
  4323. }
  4324. #u25571 .text {
  4325. position:absolute;
  4326. align-self:center;
  4327. padding:2px 2px 2px 2px;
  4328. box-sizing:border-box;
  4329. width:100%;
  4330. }
  4331. #u25571_text {
  4332. border-width:0px;
  4333. word-wrap:break-word;
  4334. text-transform:none;
  4335. visibility:hidden;
  4336. }
  4337. #u25572_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:140px;
  4343. height:38px;
  4344. }
  4345. #u25572 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:1072px;
  4349. top:334px;
  4350. width:140px;
  4351. height:38px;
  4352. display:flex;
  4353. font-size:14px;
  4354. }
  4355. #u25572 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:2px 2px 2px 2px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u25572_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u25573_div {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:60px;
  4374. height:30px;
  4375. background:inherit;
  4376. background-color:rgba(24, 144, 255, 1);
  4377. border:none;
  4378. border-radius:4px;
  4379. -moz-box-shadow:none;
  4380. -webkit-box-shadow:none;
  4381. box-shadow:none;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:14px;
  4386. color:#FFFFFF;
  4387. }
  4388. #u25573 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:357px;
  4392. top:191px;
  4393. width:60px;
  4394. height:30px;
  4395. display:flex;
  4396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4397. font-weight:400;
  4398. font-style:normal;
  4399. font-size:14px;
  4400. color:#FFFFFF;
  4401. }
  4402. #u25573 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 2px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u25573_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. }
  4414. #u25574 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:0px;
  4420. height:0px;
  4421. }
  4422. #u25575_div {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:160px;
  4428. height:30px;
  4429. background:inherit;
  4430. background-color:rgba(255, 255, 255, 1);
  4431. box-sizing:border-box;
  4432. border-width:1px;
  4433. border-style:solid;
  4434. border-color:rgba(201, 201, 201, 1);
  4435. border-radius:4px;
  4436. -moz-box-shadow:none;
  4437. -webkit-box-shadow:none;
  4438. box-shadow:none;
  4439. font-family:'Microsoft YaHei', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:14px;
  4443. color:#CCCCCC;
  4444. text-align:left;
  4445. }
  4446. #u25575 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:657px;
  4450. top:140px;
  4451. width:160px;
  4452. height:30px;
  4453. display:flex;
  4454. font-family:'Microsoft YaHei', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:14px;
  4458. color:#CCCCCC;
  4459. text-align:left;
  4460. }
  4461. #u25575 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 8px 2px 8px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u25575_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u25576_input {
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:150px;
  4479. height:28px;
  4480. padding:2px 2px 2px 2px;
  4481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:14px;
  4485. letter-spacing:normal;
  4486. color:#000000;
  4487. vertical-align:none;
  4488. text-align:left;
  4489. text-transform:none;
  4490. background-color:transparent;
  4491. border-color:transparent;
  4492. }
  4493. #u25576_input.disabled {
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:150px;
  4498. height:28px;
  4499. padding:2px 2px 2px 2px;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:14px;
  4504. letter-spacing:normal;
  4505. color:#000000;
  4506. vertical-align:none;
  4507. text-align:left;
  4508. text-transform:none;
  4509. background-color:transparent;
  4510. border-color:transparent;
  4511. }
  4512. #u25576_div {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:150px;
  4518. height:28px;
  4519. background:inherit;
  4520. background-color:rgba(255, 255, 255, 1);
  4521. border:none;
  4522. border-radius:0px;
  4523. -moz-box-shadow:none;
  4524. -webkit-box-shadow:none;
  4525. box-shadow:none;
  4526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4527. font-weight:400;
  4528. font-style:normal;
  4529. font-size:14px;
  4530. }
  4531. #u25576 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:663px;
  4535. top:141px;
  4536. width:150px;
  4537. height:28px;
  4538. display:flex;
  4539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4540. font-weight:400;
  4541. font-style:normal;
  4542. font-size:14px;
  4543. }
  4544. #u25576 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 2px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u25576_div.disabled {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:150px;
  4557. height:28px;
  4558. background:inherit;
  4559. background-color:rgba(240, 240, 240, 1);
  4560. border:none;
  4561. border-radius:0px;
  4562. -moz-box-shadow:none;
  4563. -webkit-box-shadow:none;
  4564. box-shadow:none;
  4565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. font-size:14px;
  4569. }
  4570. #u25576.disabled {
  4571. }
  4572. #u25577 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:0px;
  4578. height:0px;
  4579. }
  4580. #u25578_div {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:0px;
  4584. top:0px;
  4585. width:60px;
  4586. height:30px;
  4587. background:inherit;
  4588. background-color:rgba(24, 144, 255, 1);
  4589. border:none;
  4590. border-radius:4px;
  4591. -moz-box-shadow:none;
  4592. -webkit-box-shadow:none;
  4593. box-shadow:none;
  4594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:14px;
  4598. color:#FFFFFF;
  4599. }
  4600. #u25578 {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:997px;
  4604. top:140px;
  4605. width:60px;
  4606. height:30px;
  4607. display:flex;
  4608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. font-size:14px;
  4612. color:#FFFFFF;
  4613. }
  4614. #u25578 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:2px 2px 2px 2px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u25578_text {
  4622. border-width:0px;
  4623. word-wrap:break-word;
  4624. text-transform:none;
  4625. }
  4626. #u25579_div {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:60px;
  4632. height:30px;
  4633. background:inherit;
  4634. background-color:rgba(255, 255, 255, 1);
  4635. box-sizing:border-box;
  4636. border-width:1px;
  4637. border-style:solid;
  4638. border-color:rgba(170, 170, 170, 1);
  4639. border-radius:4px;
  4640. -moz-box-shadow:none;
  4641. -webkit-box-shadow:none;
  4642. box-shadow:none;
  4643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:14px;
  4647. }
  4648. #u25579 {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:1067px;
  4652. top:140px;
  4653. width:60px;
  4654. height:30px;
  4655. display:flex;
  4656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. font-size:14px;
  4660. }
  4661. #u25579 .text {
  4662. position:absolute;
  4663. align-self:center;
  4664. padding:2px 2px 2px 2px;
  4665. box-sizing:border-box;
  4666. width:100%;
  4667. }
  4668. #u25579_text {
  4669. border-width:0px;
  4670. word-wrap:break-word;
  4671. text-transform:none;
  4672. }
  4673. #u25580_div {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:73px;
  4679. height:50px;
  4680. background:inherit;
  4681. background-color:rgba(255, 255, 255, 0);
  4682. border:none;
  4683. border-left:0px;
  4684. border-top:0px;
  4685. border-right:0px;
  4686. border-radius:0px;
  4687. border-bottom-right-radius:0px;
  4688. border-bottom-left-radius:0px;
  4689. -moz-box-shadow:none;
  4690. -webkit-box-shadow:none;
  4691. box-shadow:none;
  4692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4693. font-weight:400;
  4694. font-style:normal;
  4695. font-size:18px;
  4696. line-height:40px;
  4697. }
  4698. #u25580 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:356px;
  4702. top:50px;
  4703. width:73px;
  4704. height:50px;
  4705. display:flex;
  4706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:18px;
  4710. line-height:40px;
  4711. }
  4712. #u25580 .text {
  4713. position:absolute;
  4714. align-self:center;
  4715. padding:0px 0px 0px 0px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u25580_text {
  4720. border-width:0px;
  4721. white-space:nowrap;
  4722. text-transform:none;
  4723. }
  4724. #u25581 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:0px;
  4730. height:0px;
  4731. }
  4732. #u25582_div {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:160px;
  4738. height:30px;
  4739. background:inherit;
  4740. background-color:rgba(255, 255, 255, 1);
  4741. box-sizing:border-box;
  4742. border-width:1px;
  4743. border-style:solid;
  4744. border-color:rgba(201, 201, 201, 1);
  4745. border-radius:4px;
  4746. -moz-box-shadow:none;
  4747. -webkit-box-shadow:none;
  4748. box-shadow:none;
  4749. font-family:'Microsoft YaHei', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:14px;
  4753. color:#CCCCCC;
  4754. text-align:left;
  4755. }
  4756. #u25582 {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:827px;
  4760. top:140px;
  4761. width:160px;
  4762. height:30px;
  4763. display:flex;
  4764. font-family:'Microsoft YaHei', sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:14px;
  4768. color:#CCCCCC;
  4769. text-align:left;
  4770. }
  4771. #u25582 .text {
  4772. position:absolute;
  4773. align-self:center;
  4774. padding:2px 8px 2px 8px;
  4775. box-sizing:border-box;
  4776. width:100%;
  4777. }
  4778. #u25582_text {
  4779. border-width:0px;
  4780. word-wrap:break-word;
  4781. text-transform:none;
  4782. visibility:hidden;
  4783. }
  4784. #u25583_input {
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:150px;
  4789. height:28px;
  4790. padding:2px 2px 2px 2px;
  4791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4792. font-weight:400;
  4793. font-style:normal;
  4794. font-size:14px;
  4795. letter-spacing:normal;
  4796. color:#000000;
  4797. vertical-align:none;
  4798. text-align:left;
  4799. text-transform:none;
  4800. background-color:transparent;
  4801. border-color:transparent;
  4802. }
  4803. #u25583_input.disabled {
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:150px;
  4808. height:28px;
  4809. padding:2px 2px 2px 2px;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:14px;
  4814. letter-spacing:normal;
  4815. color:#000000;
  4816. vertical-align:none;
  4817. text-align:left;
  4818. text-transform:none;
  4819. background-color:transparent;
  4820. border-color:transparent;
  4821. }
  4822. #u25583_div {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:150px;
  4828. height:28px;
  4829. background:inherit;
  4830. background-color:rgba(255, 255, 255, 1);
  4831. border:none;
  4832. border-radius:0px;
  4833. -moz-box-shadow:none;
  4834. -webkit-box-shadow:none;
  4835. box-shadow:none;
  4836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4837. font-weight:400;
  4838. font-style:normal;
  4839. font-size:14px;
  4840. }
  4841. #u25583 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:833px;
  4845. top:141px;
  4846. width:150px;
  4847. height:28px;
  4848. display:flex;
  4849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:14px;
  4853. }
  4854. #u25583 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 2px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u25583_div.disabled {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:150px;
  4867. height:28px;
  4868. background:inherit;
  4869. background-color:rgba(240, 240, 240, 1);
  4870. border:none;
  4871. border-radius:0px;
  4872. -moz-box-shadow:none;
  4873. -webkit-box-shadow:none;
  4874. box-shadow:none;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:14px;
  4879. }
  4880. #u25583.disabled {
  4881. }
  4882. #u25584 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:0px;
  4888. height:0px;
  4889. }
  4890. #u25585_div {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:140px;
  4896. height:30px;
  4897. background:inherit;
  4898. background-color:rgba(255, 255, 255, 1);
  4899. box-sizing:border-box;
  4900. border-width:1px;
  4901. border-style:solid;
  4902. border-color:rgba(215, 215, 215, 1);
  4903. border-radius:4px;
  4904. -moz-box-shadow:none;
  4905. -webkit-box-shadow:none;
  4906. box-shadow:none;
  4907. font-size:12px;
  4908. }
  4909. #u25585 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:357px;
  4913. top:140px;
  4914. width:140px;
  4915. height:30px;
  4916. display:flex;
  4917. font-size:12px;
  4918. }
  4919. #u25585 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 2px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u25585_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. visibility:hidden;
  4931. }
  4932. #u25586_input {
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:134px;
  4937. height:23px;
  4938. padding:2px 2px 2px 2px;
  4939. font-family:'ArialMT', 'Arial', sans-serif;
  4940. font-weight:400;
  4941. font-style:normal;
  4942. font-size:12px;
  4943. letter-spacing:normal;
  4944. color:#AAAAAA;
  4945. vertical-align:none;
  4946. text-align:left;
  4947. text-transform:none;
  4948. background-color:transparent;
  4949. border-color:transparent;
  4950. }
  4951. #u25586_input.disabled {
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:134px;
  4956. height:23px;
  4957. padding:2px 2px 2px 2px;
  4958. font-family:'ArialMT', 'Arial', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:12px;
  4962. letter-spacing:normal;
  4963. color:#AAAAAA;
  4964. vertical-align:none;
  4965. text-align:left;
  4966. text-transform:none;
  4967. background-color:transparent;
  4968. border-color:transparent;
  4969. }
  4970. #u25586_div {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:134px;
  4976. height:23px;
  4977. background:inherit;
  4978. background-color:rgba(255, 255, 255, 1);
  4979. border:none;
  4980. border-radius:0px;
  4981. -moz-box-shadow:none;
  4982. -webkit-box-shadow:none;
  4983. box-shadow:none;
  4984. font-size:12px;
  4985. color:#AAAAAA;
  4986. }
  4987. #u25586 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:361px;
  4991. top:142px;
  4992. width:134px;
  4993. height:23px;
  4994. display:flex;
  4995. font-size:12px;
  4996. color:#AAAAAA;
  4997. }
  4998. #u25586 .text {
  4999. position:absolute;
  5000. align-self:flex-start;
  5001. padding:2px 2px 2px 2px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u25586_div.disabled {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:134px;
  5011. height:23px;
  5012. background:inherit;
  5013. background-color:rgba(240, 240, 240, 1);
  5014. border:none;
  5015. border-radius:0px;
  5016. -moz-box-shadow:none;
  5017. -webkit-box-shadow:none;
  5018. box-shadow:none;
  5019. font-size:12px;
  5020. color:#AAAAAA;
  5021. }
  5022. #u25586.disabled {
  5023. }
  5024. .u25586_input_option {
  5025. font-size:12px;
  5026. }
  5027. #u25587 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:0px;
  5033. height:0px;
  5034. }
  5035. #u25588_div {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:140px;
  5041. height:30px;
  5042. background:inherit;
  5043. background-color:rgba(255, 255, 255, 1);
  5044. box-sizing:border-box;
  5045. border-width:1px;
  5046. border-style:solid;
  5047. border-color:rgba(215, 215, 215, 1);
  5048. border-radius:4px;
  5049. -moz-box-shadow:none;
  5050. -webkit-box-shadow:none;
  5051. box-shadow:none;
  5052. font-size:12px;
  5053. }
  5054. #u25588 {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:507px;
  5058. top:140px;
  5059. width:140px;
  5060. height:30px;
  5061. display:flex;
  5062. font-size:12px;
  5063. }
  5064. #u25588 .text {
  5065. position:absolute;
  5066. align-self:center;
  5067. padding:2px 2px 2px 2px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u25588_text {
  5072. border-width:0px;
  5073. word-wrap:break-word;
  5074. text-transform:none;
  5075. visibility:hidden;
  5076. }
  5077. #u25589_input {
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:134px;
  5082. height:23px;
  5083. padding:2px 2px 2px 2px;
  5084. font-family:'ArialMT', 'Arial', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:12px;
  5088. letter-spacing:normal;
  5089. color:#AAAAAA;
  5090. vertical-align:none;
  5091. text-align:left;
  5092. text-transform:none;
  5093. background-color:transparent;
  5094. border-color:transparent;
  5095. }
  5096. #u25589_input.disabled {
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:134px;
  5101. height:23px;
  5102. padding:2px 2px 2px 2px;
  5103. font-family:'ArialMT', 'Arial', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:12px;
  5107. letter-spacing:normal;
  5108. color:#AAAAAA;
  5109. vertical-align:none;
  5110. text-align:left;
  5111. text-transform:none;
  5112. background-color:transparent;
  5113. border-color:transparent;
  5114. }
  5115. #u25589_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:134px;
  5121. height:23px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 1);
  5124. border:none;
  5125. border-radius:0px;
  5126. -moz-box-shadow:none;
  5127. -webkit-box-shadow:none;
  5128. box-shadow:none;
  5129. font-size:12px;
  5130. color:#AAAAAA;
  5131. }
  5132. #u25589 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:511px;
  5136. top:142px;
  5137. width:134px;
  5138. height:23px;
  5139. display:flex;
  5140. font-size:12px;
  5141. color:#AAAAAA;
  5142. }
  5143. #u25589 .text {
  5144. position:absolute;
  5145. align-self:flex-start;
  5146. padding:2px 2px 2px 2px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u25589_div.disabled {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:134px;
  5156. height:23px;
  5157. background:inherit;
  5158. background-color:rgba(240, 240, 240, 1);
  5159. border:none;
  5160. border-radius:0px;
  5161. -moz-box-shadow:none;
  5162. -webkit-box-shadow:none;
  5163. box-shadow:none;
  5164. font-size:12px;
  5165. color:#AAAAAA;
  5166. }
  5167. #u25589.disabled {
  5168. }
  5169. .u25589_input_option {
  5170. font-size:12px;
  5171. }
  5172. #u25590 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:0px;
  5176. top:0px;
  5177. width:0px;
  5178. height:0px;
  5179. }
  5180. #u25591_div {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:0px;
  5184. top:0px;
  5185. width:680px;
  5186. height:1198px;
  5187. background:inherit;
  5188. background-color:rgba(255, 255, 255, 1);
  5189. box-sizing:border-box;
  5190. border-width:1px;
  5191. border-style:solid;
  5192. border-color:rgba(215, 215, 215, 1);
  5193. border-radius:0px;
  5194. -moz-box-shadow:none;
  5195. -webkit-box-shadow:none;
  5196. box-shadow:none;
  5197. }
  5198. #u25591 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:1639px;
  5202. top:44px;
  5203. width:680px;
  5204. height:1198px;
  5205. display:flex;
  5206. }
  5207. #u25591 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:2px 2px 2px 2px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u25591_text {
  5215. border-width:0px;
  5216. word-wrap:break-word;
  5217. text-transform:none;
  5218. visibility:hidden;
  5219. }
  5220. #u25592_div {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:37px;
  5226. height:30px;
  5227. background:inherit;
  5228. background-color:rgba(255, 255, 255, 0);
  5229. border:none;
  5230. border-radius:0px;
  5231. -moz-box-shadow:none;
  5232. -webkit-box-shadow:none;
  5233. box-shadow:none;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:18px;
  5238. color:#000000;
  5239. line-height:30px;
  5240. }
  5241. #u25592 {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:1659px;
  5245. top:64px;
  5246. width:37px;
  5247. height:30px;
  5248. display:flex;
  5249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:18px;
  5253. color:#000000;
  5254. line-height:30px;
  5255. }
  5256. #u25592 .text {
  5257. position:absolute;
  5258. align-self:flex-start;
  5259. padding:0px 0px 0px 0px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u25592_text {
  5264. border-width:0px;
  5265. white-space:nowrap;
  5266. text-transform:none;
  5267. }
  5268. #u25593_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:81px;
  5274. height:30px;
  5275. background:inherit;
  5276. background-color:rgba(255, 255, 255, 0);
  5277. border:none;
  5278. border-top:0px;
  5279. border-right:0px;
  5280. border-bottom:0px;
  5281. border-radius:0px;
  5282. border-top-left-radius:0px;
  5283. border-bottom-left-radius:0px;
  5284. -moz-box-shadow:none;
  5285. -webkit-box-shadow:none;
  5286. box-shadow:none;
  5287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:14px;
  5291. }
  5292. #u25593 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:1688px;
  5296. top:275px;
  5297. width:81px;
  5298. height:30px;
  5299. display:flex;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:14px;
  5304. }
  5305. #u25593 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:5px 10px 5px 0px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u25593_text {
  5313. border-width:0px;
  5314. white-space:nowrap;
  5315. text-transform:none;
  5316. }
  5317. #u25594 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:0px;
  5321. top:0px;
  5322. width:0px;
  5323. height:0px;
  5324. }
  5325. #u25595_div {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:40px;
  5331. height:40px;
  5332. background:inherit;
  5333. background-color:rgba(255, 255, 255, 0);
  5334. border:none;
  5335. border-top:0px;
  5336. border-right:0px;
  5337. border-bottom:0px;
  5338. border-radius:0px;
  5339. border-top-left-radius:0px;
  5340. border-bottom-left-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5345. font-weight:500;
  5346. font-style:normal;
  5347. font-size:18px;
  5348. text-align:center;
  5349. }
  5350. #u25595 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:2279px;
  5354. top:44px;
  5355. width:40px;
  5356. height:40px;
  5357. display:flex;
  5358. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5359. font-weight:500;
  5360. font-style:normal;
  5361. font-size:18px;
  5362. text-align:center;
  5363. }
  5364. #u25595 .text {
  5365. position:absolute;
  5366. align-self:center;
  5367. padding:5px 10px 5px 0px;
  5368. box-sizing:border-box;
  5369. width:100%;
  5370. }
  5371. #u25595_text {
  5372. border-width:0px;
  5373. word-wrap:break-word;
  5374. text-transform:none;
  5375. }
  5376. #u25596_img {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:13px;
  5382. height:17px;
  5383. }
  5384. #u25596 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:2266px;
  5388. top:56px;
  5389. width:13px;
  5390. height:17px;
  5391. display:flex;
  5392. }
  5393. #u25596 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:2px 2px 2px 2px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u25596_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. visibility:hidden;
  5405. }
  5406. #u25597 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:0px;
  5412. height:0px;
  5413. }
  5414. #u25598_div {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:680px;
  5420. height:60px;
  5421. background:inherit;
  5422. background-color:rgba(255, 255, 255, 1);
  5423. box-sizing:border-box;
  5424. border-width:1px;
  5425. border-style:solid;
  5426. border-color:rgba(215, 215, 215, 1);
  5427. border-radius:0px;
  5428. -moz-box-shadow:none;
  5429. -webkit-box-shadow:none;
  5430. box-shadow:none;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:14px;
  5435. color:#AAAAAA;
  5436. text-align:center;
  5437. line-height:30px;
  5438. }
  5439. #u25598 {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:1639px;
  5443. top:1182px;
  5444. width:680px;
  5445. height:60px;
  5446. display:flex;
  5447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5448. font-weight:400;
  5449. font-style:normal;
  5450. font-size:14px;
  5451. color:#AAAAAA;
  5452. text-align:center;
  5453. line-height:30px;
  5454. }
  5455. #u25598 .text {
  5456. position:absolute;
  5457. align-self:center;
  5458. padding:5px 10px 5px 10px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u25598_text {
  5463. border-width:0px;
  5464. word-wrap:break-word;
  5465. text-transform:none;
  5466. visibility:hidden;
  5467. }
  5468. #u25599_div {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:0px;
  5472. top:0px;
  5473. width:80px;
  5474. height:30px;
  5475. background:inherit;
  5476. background-color:rgba(24, 144, 255, 1);
  5477. border:none;
  5478. border-radius:4px;
  5479. -moz-box-shadow:none;
  5480. -webkit-box-shadow:none;
  5481. box-shadow:none;
  5482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:14px;
  5486. color:#FFFFFF;
  5487. }
  5488. #u25599 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:2194px;
  5492. top:1197px;
  5493. width:80px;
  5494. height:30px;
  5495. display:flex;
  5496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5497. font-weight:400;
  5498. font-style:normal;
  5499. font-size:14px;
  5500. color:#FFFFFF;
  5501. }
  5502. #u25599 .text {
  5503. position:absolute;
  5504. align-self:center;
  5505. padding:2px 2px 2px 2px;
  5506. box-sizing:border-box;
  5507. width:100%;
  5508. }
  5509. #u25599_text {
  5510. border-width:0px;
  5511. word-wrap:break-word;
  5512. text-transform:none;
  5513. }
  5514. #u25600_div {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:80px;
  5520. height:30px;
  5521. background:inherit;
  5522. background-color:rgba(255, 255, 255, 1);
  5523. box-sizing:border-box;
  5524. border-width:1px;
  5525. border-style:solid;
  5526. border-color:rgba(170, 170, 170, 1);
  5527. border-radius:4px;
  5528. -moz-box-shadow:none;
  5529. -webkit-box-shadow:none;
  5530. box-shadow:none;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:14px;
  5535. }
  5536. #u25600 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:2095px;
  5540. top:1197px;
  5541. width:80px;
  5542. height:30px;
  5543. display:flex;
  5544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:14px;
  5548. }
  5549. #u25600 .text {
  5550. position:absolute;
  5551. align-self:center;
  5552. padding:2px 2px 2px 2px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u25600_text {
  5557. border-width:0px;
  5558. word-wrap:break-word;
  5559. text-transform:none;
  5560. }
  5561. #u25601_div {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:81px;
  5567. height:30px;
  5568. background:inherit;
  5569. background-color:rgba(255, 255, 255, 0);
  5570. border:none;
  5571. border-top:0px;
  5572. border-right:0px;
  5573. border-bottom:0px;
  5574. border-radius:0px;
  5575. border-top-left-radius:0px;
  5576. border-bottom-left-radius:0px;
  5577. -moz-box-shadow:none;
  5578. -webkit-box-shadow:none;
  5579. box-shadow:none;
  5580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5581. font-weight:400;
  5582. font-style:normal;
  5583. font-size:14px;
  5584. }
  5585. #u25601 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:1688px;
  5589. top:325px;
  5590. width:81px;
  5591. height:30px;
  5592. display:flex;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:14px;
  5597. }
  5598. #u25601 .text {
  5599. position:absolute;
  5600. align-self:center;
  5601. padding:5px 10px 5px 0px;
  5602. box-sizing:border-box;
  5603. width:100%;
  5604. }
  5605. #u25601_text {
  5606. border-width:0px;
  5607. white-space:nowrap;
  5608. text-transform:none;
  5609. }
  5610. #u25602 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:0px;
  5616. height:0px;
  5617. }
  5618. #u25603_div {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:400px;
  5624. height:80px;
  5625. background:inherit;
  5626. background-color:rgba(255, 255, 255, 1);
  5627. box-sizing:border-box;
  5628. border-width:1px;
  5629. border-style:solid;
  5630. border-color:rgba(170, 170, 170, 1);
  5631. border-radius:4px;
  5632. -moz-box-shadow:none;
  5633. -webkit-box-shadow:none;
  5634. box-shadow:none;
  5635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. text-align:left;
  5639. }
  5640. #u25603 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:1791px;
  5644. top:320px;
  5645. width:400px;
  5646. height:80px;
  5647. display:flex;
  5648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. text-align:left;
  5652. }
  5653. #u25603 .text {
  5654. position:absolute;
  5655. align-self:center;
  5656. padding:2px 2px 2px 10px;
  5657. box-sizing:border-box;
  5658. width:100%;
  5659. }
  5660. #u25603_text {
  5661. border-width:0px;
  5662. word-wrap:break-word;
  5663. text-transform:none;
  5664. visibility:hidden;
  5665. }
  5666. #u25604_input {
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:188px;
  5671. height:31px;
  5672. padding:2px 2px 2px 2px;
  5673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:13px;
  5677. letter-spacing:normal;
  5678. color:#AAAAAA;
  5679. vertical-align:none;
  5680. text-align:left;
  5681. text-transform:none;
  5682. background-color:transparent;
  5683. border-color:transparent;
  5684. }
  5685. #u25604_input.disabled {
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:188px;
  5690. height:31px;
  5691. padding:2px 2px 2px 2px;
  5692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:13px;
  5696. letter-spacing:normal;
  5697. color:#AAAAAA;
  5698. vertical-align:none;
  5699. text-align:left;
  5700. text-transform:none;
  5701. background-color:transparent;
  5702. border-color:transparent;
  5703. }
  5704. #u25604_div {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:0px;
  5708. top:0px;
  5709. width:188px;
  5710. height:31px;
  5711. background:inherit;
  5712. background-color:rgba(255, 255, 255, 0);
  5713. border:none;
  5714. border-radius:0px;
  5715. -moz-box-shadow:none;
  5716. -webkit-box-shadow:none;
  5717. box-shadow:none;
  5718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5719. font-weight:400;
  5720. font-style:normal;
  5721. color:#AAAAAA;
  5722. }
  5723. #u25604 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:1801px;
  5727. top:325px;
  5728. width:188px;
  5729. height:31px;
  5730. display:flex;
  5731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. color:#AAAAAA;
  5735. }
  5736. #u25604 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 2px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u25604_div.disabled {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:188px;
  5749. height:31px;
  5750. background:inherit;
  5751. background-color:rgba(240, 240, 240, 1);
  5752. border:none;
  5753. border-radius:0px;
  5754. -moz-box-shadow:none;
  5755. -webkit-box-shadow:none;
  5756. box-shadow:none;
  5757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. color:#AAAAAA;
  5761. }
  5762. #u25604.disabled {
  5763. }
  5764. #u25605_div {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:39px;
  5770. height:24px;
  5771. background:inherit;
  5772. background-color:rgba(255, 255, 255, 0);
  5773. border:none;
  5774. border-top:0px;
  5775. border-right:0px;
  5776. border-bottom:0px;
  5777. border-radius:0px;
  5778. border-top-left-radius:0px;
  5779. border-bottom-left-radius:0px;
  5780. -moz-box-shadow:none;
  5781. -webkit-box-shadow:none;
  5782. box-shadow:none;
  5783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5784. font-weight:400;
  5785. font-style:normal;
  5786. font-size:10px;
  5787. color:#AAAAAA;
  5788. text-align:right;
  5789. }
  5790. #u25605 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:2149px;
  5794. top:375px;
  5795. width:39px;
  5796. height:24px;
  5797. display:flex;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:10px;
  5802. color:#AAAAAA;
  5803. text-align:right;
  5804. }
  5805. #u25605 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:5px 0px 5px 0px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u25605_text {
  5813. border-width:0px;
  5814. white-space:nowrap;
  5815. text-transform:none;
  5816. }
  5817. #u25606_div {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:88px;
  5823. height:30px;
  5824. background:inherit;
  5825. background-color:rgba(255, 255, 255, 0);
  5826. border:none;
  5827. border-top:0px;
  5828. border-right:0px;
  5829. border-bottom:0px;
  5830. border-radius:0px;
  5831. border-top-left-radius:0px;
  5832. border-bottom-left-radius:0px;
  5833. -moz-box-shadow:none;
  5834. -webkit-box-shadow:none;
  5835. box-shadow:none;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:14px;
  5840. }
  5841. #u25606 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:1688px;
  5845. top:225px;
  5846. width:88px;
  5847. height:30px;
  5848. display:flex;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:14px;
  5853. }
  5854. #u25606 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:5px 10px 5px 0px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u25606_text {
  5862. border-width:0px;
  5863. white-space:nowrap;
  5864. text-transform:none;
  5865. }
  5866. #u25607 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:0px;
  5872. height:0px;
  5873. }
  5874. #u25608_div {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:400px;
  5880. height:40px;
  5881. background:inherit;
  5882. background-color:rgba(255, 255, 255, 1);
  5883. box-sizing:border-box;
  5884. border-width:1px;
  5885. border-style:solid;
  5886. border-color:rgba(170, 170, 170, 1);
  5887. border-radius:4px;
  5888. -moz-box-shadow:none;
  5889. -webkit-box-shadow:none;
  5890. box-shadow:none;
  5891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. text-align:left;
  5895. }
  5896. #u25608 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:1791px;
  5900. top:220px;
  5901. width:400px;
  5902. height:40px;
  5903. display:flex;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. text-align:left;
  5908. }
  5909. #u25608 .text {
  5910. position:absolute;
  5911. align-self:center;
  5912. padding:2px 2px 2px 10px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u25608_text {
  5917. border-width:0px;
  5918. word-wrap:break-word;
  5919. text-transform:none;
  5920. visibility:hidden;
  5921. }
  5922. #u25609_input {
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:188px;
  5927. height:31px;
  5928. padding:2px 2px 2px 2px;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:13px;
  5933. letter-spacing:normal;
  5934. color:#AAAAAA;
  5935. vertical-align:none;
  5936. text-align:left;
  5937. text-transform:none;
  5938. background-color:transparent;
  5939. border-color:transparent;
  5940. }
  5941. #u25609_input.disabled {
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:188px;
  5946. height:31px;
  5947. padding:2px 2px 2px 2px;
  5948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5949. font-weight:400;
  5950. font-style:normal;
  5951. font-size:13px;
  5952. letter-spacing:normal;
  5953. color:#AAAAAA;
  5954. vertical-align:none;
  5955. text-align:left;
  5956. text-transform:none;
  5957. background-color:transparent;
  5958. border-color:transparent;
  5959. }
  5960. #u25609_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:188px;
  5966. height:31px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 0);
  5969. border:none;
  5970. border-radius:0px;
  5971. -moz-box-shadow:none;
  5972. -webkit-box-shadow:none;
  5973. box-shadow:none;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. color:#AAAAAA;
  5978. }
  5979. #u25609 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:1801px;
  5983. top:225px;
  5984. width:188px;
  5985. height:31px;
  5986. display:flex;
  5987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. color:#AAAAAA;
  5991. }
  5992. #u25609 .text {
  5993. position:absolute;
  5994. align-self:center;
  5995. padding:2px 2px 2px 2px;
  5996. box-sizing:border-box;
  5997. width:100%;
  5998. }
  5999. #u25609_div.disabled {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:188px;
  6005. height:31px;
  6006. background:inherit;
  6007. background-color:rgba(240, 240, 240, 1);
  6008. border:none;
  6009. border-radius:0px;
  6010. -moz-box-shadow:none;
  6011. -webkit-box-shadow:none;
  6012. box-shadow:none;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. color:#AAAAAA;
  6017. }
  6018. #u25609.disabled {
  6019. }
  6020. #u25610 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:0px;
  6026. height:0px;
  6027. }
  6028. #u25611_div {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:400px;
  6034. height:40px;
  6035. background:inherit;
  6036. background-color:rgba(242, 242, 242, 1);
  6037. box-sizing:border-box;
  6038. border-width:1px;
  6039. border-style:solid;
  6040. border-color:rgba(170, 170, 170, 1);
  6041. border-radius:4px;
  6042. -moz-box-shadow:none;
  6043. -webkit-box-shadow:none;
  6044. box-shadow:none;
  6045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6046. font-weight:400;
  6047. font-style:normal;
  6048. text-align:left;
  6049. }
  6050. #u25611 {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:1791px;
  6054. top:270px;
  6055. width:400px;
  6056. height:40px;
  6057. display:flex;
  6058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. text-align:left;
  6062. }
  6063. #u25611 .text {
  6064. position:absolute;
  6065. align-self:center;
  6066. padding:2px 2px 2px 10px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u25611_text {
  6071. border-width:0px;
  6072. word-wrap:break-word;
  6073. text-transform:none;
  6074. visibility:hidden;
  6075. }
  6076. #u25612_input {
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:382px;
  6081. height:31px;
  6082. padding:2px 2px 2px 2px;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:13px;
  6087. letter-spacing:normal;
  6088. color:#AAAAAA;
  6089. vertical-align:none;
  6090. text-align:left;
  6091. text-transform:none;
  6092. background-color:transparent;
  6093. border-color:transparent;
  6094. }
  6095. #u25612_input.disabled {
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:382px;
  6100. height:31px;
  6101. padding:2px 2px 2px 2px;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:13px;
  6106. letter-spacing:normal;
  6107. color:#AAAAAA;
  6108. vertical-align:none;
  6109. text-align:left;
  6110. text-transform:none;
  6111. background-color:transparent;
  6112. border-color:transparent;
  6113. }
  6114. #u25612_div {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:382px;
  6120. height:31px;
  6121. background:inherit;
  6122. background-color:rgba(242, 242, 242, 1);
  6123. border:none;
  6124. border-radius:0px;
  6125. -moz-box-shadow:none;
  6126. -webkit-box-shadow:none;
  6127. box-shadow:none;
  6128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. color:#AAAAAA;
  6132. }
  6133. #u25612 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:1801px;
  6137. top:275px;
  6138. width:382px;
  6139. height:31px;
  6140. display:flex;
  6141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. color:#AAAAAA;
  6145. }
  6146. #u25612 .text {
  6147. position:absolute;
  6148. align-self:center;
  6149. padding:2px 2px 2px 2px;
  6150. box-sizing:border-box;
  6151. width:100%;
  6152. }
  6153. #u25612_div.disabled {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:382px;
  6159. height:31px;
  6160. background:inherit;
  6161. background-color:rgba(240, 240, 240, 1);
  6162. border:none;
  6163. border-radius:0px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. color:#AAAAAA;
  6171. }
  6172. #u25612.disabled {
  6173. }
  6174. #u25613 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:0px;
  6180. height:0px;
  6181. }
  6182. #u25614_div {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:400px;
  6188. height:40px;
  6189. background:inherit;
  6190. background-color:rgba(255, 255, 255, 1);
  6191. box-sizing:border-box;
  6192. border-width:1px;
  6193. border-style:solid;
  6194. border-color:rgba(215, 215, 215, 1);
  6195. border-radius:4px;
  6196. -moz-box-shadow:none;
  6197. -webkit-box-shadow:none;
  6198. box-shadow:none;
  6199. font-size:14px;
  6200. }
  6201. #u25614 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:1791px;
  6205. top:120px;
  6206. width:400px;
  6207. height:40px;
  6208. display:flex;
  6209. font-size:14px;
  6210. }
  6211. #u25614 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:2px 2px 2px 2px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u25614_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. visibility:hidden;
  6223. }
  6224. #u25615_input {
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:381px;
  6229. height:31px;
  6230. padding:2px 2px 2px 2px;
  6231. font-family:'ArialMT', 'Arial', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:14px;
  6235. letter-spacing:normal;
  6236. color:#AAAAAA;
  6237. vertical-align:none;
  6238. text-align:left;
  6239. text-transform:none;
  6240. background-color:transparent;
  6241. border-color:transparent;
  6242. }
  6243. #u25615_input.disabled {
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:381px;
  6248. height:31px;
  6249. padding:2px 2px 2px 2px;
  6250. font-family:'ArialMT', 'Arial', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:14px;
  6254. letter-spacing:normal;
  6255. color:#AAAAAA;
  6256. vertical-align:none;
  6257. text-align:left;
  6258. text-transform:none;
  6259. background-color:transparent;
  6260. border-color:transparent;
  6261. }
  6262. #u25615_div {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:381px;
  6268. height:31px;
  6269. background:inherit;
  6270. background-color:rgba(255, 255, 255, 1);
  6271. border:none;
  6272. border-radius:0px;
  6273. -moz-box-shadow:none;
  6274. -webkit-box-shadow:none;
  6275. box-shadow:none;
  6276. font-size:14px;
  6277. color:#AAAAAA;
  6278. }
  6279. #u25615 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:1802px;
  6283. top:123px;
  6284. width:381px;
  6285. height:31px;
  6286. display:flex;
  6287. font-size:14px;
  6288. color:#AAAAAA;
  6289. }
  6290. #u25615 .text {
  6291. position:absolute;
  6292. align-self:flex-start;
  6293. padding:2px 2px 2px 2px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u25615_div.disabled {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:381px;
  6303. height:31px;
  6304. background:inherit;
  6305. background-color:rgba(240, 240, 240, 1);
  6306. border:none;
  6307. border-radius:0px;
  6308. -moz-box-shadow:none;
  6309. -webkit-box-shadow:none;
  6310. box-shadow:none;
  6311. font-size:14px;
  6312. color:#AAAAAA;
  6313. }
  6314. #u25615.disabled {
  6315. }
  6316. .u25615_input_option {
  6317. font-size:14px;
  6318. }
  6319. #u25616_div {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:88px;
  6325. height:30px;
  6326. background:inherit;
  6327. background-color:rgba(255, 255, 255, 0);
  6328. border:none;
  6329. border-top:0px;
  6330. border-right:0px;
  6331. border-bottom:0px;
  6332. border-radius:0px;
  6333. border-top-left-radius:0px;
  6334. border-bottom-left-radius:0px;
  6335. -moz-box-shadow:none;
  6336. -webkit-box-shadow:none;
  6337. box-shadow:none;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:14px;
  6342. }
  6343. #u25616 {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:1688px;
  6347. top:125px;
  6348. width:88px;
  6349. height:30px;
  6350. display:flex;
  6351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6352. font-weight:400;
  6353. font-style:normal;
  6354. font-size:14px;
  6355. }
  6356. #u25616 .text {
  6357. position:absolute;
  6358. align-self:center;
  6359. padding:5px 10px 5px 0px;
  6360. box-sizing:border-box;
  6361. width:100%;
  6362. }
  6363. #u25616_text {
  6364. border-width:0px;
  6365. white-space:nowrap;
  6366. text-transform:none;
  6367. }
  6368. #u25617 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:0px;
  6374. height:0px;
  6375. }
  6376. #u25618_div {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:400px;
  6382. height:40px;
  6383. background:inherit;
  6384. background-color:rgba(255, 255, 255, 1);
  6385. box-sizing:border-box;
  6386. border-width:1px;
  6387. border-style:solid;
  6388. border-color:rgba(215, 215, 215, 1);
  6389. border-radius:4px;
  6390. -moz-box-shadow:none;
  6391. -webkit-box-shadow:none;
  6392. box-shadow:none;
  6393. font-size:14px;
  6394. }
  6395. #u25618 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:1791px;
  6399. top:170px;
  6400. width:400px;
  6401. height:40px;
  6402. display:flex;
  6403. font-size:14px;
  6404. }
  6405. #u25618 .text {
  6406. position:absolute;
  6407. align-self:center;
  6408. padding:2px 2px 2px 2px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u25618_text {
  6413. border-width:0px;
  6414. word-wrap:break-word;
  6415. text-transform:none;
  6416. visibility:hidden;
  6417. }
  6418. #u25619_input {
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:381px;
  6423. height:31px;
  6424. padding:2px 2px 2px 2px;
  6425. font-family:'ArialMT', 'Arial', sans-serif;
  6426. font-weight:400;
  6427. font-style:normal;
  6428. font-size:14px;
  6429. letter-spacing:normal;
  6430. color:#AAAAAA;
  6431. vertical-align:none;
  6432. text-align:left;
  6433. text-transform:none;
  6434. background-color:transparent;
  6435. border-color:transparent;
  6436. }
  6437. #u25619_input.disabled {
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:381px;
  6442. height:31px;
  6443. padding:2px 2px 2px 2px;
  6444. font-family:'ArialMT', 'Arial', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:14px;
  6448. letter-spacing:normal;
  6449. color:#AAAAAA;
  6450. vertical-align:none;
  6451. text-align:left;
  6452. text-transform:none;
  6453. background-color:transparent;
  6454. border-color:transparent;
  6455. }
  6456. #u25619_div {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:381px;
  6462. height:31px;
  6463. background:inherit;
  6464. background-color:rgba(255, 255, 255, 1);
  6465. border:none;
  6466. border-radius:0px;
  6467. -moz-box-shadow:none;
  6468. -webkit-box-shadow:none;
  6469. box-shadow:none;
  6470. font-size:14px;
  6471. color:#AAAAAA;
  6472. }
  6473. #u25619 {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:1802px;
  6477. top:173px;
  6478. width:381px;
  6479. height:31px;
  6480. display:flex;
  6481. font-size:14px;
  6482. color:#AAAAAA;
  6483. }
  6484. #u25619 .text {
  6485. position:absolute;
  6486. align-self:flex-start;
  6487. padding:2px 2px 2px 2px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u25619_div.disabled {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:381px;
  6497. height:31px;
  6498. background:inherit;
  6499. background-color:rgba(240, 240, 240, 1);
  6500. border:none;
  6501. border-radius:0px;
  6502. -moz-box-shadow:none;
  6503. -webkit-box-shadow:none;
  6504. box-shadow:none;
  6505. font-size:14px;
  6506. color:#AAAAAA;
  6507. }
  6508. #u25619.disabled {
  6509. }
  6510. .u25619_input_option {
  6511. font-size:14px;
  6512. }
  6513. #u25620_div {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:88px;
  6519. height:30px;
  6520. background:inherit;
  6521. background-color:rgba(255, 255, 255, 0);
  6522. border:none;
  6523. border-top:0px;
  6524. border-right:0px;
  6525. border-bottom:0px;
  6526. border-radius:0px;
  6527. border-top-left-radius:0px;
  6528. border-bottom-left-radius:0px;
  6529. -moz-box-shadow:none;
  6530. -webkit-box-shadow:none;
  6531. box-shadow:none;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:14px;
  6536. }
  6537. #u25620 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:1688px;
  6541. top:175px;
  6542. width:88px;
  6543. height:30px;
  6544. display:flex;
  6545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. font-size:14px;
  6549. }
  6550. #u25620 .text {
  6551. position:absolute;
  6552. align-self:center;
  6553. padding:5px 10px 5px 0px;
  6554. box-sizing:border-box;
  6555. width:100%;
  6556. }
  6557. #u25620_text {
  6558. border-width:0px;
  6559. white-space:nowrap;
  6560. text-transform:none;
  6561. }
  6562. #u25622_div {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:0px;
  6566. top:0px;
  6567. width:200px;
  6568. height:1180px;
  6569. background:inherit;
  6570. background-color:rgba(255, 255, 255, 1);
  6571. border:none;
  6572. border-radius:0px;
  6573. -moz-box-shadow:none;
  6574. -webkit-box-shadow:none;
  6575. box-shadow:none;
  6576. }
  6577. #u25622 {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:120px;
  6581. top:50px;
  6582. width:200px;
  6583. height:1180px;
  6584. display:flex;
  6585. }
  6586. #u25622 .text {
  6587. position:absolute;
  6588. align-self:center;
  6589. padding:2px 2px 2px 2px;
  6590. box-sizing:border-box;
  6591. width:100%;
  6592. }
  6593. #u25622_text {
  6594. border-width:0px;
  6595. word-wrap:break-word;
  6596. text-transform:none;
  6597. visibility:hidden;
  6598. }
  6599. #u25623_div {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:200px;
  6605. height:60px;
  6606. background:inherit;
  6607. background-color:rgba(224, 231, 247, 1);
  6608. border:none;
  6609. border-radius:0px;
  6610. -moz-box-shadow:none;
  6611. -webkit-box-shadow:none;
  6612. box-shadow:none;
  6613. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6614. font-weight:500;
  6615. font-style:normal;
  6616. font-size:18px;
  6617. }
  6618. #u25623 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:120px;
  6622. top:50px;
  6623. width:200px;
  6624. height:60px;
  6625. display:flex;
  6626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6627. font-weight:500;
  6628. font-style:normal;
  6629. font-size:18px;
  6630. }
  6631. #u25623 .text {
  6632. position:absolute;
  6633. align-self:center;
  6634. padding:0px 0px 0px 20px;
  6635. box-sizing:border-box;
  6636. width:100%;
  6637. }
  6638. #u25623_text {
  6639. border-width:0px;
  6640. word-wrap:break-word;
  6641. text-transform:none;
  6642. }
  6643. #u25624_div {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:65px;
  6649. height:22px;
  6650. background:inherit;
  6651. background-color:rgba(255, 255, 255, 0);
  6652. border:none;
  6653. border-radius:0px;
  6654. -moz-box-shadow:none;
  6655. -webkit-box-shadow:none;
  6656. box-shadow:none;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:16px;
  6661. }
  6662. #u25624 {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:147px;
  6666. top:310px;
  6667. width:65px;
  6668. height:22px;
  6669. display:flex;
  6670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6671. font-weight:400;
  6672. font-style:normal;
  6673. font-size:16px;
  6674. }
  6675. #u25624 .text {
  6676. position:absolute;
  6677. align-self:flex-start;
  6678. padding:0px 0px 0px 0px;
  6679. box-sizing:border-box;
  6680. width:100%;
  6681. }
  6682. #u25624_text {
  6683. border-width:0px;
  6684. white-space:nowrap;
  6685. text-transform:none;
  6686. }
  6687. #u25625_div {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:0px;
  6691. top:0px;
  6692. width:65px;
  6693. height:22px;
  6694. background:inherit;
  6695. background-color:rgba(255, 255, 255, 0);
  6696. border:none;
  6697. border-radius:0px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:16px;
  6705. }
  6706. #u25625 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:147px;
  6710. top:352px;
  6711. width:65px;
  6712. height:22px;
  6713. display:flex;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:16px;
  6718. }
  6719. #u25625 .text {
  6720. position:absolute;
  6721. align-self:flex-start;
  6722. padding:0px 0px 0px 0px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u25625_text {
  6727. border-width:0px;
  6728. white-space:nowrap;
  6729. text-transform:none;
  6730. }
  6731. #u25626_div {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:65px;
  6737. height:22px;
  6738. background:inherit;
  6739. background-color:rgba(255, 255, 255, 0);
  6740. border:none;
  6741. border-radius:0px;
  6742. -moz-box-shadow:none;
  6743. -webkit-box-shadow:none;
  6744. box-shadow:none;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:16px;
  6749. }
  6750. #u25626 {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:147px;
  6754. top:170px;
  6755. width:65px;
  6756. height:22px;
  6757. display:flex;
  6758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6759. font-weight:400;
  6760. font-style:normal;
  6761. font-size:16px;
  6762. }
  6763. #u25626 .text {
  6764. position:absolute;
  6765. align-self:flex-start;
  6766. padding:0px 0px 0px 0px;
  6767. box-sizing:border-box;
  6768. width:100%;
  6769. }
  6770. #u25626_text {
  6771. border-width:0px;
  6772. white-space:nowrap;
  6773. text-transform:none;
  6774. }
  6775. #u25627_div {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:65px;
  6781. height:22px;
  6782. background:inherit;
  6783. background-color:rgba(255, 255, 255, 0);
  6784. border:none;
  6785. border-radius:0px;
  6786. -moz-box-shadow:none;
  6787. -webkit-box-shadow:none;
  6788. box-shadow:none;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:16px;
  6793. }
  6794. #u25627 {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:147px;
  6798. top:212px;
  6799. width:65px;
  6800. height:22px;
  6801. display:flex;
  6802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:16px;
  6806. }
  6807. #u25627 .text {
  6808. position:absolute;
  6809. align-self:flex-start;
  6810. padding:0px 0px 0px 0px;
  6811. box-sizing:border-box;
  6812. width:100%;
  6813. }
  6814. #u25627_text {
  6815. border-width:0px;
  6816. white-space:nowrap;
  6817. text-transform:none;
  6818. }
  6819. #u25628_img {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:201px;
  6825. height:2px;
  6826. }
  6827. #u25628 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:120px;
  6831. top:253px;
  6832. width:200px;
  6833. height:1px;
  6834. display:flex;
  6835. }
  6836. #u25628 .text {
  6837. position:absolute;
  6838. align-self:center;
  6839. padding:2px 2px 2px 2px;
  6840. box-sizing:border-box;
  6841. width:100%;
  6842. }
  6843. #u25628_text {
  6844. border-width:0px;
  6845. word-wrap:break-word;
  6846. text-transform:none;
  6847. visibility:hidden;
  6848. }
  6849. #u25629_div {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:49px;
  6855. height:17px;
  6856. background:inherit;
  6857. background-color:rgba(255, 255, 255, 0);
  6858. border:none;
  6859. border-radius:0px;
  6860. -moz-box-shadow:none;
  6861. -webkit-box-shadow:none;
  6862. box-shadow:none;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:12px;
  6867. color:#AAAAAA;
  6868. }
  6869. #u25629 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:147px;
  6873. top:130px;
  6874. width:49px;
  6875. height:17px;
  6876. display:flex;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:12px;
  6881. color:#AAAAAA;
  6882. }
  6883. #u25629 .text {
  6884. position:absolute;
  6885. align-self:flex-start;
  6886. padding:0px 0px 0px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u25629_text {
  6891. border-width:0px;
  6892. white-space:nowrap;
  6893. text-transform:none;
  6894. }
  6895. #u25630_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:97px;
  6901. height:22px;
  6902. background:inherit;
  6903. background-color:rgba(255, 255, 255, 0);
  6904. border:none;
  6905. border-radius:0px;
  6906. -moz-box-shadow:none;
  6907. -webkit-box-shadow:none;
  6908. box-shadow:none;
  6909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:16px;
  6913. }
  6914. #u25630 {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:147px;
  6918. top:455px;
  6919. width:97px;
  6920. height:22px;
  6921. display:flex;
  6922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6923. font-weight:400;
  6924. font-style:normal;
  6925. font-size:16px;
  6926. }
  6927. #u25630 .text {
  6928. position:absolute;
  6929. align-self:flex-start;
  6930. padding:0px 0px 0px 0px;
  6931. box-sizing:border-box;
  6932. width:100%;
  6933. }
  6934. #u25630_text {
  6935. border-width:0px;
  6936. white-space:nowrap;
  6937. text-transform:none;
  6938. }
  6939. #u25631_div {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:0px;
  6943. top:0px;
  6944. width:65px;
  6945. height:22px;
  6946. background:inherit;
  6947. background-color:rgba(255, 255, 255, 0);
  6948. border:none;
  6949. border-radius:0px;
  6950. -moz-box-shadow:none;
  6951. -webkit-box-shadow:none;
  6952. box-shadow:none;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:16px;
  6957. }
  6958. #u25631 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:147px;
  6962. top:497px;
  6963. width:65px;
  6964. height:22px;
  6965. display:flex;
  6966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:16px;
  6970. }
  6971. #u25631 .text {
  6972. position:absolute;
  6973. align-self:flex-start;
  6974. padding:0px 0px 0px 0px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u25631_text {
  6979. border-width:0px;
  6980. white-space:nowrap;
  6981. text-transform:none;
  6982. }
  6983. #u25632_img {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:201px;
  6989. height:2px;
  6990. }
  6991. #u25632 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:120px;
  6995. top:394px;
  6996. width:200px;
  6997. height:1px;
  6998. display:flex;
  6999. }
  7000. #u25632 .text {
  7001. position:absolute;
  7002. align-self:center;
  7003. padding:2px 2px 2px 2px;
  7004. box-sizing:border-box;
  7005. width:100%;
  7006. }
  7007. #u25632_text {
  7008. border-width:0px;
  7009. word-wrap:break-word;
  7010. text-transform:none;
  7011. visibility:hidden;
  7012. }
  7013. #u25633_div {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:0px;
  7017. top:0px;
  7018. width:49px;
  7019. height:17px;
  7020. background:inherit;
  7021. background-color:rgba(255, 255, 255, 0);
  7022. border:none;
  7023. border-radius:0px;
  7024. -moz-box-shadow:none;
  7025. -webkit-box-shadow:none;
  7026. box-shadow:none;
  7027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:12px;
  7031. color:#AAAAAA;
  7032. }
  7033. #u25633 {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:147px;
  7037. top:415px;
  7038. width:49px;
  7039. height:17px;
  7040. display:flex;
  7041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7042. font-weight:400;
  7043. font-style:normal;
  7044. font-size:12px;
  7045. color:#AAAAAA;
  7046. }
  7047. #u25633 .text {
  7048. position:absolute;
  7049. align-self:flex-start;
  7050. padding:0px 0px 0px 0px;
  7051. box-sizing:border-box;
  7052. width:100%;
  7053. }
  7054. #u25633_text {
  7055. border-width:0px;
  7056. white-space:nowrap;
  7057. text-transform:none;
  7058. }
  7059. #u25634_div {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:0px;
  7064. width:49px;
  7065. height:17px;
  7066. background:inherit;
  7067. background-color:rgba(255, 255, 255, 0);
  7068. border:none;
  7069. border-radius:0px;
  7070. -moz-box-shadow:none;
  7071. -webkit-box-shadow:none;
  7072. box-shadow:none;
  7073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7074. font-weight:400;
  7075. font-style:normal;
  7076. font-size:12px;
  7077. color:#AAAAAA;
  7078. }
  7079. #u25634 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:147px;
  7083. top:273px;
  7084. width:49px;
  7085. height:17px;
  7086. display:flex;
  7087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:12px;
  7091. color:#AAAAAA;
  7092. }
  7093. #u25634 .text {
  7094. position:absolute;
  7095. align-self:flex-start;
  7096. padding:0px 0px 0px 0px;
  7097. box-sizing:border-box;
  7098. width:100%;
  7099. }
  7100. #u25634_text {
  7101. border-width:0px;
  7102. white-space:nowrap;
  7103. text-transform:none;
  7104. }
  7105. #u25636 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:0px;
  7111. height:0px;
  7112. }
  7113. #u25637_div {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:30px;
  7119. height:30px;
  7120. background:inherit;
  7121. background-color:rgba(255, 255, 255, 1);
  7122. box-sizing:border-box;
  7123. border-width:1px;
  7124. border-style:solid;
  7125. border-color:rgba(228, 228, 228, 1);
  7126. border-radius:4px;
  7127. -moz-box-shadow:none;
  7128. -webkit-box-shadow:none;
  7129. box-shadow:none;
  7130. font-family:'Microsoft YaHei', sans-serif;
  7131. font-weight:400;
  7132. font-style:normal;
  7133. font-size:14px;
  7134. }
  7135. #u25637 {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:996px;
  7139. top:1183px;
  7140. width:30px;
  7141. height:30px;
  7142. display:flex;
  7143. font-family:'Microsoft YaHei', sans-serif;
  7144. font-weight:400;
  7145. font-style:normal;
  7146. font-size:14px;
  7147. }
  7148. #u25637 .text {
  7149. position:absolute;
  7150. align-self:center;
  7151. padding:2px 2px 2px 2px;
  7152. box-sizing:border-box;
  7153. width:100%;
  7154. }
  7155. #u25637_text {
  7156. border-width:0px;
  7157. word-wrap:break-word;
  7158. text-transform:none;
  7159. }
  7160. #u25638_div {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:0px;
  7164. top:0px;
  7165. width:49px;
  7166. height:30px;
  7167. background:inherit;
  7168. background-color:rgba(255, 255, 255, 0);
  7169. box-sizing:border-box;
  7170. border-width:1px;
  7171. border-style:solid;
  7172. border-color:rgba(188, 188, 188, 1);
  7173. border-radius:4px;
  7174. -moz-box-shadow:none;
  7175. -webkit-box-shadow:none;
  7176. box-shadow:none;
  7177. font-family:'Microsoft YaHei', sans-serif;
  7178. font-weight:400;
  7179. font-style:normal;
  7180. font-size:14px;
  7181. color:#1E1E1E;
  7182. }
  7183. #u25638 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:1512px;
  7187. top:1183px;
  7188. width:49px;
  7189. height:30px;
  7190. display:flex;
  7191. font-family:'Microsoft YaHei', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:14px;
  7195. color:#1E1E1E;
  7196. }
  7197. #u25638 .text {
  7198. position:absolute;
  7199. align-self:center;
  7200. padding:5px 10px 5px 10px;
  7201. box-sizing:border-box;
  7202. width:100%;
  7203. }
  7204. #u25638_text {
  7205. border-width:0px;
  7206. white-space:nowrap;
  7207. text-transform:none;
  7208. }
  7209. #u25639 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:0px;
  7213. top:0px;
  7214. width:0px;
  7215. height:0px;
  7216. }
  7217. #u25640_div {
  7218. border-width:0px;
  7219. position:absolute;
  7220. left:0px;
  7221. top:0px;
  7222. width:33px;
  7223. height:24px;
  7224. background:inherit;
  7225. background-color:rgba(255, 255, 255, 1);
  7226. border:none;
  7227. border-radius:0px;
  7228. -moz-box-shadow:none;
  7229. -webkit-box-shadow:none;
  7230. box-shadow:none;
  7231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:14px;
  7235. color:#BCBCBC;
  7236. text-align:left;
  7237. }
  7238. #u25640 {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:1280px;
  7242. top:1186px;
  7243. width:33px;
  7244. height:24px;
  7245. display:flex;
  7246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7247. font-weight:400;
  7248. font-style:normal;
  7249. font-size:14px;
  7250. color:#BCBCBC;
  7251. text-align:left;
  7252. }
  7253. #u25640 .text {
  7254. position:absolute;
  7255. align-self:center;
  7256. padding:2px 2px 2px 2px;
  7257. box-sizing:border-box;
  7258. width:100%;
  7259. }
  7260. #u25640_text {
  7261. border-width:0px;
  7262. white-space:nowrap;
  7263. text-transform:none;
  7264. }
  7265. #u25641_div {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:0px;
  7269. top:0px;
  7270. width:40px;
  7271. height:30px;
  7272. background:inherit;
  7273. background-color:rgba(255, 255, 255, 1);
  7274. box-sizing:border-box;
  7275. border-width:1px;
  7276. border-style:solid;
  7277. border-color:rgba(228, 228, 228, 1);
  7278. border-radius:4px;
  7279. -moz-box-shadow:none;
  7280. -webkit-box-shadow:none;
  7281. box-shadow:none;
  7282. font-family:'Microsoft YaHei', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:14px;
  7286. }
  7287. #u25641 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:1315px;
  7291. top:1183px;
  7292. width:40px;
  7293. height:30px;
  7294. display:flex;
  7295. font-family:'Microsoft YaHei', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:14px;
  7299. }
  7300. #u25641 .text {
  7301. position:absolute;
  7302. align-self:center;
  7303. padding:2px 2px 2px 2px;
  7304. box-sizing:border-box;
  7305. width:100%;
  7306. }
  7307. #u25641_text {
  7308. border-width:0px;
  7309. word-wrap:break-word;
  7310. text-transform:none;
  7311. visibility:hidden;
  7312. }
  7313. #u25642_div {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:0px;
  7317. top:0px;
  7318. width:19px;
  7319. height:24px;
  7320. background:inherit;
  7321. background-color:rgba(255, 255, 255, 1);
  7322. border:none;
  7323. border-radius:0px;
  7324. -moz-box-shadow:none;
  7325. -webkit-box-shadow:none;
  7326. box-shadow:none;
  7327. font-family:'Microsoft YaHei', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:14px;
  7331. color:#BCBCBC;
  7332. text-align:left;
  7333. }
  7334. #u25642 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:1357px;
  7338. top:1187px;
  7339. width:19px;
  7340. height:24px;
  7341. display:flex;
  7342. font-family:'Microsoft YaHei', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:14px;
  7346. color:#BCBCBC;
  7347. text-align:left;
  7348. }
  7349. #u25642 .text {
  7350. position:absolute;
  7351. align-self:center;
  7352. padding:2px 2px 2px 2px;
  7353. box-sizing:border-box;
  7354. width:100%;
  7355. }
  7356. #u25642_text {
  7357. border-width:0px;
  7358. white-space:nowrap;
  7359. text-transform:none;
  7360. }
  7361. #u25643_input {
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:34px;
  7366. height:25px;
  7367. padding:2px 2px 2px 2px;
  7368. font-family:'Microsoft YaHei', sans-serif;
  7369. font-weight:400;
  7370. font-style:normal;
  7371. font-size:13px;
  7372. letter-spacing:normal;
  7373. color:#000000;
  7374. vertical-align:none;
  7375. text-align:left;
  7376. text-transform:none;
  7377. background-color:transparent;
  7378. border-color:transparent;
  7379. }
  7380. #u25643_input.disabled {
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:34px;
  7385. height:25px;
  7386. padding:2px 2px 2px 2px;
  7387. font-family:'Microsoft YaHei', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:13px;
  7391. letter-spacing:normal;
  7392. color:#000000;
  7393. vertical-align:none;
  7394. text-align:left;
  7395. text-transform:none;
  7396. background-color:transparent;
  7397. border-color:transparent;
  7398. }
  7399. #u25643_div {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:34px;
  7405. height:25px;
  7406. background:inherit;
  7407. background-color:rgba(255, 255, 255, 1);
  7408. border:none;
  7409. border-radius:0px;
  7410. -moz-box-shadow:none;
  7411. -webkit-box-shadow:none;
  7412. box-shadow:none;
  7413. font-family:'Microsoft YaHei', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. }
  7417. #u25643 {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:1318px;
  7421. top:1185px;
  7422. width:34px;
  7423. height:25px;
  7424. display:flex;
  7425. font-family:'Microsoft YaHei', sans-serif;
  7426. font-weight:400;
  7427. font-style:normal;
  7428. }
  7429. #u25643 .text {
  7430. position:absolute;
  7431. align-self:center;
  7432. padding:2px 2px 2px 2px;
  7433. box-sizing:border-box;
  7434. width:100%;
  7435. }
  7436. #u25643_div.disabled {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:34px;
  7442. height:25px;
  7443. background:inherit;
  7444. background-color:rgba(240, 240, 240, 1);
  7445. border:none;
  7446. border-radius:0px;
  7447. -moz-box-shadow:none;
  7448. -webkit-box-shadow:none;
  7449. box-shadow:none;
  7450. font-family:'Microsoft YaHei', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. }
  7454. #u25643.disabled {
  7455. }
  7456. #u25644_div {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:30px;
  7462. height:30px;
  7463. background:inherit;
  7464. background-color:rgba(41, 143, 255, 1);
  7465. border:none;
  7466. border-radius:4px;
  7467. -moz-box-shadow:none;
  7468. -webkit-box-shadow:none;
  7469. box-shadow:none;
  7470. font-family:'Microsoft YaHei', sans-serif;
  7471. font-weight:400;
  7472. font-style:normal;
  7473. font-size:14px;
  7474. color:#FFFFFF;
  7475. }
  7476. #u25644 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:1030px;
  7480. top:1183px;
  7481. width:30px;
  7482. height:30px;
  7483. display:flex;
  7484. font-family:'Microsoft YaHei', sans-serif;
  7485. font-weight:400;
  7486. font-style:normal;
  7487. font-size:14px;
  7488. color:#FFFFFF;
  7489. }
  7490. #u25644 .text {
  7491. position:absolute;
  7492. align-self:center;
  7493. padding:2px 2px 2px 2px;
  7494. box-sizing:border-box;
  7495. width:100%;
  7496. }
  7497. #u25644_text {
  7498. border-width:0px;
  7499. word-wrap:break-word;
  7500. text-transform:none;
  7501. }
  7502. #u25645_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:30px;
  7508. height:30px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 1);
  7511. box-sizing:border-box;
  7512. border-width:1px;
  7513. border-style:solid;
  7514. border-color:rgba(228, 228, 228, 1);
  7515. border-radius:4px;
  7516. -moz-box-shadow:none;
  7517. -webkit-box-shadow:none;
  7518. box-shadow:none;
  7519. font-family:'Microsoft YaHei', sans-serif;
  7520. font-weight:400;
  7521. font-style:normal;
  7522. font-size:14px;
  7523. }
  7524. #u25645 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:1064px;
  7528. top:1183px;
  7529. width:30px;
  7530. height:30px;
  7531. display:flex;
  7532. font-family:'Microsoft YaHei', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:14px;
  7536. }
  7537. #u25645 .text {
  7538. position:absolute;
  7539. align-self:center;
  7540. padding:2px 2px 2px 2px;
  7541. box-sizing:border-box;
  7542. width:100%;
  7543. }
  7544. #u25645_text {
  7545. border-width:0px;
  7546. word-wrap:break-word;
  7547. text-transform:none;
  7548. }
  7549. #u25646_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:30px;
  7555. height:30px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 1);
  7558. box-sizing:border-box;
  7559. border-width:1px;
  7560. border-style:solid;
  7561. border-color:rgba(228, 228, 228, 1);
  7562. border-radius:4px;
  7563. -moz-box-shadow:none;
  7564. -webkit-box-shadow:none;
  7565. box-shadow:none;
  7566. font-family:'Microsoft YaHei', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:14px;
  7570. }
  7571. #u25646 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:1098px;
  7575. top:1183px;
  7576. width:30px;
  7577. height:30px;
  7578. display:flex;
  7579. font-family:'Microsoft YaHei', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:14px;
  7583. }
  7584. #u25646 .text {
  7585. position:absolute;
  7586. align-self:center;
  7587. padding:2px 2px 2px 2px;
  7588. box-sizing:border-box;
  7589. width:100%;
  7590. }
  7591. #u25646_text {
  7592. border-width:0px;
  7593. word-wrap:break-word;
  7594. text-transform:none;
  7595. }
  7596. #u25647_div {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:30px;
  7602. height:30px;
  7603. background:inherit;
  7604. background-color:rgba(255, 255, 255, 1);
  7605. border:none;
  7606. border-radius:4px;
  7607. -moz-box-shadow:none;
  7608. -webkit-box-shadow:none;
  7609. box-shadow:none;
  7610. font-family:'Microsoft YaHei', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:14px;
  7614. }
  7615. #u25647 {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:1128px;
  7619. top:1183px;
  7620. width:30px;
  7621. height:30px;
  7622. display:flex;
  7623. font-family:'Microsoft YaHei', sans-serif;
  7624. font-weight:400;
  7625. font-style:normal;
  7626. font-size:14px;
  7627. }
  7628. #u25647 .text {
  7629. position:absolute;
  7630. align-self:center;
  7631. padding:2px 2px 2px 2px;
  7632. box-sizing:border-box;
  7633. width:100%;
  7634. }
  7635. #u25647_text {
  7636. border-width:0px;
  7637. word-wrap:break-word;
  7638. text-transform:none;
  7639. }
  7640. #u25648_div {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:0px;
  7644. top:0px;
  7645. width:30px;
  7646. height:30px;
  7647. background:inherit;
  7648. background-color:rgba(255, 255, 255, 1);
  7649. box-sizing:border-box;
  7650. border-width:1px;
  7651. border-style:solid;
  7652. border-color:rgba(228, 228, 228, 1);
  7653. border-radius:4px;
  7654. -moz-box-shadow:none;
  7655. -webkit-box-shadow:none;
  7656. box-shadow:none;
  7657. font-family:'Microsoft YaHei', sans-serif;
  7658. font-weight:400;
  7659. font-style:normal;
  7660. font-size:14px;
  7661. }
  7662. #u25648 {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:1162px;
  7666. top:1183px;
  7667. width:30px;
  7668. height:30px;
  7669. display:flex;
  7670. font-family:'Microsoft YaHei', sans-serif;
  7671. font-weight:400;
  7672. font-style:normal;
  7673. font-size:14px;
  7674. }
  7675. #u25648 .text {
  7676. position:absolute;
  7677. align-self:center;
  7678. padding:2px 2px 2px 2px;
  7679. box-sizing:border-box;
  7680. width:100%;
  7681. }
  7682. #u25648_text {
  7683. border-width:0px;
  7684. word-wrap:break-word;
  7685. text-transform:none;
  7686. }
  7687. #u25649_div {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:32px;
  7693. height:21px;
  7694. background:inherit;
  7695. background-color:rgba(255, 255, 255, 1);
  7696. border:none;
  7697. border-radius:15px;
  7698. -moz-box-shadow:none;
  7699. -webkit-box-shadow:none;
  7700. box-shadow:none;
  7701. font-family:'Microsoft YaHei', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:14px;
  7705. color:#1E1E1E;
  7706. }
  7707. #u25649 {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:1236px;
  7711. top:1188px;
  7712. width:32px;
  7713. height:21px;
  7714. display:flex;
  7715. font-family:'Microsoft YaHei', sans-serif;
  7716. font-weight:400;
  7717. font-style:normal;
  7718. font-size:14px;
  7719. color:#1E1E1E;
  7720. }
  7721. #u25649 .text {
  7722. position:absolute;
  7723. align-self:center;
  7724. padding:2px 2px 2px 2px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u25649_text {
  7729. border-width:0px;
  7730. white-space:nowrap;
  7731. text-transform:none;
  7732. }
  7733. #u25650 {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:0px;
  7739. height:0px;
  7740. }
  7741. #u25651_div {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:31px;
  7747. height:30px;
  7748. background:inherit;
  7749. background-color:rgba(255, 255, 255, 1);
  7750. box-sizing:border-box;
  7751. border-width:1px;
  7752. border-style:solid;
  7753. border-color:rgba(228, 228, 228, 1);
  7754. border-radius:4px;
  7755. -moz-box-shadow:none;
  7756. -webkit-box-shadow:none;
  7757. box-shadow:none;
  7758. font-family:'Microsoft YaHei', sans-serif;
  7759. font-weight:400;
  7760. font-style:normal;
  7761. font-size:12px;
  7762. }
  7763. #u25651 {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:961px;
  7767. top:1183px;
  7768. width:31px;
  7769. height:30px;
  7770. display:flex;
  7771. font-family:'Microsoft YaHei', sans-serif;
  7772. font-weight:400;
  7773. font-style:normal;
  7774. font-size:12px;
  7775. }
  7776. #u25651 .text {
  7777. position:absolute;
  7778. align-self:center;
  7779. padding:2px 2px 2px 2px;
  7780. box-sizing:border-box;
  7781. width:100%;
  7782. }
  7783. #u25651_text {
  7784. border-width:0px;
  7785. word-wrap:break-word;
  7786. text-transform:none;
  7787. visibility:hidden;
  7788. }
  7789. #u25652_img {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:8px;
  7795. height:14px;
  7796. }
  7797. #u25652 {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:973px;
  7801. top:1191px;
  7802. width:8px;
  7803. height:14px;
  7804. display:flex;
  7805. font-family:'Microsoft YaHei', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:12px;
  7809. }
  7810. #u25652 .text {
  7811. position:absolute;
  7812. align-self:center;
  7813. padding:2px 2px 2px 2px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u25652_text {
  7818. border-width:0px;
  7819. word-wrap:break-word;
  7820. text-transform:none;
  7821. visibility:hidden;
  7822. }
  7823. #u25653 {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:0px;
  7829. height:0px;
  7830. }
  7831. #u25654_div {
  7832. border-width:0px;
  7833. position:absolute;
  7834. left:0px;
  7835. top:0px;
  7836. width:31px;
  7837. height:30px;
  7838. background:inherit;
  7839. background-color:rgba(255, 255, 255, 1);
  7840. box-sizing:border-box;
  7841. border-width:1px;
  7842. border-style:solid;
  7843. border-color:rgba(228, 228, 228, 1);
  7844. border-radius:4px;
  7845. -moz-box-shadow:none;
  7846. -webkit-box-shadow:none;
  7847. box-shadow:none;
  7848. font-family:'Microsoft YaHei', sans-serif;
  7849. font-weight:400;
  7850. font-style:normal;
  7851. font-size:12px;
  7852. }
  7853. #u25654 {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:1195px;
  7857. top:1183px;
  7858. width:31px;
  7859. height:30px;
  7860. display:flex;
  7861. font-family:'Microsoft YaHei', sans-serif;
  7862. font-weight:400;
  7863. font-style:normal;
  7864. font-size:12px;
  7865. }
  7866. #u25654 .text {
  7867. position:absolute;
  7868. align-self:center;
  7869. padding:2px 2px 2px 2px;
  7870. box-sizing:border-box;
  7871. width:100%;
  7872. }
  7873. #u25654_text {
  7874. border-width:0px;
  7875. word-wrap:break-word;
  7876. text-transform:none;
  7877. visibility:hidden;
  7878. }
  7879. #u25655_img {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:0px;
  7883. top:0px;
  7884. width:8px;
  7885. height:14px;
  7886. }
  7887. #u25655 {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:1208px;
  7891. top:1191px;
  7892. width:8px;
  7893. height:14px;
  7894. display:flex;
  7895. font-family:'Microsoft YaHei', sans-serif;
  7896. font-weight:400;
  7897. font-style:normal;
  7898. font-size:12px;
  7899. }
  7900. #u25655 .text {
  7901. position:absolute;
  7902. align-self:center;
  7903. padding:2px 2px 2px 2px;
  7904. box-sizing:border-box;
  7905. width:100%;
  7906. }
  7907. #u25655_text {
  7908. border-width:0px;
  7909. word-wrap:break-word;
  7910. text-transform:none;
  7911. visibility:hidden;
  7912. }
  7913. #u25656 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:0px;
  7919. height:0px;
  7920. }
  7921. #u25657_div {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:33px;
  7927. height:24px;
  7928. background:inherit;
  7929. background-color:rgba(255, 255, 255, 1);
  7930. border:none;
  7931. border-radius:0px;
  7932. -moz-box-shadow:none;
  7933. -webkit-box-shadow:none;
  7934. box-shadow:none;
  7935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7936. font-weight:400;
  7937. font-style:normal;
  7938. font-size:14px;
  7939. color:#BCBCBC;
  7940. text-align:left;
  7941. }
  7942. #u25657 {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:1396px;
  7946. top:1186px;
  7947. width:33px;
  7948. height:24px;
  7949. display:flex;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:14px;
  7954. color:#BCBCBC;
  7955. text-align:left;
  7956. }
  7957. #u25657 .text {
  7958. position:absolute;
  7959. align-self:center;
  7960. padding:2px 2px 2px 2px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u25657_text {
  7965. border-width:0px;
  7966. white-space:nowrap;
  7967. text-transform:none;
  7968. }
  7969. #u25658_div {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:40px;
  7975. height:30px;
  7976. background:inherit;
  7977. background-color:rgba(255, 255, 255, 1);
  7978. box-sizing:border-box;
  7979. border-width:1px;
  7980. border-style:solid;
  7981. border-color:rgba(228, 228, 228, 1);
  7982. border-radius:4px;
  7983. -moz-box-shadow:none;
  7984. -webkit-box-shadow:none;
  7985. box-shadow:none;
  7986. font-family:'Microsoft YaHei', sans-serif;
  7987. font-weight:400;
  7988. font-style:normal;
  7989. font-size:14px;
  7990. }
  7991. #u25658 {
  7992. border-width:0px;
  7993. position:absolute;
  7994. left:1431px;
  7995. top:1183px;
  7996. width:40px;
  7997. height:30px;
  7998. display:flex;
  7999. font-family:'Microsoft YaHei', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:14px;
  8003. }
  8004. #u25658 .text {
  8005. position:absolute;
  8006. align-self:center;
  8007. padding:2px 2px 2px 2px;
  8008. box-sizing:border-box;
  8009. width:100%;
  8010. }
  8011. #u25658_text {
  8012. border-width:0px;
  8013. word-wrap:break-word;
  8014. text-transform:none;
  8015. visibility:hidden;
  8016. }
  8017. #u25659_div {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:0px;
  8021. top:0px;
  8022. width:19px;
  8023. height:24px;
  8024. background:inherit;
  8025. background-color:rgba(255, 255, 255, 1);
  8026. border:none;
  8027. border-radius:0px;
  8028. -moz-box-shadow:none;
  8029. -webkit-box-shadow:none;
  8030. box-shadow:none;
  8031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:14px;
  8035. color:#BCBCBC;
  8036. text-align:left;
  8037. }
  8038. #u25659 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:1473px;
  8042. top:1187px;
  8043. width:19px;
  8044. height:24px;
  8045. display:flex;
  8046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8047. font-weight:400;
  8048. font-style:normal;
  8049. font-size:14px;
  8050. color:#BCBCBC;
  8051. text-align:left;
  8052. }
  8053. #u25659 .text {
  8054. position:absolute;
  8055. align-self:center;
  8056. padding:2px 2px 2px 2px;
  8057. box-sizing:border-box;
  8058. width:100%;
  8059. }
  8060. #u25659_text {
  8061. border-width:0px;
  8062. white-space:nowrap;
  8063. text-transform:none;
  8064. }
  8065. #u25660_input {
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:34px;
  8070. height:25px;
  8071. padding:2px 2px 2px 2px;
  8072. font-family:'Microsoft YaHei', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:13px;
  8076. letter-spacing:normal;
  8077. color:#000000;
  8078. vertical-align:none;
  8079. text-align:left;
  8080. text-transform:none;
  8081. background-color:transparent;
  8082. border-color:transparent;
  8083. }
  8084. #u25660_input.disabled {
  8085. position:absolute;
  8086. left:0px;
  8087. top:0px;
  8088. width:34px;
  8089. height:25px;
  8090. padding:2px 2px 2px 2px;
  8091. font-family:'Microsoft YaHei', sans-serif;
  8092. font-weight:400;
  8093. font-style:normal;
  8094. font-size:13px;
  8095. letter-spacing:normal;
  8096. color:#000000;
  8097. vertical-align:none;
  8098. text-align:left;
  8099. text-transform:none;
  8100. background-color:transparent;
  8101. border-color:transparent;
  8102. }
  8103. #u25660_div {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:0px;
  8107. top:0px;
  8108. width:34px;
  8109. height:25px;
  8110. background:inherit;
  8111. background-color:rgba(255, 255, 255, 1);
  8112. border:none;
  8113. border-radius:0px;
  8114. -moz-box-shadow:none;
  8115. -webkit-box-shadow:none;
  8116. box-shadow:none;
  8117. font-family:'Microsoft YaHei', sans-serif;
  8118. font-weight:400;
  8119. font-style:normal;
  8120. }
  8121. #u25660 {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:1434px;
  8125. top:1185px;
  8126. width:34px;
  8127. height:25px;
  8128. display:flex;
  8129. font-family:'Microsoft YaHei', sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. }
  8133. #u25660 .text {
  8134. position:absolute;
  8135. align-self:center;
  8136. padding:2px 2px 2px 2px;
  8137. box-sizing:border-box;
  8138. width:100%;
  8139. }
  8140. #u25660_div.disabled {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:34px;
  8146. height:25px;
  8147. background:inherit;
  8148. background-color:rgba(240, 240, 240, 1);
  8149. border:none;
  8150. border-radius:0px;
  8151. -moz-box-shadow:none;
  8152. -webkit-box-shadow:none;
  8153. box-shadow:none;
  8154. font-family:'Microsoft YaHei', sans-serif;
  8155. font-weight:400;
  8156. font-style:normal;
  8157. }
  8158. #u25660.disabled {
  8159. }
  8160. #u25661_div {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:0px;
  8164. top:0px;
  8165. width:295px;
  8166. height:20px;
  8167. background:inherit;
  8168. background-color:rgba(255, 255, 255, 0);
  8169. border:none;
  8170. border-radius:0px;
  8171. -moz-box-shadow:none;
  8172. -webkit-box-shadow:none;
  8173. box-shadow:none;
  8174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8175. font-weight:400;
  8176. font-style:normal;
  8177. font-size:14px;
  8178. color:#7F7F7F;
  8179. }
  8180. #u25661 {
  8181. border-width:0px;
  8182. position:absolute;
  8183. left:357px;
  8184. top:100px;
  8185. width:295px;
  8186. height:20px;
  8187. display:flex;
  8188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8189. font-weight:400;
  8190. font-style:normal;
  8191. font-size:14px;
  8192. color:#7F7F7F;
  8193. }
  8194. #u25661 .text {
  8195. position:absolute;
  8196. align-self:flex-start;
  8197. padding:0px 0px 0px 0px;
  8198. box-sizing:border-box;
  8199. width:100%;
  8200. }
  8201. #u25661_text {
  8202. border-width:0px;
  8203. white-space:nowrap;
  8204. text-transform:none;
  8205. }
  8206. #u25662 {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:0px;
  8210. top:0px;
  8211. width:0px;
  8212. height:0px;
  8213. }
  8214. #u25663_div {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:680px;
  8220. height:1198px;
  8221. background:inherit;
  8222. background-color:rgba(255, 255, 255, 1);
  8223. box-sizing:border-box;
  8224. border-width:1px;
  8225. border-style:solid;
  8226. border-color:rgba(215, 215, 215, 1);
  8227. border-radius:0px;
  8228. -moz-box-shadow:none;
  8229. -webkit-box-shadow:none;
  8230. box-shadow:none;
  8231. }
  8232. #u25663 {
  8233. border-width:0px;
  8234. position:absolute;
  8235. left:2339px;
  8236. top:44px;
  8237. width:680px;
  8238. height:1198px;
  8239. display:flex;
  8240. }
  8241. #u25663 .text {
  8242. position:absolute;
  8243. align-self:center;
  8244. padding:2px 2px 2px 2px;
  8245. box-sizing:border-box;
  8246. width:100%;
  8247. }
  8248. #u25663_text {
  8249. border-width:0px;
  8250. word-wrap:break-word;
  8251. text-transform:none;
  8252. visibility:hidden;
  8253. }
  8254. #u25664_div {
  8255. border-width:0px;
  8256. position:absolute;
  8257. left:0px;
  8258. top:0px;
  8259. width:37px;
  8260. height:30px;
  8261. background:inherit;
  8262. background-color:rgba(255, 255, 255, 0);
  8263. border:none;
  8264. border-radius:0px;
  8265. -moz-box-shadow:none;
  8266. -webkit-box-shadow:none;
  8267. box-shadow:none;
  8268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8269. font-weight:400;
  8270. font-style:normal;
  8271. font-size:18px;
  8272. color:#000000;
  8273. line-height:30px;
  8274. }
  8275. #u25664 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:2359px;
  8279. top:64px;
  8280. width:37px;
  8281. height:30px;
  8282. display:flex;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:18px;
  8287. color:#000000;
  8288. line-height:30px;
  8289. }
  8290. #u25664 .text {
  8291. position:absolute;
  8292. align-self:flex-start;
  8293. padding:0px 0px 0px 0px;
  8294. box-sizing:border-box;
  8295. width:100%;
  8296. }
  8297. #u25664_text {
  8298. border-width:0px;
  8299. white-space:nowrap;
  8300. text-transform:none;
  8301. }
  8302. #u25665_div {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:0px;
  8306. top:0px;
  8307. width:81px;
  8308. height:30px;
  8309. background:inherit;
  8310. background-color:rgba(255, 255, 255, 0);
  8311. border:none;
  8312. border-top:0px;
  8313. border-right:0px;
  8314. border-bottom:0px;
  8315. border-radius:0px;
  8316. border-top-left-radius:0px;
  8317. border-bottom-left-radius:0px;
  8318. -moz-box-shadow:none;
  8319. -webkit-box-shadow:none;
  8320. box-shadow:none;
  8321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8322. font-weight:400;
  8323. font-style:normal;
  8324. font-size:14px;
  8325. }
  8326. #u25665 {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:2388px;
  8330. top:275px;
  8331. width:81px;
  8332. height:30px;
  8333. display:flex;
  8334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8335. font-weight:400;
  8336. font-style:normal;
  8337. font-size:14px;
  8338. }
  8339. #u25665 .text {
  8340. position:absolute;
  8341. align-self:center;
  8342. padding:5px 10px 5px 0px;
  8343. box-sizing:border-box;
  8344. width:100%;
  8345. }
  8346. #u25665_text {
  8347. border-width:0px;
  8348. white-space:nowrap;
  8349. text-transform:none;
  8350. }
  8351. #u25666 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:0px;
  8355. top:0px;
  8356. width:0px;
  8357. height:0px;
  8358. }
  8359. #u25667_div {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:0px;
  8364. width:40px;
  8365. height:40px;
  8366. background:inherit;
  8367. background-color:rgba(255, 255, 255, 0);
  8368. border:none;
  8369. border-top:0px;
  8370. border-right:0px;
  8371. border-bottom:0px;
  8372. border-radius:0px;
  8373. border-top-left-radius:0px;
  8374. border-bottom-left-radius:0px;
  8375. -moz-box-shadow:none;
  8376. -webkit-box-shadow:none;
  8377. box-shadow:none;
  8378. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8379. font-weight:500;
  8380. font-style:normal;
  8381. font-size:18px;
  8382. text-align:center;
  8383. }
  8384. #u25667 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:2979px;
  8388. top:44px;
  8389. width:40px;
  8390. height:40px;
  8391. display:flex;
  8392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8393. font-weight:500;
  8394. font-style:normal;
  8395. font-size:18px;
  8396. text-align:center;
  8397. }
  8398. #u25667 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:5px 10px 5px 0px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u25667_text {
  8406. border-width:0px;
  8407. word-wrap:break-word;
  8408. text-transform:none;
  8409. }
  8410. #u25668_img {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:0px;
  8414. top:0px;
  8415. width:13px;
  8416. height:17px;
  8417. }
  8418. #u25668 {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:2966px;
  8422. top:56px;
  8423. width:13px;
  8424. height:17px;
  8425. display:flex;
  8426. }
  8427. #u25668 .text {
  8428. position:absolute;
  8429. align-self:center;
  8430. padding:2px 2px 2px 2px;
  8431. box-sizing:border-box;
  8432. width:100%;
  8433. }
  8434. #u25668_text {
  8435. border-width:0px;
  8436. word-wrap:break-word;
  8437. text-transform:none;
  8438. visibility:hidden;
  8439. }
  8440. #u25669 {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:0px;
  8446. height:0px;
  8447. }
  8448. #u25670_div {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:0px;
  8452. top:0px;
  8453. width:680px;
  8454. height:60px;
  8455. background:inherit;
  8456. background-color:rgba(255, 255, 255, 1);
  8457. box-sizing:border-box;
  8458. border-width:1px;
  8459. border-style:solid;
  8460. border-color:rgba(215, 215, 215, 1);
  8461. border-radius:0px;
  8462. -moz-box-shadow:none;
  8463. -webkit-box-shadow:none;
  8464. box-shadow:none;
  8465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:14px;
  8469. color:#AAAAAA;
  8470. text-align:center;
  8471. line-height:30px;
  8472. }
  8473. #u25670 {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:2339px;
  8477. top:1182px;
  8478. width:680px;
  8479. height:60px;
  8480. display:flex;
  8481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8482. font-weight:400;
  8483. font-style:normal;
  8484. font-size:14px;
  8485. color:#AAAAAA;
  8486. text-align:center;
  8487. line-height:30px;
  8488. }
  8489. #u25670 .text {
  8490. position:absolute;
  8491. align-self:center;
  8492. padding:5px 10px 5px 10px;
  8493. box-sizing:border-box;
  8494. width:100%;
  8495. }
  8496. #u25670_text {
  8497. border-width:0px;
  8498. word-wrap:break-word;
  8499. text-transform:none;
  8500. visibility:hidden;
  8501. }
  8502. #u25671_div {
  8503. border-width:0px;
  8504. position:absolute;
  8505. left:0px;
  8506. top:0px;
  8507. width:80px;
  8508. height:30px;
  8509. background:inherit;
  8510. background-color:rgba(24, 144, 255, 1);
  8511. border:none;
  8512. border-radius:4px;
  8513. -moz-box-shadow:none;
  8514. -webkit-box-shadow:none;
  8515. box-shadow:none;
  8516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8517. font-weight:400;
  8518. font-style:normal;
  8519. font-size:14px;
  8520. color:#FFFFFF;
  8521. }
  8522. #u25671 {
  8523. border-width:0px;
  8524. position:absolute;
  8525. left:2894px;
  8526. top:1197px;
  8527. width:80px;
  8528. height:30px;
  8529. display:flex;
  8530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8531. font-weight:400;
  8532. font-style:normal;
  8533. font-size:14px;
  8534. color:#FFFFFF;
  8535. }
  8536. #u25671 .text {
  8537. position:absolute;
  8538. align-self:center;
  8539. padding:2px 2px 2px 2px;
  8540. box-sizing:border-box;
  8541. width:100%;
  8542. }
  8543. #u25671_text {
  8544. border-width:0px;
  8545. word-wrap:break-word;
  8546. text-transform:none;
  8547. }
  8548. #u25672_div {
  8549. border-width:0px;
  8550. position:absolute;
  8551. left:0px;
  8552. top:0px;
  8553. width:80px;
  8554. height:30px;
  8555. background:inherit;
  8556. background-color:rgba(255, 255, 255, 1);
  8557. box-sizing:border-box;
  8558. border-width:1px;
  8559. border-style:solid;
  8560. border-color:rgba(170, 170, 170, 1);
  8561. border-radius:4px;
  8562. -moz-box-shadow:none;
  8563. -webkit-box-shadow:none;
  8564. box-shadow:none;
  8565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8566. font-weight:400;
  8567. font-style:normal;
  8568. font-size:14px;
  8569. }
  8570. #u25672 {
  8571. border-width:0px;
  8572. position:absolute;
  8573. left:2795px;
  8574. top:1197px;
  8575. width:80px;
  8576. height:30px;
  8577. display:flex;
  8578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8579. font-weight:400;
  8580. font-style:normal;
  8581. font-size:14px;
  8582. }
  8583. #u25672 .text {
  8584. position:absolute;
  8585. align-self:center;
  8586. padding:2px 2px 2px 2px;
  8587. box-sizing:border-box;
  8588. width:100%;
  8589. }
  8590. #u25672_text {
  8591. border-width:0px;
  8592. word-wrap:break-word;
  8593. text-transform:none;
  8594. }
  8595. #u25673_div {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:81px;
  8601. height:30px;
  8602. background:inherit;
  8603. background-color:rgba(255, 255, 255, 0);
  8604. border:none;
  8605. border-top:0px;
  8606. border-right:0px;
  8607. border-bottom:0px;
  8608. border-radius:0px;
  8609. border-top-left-radius:0px;
  8610. border-bottom-left-radius:0px;
  8611. -moz-box-shadow:none;
  8612. -webkit-box-shadow:none;
  8613. box-shadow:none;
  8614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8615. font-weight:400;
  8616. font-style:normal;
  8617. font-size:14px;
  8618. }
  8619. #u25673 {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:2388px;
  8623. top:325px;
  8624. width:81px;
  8625. height:30px;
  8626. display:flex;
  8627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8628. font-weight:400;
  8629. font-style:normal;
  8630. font-size:14px;
  8631. }
  8632. #u25673 .text {
  8633. position:absolute;
  8634. align-self:center;
  8635. padding:5px 10px 5px 0px;
  8636. box-sizing:border-box;
  8637. width:100%;
  8638. }
  8639. #u25673_text {
  8640. border-width:0px;
  8641. white-space:nowrap;
  8642. text-transform:none;
  8643. }
  8644. #u25674 {
  8645. border-width:0px;
  8646. position:absolute;
  8647. left:0px;
  8648. top:0px;
  8649. width:0px;
  8650. height:0px;
  8651. }
  8652. #u25675_div {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:400px;
  8658. height:80px;
  8659. background:inherit;
  8660. background-color:rgba(255, 255, 255, 1);
  8661. box-sizing:border-box;
  8662. border-width:1px;
  8663. border-style:solid;
  8664. border-color:rgba(170, 170, 170, 1);
  8665. border-radius:4px;
  8666. -moz-box-shadow:none;
  8667. -webkit-box-shadow:none;
  8668. box-shadow:none;
  8669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8670. font-weight:400;
  8671. font-style:normal;
  8672. text-align:left;
  8673. }
  8674. #u25675 {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:2491px;
  8678. top:320px;
  8679. width:400px;
  8680. height:80px;
  8681. display:flex;
  8682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8683. font-weight:400;
  8684. font-style:normal;
  8685. text-align:left;
  8686. }
  8687. #u25675 .text {
  8688. position:absolute;
  8689. align-self:center;
  8690. padding:2px 2px 2px 10px;
  8691. box-sizing:border-box;
  8692. width:100%;
  8693. }
  8694. #u25675_text {
  8695. border-width:0px;
  8696. word-wrap:break-word;
  8697. text-transform:none;
  8698. visibility:hidden;
  8699. }
  8700. #u25676_input {
  8701. position:absolute;
  8702. left:0px;
  8703. top:0px;
  8704. width:188px;
  8705. height:31px;
  8706. padding:2px 2px 2px 2px;
  8707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8708. font-weight:400;
  8709. font-style:normal;
  8710. font-size:13px;
  8711. letter-spacing:normal;
  8712. color:#AAAAAA;
  8713. vertical-align:none;
  8714. text-align:left;
  8715. text-transform:none;
  8716. background-color:transparent;
  8717. border-color:transparent;
  8718. }
  8719. #u25676_input.disabled {
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:188px;
  8724. height:31px;
  8725. padding:2px 2px 2px 2px;
  8726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:13px;
  8730. letter-spacing:normal;
  8731. color:#AAAAAA;
  8732. vertical-align:none;
  8733. text-align:left;
  8734. text-transform:none;
  8735. background-color:transparent;
  8736. border-color:transparent;
  8737. }
  8738. #u25676_div {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:0px;
  8742. top:0px;
  8743. width:188px;
  8744. height:31px;
  8745. background:inherit;
  8746. background-color:rgba(255, 255, 255, 0);
  8747. border:none;
  8748. border-radius:0px;
  8749. -moz-box-shadow:none;
  8750. -webkit-box-shadow:none;
  8751. box-shadow:none;
  8752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8753. font-weight:400;
  8754. font-style:normal;
  8755. color:#AAAAAA;
  8756. }
  8757. #u25676 {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:2501px;
  8761. top:325px;
  8762. width:188px;
  8763. height:31px;
  8764. display:flex;
  8765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8766. font-weight:400;
  8767. font-style:normal;
  8768. color:#AAAAAA;
  8769. }
  8770. #u25676 .text {
  8771. position:absolute;
  8772. align-self:center;
  8773. padding:2px 2px 2px 2px;
  8774. box-sizing:border-box;
  8775. width:100%;
  8776. }
  8777. #u25676_div.disabled {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:0px;
  8781. top:0px;
  8782. width:188px;
  8783. height:31px;
  8784. background:inherit;
  8785. background-color:rgba(240, 240, 240, 1);
  8786. border:none;
  8787. border-radius:0px;
  8788. -moz-box-shadow:none;
  8789. -webkit-box-shadow:none;
  8790. box-shadow:none;
  8791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. color:#AAAAAA;
  8795. }
  8796. #u25676.disabled {
  8797. }
  8798. #u25677_div {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:0px;
  8802. top:0px;
  8803. width:39px;
  8804. height:24px;
  8805. background:inherit;
  8806. background-color:rgba(255, 255, 255, 0);
  8807. border:none;
  8808. border-top:0px;
  8809. border-right:0px;
  8810. border-bottom:0px;
  8811. border-radius:0px;
  8812. border-top-left-radius:0px;
  8813. border-bottom-left-radius:0px;
  8814. -moz-box-shadow:none;
  8815. -webkit-box-shadow:none;
  8816. box-shadow:none;
  8817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:10px;
  8821. color:#AAAAAA;
  8822. text-align:right;
  8823. }
  8824. #u25677 {
  8825. border-width:0px;
  8826. position:absolute;
  8827. left:2849px;
  8828. top:375px;
  8829. width:39px;
  8830. height:24px;
  8831. display:flex;
  8832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:10px;
  8836. color:#AAAAAA;
  8837. text-align:right;
  8838. }
  8839. #u25677 .text {
  8840. position:absolute;
  8841. align-self:center;
  8842. padding:5px 0px 5px 0px;
  8843. box-sizing:border-box;
  8844. width:100%;
  8845. }
  8846. #u25677_text {
  8847. border-width:0px;
  8848. white-space:nowrap;
  8849. text-transform:none;
  8850. }
  8851. #u25678_div {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:0px;
  8855. top:0px;
  8856. width:88px;
  8857. height:30px;
  8858. background:inherit;
  8859. background-color:rgba(255, 255, 255, 0);
  8860. border:none;
  8861. border-top:0px;
  8862. border-right:0px;
  8863. border-bottom:0px;
  8864. border-radius:0px;
  8865. border-top-left-radius:0px;
  8866. border-bottom-left-radius:0px;
  8867. -moz-box-shadow:none;
  8868. -webkit-box-shadow:none;
  8869. box-shadow:none;
  8870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8871. font-weight:400;
  8872. font-style:normal;
  8873. font-size:14px;
  8874. }
  8875. #u25678 {
  8876. border-width:0px;
  8877. position:absolute;
  8878. left:2388px;
  8879. top:225px;
  8880. width:88px;
  8881. height:30px;
  8882. display:flex;
  8883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8884. font-weight:400;
  8885. font-style:normal;
  8886. font-size:14px;
  8887. }
  8888. #u25678 .text {
  8889. position:absolute;
  8890. align-self:center;
  8891. padding:5px 10px 5px 0px;
  8892. box-sizing:border-box;
  8893. width:100%;
  8894. }
  8895. #u25678_text {
  8896. border-width:0px;
  8897. white-space:nowrap;
  8898. text-transform:none;
  8899. }
  8900. #u25679 {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:0px;
  8904. top:0px;
  8905. width:0px;
  8906. height:0px;
  8907. }
  8908. #u25680_div {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:0px;
  8912. top:0px;
  8913. width:400px;
  8914. height:40px;
  8915. background:inherit;
  8916. background-color:rgba(255, 255, 255, 1);
  8917. box-sizing:border-box;
  8918. border-width:1px;
  8919. border-style:solid;
  8920. border-color:rgba(170, 170, 170, 1);
  8921. border-radius:4px;
  8922. -moz-box-shadow:none;
  8923. -webkit-box-shadow:none;
  8924. box-shadow:none;
  8925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8926. font-weight:400;
  8927. font-style:normal;
  8928. text-align:left;
  8929. }
  8930. #u25680 {
  8931. border-width:0px;
  8932. position:absolute;
  8933. left:2491px;
  8934. top:220px;
  8935. width:400px;
  8936. height:40px;
  8937. display:flex;
  8938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8939. font-weight:400;
  8940. font-style:normal;
  8941. text-align:left;
  8942. }
  8943. #u25680 .text {
  8944. position:absolute;
  8945. align-self:center;
  8946. padding:2px 2px 2px 10px;
  8947. box-sizing:border-box;
  8948. width:100%;
  8949. }
  8950. #u25680_text {
  8951. border-width:0px;
  8952. word-wrap:break-word;
  8953. text-transform:none;
  8954. visibility:hidden;
  8955. }
  8956. #u25681_input {
  8957. position:absolute;
  8958. left:0px;
  8959. top:0px;
  8960. width:188px;
  8961. height:31px;
  8962. padding:2px 2px 2px 2px;
  8963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8964. font-weight:400;
  8965. font-style:normal;
  8966. font-size:13px;
  8967. letter-spacing:normal;
  8968. color:#AAAAAA;
  8969. vertical-align:none;
  8970. text-align:left;
  8971. text-transform:none;
  8972. background-color:transparent;
  8973. border-color:transparent;
  8974. }
  8975. #u25681_input.disabled {
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:188px;
  8980. height:31px;
  8981. padding:2px 2px 2px 2px;
  8982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:13px;
  8986. letter-spacing:normal;
  8987. color:#AAAAAA;
  8988. vertical-align:none;
  8989. text-align:left;
  8990. text-transform:none;
  8991. background-color:transparent;
  8992. border-color:transparent;
  8993. }
  8994. #u25681_div {
  8995. border-width:0px;
  8996. position:absolute;
  8997. left:0px;
  8998. top:0px;
  8999. width:188px;
  9000. height:31px;
  9001. background:inherit;
  9002. background-color:rgba(255, 255, 255, 0);
  9003. border:none;
  9004. border-radius:0px;
  9005. -moz-box-shadow:none;
  9006. -webkit-box-shadow:none;
  9007. box-shadow:none;
  9008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9009. font-weight:400;
  9010. font-style:normal;
  9011. color:#AAAAAA;
  9012. }
  9013. #u25681 {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:2501px;
  9017. top:225px;
  9018. width:188px;
  9019. height:31px;
  9020. display:flex;
  9021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9022. font-weight:400;
  9023. font-style:normal;
  9024. color:#AAAAAA;
  9025. }
  9026. #u25681 .text {
  9027. position:absolute;
  9028. align-self:center;
  9029. padding:2px 2px 2px 2px;
  9030. box-sizing:border-box;
  9031. width:100%;
  9032. }
  9033. #u25681_div.disabled {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:0px;
  9037. top:0px;
  9038. width:188px;
  9039. height:31px;
  9040. background:inherit;
  9041. background-color:rgba(240, 240, 240, 1);
  9042. border:none;
  9043. border-radius:0px;
  9044. -moz-box-shadow:none;
  9045. -webkit-box-shadow:none;
  9046. box-shadow:none;
  9047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9048. font-weight:400;
  9049. font-style:normal;
  9050. color:#AAAAAA;
  9051. }
  9052. #u25681.disabled {
  9053. }
  9054. #u25682 {
  9055. border-width:0px;
  9056. position:absolute;
  9057. left:0px;
  9058. top:0px;
  9059. width:0px;
  9060. height:0px;
  9061. }
  9062. #u25683_div {
  9063. border-width:0px;
  9064. position:absolute;
  9065. left:0px;
  9066. top:0px;
  9067. width:400px;
  9068. height:40px;
  9069. background:inherit;
  9070. background-color:rgba(242, 242, 242, 1);
  9071. box-sizing:border-box;
  9072. border-width:1px;
  9073. border-style:solid;
  9074. border-color:rgba(170, 170, 170, 1);
  9075. border-radius:4px;
  9076. -moz-box-shadow:none;
  9077. -webkit-box-shadow:none;
  9078. box-shadow:none;
  9079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9080. font-weight:400;
  9081. font-style:normal;
  9082. text-align:left;
  9083. }
  9084. #u25683 {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:2491px;
  9088. top:270px;
  9089. width:400px;
  9090. height:40px;
  9091. display:flex;
  9092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. text-align:left;
  9096. }
  9097. #u25683 .text {
  9098. position:absolute;
  9099. align-self:center;
  9100. padding:2px 2px 2px 10px;
  9101. box-sizing:border-box;
  9102. width:100%;
  9103. }
  9104. #u25683_text {
  9105. border-width:0px;
  9106. word-wrap:break-word;
  9107. text-transform:none;
  9108. visibility:hidden;
  9109. }
  9110. #u25684_input {
  9111. position:absolute;
  9112. left:0px;
  9113. top:0px;
  9114. width:382px;
  9115. height:31px;
  9116. padding:2px 2px 2px 2px;
  9117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9118. font-weight:400;
  9119. font-style:normal;
  9120. font-size:13px;
  9121. letter-spacing:normal;
  9122. color:#AAAAAA;
  9123. vertical-align:none;
  9124. text-align:left;
  9125. text-transform:none;
  9126. background-color:transparent;
  9127. border-color:transparent;
  9128. }
  9129. #u25684_input.disabled {
  9130. position:absolute;
  9131. left:0px;
  9132. top:0px;
  9133. width:382px;
  9134. height:31px;
  9135. padding:2px 2px 2px 2px;
  9136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9137. font-weight:400;
  9138. font-style:normal;
  9139. font-size:13px;
  9140. letter-spacing:normal;
  9141. color:#AAAAAA;
  9142. vertical-align:none;
  9143. text-align:left;
  9144. text-transform:none;
  9145. background-color:transparent;
  9146. border-color:transparent;
  9147. }
  9148. #u25684_div {
  9149. border-width:0px;
  9150. position:absolute;
  9151. left:0px;
  9152. top:0px;
  9153. width:382px;
  9154. height:31px;
  9155. background:inherit;
  9156. background-color:rgba(242, 242, 242, 1);
  9157. border:none;
  9158. border-radius:0px;
  9159. -moz-box-shadow:none;
  9160. -webkit-box-shadow:none;
  9161. box-shadow:none;
  9162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. color:#AAAAAA;
  9166. }
  9167. #u25684 {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:2501px;
  9171. top:275px;
  9172. width:382px;
  9173. height:31px;
  9174. display:flex;
  9175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9176. font-weight:400;
  9177. font-style:normal;
  9178. color:#AAAAAA;
  9179. }
  9180. #u25684 .text {
  9181. position:absolute;
  9182. align-self:center;
  9183. padding:2px 2px 2px 2px;
  9184. box-sizing:border-box;
  9185. width:100%;
  9186. }
  9187. #u25684_div.disabled {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:382px;
  9193. height:31px;
  9194. background:inherit;
  9195. background-color:rgba(240, 240, 240, 1);
  9196. border:none;
  9197. border-radius:0px;
  9198. -moz-box-shadow:none;
  9199. -webkit-box-shadow:none;
  9200. box-shadow:none;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. color:#AAAAAA;
  9205. }
  9206. #u25684.disabled {
  9207. }
  9208. #u25685 {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:0px;
  9214. height:0px;
  9215. }
  9216. #u25686_div {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:0px;
  9220. top:0px;
  9221. width:400px;
  9222. height:40px;
  9223. background:inherit;
  9224. background-color:rgba(242, 242, 242, 1);
  9225. box-sizing:border-box;
  9226. border-width:1px;
  9227. border-style:solid;
  9228. border-color:rgba(215, 215, 215, 1);
  9229. border-radius:4px;
  9230. -moz-box-shadow:none;
  9231. -webkit-box-shadow:none;
  9232. box-shadow:none;
  9233. font-size:14px;
  9234. }
  9235. #u25686 {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:2491px;
  9239. top:120px;
  9240. width:400px;
  9241. height:40px;
  9242. display:flex;
  9243. font-size:14px;
  9244. }
  9245. #u25686 .text {
  9246. position:absolute;
  9247. align-self:center;
  9248. padding:2px 2px 2px 2px;
  9249. box-sizing:border-box;
  9250. width:100%;
  9251. }
  9252. #u25686_text {
  9253. border-width:0px;
  9254. word-wrap:break-word;
  9255. text-transform:none;
  9256. visibility:hidden;
  9257. }
  9258. #u25687_input {
  9259. position:absolute;
  9260. left:0px;
  9261. top:0px;
  9262. width:381px;
  9263. height:31px;
  9264. padding:2px 2px 2px 2px;
  9265. font-family:'ArialMT', 'Arial', sans-serif;
  9266. font-weight:400;
  9267. font-style:normal;
  9268. font-size:14px;
  9269. letter-spacing:normal;
  9270. color:#AAAAAA;
  9271. vertical-align:none;
  9272. text-align:left;
  9273. text-transform:none;
  9274. background-color:transparent;
  9275. border-color:transparent;
  9276. }
  9277. #u25687_input.disabled {
  9278. position:absolute;
  9279. left:0px;
  9280. top:0px;
  9281. width:381px;
  9282. height:31px;
  9283. padding:2px 2px 2px 2px;
  9284. font-family:'ArialMT', 'Arial', sans-serif;
  9285. font-weight:400;
  9286. font-style:normal;
  9287. font-size:14px;
  9288. letter-spacing:normal;
  9289. color:#AAAAAA;
  9290. vertical-align:none;
  9291. text-align:left;
  9292. text-transform:none;
  9293. background-color:transparent;
  9294. border-color:transparent;
  9295. }
  9296. #u25687_div {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:0px;
  9300. top:0px;
  9301. width:381px;
  9302. height:31px;
  9303. background:inherit;
  9304. background-color:rgba(242, 242, 242, 1);
  9305. border:none;
  9306. border-radius:0px;
  9307. -moz-box-shadow:none;
  9308. -webkit-box-shadow:none;
  9309. box-shadow:none;
  9310. font-size:14px;
  9311. color:#AAAAAA;
  9312. }
  9313. #u25687 {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:2502px;
  9317. top:123px;
  9318. width:381px;
  9319. height:31px;
  9320. display:flex;
  9321. font-size:14px;
  9322. color:#AAAAAA;
  9323. }
  9324. #u25687 .text {
  9325. position:absolute;
  9326. align-self:flex-start;
  9327. padding:2px 2px 2px 2px;
  9328. box-sizing:border-box;
  9329. width:100%;
  9330. }
  9331. #u25687_div.disabled {
  9332. border-width:0px;
  9333. position:absolute;
  9334. left:0px;
  9335. top:0px;
  9336. width:381px;
  9337. height:31px;
  9338. background:inherit;
  9339. background-color:rgba(240, 240, 240, 1);
  9340. border:none;
  9341. border-radius:0px;
  9342. -moz-box-shadow:none;
  9343. -webkit-box-shadow:none;
  9344. box-shadow:none;
  9345. font-size:14px;
  9346. color:#AAAAAA;
  9347. }
  9348. #u25687.disabled {
  9349. }
  9350. .u25687_input_option {
  9351. font-size:14px;
  9352. }
  9353. #u25688_div {
  9354. border-width:0px;
  9355. position:absolute;
  9356. left:0px;
  9357. top:0px;
  9358. width:88px;
  9359. height:30px;
  9360. background:inherit;
  9361. background-color:rgba(255, 255, 255, 0);
  9362. border:none;
  9363. border-top:0px;
  9364. border-right:0px;
  9365. border-bottom:0px;
  9366. border-radius:0px;
  9367. border-top-left-radius:0px;
  9368. border-bottom-left-radius:0px;
  9369. -moz-box-shadow:none;
  9370. -webkit-box-shadow:none;
  9371. box-shadow:none;
  9372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9373. font-weight:400;
  9374. font-style:normal;
  9375. font-size:14px;
  9376. }
  9377. #u25688 {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:2388px;
  9381. top:125px;
  9382. width:88px;
  9383. height:30px;
  9384. display:flex;
  9385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9386. font-weight:400;
  9387. font-style:normal;
  9388. font-size:14px;
  9389. }
  9390. #u25688 .text {
  9391. position:absolute;
  9392. align-self:center;
  9393. padding:5px 10px 5px 0px;
  9394. box-sizing:border-box;
  9395. width:100%;
  9396. }
  9397. #u25688_text {
  9398. border-width:0px;
  9399. white-space:nowrap;
  9400. text-transform:none;
  9401. }
  9402. #u25689 {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:0px;
  9406. top:0px;
  9407. width:0px;
  9408. height:0px;
  9409. }
  9410. #u25690_div {
  9411. border-width:0px;
  9412. position:absolute;
  9413. left:0px;
  9414. top:0px;
  9415. width:400px;
  9416. height:40px;
  9417. background:inherit;
  9418. background-color:rgba(242, 242, 242, 1);
  9419. box-sizing:border-box;
  9420. border-width:1px;
  9421. border-style:solid;
  9422. border-color:rgba(215, 215, 215, 1);
  9423. border-radius:4px;
  9424. -moz-box-shadow:none;
  9425. -webkit-box-shadow:none;
  9426. box-shadow:none;
  9427. font-size:14px;
  9428. }
  9429. #u25690 {
  9430. border-width:0px;
  9431. position:absolute;
  9432. left:2491px;
  9433. top:170px;
  9434. width:400px;
  9435. height:40px;
  9436. display:flex;
  9437. font-size:14px;
  9438. }
  9439. #u25690 .text {
  9440. position:absolute;
  9441. align-self:center;
  9442. padding:2px 2px 2px 2px;
  9443. box-sizing:border-box;
  9444. width:100%;
  9445. }
  9446. #u25690_text {
  9447. border-width:0px;
  9448. word-wrap:break-word;
  9449. text-transform:none;
  9450. visibility:hidden;
  9451. }
  9452. #u25691_input {
  9453. position:absolute;
  9454. left:0px;
  9455. top:0px;
  9456. width:381px;
  9457. height:31px;
  9458. padding:2px 2px 2px 2px;
  9459. font-family:'ArialMT', 'Arial', sans-serif;
  9460. font-weight:400;
  9461. font-style:normal;
  9462. font-size:14px;
  9463. letter-spacing:normal;
  9464. color:#AAAAAA;
  9465. vertical-align:none;
  9466. text-align:left;
  9467. text-transform:none;
  9468. background-color:transparent;
  9469. border-color:transparent;
  9470. }
  9471. #u25691_input.disabled {
  9472. position:absolute;
  9473. left:0px;
  9474. top:0px;
  9475. width:381px;
  9476. height:31px;
  9477. padding:2px 2px 2px 2px;
  9478. font-family:'ArialMT', 'Arial', sans-serif;
  9479. font-weight:400;
  9480. font-style:normal;
  9481. font-size:14px;
  9482. letter-spacing:normal;
  9483. color:#AAAAAA;
  9484. vertical-align:none;
  9485. text-align:left;
  9486. text-transform:none;
  9487. background-color:transparent;
  9488. border-color:transparent;
  9489. }
  9490. #u25691_div {
  9491. border-width:0px;
  9492. position:absolute;
  9493. left:0px;
  9494. top:0px;
  9495. width:381px;
  9496. height:31px;
  9497. background:inherit;
  9498. background-color:rgba(242, 242, 242, 1);
  9499. border:none;
  9500. border-radius:0px;
  9501. -moz-box-shadow:none;
  9502. -webkit-box-shadow:none;
  9503. box-shadow:none;
  9504. font-size:14px;
  9505. color:#AAAAAA;
  9506. }
  9507. #u25691 {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:2502px;
  9511. top:173px;
  9512. width:381px;
  9513. height:31px;
  9514. display:flex;
  9515. font-size:14px;
  9516. color:#AAAAAA;
  9517. }
  9518. #u25691 .text {
  9519. position:absolute;
  9520. align-self:flex-start;
  9521. padding:2px 2px 2px 2px;
  9522. box-sizing:border-box;
  9523. width:100%;
  9524. }
  9525. #u25691_div.disabled {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:0px;
  9529. top:0px;
  9530. width:381px;
  9531. height:31px;
  9532. background:inherit;
  9533. background-color:rgba(240, 240, 240, 1);
  9534. border:none;
  9535. border-radius:0px;
  9536. -moz-box-shadow:none;
  9537. -webkit-box-shadow:none;
  9538. box-shadow:none;
  9539. font-size:14px;
  9540. color:#AAAAAA;
  9541. }
  9542. #u25691.disabled {
  9543. }
  9544. .u25691_input_option {
  9545. font-size:14px;
  9546. }
  9547. #u25692_div {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:0px;
  9551. top:0px;
  9552. width:88px;
  9553. height:30px;
  9554. background:inherit;
  9555. background-color:rgba(255, 255, 255, 0);
  9556. border:none;
  9557. border-top:0px;
  9558. border-right:0px;
  9559. border-bottom:0px;
  9560. border-radius:0px;
  9561. border-top-left-radius:0px;
  9562. border-bottom-left-radius:0px;
  9563. -moz-box-shadow:none;
  9564. -webkit-box-shadow:none;
  9565. box-shadow:none;
  9566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9567. font-weight:400;
  9568. font-style:normal;
  9569. font-size:14px;
  9570. }
  9571. #u25692 {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:2388px;
  9575. top:175px;
  9576. width:88px;
  9577. height:30px;
  9578. display:flex;
  9579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9580. font-weight:400;
  9581. font-style:normal;
  9582. font-size:14px;
  9583. }
  9584. #u25692 .text {
  9585. position:absolute;
  9586. align-self:center;
  9587. padding:5px 10px 5px 0px;
  9588. box-sizing:border-box;
  9589. width:100%;
  9590. }
  9591. #u25692_text {
  9592. border-width:0px;
  9593. white-space:nowrap;
  9594. text-transform:none;
  9595. }
  9596. #u25693 {
  9597. border-width:0px;
  9598. position:absolute;
  9599. left:0px;
  9600. top:0px;
  9601. width:0px;
  9602. height:0px;
  9603. }
  9604. #u25694 {
  9605. border-width:0px;
  9606. position:absolute;
  9607. left:0px;
  9608. top:0px;
  9609. width:0px;
  9610. height:0px;
  9611. }
  9612. #u25695_div {
  9613. border-width:0px;
  9614. position:absolute;
  9615. left:0px;
  9616. top:0px;
  9617. width:380px;
  9618. height:140px;
  9619. background:inherit;
  9620. background-color:rgba(255, 255, 255, 1);
  9621. box-sizing:border-box;
  9622. border-width:1px;
  9623. border-style:solid;
  9624. border-color:rgba(204, 204, 204, 1);
  9625. border-radius:4px;
  9626. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9627. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9628. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9629. font-family:'Microsoft YaHei', sans-serif;
  9630. font-weight:400;
  9631. font-style:normal;
  9632. }
  9633. #u25695 {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:1144px;
  9637. top:475px;
  9638. width:380px;
  9639. height:140px;
  9640. display:flex;
  9641. font-family:'Microsoft YaHei', sans-serif;
  9642. font-weight:400;
  9643. font-style:normal;
  9644. }
  9645. #u25695 .text {
  9646. position:absolute;
  9647. align-self:center;
  9648. padding:2px 2px 2px 2px;
  9649. box-sizing:border-box;
  9650. width:100%;
  9651. }
  9652. #u25695_text {
  9653. border-width:0px;
  9654. word-wrap:break-word;
  9655. text-transform:none;
  9656. visibility:hidden;
  9657. }
  9658. #u25696_div {
  9659. border-width:0px;
  9660. position:absolute;
  9661. left:0px;
  9662. top:0px;
  9663. width:299px;
  9664. height:22px;
  9665. background:inherit;
  9666. background-color:rgba(255, 255, 255, 0);
  9667. border:none;
  9668. border-radius:0px;
  9669. -moz-box-shadow:none;
  9670. -webkit-box-shadow:none;
  9671. box-shadow:none;
  9672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9673. font-weight:400;
  9674. font-style:normal;
  9675. font-size:14px;
  9676. color:#666666;
  9677. line-height:22px;
  9678. }
  9679. #u25696 {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:1204px;
  9683. top:530px;
  9684. width:299px;
  9685. height:22px;
  9686. display:flex;
  9687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9688. font-weight:400;
  9689. font-style:normal;
  9690. font-size:14px;
  9691. color:#666666;
  9692. line-height:22px;
  9693. }
  9694. #u25696 .text {
  9695. position:absolute;
  9696. align-self:flex-start;
  9697. padding:0px 0px 0px 0px;
  9698. box-sizing:border-box;
  9699. width:100%;
  9700. }
  9701. #u25696_text {
  9702. border-width:0px;
  9703. word-wrap:break-word;
  9704. text-transform:none;
  9705. }
  9706. #u25697_div {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:0px;
  9710. top:0px;
  9711. width:127px;
  9712. height:21px;
  9713. background:inherit;
  9714. background-color:rgba(255, 255, 255, 0);
  9715. border:none;
  9716. border-radius:0px;
  9717. -moz-box-shadow:none;
  9718. -webkit-box-shadow:none;
  9719. box-shadow:none;
  9720. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9721. font-weight:650;
  9722. font-style:normal;
  9723. font-size:18px;
  9724. color:#000000;
  9725. line-height:22px;
  9726. }
  9727. #u25697 {
  9728. border-width:0px;
  9729. position:absolute;
  9730. left:1204px;
  9731. top:500px;
  9732. width:127px;
  9733. height:21px;
  9734. display:flex;
  9735. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9736. font-weight:650;
  9737. font-style:normal;
  9738. font-size:18px;
  9739. color:#000000;
  9740. line-height:22px;
  9741. }
  9742. #u25697 .text {
  9743. position:absolute;
  9744. align-self:flex-start;
  9745. padding:0px 0px 0px 0px;
  9746. box-sizing:border-box;
  9747. width:100%;
  9748. }
  9749. #u25697_text {
  9750. border-width:0px;
  9751. white-space:nowrap;
  9752. text-transform:none;
  9753. }
  9754. #u25698_div {
  9755. border-width:0px;
  9756. position:absolute;
  9757. left:0px;
  9758. top:0px;
  9759. width:61px;
  9760. height:30px;
  9761. background:inherit;
  9762. background-color:rgba(24, 144, 255, 1);
  9763. border:none;
  9764. border-radius:4px;
  9765. -moz-box-shadow:none;
  9766. -webkit-box-shadow:none;
  9767. box-shadow:none;
  9768. font-family:'Microsoft YaHei', sans-serif;
  9769. font-weight:400;
  9770. font-style:normal;
  9771. font-size:14px;
  9772. color:#FFFFFF;
  9773. }
  9774. #u25698 {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:1446px;
  9778. top:570px;
  9779. width:61px;
  9780. height:30px;
  9781. display:flex;
  9782. font-family:'Microsoft YaHei', sans-serif;
  9783. font-weight:400;
  9784. font-style:normal;
  9785. font-size:14px;
  9786. color:#FFFFFF;
  9787. }
  9788. #u25698 .text {
  9789. position:absolute;
  9790. align-self:center;
  9791. padding:2px 16px 2px 16px;
  9792. box-sizing:border-box;
  9793. width:100%;
  9794. }
  9795. #u25698_text {
  9796. border-width:0px;
  9797. white-space:nowrap;
  9798. text-transform:none;
  9799. }
  9800. #u25699_div {
  9801. border-width:0px;
  9802. position:absolute;
  9803. left:0px;
  9804. top:0px;
  9805. width:66px;
  9806. height:30px;
  9807. background:inherit;
  9808. background-color:rgba(255, 255, 255, 1);
  9809. box-sizing:border-box;
  9810. border-width:1px;
  9811. border-style:solid;
  9812. border-color:rgba(217, 217, 217, 1);
  9813. border-radius:4px;
  9814. -moz-box-shadow:none;
  9815. -webkit-box-shadow:none;
  9816. box-shadow:none;
  9817. font-family:'Microsoft YaHei', sans-serif;
  9818. font-weight:400;
  9819. font-style:normal;
  9820. font-size:14px;
  9821. color:rgba(0, 0, 0, 0.647058823529412);
  9822. line-height:21px;
  9823. }
  9824. #u25699 {
  9825. border-width:0px;
  9826. position:absolute;
  9827. left:1364px;
  9828. top:570px;
  9829. width:66px;
  9830. height:30px;
  9831. display:flex;
  9832. font-family:'Microsoft YaHei', sans-serif;
  9833. font-weight:400;
  9834. font-style:normal;
  9835. font-size:14px;
  9836. color:rgba(0, 0, 0, 0.647058823529412);
  9837. line-height:21px;
  9838. }
  9839. #u25699 .text {
  9840. position:absolute;
  9841. align-self:center;
  9842. padding:2px 16px 2px 16px;
  9843. box-sizing:border-box;
  9844. width:100%;
  9845. }
  9846. #u25699_text {
  9847. border-width:0px;
  9848. white-space:nowrap;
  9849. text-transform:none;
  9850. }
  9851. #u25700_img {
  9852. border-width:0px;
  9853. position:absolute;
  9854. left:0px;
  9855. top:0px;
  9856. width:20px;
  9857. height:20px;
  9858. }
  9859. #u25700 {
  9860. border-width:0px;
  9861. position:absolute;
  9862. left:1173px;
  9863. top:504px;
  9864. width:20px;
  9865. height:20px;
  9866. display:flex;
  9867. }
  9868. #u25700 .text {
  9869. position:absolute;
  9870. align-self:center;
  9871. padding:2px 2px 2px 2px;
  9872. box-sizing:border-box;
  9873. width:100%;
  9874. }
  9875. #u25700_text {
  9876. border-width:0px;
  9877. word-wrap:break-word;
  9878. text-transform:none;
  9879. visibility:hidden;
  9880. }
  9881. #u25701 {
  9882. border-width:0px;
  9883. position:absolute;
  9884. left:0px;
  9885. top:0px;
  9886. width:0px;
  9887. height:0px;
  9888. }
  9889. #u25702_div {
  9890. border-width:0px;
  9891. position:absolute;
  9892. left:0px;
  9893. top:0px;
  9894. width:380px;
  9895. height:140px;
  9896. background:inherit;
  9897. background-color:rgba(255, 255, 255, 1);
  9898. box-sizing:border-box;
  9899. border-width:1px;
  9900. border-style:solid;
  9901. border-color:rgba(204, 204, 204, 1);
  9902. border-radius:4px;
  9903. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9904. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9905. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  9906. font-family:'Microsoft YaHei', sans-serif;
  9907. font-weight:400;
  9908. font-style:normal;
  9909. }
  9910. #u25702 {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:1144px;
  9914. top:625px;
  9915. width:380px;
  9916. height:140px;
  9917. display:flex;
  9918. font-family:'Microsoft YaHei', sans-serif;
  9919. font-weight:400;
  9920. font-style:normal;
  9921. }
  9922. #u25702 .text {
  9923. position:absolute;
  9924. align-self:center;
  9925. padding:2px 2px 2px 2px;
  9926. box-sizing:border-box;
  9927. width:100%;
  9928. }
  9929. #u25702_text {
  9930. border-width:0px;
  9931. word-wrap:break-word;
  9932. text-transform:none;
  9933. visibility:hidden;
  9934. }
  9935. #u25703_div {
  9936. border-width:0px;
  9937. position:absolute;
  9938. left:0px;
  9939. top:0px;
  9940. width:288px;
  9941. height:22px;
  9942. background:inherit;
  9943. background-color:rgba(255, 255, 255, 0);
  9944. border:none;
  9945. border-radius:0px;
  9946. -moz-box-shadow:none;
  9947. -webkit-box-shadow:none;
  9948. box-shadow:none;
  9949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9950. font-weight:400;
  9951. font-style:normal;
  9952. font-size:14px;
  9953. color:#666666;
  9954. line-height:22px;
  9955. }
  9956. #u25703 {
  9957. border-width:0px;
  9958. position:absolute;
  9959. left:1204px;
  9960. top:680px;
  9961. width:288px;
  9962. height:22px;
  9963. display:flex;
  9964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9965. font-weight:400;
  9966. font-style:normal;
  9967. font-size:14px;
  9968. color:#666666;
  9969. line-height:22px;
  9970. }
  9971. #u25703 .text {
  9972. position:absolute;
  9973. align-self:flex-start;
  9974. padding:0px 0px 0px 0px;
  9975. box-sizing:border-box;
  9976. width:100%;
  9977. }
  9978. #u25703_text {
  9979. border-width:0px;
  9980. word-wrap:break-word;
  9981. text-transform:none;
  9982. }
  9983. #u25704_div {
  9984. border-width:0px;
  9985. position:absolute;
  9986. left:0px;
  9987. top:0px;
  9988. width:73px;
  9989. height:21px;
  9990. background:inherit;
  9991. background-color:rgba(255, 255, 255, 0);
  9992. border:none;
  9993. border-radius:0px;
  9994. -moz-box-shadow:none;
  9995. -webkit-box-shadow:none;
  9996. box-shadow:none;
  9997. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  9998. font-weight:650;
  9999. font-style:normal;
  10000. font-size:18px;
  10001. color:#000000;
  10002. line-height:22px;
  10003. }
  10004. #u25704 {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:1204px;
  10008. top:650px;
  10009. width:73px;
  10010. height:21px;
  10011. display:flex;
  10012. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10013. font-weight:650;
  10014. font-style:normal;
  10015. font-size:18px;
  10016. color:#000000;
  10017. line-height:22px;
  10018. }
  10019. #u25704 .text {
  10020. position:absolute;
  10021. align-self:flex-start;
  10022. padding:0px 0px 0px 0px;
  10023. box-sizing:border-box;
  10024. width:100%;
  10025. }
  10026. #u25704_text {
  10027. border-width:0px;
  10028. white-space:nowrap;
  10029. text-transform:none;
  10030. }
  10031. #u25705_div {
  10032. border-width:0px;
  10033. position:absolute;
  10034. left:0px;
  10035. top:0px;
  10036. width:61px;
  10037. height:30px;
  10038. background:inherit;
  10039. background-color:rgba(24, 144, 255, 1);
  10040. border:none;
  10041. border-radius:4px;
  10042. -moz-box-shadow:none;
  10043. -webkit-box-shadow:none;
  10044. box-shadow:none;
  10045. font-family:'Microsoft YaHei', sans-serif;
  10046. font-weight:400;
  10047. font-style:normal;
  10048. font-size:14px;
  10049. color:#FFFFFF;
  10050. }
  10051. #u25705 {
  10052. border-width:0px;
  10053. position:absolute;
  10054. left:1443px;
  10055. top:720px;
  10056. width:61px;
  10057. height:30px;
  10058. display:flex;
  10059. font-family:'Microsoft YaHei', sans-serif;
  10060. font-weight:400;
  10061. font-style:normal;
  10062. font-size:14px;
  10063. color:#FFFFFF;
  10064. }
  10065. #u25705 .text {
  10066. position:absolute;
  10067. align-self:center;
  10068. padding:2px 16px 2px 16px;
  10069. box-sizing:border-box;
  10070. width:100%;
  10071. }
  10072. #u25705_text {
  10073. border-width:0px;
  10074. white-space:nowrap;
  10075. text-transform:none;
  10076. }
  10077. #u25706_div {
  10078. border-width:0px;
  10079. position:absolute;
  10080. left:0px;
  10081. top:0px;
  10082. width:66px;
  10083. height:30px;
  10084. background:inherit;
  10085. background-color:rgba(255, 255, 255, 1);
  10086. box-sizing:border-box;
  10087. border-width:1px;
  10088. border-style:solid;
  10089. border-color:rgba(217, 217, 217, 1);
  10090. border-radius:4px;
  10091. -moz-box-shadow:none;
  10092. -webkit-box-shadow:none;
  10093. box-shadow:none;
  10094. font-family:'Microsoft YaHei', sans-serif;
  10095. font-weight:400;
  10096. font-style:normal;
  10097. font-size:14px;
  10098. color:rgba(0, 0, 0, 0.647058823529412);
  10099. line-height:21px;
  10100. }
  10101. #u25706 {
  10102. border-width:0px;
  10103. position:absolute;
  10104. left:1364px;
  10105. top:720px;
  10106. width:66px;
  10107. height:30px;
  10108. display:flex;
  10109. font-family:'Microsoft YaHei', sans-serif;
  10110. font-weight:400;
  10111. font-style:normal;
  10112. font-size:14px;
  10113. color:rgba(0, 0, 0, 0.647058823529412);
  10114. line-height:21px;
  10115. }
  10116. #u25706 .text {
  10117. position:absolute;
  10118. align-self:center;
  10119. padding:2px 16px 2px 16px;
  10120. box-sizing:border-box;
  10121. width:100%;
  10122. }
  10123. #u25706_text {
  10124. border-width:0px;
  10125. white-space:nowrap;
  10126. text-transform:none;
  10127. }
  10128. #u25707_img {
  10129. border-width:0px;
  10130. position:absolute;
  10131. left:0px;
  10132. top:0px;
  10133. width:20px;
  10134. height:20px;
  10135. }
  10136. #u25707 {
  10137. border-width:0px;
  10138. position:absolute;
  10139. left:1173px;
  10140. top:652px;
  10141. width:20px;
  10142. height:20px;
  10143. display:flex;
  10144. }
  10145. #u25707 .text {
  10146. position:absolute;
  10147. align-self:center;
  10148. padding:2px 2px 2px 2px;
  10149. box-sizing:border-box;
  10150. width:100%;
  10151. }
  10152. #u25707_text {
  10153. border-width:0px;
  10154. word-wrap:break-word;
  10155. text-transform:none;
  10156. visibility:hidden;
  10157. }