styles.css 134 KB

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