styles.css 131 KB

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