styles.css 139 KB

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