styles.css 116 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2318px;
  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. #u416_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u416 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u416 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u416_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u417_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u417 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u417 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u417_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u418 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u419_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u419 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u419 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u419_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u420_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u420 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u420 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u420_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u421_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u421 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u421 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u421_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u422_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u422 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u422 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u422_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u423 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u424_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. #u424 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u424 .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. #u424_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u425_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u425 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u425 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u425_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u426 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u427_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. #u427 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u427 .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. #u427_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u428_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u428 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u428 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u428_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u429 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u430_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u430 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u430 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u430_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u431_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u431 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u431 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u431_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u432 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u433_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u433 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u433 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u433_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u434_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u434 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u434 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u434_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u435 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u436_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u436 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u436 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u436_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u437_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u437 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u437 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u437_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u438 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u439_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u439 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u439 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u439_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u440_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u440 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u440 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u440_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u441 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u442_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u442 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:443px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u442 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u442_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u443_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u443 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:447px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u443 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u443_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u444 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u445_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u445 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:485px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u445 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u445_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u446_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u446 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:489px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u446 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u446_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u447 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u448_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u448 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:611px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u448 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u448_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u449_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u449 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:615px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u449 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u449_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u450 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u451_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u451 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:569px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u451 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u451_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u452_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u452 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:573px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u452 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u452_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u453_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u453_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u453_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u453 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u453 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u453_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u453.disabled {
  1184. }
  1185. .u453_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u454_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u454 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u454 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u454_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u455_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u455 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u455 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u455_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u456_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u456 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u456 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u456_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u457 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u458_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u458 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u458 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u458_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u459_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u459 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u459 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u459_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u460 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u461_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u461 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u461 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u461_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u462_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u462 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u462 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u462_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u463 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u464_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u464 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u464 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u464_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u465_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u465 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u465 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u465_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u466 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u467_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u467 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:527px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u467 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u467_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u468_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u468 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:531px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u468 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u468_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u469 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u470_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u470 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u470 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u470_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u471_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u471 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u471 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u471_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u472 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:0px;
  1720. height:0px;
  1721. }
  1722. #u473_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:33px;
  1728. height:22px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 0);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:16px;
  1740. color:#FFFFFF;
  1741. }
  1742. #u473 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:39px;
  1746. top:403px;
  1747. width:33px;
  1748. height:22px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:16px;
  1754. color:#FFFFFF;
  1755. }
  1756. #u473 .text {
  1757. position:absolute;
  1758. align-self:flex-start;
  1759. padding:0px 0px 0px 0px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u473_text {
  1764. border-width:0px;
  1765. white-space:nowrap;
  1766. text-transform:none;
  1767. }
  1768. #u474_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:14px;
  1774. height:14px;
  1775. }
  1776. #u474 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:20px;
  1780. top:407px;
  1781. width:14px;
  1782. height:14px;
  1783. display:flex;
  1784. }
  1785. #u474 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u474_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u475_div {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:1259px;
  1804. height:1180px;
  1805. background:inherit;
  1806. background-color:rgba(255, 255, 255, 1);
  1807. border:none;
  1808. border-radius:0px;
  1809. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1810. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1811. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1812. }
  1813. #u475 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:330px;
  1817. top:50px;
  1818. width:1259px;
  1819. height:1180px;
  1820. display:flex;
  1821. }
  1822. #u475 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 2px 2px 2px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u475_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. visibility:hidden;
  1834. }
  1835. #u476_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:73px;
  1841. height:50px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 0);
  1844. border:none;
  1845. border-left:0px;
  1846. border-top:0px;
  1847. border-right:0px;
  1848. border-radius:0px;
  1849. border-bottom-right-radius:0px;
  1850. border-bottom-left-radius:0px;
  1851. -moz-box-shadow:none;
  1852. -webkit-box-shadow:none;
  1853. box-shadow:none;
  1854. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1855. font-weight:500;
  1856. font-style:normal;
  1857. font-size:18px;
  1858. }
  1859. #u476 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:350px;
  1863. top:50px;
  1864. width:73px;
  1865. height:50px;
  1866. display:flex;
  1867. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1868. font-weight:500;
  1869. font-style:normal;
  1870. font-size:18px;
  1871. }
  1872. #u476 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:0px 0px 0px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u476_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u477_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:200px;
  1890. height:1180px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 1);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. }
  1899. #u477 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:120px;
  1903. top:50px;
  1904. width:200px;
  1905. height:1180px;
  1906. display:flex;
  1907. }
  1908. #u477 .text {
  1909. position:absolute;
  1910. align-self:center;
  1911. padding:2px 2px 2px 2px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u477_text {
  1916. border-width:0px;
  1917. word-wrap:break-word;
  1918. text-transform:none;
  1919. visibility:hidden;
  1920. }
  1921. #u478_div {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:200px;
  1927. height:60px;
  1928. background:inherit;
  1929. background-color:rgba(224, 231, 247, 1);
  1930. border:none;
  1931. border-radius:0px;
  1932. -moz-box-shadow:none;
  1933. -webkit-box-shadow:none;
  1934. box-shadow:none;
  1935. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1936. font-weight:500;
  1937. font-style:normal;
  1938. font-size:18px;
  1939. }
  1940. #u478 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:120px;
  1944. top:50px;
  1945. width:200px;
  1946. height:60px;
  1947. display:flex;
  1948. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1949. font-weight:500;
  1950. font-style:normal;
  1951. font-size:18px;
  1952. }
  1953. #u478 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:0px 0px 0px 20px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u478_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. }
  1965. #u479_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:65px;
  1971. height:22px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 0);
  1974. border:none;
  1975. border-radius:0px;
  1976. -moz-box-shadow:none;
  1977. -webkit-box-shadow:none;
  1978. box-shadow:none;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:16px;
  1983. }
  1984. #u479 {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:147px;
  1988. top:167px;
  1989. width:65px;
  1990. height:22px;
  1991. display:flex;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:16px;
  1996. }
  1997. #u479 .text {
  1998. position:absolute;
  1999. align-self:flex-start;
  2000. padding:0px 0px 0px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u479_text {
  2005. border-width:0px;
  2006. white-space:nowrap;
  2007. text-transform:none;
  2008. }
  2009. #u480_div {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:65px;
  2015. height:22px;
  2016. background:inherit;
  2017. background-color:rgba(255, 255, 255, 0);
  2018. border:none;
  2019. border-radius:0px;
  2020. -moz-box-shadow:none;
  2021. -webkit-box-shadow:none;
  2022. box-shadow:none;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:16px;
  2027. }
  2028. #u480 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:147px;
  2032. top:209px;
  2033. width:65px;
  2034. height:22px;
  2035. display:flex;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:16px;
  2040. }
  2041. #u480 .text {
  2042. position:absolute;
  2043. align-self:flex-start;
  2044. padding:0px 0px 0px 0px;
  2045. box-sizing:border-box;
  2046. width:100%;
  2047. }
  2048. #u480_text {
  2049. border-width:0px;
  2050. white-space:nowrap;
  2051. text-transform:none;
  2052. }
  2053. #u481_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:65px;
  2059. height:22px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 0);
  2062. border:none;
  2063. border-radius:0px;
  2064. -moz-box-shadow:none;
  2065. -webkit-box-shadow:none;
  2066. box-shadow:none;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:16px;
  2071. }
  2072. #u481 {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:146px;
  2076. top:309px;
  2077. width:65px;
  2078. height:22px;
  2079. display:flex;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:16px;
  2084. }
  2085. #u481 .text {
  2086. position:absolute;
  2087. align-self:flex-start;
  2088. padding:0px 0px 0px 0px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u481_text {
  2093. border-width:0px;
  2094. white-space:nowrap;
  2095. text-transform:none;
  2096. }
  2097. #u482_div {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:65px;
  2103. height:22px;
  2104. background:inherit;
  2105. background-color:rgba(255, 255, 255, 0);
  2106. border:none;
  2107. border-radius:0px;
  2108. -moz-box-shadow:none;
  2109. -webkit-box-shadow:none;
  2110. box-shadow:none;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:16px;
  2115. }
  2116. #u482 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:146px;
  2120. top:351px;
  2121. width:65px;
  2122. height:22px;
  2123. display:flex;
  2124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:16px;
  2128. }
  2129. #u482 .text {
  2130. position:absolute;
  2131. align-self:flex-start;
  2132. padding:0px 0px 0px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u482_text {
  2137. border-width:0px;
  2138. white-space:nowrap;
  2139. text-transform:none;
  2140. }
  2141. #u483_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:49px;
  2147. height:17px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border:none;
  2151. border-radius:0px;
  2152. -moz-box-shadow:none;
  2153. -webkit-box-shadow:none;
  2154. box-shadow:none;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. color:#AAAAAA;
  2160. }
  2161. #u483 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:147px;
  2165. top:130px;
  2166. width:49px;
  2167. height:17px;
  2168. display:flex;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:12px;
  2173. color:#AAAAAA;
  2174. }
  2175. #u483 .text {
  2176. position:absolute;
  2177. align-self:flex-start;
  2178. padding:0px 0px 0px 0px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u483_text {
  2183. border-width:0px;
  2184. white-space:nowrap;
  2185. text-transform:none;
  2186. }
  2187. #u484_img {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:201px;
  2193. height:2px;
  2194. }
  2195. #u484 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:120px;
  2199. top:251px;
  2200. width:200px;
  2201. height:1px;
  2202. display:flex;
  2203. }
  2204. #u484 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 2px 2px 2px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u484_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. visibility:hidden;
  2216. }
  2217. #u485_div {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:49px;
  2223. height:17px;
  2224. background:inherit;
  2225. background-color:rgba(255, 255, 255, 0);
  2226. border:none;
  2227. border-radius:0px;
  2228. -moz-box-shadow:none;
  2229. -webkit-box-shadow:none;
  2230. box-shadow:none;
  2231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2232. font-weight:400;
  2233. font-style:normal;
  2234. font-size:12px;
  2235. color:#AAAAAA;
  2236. }
  2237. #u485 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:146px;
  2241. top:272px;
  2242. width:49px;
  2243. height:17px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:12px;
  2249. color:#AAAAAA;
  2250. }
  2251. #u485 .text {
  2252. position:absolute;
  2253. align-self:flex-start;
  2254. padding:0px 0px 0px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u485_text {
  2259. border-width:0px;
  2260. white-space:nowrap;
  2261. text-transform:none;
  2262. }
  2263. #u486_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:59px;
  2269. height:30px;
  2270. background:inherit;
  2271. background-color:rgba(41, 143, 255, 1);
  2272. border:none;
  2273. border-radius:4px;
  2274. -moz-box-shadow:none;
  2275. -webkit-box-shadow:none;
  2276. box-shadow:none;
  2277. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:14px;
  2281. color:#FFFFFF;
  2282. }
  2283. #u486 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:649px;
  2287. top:111px;
  2288. width:59px;
  2289. height:30px;
  2290. display:flex;
  2291. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:14px;
  2295. color:#FFFFFF;
  2296. }
  2297. #u486 .text {
  2298. position:absolute;
  2299. align-self:center;
  2300. padding:5px 15px 5px 15px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u486_text {
  2305. border-width:0px;
  2306. white-space:nowrap;
  2307. text-transform:none;
  2308. }
  2309. #u487_div {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:55px;
  2315. height:30px;
  2316. background:inherit;
  2317. background-color:rgba(255, 255, 255, 1);
  2318. box-sizing:border-box;
  2319. border-width:1px;
  2320. border-style:solid;
  2321. border-color:rgba(170, 170, 170, 1);
  2322. border-radius:4px;
  2323. -moz-box-shadow:none;
  2324. -webkit-box-shadow:none;
  2325. box-shadow:none;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:12px;
  2330. color:#555555;
  2331. }
  2332. #u487 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:718px;
  2336. top:111px;
  2337. width:55px;
  2338. height:30px;
  2339. display:flex;
  2340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:12px;
  2344. color:#555555;
  2345. }
  2346. #u487 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:5px 15px 5px 15px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u487_text {
  2354. border-width:0px;
  2355. white-space:nowrap;
  2356. text-transform:none;
  2357. }
  2358. #u488 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:0px;
  2364. height:0px;
  2365. }
  2366. #u489_div {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:140px;
  2372. height:30px;
  2373. background:inherit;
  2374. background-color:rgba(255, 255, 255, 1);
  2375. box-sizing:border-box;
  2376. border-width:1px;
  2377. border-style:solid;
  2378. border-color:rgba(201, 201, 201, 1);
  2379. border-radius:4px;
  2380. -moz-box-shadow:none;
  2381. -webkit-box-shadow:none;
  2382. box-shadow:none;
  2383. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. color:#CCCCCC;
  2388. text-align:left;
  2389. }
  2390. #u489 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:349px;
  2394. top:110px;
  2395. width:140px;
  2396. height:30px;
  2397. display:flex;
  2398. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:14px;
  2402. color:#CCCCCC;
  2403. text-align:left;
  2404. }
  2405. #u489 .text {
  2406. position:absolute;
  2407. align-self:center;
  2408. padding:2px 8px 2px 8px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u489_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. visibility:hidden;
  2417. }
  2418. #u490_input {
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:127px;
  2423. height:25px;
  2424. padding:2px 2px 2px 2px;
  2425. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:10px;
  2429. letter-spacing:normal;
  2430. color:#000000;
  2431. vertical-align:none;
  2432. text-align:left;
  2433. text-transform:none;
  2434. background-color:transparent;
  2435. border-color:transparent;
  2436. }
  2437. #u490_input.disabled {
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:127px;
  2442. height:25px;
  2443. padding:2px 2px 2px 2px;
  2444. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:10px;
  2448. letter-spacing:normal;
  2449. color:#000000;
  2450. vertical-align:none;
  2451. text-align:left;
  2452. text-transform:none;
  2453. background-color:transparent;
  2454. border-color:transparent;
  2455. }
  2456. #u490_div {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:127px;
  2462. height:25px;
  2463. background:inherit;
  2464. background-color:rgba(255, 255, 255, 1);
  2465. border:none;
  2466. border-radius:0px;
  2467. -moz-box-shadow:none;
  2468. -webkit-box-shadow:none;
  2469. box-shadow:none;
  2470. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:10px;
  2474. }
  2475. #u490 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:357px;
  2479. top:111px;
  2480. width:127px;
  2481. height:25px;
  2482. display:flex;
  2483. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:10px;
  2487. }
  2488. #u490 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 2px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u490_div.disabled {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:127px;
  2501. height:25px;
  2502. background:inherit;
  2503. background-color:rgba(240, 240, 240, 1);
  2504. border:none;
  2505. border-radius:0px;
  2506. -moz-box-shadow:none;
  2507. -webkit-box-shadow:none;
  2508. box-shadow:none;
  2509. font-family:'MicrosoftYaHei', 'Microsoft YaHei', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:10px;
  2513. }
  2514. #u490.disabled {
  2515. }
  2516. #u491_div {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:59px;
  2522. height:30px;
  2523. background:inherit;
  2524. background-color:rgba(41, 143, 255, 1);
  2525. border:none;
  2526. border-radius:4px;
  2527. -moz-box-shadow:none;
  2528. -webkit-box-shadow:none;
  2529. box-shadow:none;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:14px;
  2534. color:#FFFFFF;
  2535. }
  2536. #u491 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:349px;
  2540. top:160px;
  2541. width:59px;
  2542. height:30px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:14px;
  2548. color:#FFFFFF;
  2549. }
  2550. #u491 .text {
  2551. position:absolute;
  2552. align-self:center;
  2553. padding:5px 15px 5px 15px;
  2554. box-sizing:border-box;
  2555. width:100%;
  2556. }
  2557. #u491_text {
  2558. border-width:0px;
  2559. white-space:nowrap;
  2560. text-transform:none;
  2561. }
  2562. #u492 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:0px;
  2568. height:0px;
  2569. }
  2570. #u493_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:140px;
  2576. height:30px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 1);
  2579. box-sizing:border-box;
  2580. border-width:1px;
  2581. border-style:solid;
  2582. border-color:rgba(215, 215, 215, 1);
  2583. border-radius:4px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. font-size:11px;
  2588. }
  2589. #u493 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:499px;
  2593. top:111px;
  2594. width:140px;
  2595. height:30px;
  2596. display:flex;
  2597. font-size:11px;
  2598. }
  2599. #u493 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 2px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u493_text {
  2607. border-width:0px;
  2608. word-wrap:break-word;
  2609. text-transform:none;
  2610. visibility:hidden;
  2611. }
  2612. #u494_input {
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:126px;
  2617. height:23px;
  2618. padding:2px 2px 2px 2px;
  2619. font-family:'ArialMT', 'Arial', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:11px;
  2623. letter-spacing:normal;
  2624. color:#AAAAAA;
  2625. vertical-align:none;
  2626. text-align:left;
  2627. text-transform:none;
  2628. background-color:transparent;
  2629. border-color:transparent;
  2630. }
  2631. #u494_input.disabled {
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:126px;
  2636. height:23px;
  2637. padding:2px 2px 2px 2px;
  2638. font-family:'ArialMT', 'Arial', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:11px;
  2642. letter-spacing:normal;
  2643. color:#AAAAAA;
  2644. vertical-align:none;
  2645. text-align:left;
  2646. text-transform:none;
  2647. background-color:transparent;
  2648. border-color:transparent;
  2649. }
  2650. #u494_div {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:126px;
  2656. height:23px;
  2657. background:inherit;
  2658. background-color:rgba(255, 255, 255, 1);
  2659. border:none;
  2660. border-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. font-size:11px;
  2665. color:#AAAAAA;
  2666. }
  2667. #u494 {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:506px;
  2671. top:113px;
  2672. width:126px;
  2673. height:23px;
  2674. display:flex;
  2675. font-size:11px;
  2676. color:#AAAAAA;
  2677. }
  2678. #u494 .text {
  2679. position:absolute;
  2680. align-self:flex-start;
  2681. padding:2px 2px 2px 2px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u494_div.disabled {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:126px;
  2691. height:23px;
  2692. background:inherit;
  2693. background-color:rgba(240, 240, 240, 1);
  2694. border:none;
  2695. border-radius:0px;
  2696. -moz-box-shadow:none;
  2697. -webkit-box-shadow:none;
  2698. box-shadow:none;
  2699. font-size:11px;
  2700. color:#AAAAAA;
  2701. }
  2702. #u494.disabled {
  2703. }
  2704. .u494_input_option {
  2705. font-size:11px;
  2706. }
  2707. #u495 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:0px;
  2713. height:0px;
  2714. }
  2715. #u496 {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:349px;
  2719. top:200px;
  2720. width:1221px;
  2721. height:442px;
  2722. }
  2723. #u497_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:127px;
  2729. height:38px;
  2730. }
  2731. #u497 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:127px;
  2737. height:38px;
  2738. display:flex;
  2739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:12px;
  2743. color:#FFFFFF;
  2744. }
  2745. #u497 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 0px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u497_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. }
  2757. #u498_img {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:0px;
  2761. top:0px;
  2762. width:127px;
  2763. height:38px;
  2764. }
  2765. #u498 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:127px;
  2769. top:0px;
  2770. width:127px;
  2771. height:38px;
  2772. display:flex;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:12px;
  2777. color:#FFFFFF;
  2778. }
  2779. #u498 .text {
  2780. position:absolute;
  2781. align-self:center;
  2782. padding:2px 2px 2px 0px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u498_text {
  2787. border-width:0px;
  2788. word-wrap:break-word;
  2789. text-transform:none;
  2790. }
  2791. #u499_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:380px;
  2797. height:38px;
  2798. }
  2799. #u499 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:254px;
  2803. top:0px;
  2804. width:380px;
  2805. height:38px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#FFFFFF;
  2812. }
  2813. #u499 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u499_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. }
  2825. #u500_img {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:183px;
  2831. height:38px;
  2832. }
  2833. #u500 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:634px;
  2837. top:0px;
  2838. width:183px;
  2839. height:38px;
  2840. display:flex;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:12px;
  2845. color:#FFFFFF;
  2846. }
  2847. #u500 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 0px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u500_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. }
  2859. #u501_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:127px;
  2865. height:38px;
  2866. }
  2867. #u501 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:817px;
  2871. top:0px;
  2872. width:127px;
  2873. height:38px;
  2874. display:flex;
  2875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2876. font-weight:400;
  2877. font-style:normal;
  2878. font-size:12px;
  2879. color:#FFFFFF;
  2880. }
  2881. #u501 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 0px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u501_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. }
  2893. #u502_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:131px;
  2899. height:38px;
  2900. }
  2901. #u502 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:944px;
  2905. top:0px;
  2906. width:131px;
  2907. height:38px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. color:#FFFFFF;
  2914. }
  2915. #u502 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u502_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. }
  2927. #u503_img {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:146px;
  2933. height:38px;
  2934. }
  2935. #u503 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:1075px;
  2939. top:0px;
  2940. width:146px;
  2941. height:38px;
  2942. display:flex;
  2943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:12px;
  2947. color:#FFFFFF;
  2948. }
  2949. #u503 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 0px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u503_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. }
  2961. #u504_img {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:127px;
  2967. height:44px;
  2968. }
  2969. #u504 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:38px;
  2974. width:127px;
  2975. height:44px;
  2976. display:flex;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. }
  2982. #u504 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 0px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u504_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u505_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:127px;
  3001. height:44px;
  3002. }
  3003. #u505 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:127px;
  3007. top:38px;
  3008. width:127px;
  3009. height:44px;
  3010. display:flex;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. }
  3016. #u505 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 0px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u505_text {
  3024. border-width:0px;
  3025. word-wrap:break-word;
  3026. text-transform:none;
  3027. visibility:hidden;
  3028. }
  3029. #u506_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:380px;
  3035. height:44px;
  3036. }
  3037. #u506 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:254px;
  3041. top:38px;
  3042. width:380px;
  3043. height:44px;
  3044. display:flex;
  3045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:12px;
  3049. }
  3050. #u506 .text {
  3051. position:absolute;
  3052. align-self:center;
  3053. padding:2px 2px 2px 0px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u506_text {
  3058. border-width:0px;
  3059. word-wrap:break-word;
  3060. text-transform:none;
  3061. visibility:hidden;
  3062. }
  3063. #u507_img {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:183px;
  3069. height:44px;
  3070. }
  3071. #u507 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:634px;
  3075. top:38px;
  3076. width:183px;
  3077. height:44px;
  3078. display:flex;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:12px;
  3083. }
  3084. #u507 .text {
  3085. position:absolute;
  3086. align-self:center;
  3087. padding:2px 2px 2px 0px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u507_text {
  3092. border-width:0px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. visibility:hidden;
  3096. }
  3097. #u508_img {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:127px;
  3103. height:44px;
  3104. }
  3105. #u508 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:817px;
  3109. top:38px;
  3110. width:127px;
  3111. height:44px;
  3112. display:flex;
  3113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:12px;
  3117. }
  3118. #u508 .text {
  3119. position:absolute;
  3120. align-self:center;
  3121. padding:2px 2px 2px 0px;
  3122. box-sizing:border-box;
  3123. width:100%;
  3124. }
  3125. #u508_text {
  3126. border-width:0px;
  3127. word-wrap:break-word;
  3128. text-transform:none;
  3129. visibility:hidden;
  3130. }
  3131. #u509_img {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:131px;
  3137. height:44px;
  3138. }
  3139. #u509 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:944px;
  3143. top:38px;
  3144. width:131px;
  3145. height:44px;
  3146. display:flex;
  3147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3148. font-weight:400;
  3149. font-style:normal;
  3150. font-size:12px;
  3151. }
  3152. #u509 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 0px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u509_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. visibility:hidden;
  3164. }
  3165. #u510_img {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:146px;
  3171. height:44px;
  3172. }
  3173. #u510 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:1075px;
  3177. top:38px;
  3178. width:146px;
  3179. height:44px;
  3180. display:flex;
  3181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:12px;
  3185. color:#298FFF;
  3186. line-height:40px;
  3187. }
  3188. #u510 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 2px 2px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u510_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. }
  3200. #u511_img {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:127px;
  3206. height:44px;
  3207. }
  3208. #u511 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:82px;
  3213. width:127px;
  3214. height:44px;
  3215. display:flex;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:12px;
  3220. }
  3221. #u511 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u511_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. visibility:hidden;
  3233. }
  3234. #u512_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:127px;
  3240. height:44px;
  3241. }
  3242. #u512 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:127px;
  3246. top:82px;
  3247. width:127px;
  3248. height:44px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. }
  3255. #u512 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u512_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u513_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:380px;
  3274. height:44px;
  3275. }
  3276. #u513 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:254px;
  3280. top:82px;
  3281. width:380px;
  3282. height:44px;
  3283. display:flex;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:12px;
  3288. }
  3289. #u513 .text {
  3290. position:absolute;
  3291. align-self:center;
  3292. padding:2px 2px 2px 0px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u513_text {
  3297. border-width:0px;
  3298. word-wrap:break-word;
  3299. text-transform:none;
  3300. visibility:hidden;
  3301. }
  3302. #u514_img {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:0px;
  3306. top:0px;
  3307. width:183px;
  3308. height:44px;
  3309. }
  3310. #u514 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:634px;
  3314. top:82px;
  3315. width:183px;
  3316. height:44px;
  3317. display:flex;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:12px;
  3322. }
  3323. #u514 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 0px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u514_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. visibility:hidden;
  3335. }
  3336. #u515_img {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:127px;
  3342. height:44px;
  3343. }
  3344. #u515 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:817px;
  3348. top:82px;
  3349. width:127px;
  3350. height:44px;
  3351. display:flex;
  3352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3353. font-weight:400;
  3354. font-style:normal;
  3355. font-size:12px;
  3356. }
  3357. #u515 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 0px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u515_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u516_img {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:131px;
  3376. height:44px;
  3377. }
  3378. #u516 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:944px;
  3382. top:82px;
  3383. width:131px;
  3384. height:44px;
  3385. display:flex;
  3386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3387. font-weight:400;
  3388. font-style:normal;
  3389. font-size:12px;
  3390. }
  3391. #u516 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u516_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. visibility:hidden;
  3403. }
  3404. #u517_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:146px;
  3410. height:44px;
  3411. }
  3412. #u517 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:1075px;
  3416. top:82px;
  3417. width:146px;
  3418. height:44px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:12px;
  3424. color:#298FFF;
  3425. line-height:40px;
  3426. }
  3427. #u517 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 2px 2px 0px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u517_text {
  3435. border-width:0px;
  3436. word-wrap:break-word;
  3437. text-transform:none;
  3438. visibility:hidden;
  3439. }
  3440. #u518_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:127px;
  3446. height:38px;
  3447. }
  3448. #u518 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:126px;
  3453. width:127px;
  3454. height:38px;
  3455. display:flex;
  3456. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:12px;
  3460. color:#606266;
  3461. }
  3462. #u518 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 2px 2px 0px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u518_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. visibility:hidden;
  3474. }
  3475. #u519_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:127px;
  3481. height:38px;
  3482. }
  3483. #u519 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:127px;
  3487. top:126px;
  3488. width:127px;
  3489. height:38px;
  3490. display:flex;
  3491. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:12px;
  3495. color:#606266;
  3496. }
  3497. #u519 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u519_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u520_img {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:380px;
  3516. height:38px;
  3517. }
  3518. #u520 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:254px;
  3522. top:126px;
  3523. width:380px;
  3524. height:38px;
  3525. display:flex;
  3526. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3527. font-weight:400;
  3528. font-style:normal;
  3529. font-size:12px;
  3530. color:#606266;
  3531. }
  3532. #u520 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u520_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u521_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:183px;
  3551. height:38px;
  3552. }
  3553. #u521 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:634px;
  3557. top:126px;
  3558. width:183px;
  3559. height:38px;
  3560. display:flex;
  3561. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. color:#606266;
  3566. }
  3567. #u521 .text {
  3568. position:absolute;
  3569. align-self:center;
  3570. padding:2px 2px 2px 0px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u521_text {
  3575. border-width:0px;
  3576. word-wrap:break-word;
  3577. text-transform:none;
  3578. visibility:hidden;
  3579. }
  3580. #u522_img {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:127px;
  3586. height:38px;
  3587. }
  3588. #u522 {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:817px;
  3592. top:126px;
  3593. width:127px;
  3594. height:38px;
  3595. display:flex;
  3596. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3597. font-weight:400;
  3598. font-style:normal;
  3599. font-size:12px;
  3600. color:#606266;
  3601. }
  3602. #u522 .text {
  3603. position:absolute;
  3604. align-self:center;
  3605. padding:2px 2px 2px 0px;
  3606. box-sizing:border-box;
  3607. width:100%;
  3608. }
  3609. #u522_text {
  3610. border-width:0px;
  3611. word-wrap:break-word;
  3612. text-transform:none;
  3613. visibility:hidden;
  3614. }
  3615. #u523_img {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:0px;
  3619. top:0px;
  3620. width:131px;
  3621. height:38px;
  3622. }
  3623. #u523 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:944px;
  3627. top:126px;
  3628. width:131px;
  3629. height:38px;
  3630. display:flex;
  3631. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:12px;
  3635. color:#606266;
  3636. }
  3637. #u523 .text {
  3638. position:absolute;
  3639. align-self:center;
  3640. padding:2px 2px 2px 0px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u523_text {
  3645. border-width:0px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. visibility:hidden;
  3649. }
  3650. #u524_img {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:146px;
  3656. height:38px;
  3657. }
  3658. #u524 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:1075px;
  3662. top:126px;
  3663. width:146px;
  3664. height:38px;
  3665. display:flex;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:12px;
  3670. color:#1890FF;
  3671. }
  3672. #u524 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:2px 2px 2px 0px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u524_text {
  3680. border-width:0px;
  3681. word-wrap:break-word;
  3682. text-transform:none;
  3683. visibility:hidden;
  3684. }
  3685. #u525_img {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:127px;
  3691. height:36px;
  3692. }
  3693. #u525 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:164px;
  3698. width:127px;
  3699. height:36px;
  3700. display:flex;
  3701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:12px;
  3705. color:#606266;
  3706. }
  3707. #u525 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 0px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u525_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u526_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:127px;
  3726. height:36px;
  3727. }
  3728. #u526 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:127px;
  3732. top:164px;
  3733. width:127px;
  3734. height:36px;
  3735. display:flex;
  3736. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. font-size:12px;
  3740. color:#606266;
  3741. }
  3742. #u526 .text {
  3743. position:absolute;
  3744. align-self:center;
  3745. padding:2px 2px 2px 0px;
  3746. box-sizing:border-box;
  3747. width:100%;
  3748. }
  3749. #u526_text {
  3750. border-width:0px;
  3751. word-wrap:break-word;
  3752. text-transform:none;
  3753. visibility:hidden;
  3754. }
  3755. #u527_img {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:380px;
  3761. height:36px;
  3762. }
  3763. #u527 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:254px;
  3767. top:164px;
  3768. width:380px;
  3769. height:36px;
  3770. display:flex;
  3771. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:12px;
  3775. color:#606266;
  3776. }
  3777. #u527 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 0px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u527_text {
  3785. border-width:0px;
  3786. word-wrap:break-word;
  3787. text-transform:none;
  3788. visibility:hidden;
  3789. }
  3790. #u528_img {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:183px;
  3796. height:36px;
  3797. }
  3798. #u528 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:634px;
  3802. top:164px;
  3803. width:183px;
  3804. height:36px;
  3805. display:flex;
  3806. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. color:#606266;
  3811. }
  3812. #u528 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 2px 2px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u528_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. visibility:hidden;
  3824. }
  3825. #u529_img {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:127px;
  3831. height:36px;
  3832. }
  3833. #u529 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:817px;
  3837. top:164px;
  3838. width:127px;
  3839. height:36px;
  3840. display:flex;
  3841. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:12px;
  3845. color:#606266;
  3846. }
  3847. #u529 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u529_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u530_img {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:131px;
  3866. height:36px;
  3867. }
  3868. #u530 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:944px;
  3872. top:164px;
  3873. width:131px;
  3874. height:36px;
  3875. display:flex;
  3876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:12px;
  3880. color:#606266;
  3881. }
  3882. #u530 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 0px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u530_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u531_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:146px;
  3901. height:36px;
  3902. }
  3903. #u531 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:1075px;
  3907. top:164px;
  3908. width:146px;
  3909. height:36px;
  3910. display:flex;
  3911. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:12px;
  3915. color:#606266;
  3916. }
  3917. #u531 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:2px 2px 2px 0px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u531_text {
  3925. border-width:0px;
  3926. word-wrap:break-word;
  3927. text-transform:none;
  3928. visibility:hidden;
  3929. }
  3930. #u532_img {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:127px;
  3936. height:35px;
  3937. }
  3938. #u532 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:200px;
  3943. width:127px;
  3944. height:35px;
  3945. display:flex;
  3946. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:12px;
  3950. color:#606266;
  3951. }
  3952. #u532 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 0px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u532_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u533_img {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:127px;
  3971. height:35px;
  3972. }
  3973. #u533 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:127px;
  3977. top:200px;
  3978. width:127px;
  3979. height:35px;
  3980. display:flex;
  3981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3982. font-weight:400;
  3983. font-style:normal;
  3984. font-size:12px;
  3985. color:#606266;
  3986. }
  3987. #u533 .text {
  3988. position:absolute;
  3989. align-self:center;
  3990. padding:2px 2px 2px 0px;
  3991. box-sizing:border-box;
  3992. width:100%;
  3993. }
  3994. #u533_text {
  3995. border-width:0px;
  3996. word-wrap:break-word;
  3997. text-transform:none;
  3998. visibility:hidden;
  3999. }
  4000. #u534_img {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:380px;
  4006. height:35px;
  4007. }
  4008. #u534 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:254px;
  4012. top:200px;
  4013. width:380px;
  4014. height:35px;
  4015. display:flex;
  4016. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:12px;
  4020. color:#606266;
  4021. }
  4022. #u534 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:2px 2px 2px 0px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u534_text {
  4030. border-width:0px;
  4031. word-wrap:break-word;
  4032. text-transform:none;
  4033. visibility:hidden;
  4034. }
  4035. #u535_img {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:0px;
  4039. top:0px;
  4040. width:183px;
  4041. height:35px;
  4042. }
  4043. #u535 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:634px;
  4047. top:200px;
  4048. width:183px;
  4049. height:35px;
  4050. display:flex;
  4051. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:12px;
  4055. color:#606266;
  4056. }
  4057. #u535 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 0px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u535_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u536_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:127px;
  4076. height:35px;
  4077. }
  4078. #u536 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:817px;
  4082. top:200px;
  4083. width:127px;
  4084. height:35px;
  4085. display:flex;
  4086. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4087. font-weight:400;
  4088. font-style:normal;
  4089. font-size:12px;
  4090. color:#606266;
  4091. }
  4092. #u536 .text {
  4093. position:absolute;
  4094. align-self:center;
  4095. padding:2px 2px 2px 0px;
  4096. box-sizing:border-box;
  4097. width:100%;
  4098. }
  4099. #u536_text {
  4100. border-width:0px;
  4101. word-wrap:break-word;
  4102. text-transform:none;
  4103. visibility:hidden;
  4104. }
  4105. #u537_img {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:131px;
  4111. height:35px;
  4112. }
  4113. #u537 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:944px;
  4117. top:200px;
  4118. width:131px;
  4119. height:35px;
  4120. display:flex;
  4121. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:12px;
  4125. color:#606266;
  4126. }
  4127. #u537 .text {
  4128. position:absolute;
  4129. align-self:center;
  4130. padding:2px 2px 2px 0px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u537_text {
  4135. border-width:0px;
  4136. word-wrap:break-word;
  4137. text-transform:none;
  4138. visibility:hidden;
  4139. }
  4140. #u538_img {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:146px;
  4146. height:35px;
  4147. }
  4148. #u538 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:1075px;
  4152. top:200px;
  4153. width:146px;
  4154. height:35px;
  4155. display:flex;
  4156. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4157. font-weight:400;
  4158. font-style:normal;
  4159. font-size:12px;
  4160. color:#606266;
  4161. }
  4162. #u538 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:2px 2px 2px 0px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u538_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. visibility:hidden;
  4174. }
  4175. #u539_img {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:127px;
  4181. height:35px;
  4182. }
  4183. #u539 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:235px;
  4188. width:127px;
  4189. height:35px;
  4190. display:flex;
  4191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. font-size:12px;
  4195. color:#606266;
  4196. }
  4197. #u539 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:2px 2px 2px 0px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u539_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u540_img {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:127px;
  4216. height:35px;
  4217. }
  4218. #u540 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:127px;
  4222. top:235px;
  4223. width:127px;
  4224. height:35px;
  4225. display:flex;
  4226. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:12px;
  4230. color:#606266;
  4231. }
  4232. #u540 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:2px 2px 2px 0px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u540_text {
  4240. border-width:0px;
  4241. word-wrap:break-word;
  4242. text-transform:none;
  4243. visibility:hidden;
  4244. }
  4245. #u541_img {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:380px;
  4251. height:35px;
  4252. }
  4253. #u541 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:254px;
  4257. top:235px;
  4258. width:380px;
  4259. height:35px;
  4260. display:flex;
  4261. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:12px;
  4265. color:#606266;
  4266. }
  4267. #u541 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u541_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u542_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:183px;
  4286. height:35px;
  4287. }
  4288. #u542 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:634px;
  4292. top:235px;
  4293. width:183px;
  4294. height:35px;
  4295. display:flex;
  4296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:12px;
  4300. color:#606266;
  4301. }
  4302. #u542 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:2px 2px 2px 0px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u542_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u543_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:127px;
  4321. height:35px;
  4322. }
  4323. #u543 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:817px;
  4327. top:235px;
  4328. width:127px;
  4329. height:35px;
  4330. display:flex;
  4331. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:12px;
  4335. color:#606266;
  4336. }
  4337. #u543 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 0px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u543_text {
  4345. border-width:0px;
  4346. word-wrap:break-word;
  4347. text-transform:none;
  4348. visibility:hidden;
  4349. }
  4350. #u544_img {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:0px;
  4355. width:131px;
  4356. height:35px;
  4357. }
  4358. #u544 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:944px;
  4362. top:235px;
  4363. width:131px;
  4364. height:35px;
  4365. display:flex;
  4366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. color:#606266;
  4371. }
  4372. #u544 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 0px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u544_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. visibility:hidden;
  4384. }
  4385. #u545_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:146px;
  4391. height:35px;
  4392. }
  4393. #u545 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:1075px;
  4397. top:235px;
  4398. width:146px;
  4399. height:35px;
  4400. display:flex;
  4401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:12px;
  4405. color:#606266;
  4406. }
  4407. #u545 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 0px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u545_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u546_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:127px;
  4426. height:35px;
  4427. }
  4428. #u546 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:270px;
  4433. width:127px;
  4434. height:35px;
  4435. display:flex;
  4436. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:12px;
  4440. color:#606266;
  4441. }
  4442. #u546 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 0px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u546_text {
  4450. border-width:0px;
  4451. word-wrap:break-word;
  4452. text-transform:none;
  4453. visibility:hidden;
  4454. }
  4455. #u547_img {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:127px;
  4461. height:35px;
  4462. }
  4463. #u547 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:127px;
  4467. top:270px;
  4468. width:127px;
  4469. height:35px;
  4470. display:flex;
  4471. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:12px;
  4475. color:#606266;
  4476. }
  4477. #u547 .text {
  4478. position:absolute;
  4479. align-self:center;
  4480. padding:2px 2px 2px 0px;
  4481. box-sizing:border-box;
  4482. width:100%;
  4483. }
  4484. #u547_text {
  4485. border-width:0px;
  4486. word-wrap:break-word;
  4487. text-transform:none;
  4488. visibility:hidden;
  4489. }
  4490. #u548_img {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:380px;
  4496. height:35px;
  4497. }
  4498. #u548 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:254px;
  4502. top:270px;
  4503. width:380px;
  4504. height:35px;
  4505. display:flex;
  4506. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. color:#606266;
  4511. }
  4512. #u548 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u548_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. visibility:hidden;
  4524. }
  4525. #u549_img {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:183px;
  4531. height:35px;
  4532. }
  4533. #u549 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:634px;
  4537. top:270px;
  4538. width:183px;
  4539. height:35px;
  4540. display:flex;
  4541. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:12px;
  4545. color:#606266;
  4546. }
  4547. #u549 .text {
  4548. position:absolute;
  4549. align-self:center;
  4550. padding:2px 2px 2px 0px;
  4551. box-sizing:border-box;
  4552. width:100%;
  4553. }
  4554. #u549_text {
  4555. border-width:0px;
  4556. word-wrap:break-word;
  4557. text-transform:none;
  4558. visibility:hidden;
  4559. }
  4560. #u550_img {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:127px;
  4566. height:35px;
  4567. }
  4568. #u550 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:817px;
  4572. top:270px;
  4573. width:127px;
  4574. height:35px;
  4575. display:flex;
  4576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:12px;
  4580. color:#606266;
  4581. }
  4582. #u550 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:2px 2px 2px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u550_text {
  4590. border-width:0px;
  4591. word-wrap:break-word;
  4592. text-transform:none;
  4593. visibility:hidden;
  4594. }
  4595. #u551_img {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:131px;
  4601. height:35px;
  4602. }
  4603. #u551 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:944px;
  4607. top:270px;
  4608. width:131px;
  4609. height:35px;
  4610. display:flex;
  4611. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:12px;
  4615. color:#606266;
  4616. }
  4617. #u551 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 0px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u551_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u552_img {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:146px;
  4636. height:35px;
  4637. }
  4638. #u552 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:1075px;
  4642. top:270px;
  4643. width:146px;
  4644. height:35px;
  4645. display:flex;
  4646. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:12px;
  4650. color:#606266;
  4651. }
  4652. #u552 .text {
  4653. position:absolute;
  4654. align-self:center;
  4655. padding:2px 2px 2px 0px;
  4656. box-sizing:border-box;
  4657. width:100%;
  4658. }
  4659. #u552_text {
  4660. border-width:0px;
  4661. word-wrap:break-word;
  4662. text-transform:none;
  4663. visibility:hidden;
  4664. }
  4665. #u553_img {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:127px;
  4671. height:35px;
  4672. }
  4673. #u553 {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:305px;
  4678. width:127px;
  4679. height:35px;
  4680. display:flex;
  4681. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:12px;
  4685. color:#606266;
  4686. }
  4687. #u553 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:2px 2px 2px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u553_text {
  4695. border-width:0px;
  4696. word-wrap:break-word;
  4697. text-transform:none;
  4698. visibility:hidden;
  4699. }
  4700. #u554_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:127px;
  4706. height:35px;
  4707. }
  4708. #u554 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:127px;
  4712. top:305px;
  4713. width:127px;
  4714. height:35px;
  4715. display:flex;
  4716. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:12px;
  4720. color:#606266;
  4721. }
  4722. #u554 .text {
  4723. position:absolute;
  4724. align-self:center;
  4725. padding:2px 2px 2px 0px;
  4726. box-sizing:border-box;
  4727. width:100%;
  4728. }
  4729. #u554_text {
  4730. border-width:0px;
  4731. word-wrap:break-word;
  4732. text-transform:none;
  4733. visibility:hidden;
  4734. }
  4735. #u555_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:380px;
  4741. height:35px;
  4742. }
  4743. #u555 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:254px;
  4747. top:305px;
  4748. width:380px;
  4749. height:35px;
  4750. display:flex;
  4751. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4752. font-weight:400;
  4753. font-style:normal;
  4754. font-size:12px;
  4755. color:#606266;
  4756. }
  4757. #u555 .text {
  4758. position:absolute;
  4759. align-self:center;
  4760. padding:2px 2px 2px 0px;
  4761. box-sizing:border-box;
  4762. width:100%;
  4763. }
  4764. #u555_text {
  4765. border-width:0px;
  4766. word-wrap:break-word;
  4767. text-transform:none;
  4768. visibility:hidden;
  4769. }
  4770. #u556_img {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:0px;
  4774. top:0px;
  4775. width:183px;
  4776. height:35px;
  4777. }
  4778. #u556 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:634px;
  4782. top:305px;
  4783. width:183px;
  4784. height:35px;
  4785. display:flex;
  4786. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:12px;
  4790. color:#606266;
  4791. }
  4792. #u556 .text {
  4793. position:absolute;
  4794. align-self:center;
  4795. padding:2px 2px 2px 0px;
  4796. box-sizing:border-box;
  4797. width:100%;
  4798. }
  4799. #u556_text {
  4800. border-width:0px;
  4801. word-wrap:break-word;
  4802. text-transform:none;
  4803. visibility:hidden;
  4804. }
  4805. #u557_img {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:127px;
  4811. height:35px;
  4812. }
  4813. #u557 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:817px;
  4817. top:305px;
  4818. width:127px;
  4819. height:35px;
  4820. display:flex;
  4821. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. font-size:12px;
  4825. color:#606266;
  4826. }
  4827. #u557 .text {
  4828. position:absolute;
  4829. align-self:center;
  4830. padding:2px 2px 2px 0px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u557_text {
  4835. border-width:0px;
  4836. word-wrap:break-word;
  4837. text-transform:none;
  4838. visibility:hidden;
  4839. }
  4840. #u558_img {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:131px;
  4846. height:35px;
  4847. }
  4848. #u558 {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:944px;
  4852. top:305px;
  4853. width:131px;
  4854. height:35px;
  4855. display:flex;
  4856. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:12px;
  4860. color:#606266;
  4861. }
  4862. #u558 .text {
  4863. position:absolute;
  4864. align-self:center;
  4865. padding:2px 2px 2px 0px;
  4866. box-sizing:border-box;
  4867. width:100%;
  4868. }
  4869. #u558_text {
  4870. border-width:0px;
  4871. word-wrap:break-word;
  4872. text-transform:none;
  4873. visibility:hidden;
  4874. }
  4875. #u559_img {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:146px;
  4881. height:35px;
  4882. }
  4883. #u559 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:1075px;
  4887. top:305px;
  4888. width:146px;
  4889. height:35px;
  4890. display:flex;
  4891. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. font-size:12px;
  4895. color:#606266;
  4896. }
  4897. #u559 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 0px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u559_text {
  4905. border-width:0px;
  4906. word-wrap:break-word;
  4907. text-transform:none;
  4908. visibility:hidden;
  4909. }
  4910. #u560_img {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:127px;
  4916. height:35px;
  4917. }
  4918. #u560 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:340px;
  4923. width:127px;
  4924. height:35px;
  4925. display:flex;
  4926. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:12px;
  4930. color:#606266;
  4931. }
  4932. #u560 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:2px 2px 2px 0px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u560_text {
  4940. border-width:0px;
  4941. word-wrap:break-word;
  4942. text-transform:none;
  4943. visibility:hidden;
  4944. }
  4945. #u561_img {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:127px;
  4951. height:35px;
  4952. }
  4953. #u561 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:127px;
  4957. top:340px;
  4958. width:127px;
  4959. height:35px;
  4960. display:flex;
  4961. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:12px;
  4965. color:#606266;
  4966. }
  4967. #u561 .text {
  4968. position:absolute;
  4969. align-self:center;
  4970. padding:2px 2px 2px 0px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u561_text {
  4975. border-width:0px;
  4976. word-wrap:break-word;
  4977. text-transform:none;
  4978. visibility:hidden;
  4979. }
  4980. #u562_img {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:380px;
  4986. height:35px;
  4987. }
  4988. #u562 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:254px;
  4992. top:340px;
  4993. width:380px;
  4994. height:35px;
  4995. display:flex;
  4996. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:12px;
  5000. color:#606266;
  5001. }
  5002. #u562 .text {
  5003. position:absolute;
  5004. align-self:center;
  5005. padding:2px 2px 2px 0px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u562_text {
  5010. border-width:0px;
  5011. word-wrap:break-word;
  5012. text-transform:none;
  5013. visibility:hidden;
  5014. }
  5015. #u563_img {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:183px;
  5021. height:35px;
  5022. }
  5023. #u563 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:634px;
  5027. top:340px;
  5028. width:183px;
  5029. height:35px;
  5030. display:flex;
  5031. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5032. font-weight:400;
  5033. font-style:normal;
  5034. font-size:12px;
  5035. color:#606266;
  5036. }
  5037. #u563 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 0px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u563_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u564_img {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:127px;
  5056. height:35px;
  5057. }
  5058. #u564 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:817px;
  5062. top:340px;
  5063. width:127px;
  5064. height:35px;
  5065. display:flex;
  5066. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:12px;
  5070. color:#606266;
  5071. }
  5072. #u564 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 0px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u564_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u565_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:131px;
  5091. height:35px;
  5092. }
  5093. #u565 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:944px;
  5097. top:340px;
  5098. width:131px;
  5099. height:35px;
  5100. display:flex;
  5101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:12px;
  5105. color:#606266;
  5106. }
  5107. #u565 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:2px 2px 2px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u565_text {
  5115. border-width:0px;
  5116. word-wrap:break-word;
  5117. text-transform:none;
  5118. visibility:hidden;
  5119. }
  5120. #u566_img {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:0px;
  5124. top:0px;
  5125. width:146px;
  5126. height:35px;
  5127. }
  5128. #u566 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:1075px;
  5132. top:340px;
  5133. width:146px;
  5134. height:35px;
  5135. display:flex;
  5136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:12px;
  5140. color:#606266;
  5141. }
  5142. #u566 .text {
  5143. position:absolute;
  5144. align-self:center;
  5145. padding:2px 2px 2px 0px;
  5146. box-sizing:border-box;
  5147. width:100%;
  5148. }
  5149. #u566_text {
  5150. border-width:0px;
  5151. word-wrap:break-word;
  5152. text-transform:none;
  5153. visibility:hidden;
  5154. }
  5155. #u567_img {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:127px;
  5161. height:35px;
  5162. }
  5163. #u567 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:375px;
  5168. width:127px;
  5169. height:35px;
  5170. display:flex;
  5171. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5172. font-weight:400;
  5173. font-style:normal;
  5174. font-size:12px;
  5175. color:#606266;
  5176. }
  5177. #u567 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 0px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u567_text {
  5185. border-width:0px;
  5186. word-wrap:break-word;
  5187. text-transform:none;
  5188. visibility:hidden;
  5189. }
  5190. #u568_img {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:127px;
  5196. height:35px;
  5197. }
  5198. #u568 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:127px;
  5202. top:375px;
  5203. width:127px;
  5204. height:35px;
  5205. display:flex;
  5206. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:12px;
  5210. color:#606266;
  5211. }
  5212. #u568 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 0px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u568_text {
  5220. border-width:0px;
  5221. word-wrap:break-word;
  5222. text-transform:none;
  5223. visibility:hidden;
  5224. }
  5225. #u569_img {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:380px;
  5231. height:35px;
  5232. }
  5233. #u569 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:254px;
  5237. top:375px;
  5238. width:380px;
  5239. height:35px;
  5240. display:flex;
  5241. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:12px;
  5245. color:#606266;
  5246. }
  5247. #u569 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 0px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u569_text {
  5255. border-width:0px;
  5256. word-wrap:break-word;
  5257. text-transform:none;
  5258. visibility:hidden;
  5259. }
  5260. #u570_img {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:183px;
  5266. height:35px;
  5267. }
  5268. #u570 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:634px;
  5272. top:375px;
  5273. width:183px;
  5274. height:35px;
  5275. display:flex;
  5276. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:12px;
  5280. color:#606266;
  5281. }
  5282. #u570 .text {
  5283. position:absolute;
  5284. align-self:center;
  5285. padding:2px 2px 2px 0px;
  5286. box-sizing:border-box;
  5287. width:100%;
  5288. }
  5289. #u570_text {
  5290. border-width:0px;
  5291. word-wrap:break-word;
  5292. text-transform:none;
  5293. visibility:hidden;
  5294. }
  5295. #u571_img {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:127px;
  5301. height:35px;
  5302. }
  5303. #u571 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:817px;
  5307. top:375px;
  5308. width:127px;
  5309. height:35px;
  5310. display:flex;
  5311. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:12px;
  5315. color:#606266;
  5316. }
  5317. #u571 .text {
  5318. position:absolute;
  5319. align-self:center;
  5320. padding:2px 2px 2px 0px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u571_text {
  5325. border-width:0px;
  5326. word-wrap:break-word;
  5327. text-transform:none;
  5328. visibility:hidden;
  5329. }
  5330. #u572_img {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:131px;
  5336. height:35px;
  5337. }
  5338. #u572 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:944px;
  5342. top:375px;
  5343. width:131px;
  5344. height:35px;
  5345. display:flex;
  5346. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:12px;
  5350. color:#606266;
  5351. }
  5352. #u572 .text {
  5353. position:absolute;
  5354. align-self:center;
  5355. padding:2px 2px 2px 0px;
  5356. box-sizing:border-box;
  5357. width:100%;
  5358. }
  5359. #u572_text {
  5360. border-width:0px;
  5361. word-wrap:break-word;
  5362. text-transform:none;
  5363. visibility:hidden;
  5364. }
  5365. #u573_img {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:146px;
  5371. height:35px;
  5372. }
  5373. #u573 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:1075px;
  5377. top:375px;
  5378. width:146px;
  5379. height:35px;
  5380. display:flex;
  5381. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5382. font-weight:400;
  5383. font-style:normal;
  5384. font-size:12px;
  5385. color:#606266;
  5386. }
  5387. #u573 .text {
  5388. position:absolute;
  5389. align-self:center;
  5390. padding:2px 2px 2px 0px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u573_text {
  5395. border-width:0px;
  5396. word-wrap:break-word;
  5397. text-transform:none;
  5398. visibility:hidden;
  5399. }
  5400. #u574_img {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:127px;
  5406. height:32px;
  5407. }
  5408. #u574 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:410px;
  5413. width:127px;
  5414. height:32px;
  5415. display:flex;
  5416. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:12px;
  5420. color:#606266;
  5421. }
  5422. #u574 .text {
  5423. position:absolute;
  5424. align-self:center;
  5425. padding:2px 2px 2px 0px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u574_text {
  5430. border-width:0px;
  5431. word-wrap:break-word;
  5432. text-transform:none;
  5433. visibility:hidden;
  5434. }
  5435. #u575_img {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:127px;
  5441. height:32px;
  5442. }
  5443. #u575 {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:127px;
  5447. top:410px;
  5448. width:127px;
  5449. height:32px;
  5450. display:flex;
  5451. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:12px;
  5455. color:#606266;
  5456. }
  5457. #u575 .text {
  5458. position:absolute;
  5459. align-self:center;
  5460. padding:2px 2px 2px 0px;
  5461. box-sizing:border-box;
  5462. width:100%;
  5463. }
  5464. #u575_text {
  5465. border-width:0px;
  5466. word-wrap:break-word;
  5467. text-transform:none;
  5468. visibility:hidden;
  5469. }
  5470. #u576_img {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:380px;
  5476. height:32px;
  5477. }
  5478. #u576 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:254px;
  5482. top:410px;
  5483. width:380px;
  5484. height:32px;
  5485. display:flex;
  5486. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:12px;
  5490. color:#606266;
  5491. }
  5492. #u576 .text {
  5493. position:absolute;
  5494. align-self:center;
  5495. padding:2px 2px 2px 0px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u576_text {
  5500. border-width:0px;
  5501. word-wrap:break-word;
  5502. text-transform:none;
  5503. visibility:hidden;
  5504. }
  5505. #u577_img {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:183px;
  5511. height:32px;
  5512. }
  5513. #u577 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:634px;
  5517. top:410px;
  5518. width:183px;
  5519. height:32px;
  5520. display:flex;
  5521. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:12px;
  5525. color:#606266;
  5526. }
  5527. #u577 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 0px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u577_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u578_img {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:127px;
  5546. height:32px;
  5547. }
  5548. #u578 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:817px;
  5552. top:410px;
  5553. width:127px;
  5554. height:32px;
  5555. display:flex;
  5556. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:12px;
  5560. color:#606266;
  5561. }
  5562. #u578 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:2px 2px 2px 0px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u578_text {
  5570. border-width:0px;
  5571. word-wrap:break-word;
  5572. text-transform:none;
  5573. visibility:hidden;
  5574. }
  5575. #u579_img {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:131px;
  5581. height:32px;
  5582. }
  5583. #u579 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:944px;
  5587. top:410px;
  5588. width:131px;
  5589. height:32px;
  5590. display:flex;
  5591. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:12px;
  5595. color:#606266;
  5596. }
  5597. #u579 .text {
  5598. position:absolute;
  5599. align-self:center;
  5600. padding:2px 2px 2px 0px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u579_text {
  5605. border-width:0px;
  5606. word-wrap:break-word;
  5607. text-transform:none;
  5608. visibility:hidden;
  5609. }
  5610. #u580_img {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:146px;
  5616. height:32px;
  5617. }
  5618. #u580 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:1075px;
  5622. top:410px;
  5623. width:146px;
  5624. height:32px;
  5625. display:flex;
  5626. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:12px;
  5630. color:#606266;
  5631. }
  5632. #u580 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 0px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u580_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u581_img {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:50px;
  5651. height:31px;
  5652. }
  5653. #u581 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:1051px;
  5657. top:244px;
  5658. width:50px;
  5659. height:31px;
  5660. display:flex;
  5661. }
  5662. #u581 .text {
  5663. position:absolute;
  5664. align-self:center;
  5665. padding:2px 2px 2px 2px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u581_text {
  5670. border-width:0px;
  5671. word-wrap:break-word;
  5672. text-transform:none;
  5673. visibility:hidden;
  5674. }
  5675. #u582_img {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:50px;
  5681. height:31px;
  5682. }
  5683. #u582 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:1051px;
  5687. top:289px;
  5688. width:50px;
  5689. height:31px;
  5690. display:flex;
  5691. }
  5692. #u582 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 2px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u582_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. visibility:hidden;
  5704. }
  5705. #u583 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:0px;
  5711. height:0px;
  5712. }
  5713. #u584_div {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:680px;
  5719. height:1187px;
  5720. background:inherit;
  5721. background-color:rgba(255, 255, 255, 1);
  5722. box-sizing:border-box;
  5723. border-width:1px;
  5724. border-style:solid;
  5725. border-color:rgba(215, 215, 215, 1);
  5726. border-radius:0px;
  5727. -moz-box-shadow:none;
  5728. -webkit-box-shadow:none;
  5729. box-shadow:none;
  5730. }
  5731. #u584 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:1638px;
  5735. top:43px;
  5736. width:680px;
  5737. height:1187px;
  5738. display:flex;
  5739. }
  5740. #u584 .text {
  5741. position:absolute;
  5742. align-self:center;
  5743. padding:2px 2px 2px 2px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u584_text {
  5748. border-width:0px;
  5749. word-wrap:break-word;
  5750. text-transform:none;
  5751. visibility:hidden;
  5752. }
  5753. #u585_div {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:154px;
  5759. height:30px;
  5760. background:inherit;
  5761. background-color:rgba(255, 255, 255, 0);
  5762. border:none;
  5763. border-radius:0px;
  5764. -moz-box-shadow:none;
  5765. -webkit-box-shadow:none;
  5766. box-shadow:none;
  5767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:18px;
  5771. color:#000000;
  5772. line-height:30px;
  5773. }
  5774. #u585 {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:1658px;
  5778. top:63px;
  5779. width:154px;
  5780. height:30px;
  5781. display:flex;
  5782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5783. font-weight:400;
  5784. font-style:normal;
  5785. font-size:18px;
  5786. color:#000000;
  5787. line-height:30px;
  5788. }
  5789. #u585 .text {
  5790. position:absolute;
  5791. align-self:flex-start;
  5792. padding:0px 0px 0px 0px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u585_text {
  5797. border-width:0px;
  5798. white-space:nowrap;
  5799. text-transform:none;
  5800. }
  5801. #u586 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:0px;
  5807. height:0px;
  5808. }
  5809. #u587_div {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:40px;
  5815. height:40px;
  5816. background:inherit;
  5817. background-color:rgba(255, 255, 255, 0);
  5818. border:none;
  5819. border-top:0px;
  5820. border-right:0px;
  5821. border-bottom:0px;
  5822. border-radius:0px;
  5823. border-top-left-radius:0px;
  5824. border-bottom-left-radius:0px;
  5825. -moz-box-shadow:none;
  5826. -webkit-box-shadow:none;
  5827. box-shadow:none;
  5828. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5829. font-weight:500;
  5830. font-style:normal;
  5831. font-size:18px;
  5832. text-align:center;
  5833. }
  5834. #u587 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:2278px;
  5838. top:43px;
  5839. width:40px;
  5840. height:40px;
  5841. display:flex;
  5842. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5843. font-weight:500;
  5844. font-style:normal;
  5845. font-size:18px;
  5846. text-align:center;
  5847. }
  5848. #u587 .text {
  5849. position:absolute;
  5850. align-self:center;
  5851. padding:5px 10px 5px 0px;
  5852. box-sizing:border-box;
  5853. width:100%;
  5854. }
  5855. #u587_text {
  5856. border-width:0px;
  5857. word-wrap:break-word;
  5858. text-transform:none;
  5859. }
  5860. #u588_img {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:13px;
  5866. height:13px;
  5867. }
  5868. #u588 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:2265px;
  5872. top:61px;
  5873. width:13px;
  5874. height:13px;
  5875. display:flex;
  5876. }
  5877. #u588 .text {
  5878. position:absolute;
  5879. align-self:center;
  5880. padding:2px 2px 2px 2px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u588_text {
  5885. border-width:0px;
  5886. word-wrap:break-word;
  5887. text-transform:none;
  5888. visibility:hidden;
  5889. }
  5890. #u589_div {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:102px;
  5896. height:30px;
  5897. background:inherit;
  5898. background-color:rgba(255, 255, 255, 0);
  5899. border:none;
  5900. border-top:0px;
  5901. border-right:0px;
  5902. border-bottom:0px;
  5903. border-radius:0px;
  5904. border-top-left-radius:0px;
  5905. border-bottom-left-radius:0px;
  5906. -moz-box-shadow:none;
  5907. -webkit-box-shadow:none;
  5908. box-shadow:none;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:14px;
  5913. }
  5914. #u589 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:1680px;
  5918. top:111px;
  5919. width:102px;
  5920. height:30px;
  5921. display:flex;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:14px;
  5926. }
  5927. #u589 .text {
  5928. position:absolute;
  5929. align-self:center;
  5930. padding:5px 10px 5px 0px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u589_text {
  5935. border-width:0px;
  5936. white-space:nowrap;
  5937. text-transform:none;
  5938. }
  5939. #u590 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:0px;
  5945. height:0px;
  5946. }
  5947. #u591_div {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:380px;
  5953. height:40px;
  5954. background:inherit;
  5955. background-color:rgba(255, 255, 255, 1);
  5956. box-sizing:border-box;
  5957. border-width:1px;
  5958. border-style:solid;
  5959. border-color:rgba(170, 170, 170, 1);
  5960. border-radius:4px;
  5961. -moz-box-shadow:none;
  5962. -webkit-box-shadow:none;
  5963. box-shadow:none;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. text-align:left;
  5968. }
  5969. #u591 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:1680px;
  5973. top:141px;
  5974. width:380px;
  5975. height:40px;
  5976. display:flex;
  5977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. text-align:left;
  5981. }
  5982. #u591 .text {
  5983. position:absolute;
  5984. align-self:center;
  5985. padding:2px 2px 2px 10px;
  5986. box-sizing:border-box;
  5987. width:100%;
  5988. }
  5989. #u591_text {
  5990. border-width:0px;
  5991. word-wrap:break-word;
  5992. text-transform:none;
  5993. visibility:hidden;
  5994. }
  5995. #u592_input {
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:179px;
  6000. height:31px;
  6001. padding:2px 2px 2px 2px;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:13px;
  6006. letter-spacing:normal;
  6007. color:#AAAAAA;
  6008. vertical-align:none;
  6009. text-align:left;
  6010. text-transform:none;
  6011. background-color:transparent;
  6012. border-color:transparent;
  6013. }
  6014. #u592_input.disabled {
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:179px;
  6019. height:31px;
  6020. padding:2px 2px 2px 2px;
  6021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:13px;
  6025. letter-spacing:normal;
  6026. color:#AAAAAA;
  6027. vertical-align:none;
  6028. text-align:left;
  6029. text-transform:none;
  6030. background-color:transparent;
  6031. border-color:transparent;
  6032. }
  6033. #u592_div {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:179px;
  6039. height:31px;
  6040. background:inherit;
  6041. background-color:rgba(255, 255, 255, 0);
  6042. border:none;
  6043. border-radius:0px;
  6044. -moz-box-shadow:none;
  6045. -webkit-box-shadow:none;
  6046. box-shadow:none;
  6047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. color:#AAAAAA;
  6051. }
  6052. #u592 {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:1690px;
  6056. top:146px;
  6057. width:179px;
  6058. height:31px;
  6059. display:flex;
  6060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6061. font-weight:400;
  6062. font-style:normal;
  6063. color:#AAAAAA;
  6064. }
  6065. #u592 .text {
  6066. position:absolute;
  6067. align-self:center;
  6068. padding:2px 2px 2px 2px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u592_div.disabled {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:179px;
  6078. height:31px;
  6079. background:inherit;
  6080. background-color:rgba(240, 240, 240, 1);
  6081. border:none;
  6082. border-radius:0px;
  6083. -moz-box-shadow:none;
  6084. -webkit-box-shadow:none;
  6085. box-shadow:none;
  6086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. color:#AAAAAA;
  6090. }
  6091. #u592.disabled {
  6092. }
  6093. #u593 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:0px;
  6099. height:0px;
  6100. }
  6101. #u594_div {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:680px;
  6107. height:60px;
  6108. background:inherit;
  6109. background-color:rgba(255, 255, 255, 1);
  6110. box-sizing:border-box;
  6111. border-width:1px;
  6112. border-style:solid;
  6113. border-color:rgba(215, 215, 215, 1);
  6114. border-radius:0px;
  6115. -moz-box-shadow:none;
  6116. -webkit-box-shadow:none;
  6117. box-shadow:none;
  6118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:14px;
  6122. color:#AAAAAA;
  6123. text-align:center;
  6124. line-height:30px;
  6125. }
  6126. #u594 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:1638px;
  6130. top:1170px;
  6131. width:680px;
  6132. height:60px;
  6133. display:flex;
  6134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6135. font-weight:400;
  6136. font-style:normal;
  6137. font-size:14px;
  6138. color:#AAAAAA;
  6139. text-align:center;
  6140. line-height:30px;
  6141. }
  6142. #u594 .text {
  6143. position:absolute;
  6144. align-self:center;
  6145. padding:5px 10px 5px 10px;
  6146. box-sizing:border-box;
  6147. width:100%;
  6148. }
  6149. #u594_text {
  6150. border-width:0px;
  6151. word-wrap:break-word;
  6152. text-transform:none;
  6153. visibility:hidden;
  6154. }
  6155. #u595_div {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:0px;
  6159. top:0px;
  6160. width:80px;
  6161. height:30px;
  6162. background:inherit;
  6163. background-color:rgba(24, 144, 255, 1);
  6164. border:none;
  6165. border-radius:4px;
  6166. -moz-box-shadow:none;
  6167. -webkit-box-shadow:none;
  6168. box-shadow:none;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:14px;
  6173. color:#FFFFFF;
  6174. }
  6175. #u595 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:2193px;
  6179. top:1185px;
  6180. width:80px;
  6181. height:30px;
  6182. display:flex;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:14px;
  6187. color:#FFFFFF;
  6188. }
  6189. #u595 .text {
  6190. position:absolute;
  6191. align-self:center;
  6192. padding:2px 2px 2px 2px;
  6193. box-sizing:border-box;
  6194. width:100%;
  6195. }
  6196. #u595_text {
  6197. border-width:0px;
  6198. word-wrap:break-word;
  6199. text-transform:none;
  6200. }
  6201. #u596_div {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:80px;
  6207. height:30px;
  6208. background:inherit;
  6209. background-color:rgba(255, 255, 255, 1);
  6210. box-sizing:border-box;
  6211. border-width:1px;
  6212. border-style:solid;
  6213. border-color:rgba(170, 170, 170, 1);
  6214. border-radius:4px;
  6215. -moz-box-shadow:none;
  6216. -webkit-box-shadow:none;
  6217. box-shadow:none;
  6218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:14px;
  6222. }
  6223. #u596 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:2094px;
  6227. top:1185px;
  6228. width:80px;
  6229. height:30px;
  6230. display:flex;
  6231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:14px;
  6235. }
  6236. #u596 .text {
  6237. position:absolute;
  6238. align-self:center;
  6239. padding:2px 2px 2px 2px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u596_text {
  6244. border-width:0px;
  6245. word-wrap:break-word;
  6246. text-transform:none;
  6247. }
  6248. #u597_div {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:80px;
  6254. height:30px;
  6255. background:inherit;
  6256. background-color:rgba(255, 255, 255, 1);
  6257. box-sizing:border-box;
  6258. border-width:1px;
  6259. border-style:solid;
  6260. border-color:rgba(170, 170, 170, 1);
  6261. border-radius:4px;
  6262. -moz-box-shadow:none;
  6263. -webkit-box-shadow:none;
  6264. box-shadow:none;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:14px;
  6269. }
  6270. #u597 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:2004px;
  6274. top:1185px;
  6275. width:80px;
  6276. height:30px;
  6277. display:flex;
  6278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6279. font-weight:400;
  6280. font-style:normal;
  6281. font-size:14px;
  6282. }
  6283. #u597 .text {
  6284. position:absolute;
  6285. align-self:center;
  6286. padding:2px 2px 2px 2px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u597_text {
  6291. border-width:0px;
  6292. word-wrap:break-word;
  6293. text-transform:none;
  6294. }
  6295. #u598_div {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:67px;
  6301. height:30px;
  6302. background:inherit;
  6303. background-color:rgba(255, 255, 255, 0);
  6304. border:none;
  6305. border-top:0px;
  6306. border-right:0px;
  6307. border-bottom:0px;
  6308. border-radius:0px;
  6309. border-top-left-radius:0px;
  6310. border-bottom-left-radius:0px;
  6311. -moz-box-shadow:none;
  6312. -webkit-box-shadow:none;
  6313. box-shadow:none;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:14px;
  6318. }
  6319. #u598 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:1680px;
  6323. top:271px;
  6324. width:67px;
  6325. height:30px;
  6326. display:flex;
  6327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6328. font-weight:400;
  6329. font-style:normal;
  6330. font-size:14px;
  6331. }
  6332. #u598 .text {
  6333. position:absolute;
  6334. align-self:center;
  6335. padding:5px 10px 5px 0px;
  6336. box-sizing:border-box;
  6337. width:100%;
  6338. }
  6339. #u598_text {
  6340. border-width:0px;
  6341. white-space:nowrap;
  6342. text-transform:none;
  6343. }
  6344. #u599 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:0px;
  6350. height:0px;
  6351. }
  6352. #u600_div {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:380px;
  6358. height:80px;
  6359. background:inherit;
  6360. background-color:rgba(255, 255, 255, 1);
  6361. box-sizing:border-box;
  6362. border-width:1px;
  6363. border-style:solid;
  6364. border-color:rgba(170, 170, 170, 1);
  6365. border-radius:4px;
  6366. -moz-box-shadow:none;
  6367. -webkit-box-shadow:none;
  6368. box-shadow:none;
  6369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. text-align:left;
  6373. }
  6374. #u600 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:1680px;
  6378. top:301px;
  6379. width:380px;
  6380. height:80px;
  6381. display:flex;
  6382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. text-align:left;
  6386. }
  6387. #u600 .text {
  6388. position:absolute;
  6389. align-self:center;
  6390. padding:2px 2px 2px 10px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u600_text {
  6395. border-width:0px;
  6396. word-wrap:break-word;
  6397. text-transform:none;
  6398. visibility:hidden;
  6399. }
  6400. #u601_input {
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:179px;
  6405. height:31px;
  6406. padding:2px 2px 2px 2px;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:13px;
  6411. letter-spacing:normal;
  6412. color:#AAAAAA;
  6413. vertical-align:none;
  6414. text-align:left;
  6415. text-transform:none;
  6416. background-color:transparent;
  6417. border-color:transparent;
  6418. }
  6419. #u601_input.disabled {
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:179px;
  6424. height:31px;
  6425. padding:2px 2px 2px 2px;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:13px;
  6430. letter-spacing:normal;
  6431. color:#AAAAAA;
  6432. vertical-align:none;
  6433. text-align:left;
  6434. text-transform:none;
  6435. background-color:transparent;
  6436. border-color:transparent;
  6437. }
  6438. #u601_div {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:179px;
  6444. height:31px;
  6445. background:inherit;
  6446. background-color:rgba(255, 255, 255, 0);
  6447. border:none;
  6448. border-radius:0px;
  6449. -moz-box-shadow:none;
  6450. -webkit-box-shadow:none;
  6451. box-shadow:none;
  6452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6453. font-weight:400;
  6454. font-style:normal;
  6455. color:#AAAAAA;
  6456. }
  6457. #u601 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:1690px;
  6461. top:306px;
  6462. width:179px;
  6463. height:31px;
  6464. display:flex;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. color:#AAAAAA;
  6469. }
  6470. #u601 .text {
  6471. position:absolute;
  6472. align-self:center;
  6473. padding:2px 2px 2px 2px;
  6474. box-sizing:border-box;
  6475. width:100%;
  6476. }
  6477. #u601_div.disabled {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:179px;
  6483. height:31px;
  6484. background:inherit;
  6485. background-color:rgba(240, 240, 240, 1);
  6486. border:none;
  6487. border-radius:0px;
  6488. -moz-box-shadow:none;
  6489. -webkit-box-shadow:none;
  6490. box-shadow:none;
  6491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. color:#AAAAAA;
  6495. }
  6496. #u601.disabled {
  6497. }
  6498. #u602_div {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:0px;
  6502. top:0px;
  6503. width:74px;
  6504. height:30px;
  6505. background:inherit;
  6506. background-color:rgba(255, 255, 255, 0);
  6507. border:none;
  6508. border-top:0px;
  6509. border-right:0px;
  6510. border-bottom:0px;
  6511. border-radius:0px;
  6512. border-top-left-radius:0px;
  6513. border-bottom-left-radius:0px;
  6514. -moz-box-shadow:none;
  6515. -webkit-box-shadow:none;
  6516. box-shadow:none;
  6517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:14px;
  6521. }
  6522. #u602 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:1680px;
  6526. top:191px;
  6527. width:74px;
  6528. height:30px;
  6529. display:flex;
  6530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:14px;
  6534. }
  6535. #u602 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:5px 10px 5px 0px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u602_text {
  6543. border-width:0px;
  6544. white-space:nowrap;
  6545. text-transform:none;
  6546. }
  6547. #u603 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:0px;
  6553. height:0px;
  6554. }
  6555. #u604_div {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:380px;
  6561. height:40px;
  6562. background:inherit;
  6563. background-color:rgba(255, 255, 255, 1);
  6564. box-sizing:border-box;
  6565. border-width:1px;
  6566. border-style:solid;
  6567. border-color:rgba(170, 170, 170, 1);
  6568. border-radius:4px;
  6569. -moz-box-shadow:none;
  6570. -webkit-box-shadow:none;
  6571. box-shadow:none;
  6572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6573. font-weight:400;
  6574. font-style:normal;
  6575. text-align:left;
  6576. }
  6577. #u604 {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:1680px;
  6581. top:221px;
  6582. width:380px;
  6583. height:40px;
  6584. display:flex;
  6585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6586. font-weight:400;
  6587. font-style:normal;
  6588. text-align:left;
  6589. }
  6590. #u604 .text {
  6591. position:absolute;
  6592. align-self:center;
  6593. padding:2px 2px 2px 10px;
  6594. box-sizing:border-box;
  6595. width:100%;
  6596. }
  6597. #u604_text {
  6598. border-width:0px;
  6599. word-wrap:break-word;
  6600. text-transform:none;
  6601. visibility:hidden;
  6602. }
  6603. #u605_input {
  6604. position:absolute;
  6605. left:0px;
  6606. top:0px;
  6607. width:179px;
  6608. height:31px;
  6609. padding:2px 2px 2px 2px;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:13px;
  6614. letter-spacing:normal;
  6615. color:#AAAAAA;
  6616. vertical-align:none;
  6617. text-align:left;
  6618. text-transform:none;
  6619. background-color:transparent;
  6620. border-color:transparent;
  6621. }
  6622. #u605_input.disabled {
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:179px;
  6627. height:31px;
  6628. padding:2px 2px 2px 2px;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:13px;
  6633. letter-spacing:normal;
  6634. color:#AAAAAA;
  6635. vertical-align:none;
  6636. text-align:left;
  6637. text-transform:none;
  6638. background-color:transparent;
  6639. border-color:transparent;
  6640. }
  6641. #u605_div {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:179px;
  6647. height:31px;
  6648. background:inherit;
  6649. background-color:rgba(255, 255, 255, 0);
  6650. border:none;
  6651. border-radius:0px;
  6652. -moz-box-shadow:none;
  6653. -webkit-box-shadow:none;
  6654. box-shadow:none;
  6655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6656. font-weight:400;
  6657. font-style:normal;
  6658. color:#AAAAAA;
  6659. }
  6660. #u605 {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:1690px;
  6664. top:226px;
  6665. width:179px;
  6666. height:31px;
  6667. display:flex;
  6668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6669. font-weight:400;
  6670. font-style:normal;
  6671. color:#AAAAAA;
  6672. }
  6673. #u605 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 2px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u605_div.disabled {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:179px;
  6686. height:31px;
  6687. background:inherit;
  6688. background-color:rgba(240, 240, 240, 1);
  6689. border:none;
  6690. border-radius:0px;
  6691. -moz-box-shadow:none;
  6692. -webkit-box-shadow:none;
  6693. box-shadow:none;
  6694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. color:#AAAAAA;
  6698. }
  6699. #u605.disabled {
  6700. }