styles.css 130 KB

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