styles.css 147 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2203px;
  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. #u22844_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. #u22844 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u22844 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u22844_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u22845_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. #u22845 {
  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. #u22845 .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. #u22845_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u22846_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. #u22846 {
  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. #u22846 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u22846_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u22847 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u22848_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u22848 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u22848 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u22848_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u22849_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. #u22849 {
  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. #u22849 .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. #u22849_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u22850_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. #u22850 {
  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. #u22850 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u22850_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u22851 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u22852_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u22852 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u22852 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u22852_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u22853_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u22853 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u22853 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u22853_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u22854 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u22855_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u22855 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u22855 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u22855_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u22856_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u22856 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u22856 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u22856_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u22857 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u22858_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u22858 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u22858 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u22858_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u22859_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u22859 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u22859 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u22859_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u22860 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u22861_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u22861 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u22861 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u22861_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u22862_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u22862 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u22862 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u22862_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u22863 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u22864_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u22864 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u22864 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u22864_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u22865_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u22865 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u22865 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u22865_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u22866 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u22867_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u22867 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u22867 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u22867_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u22868_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u22868 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u22868 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u22868_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u22869 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u22870_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u22870 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u22870 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u22870_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u22871_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u22871 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u22871 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u22871_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u22872 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u22873_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u22873 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u22873 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u22873_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u22874_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u22874 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u22874 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u22874_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u22875 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u22876_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u22876 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u22876 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u22876_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u22877_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u22877 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u22877 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u22877_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u22878 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u22879_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u22879 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u22879 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u22879_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u22880_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u22880 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u22880 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u22880_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u22881 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u22882_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u22882 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u22882 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u22882_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u22883_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u22883 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u22883 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u22883_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u22884 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u22885_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u22885_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u22885_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u22885 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u22885 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u22885_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u22885.disabled {
  1276. }
  1277. .u22885_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u22886_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u22886 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u22886 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u22886_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u22887_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u22887 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u22887 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u22887_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u22888_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u22888 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u22888 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u22888_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u22889 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u22890_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u22890 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u22890 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u22890_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u22891_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u22891 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u22891 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u22891_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u22892_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u22892 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u22892 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u22892_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u22893_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u22893 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u22893 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u22893_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u22894_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u22894 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u22894 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u22894_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u22895 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u22896_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u22896 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u22896 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u22896_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u22897_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u22897 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u22897 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u22897_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u22898_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1265px;
  1648. height:1193px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1654. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1655. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1656. color:#1890FF;
  1657. }
  1658. #u22898 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:325px;
  1662. top:50px;
  1663. width:1265px;
  1664. height:1193px;
  1665. display:flex;
  1666. color:#1890FF;
  1667. }
  1668. #u22898 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u22898_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u22899_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:91px;
  1687. height:50px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 0);
  1690. border:none;
  1691. border-left:0px;
  1692. border-top:0px;
  1693. border-right:0px;
  1694. border-radius:0px;
  1695. border-bottom-right-radius:0px;
  1696. border-bottom-left-radius:0px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1701. font-weight:500;
  1702. font-style:normal;
  1703. font-size:18px;
  1704. }
  1705. #u22899 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:348px;
  1709. top:158px;
  1710. width:91px;
  1711. height:50px;
  1712. display:flex;
  1713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1714. font-weight:500;
  1715. font-style:normal;
  1716. font-size:18px;
  1717. }
  1718. #u22899 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u22899_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u22900 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:0px;
  1736. height:0px;
  1737. }
  1738. #u22901 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:348px;
  1742. top:268px;
  1743. width:782px;
  1744. height:328px;
  1745. }
  1746. #u22902_img {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:71px;
  1752. height:30px;
  1753. }
  1754. #u22902 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:71px;
  1760. height:30px;
  1761. display:flex;
  1762. color:#FFFFFF;
  1763. }
  1764. #u22902 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:2px 2px 2px 2px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u22902_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. visibility:hidden;
  1776. }
  1777. #u22903_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:138px;
  1783. height:30px;
  1784. }
  1785. #u22903 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:71px;
  1789. top:0px;
  1790. width:138px;
  1791. height:30px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. color:#FFFFFF;
  1797. }
  1798. #u22903 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:2px 2px 2px 2px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u22903_text {
  1806. border-width:0px;
  1807. word-wrap:break-word;
  1808. text-transform:none;
  1809. }
  1810. #u22904_img {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:143px;
  1816. height:30px;
  1817. }
  1818. #u22904 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:209px;
  1822. top:0px;
  1823. width:143px;
  1824. height:30px;
  1825. display:flex;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. color:#FFFFFF;
  1830. }
  1831. #u22904 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:2px 2px 2px 2px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u22904_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. }
  1843. #u22905_img {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:143px;
  1849. height:30px;
  1850. }
  1851. #u22905 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:352px;
  1855. top:0px;
  1856. width:143px;
  1857. height:30px;
  1858. display:flex;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. color:#FFFFFF;
  1863. }
  1864. #u22905 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:2px 2px 2px 2px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u22905_text {
  1872. border-width:0px;
  1873. word-wrap:break-word;
  1874. text-transform:none;
  1875. }
  1876. #u22906_img {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:153px;
  1882. height:30px;
  1883. }
  1884. #u22906 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:495px;
  1888. top:0px;
  1889. width:153px;
  1890. height:30px;
  1891. display:flex;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. color:#FFFFFF;
  1896. }
  1897. #u22906 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u22906_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u22907_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:134px;
  1915. height:30px;
  1916. }
  1917. #u22907 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:648px;
  1921. top:0px;
  1922. width:134px;
  1923. height:30px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. color:#FFFFFF;
  1929. }
  1930. #u22907 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:2px 2px 2px 2px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u22907_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. }
  1942. #u22908_img {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:71px;
  1948. height:30px;
  1949. }
  1950. #u22908 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:30px;
  1955. width:71px;
  1956. height:30px;
  1957. display:flex;
  1958. }
  1959. #u22908 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u22908_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. visibility:hidden;
  1971. }
  1972. #u22909_img {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:138px;
  1978. height:30px;
  1979. }
  1980. #u22909 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:71px;
  1984. top:30px;
  1985. width:138px;
  1986. height:30px;
  1987. display:flex;
  1988. }
  1989. #u22909 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 2px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u22909_text {
  1997. border-width:0px;
  1998. word-wrap:break-word;
  1999. text-transform:none;
  2000. visibility:hidden;
  2001. }
  2002. #u22910_img {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:143px;
  2008. height:30px;
  2009. }
  2010. #u22910 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:209px;
  2014. top:30px;
  2015. width:143px;
  2016. height:30px;
  2017. display:flex;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. }
  2022. #u22910 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:2px 2px 2px 2px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u22910_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. visibility:hidden;
  2034. }
  2035. #u22911_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:143px;
  2041. height:30px;
  2042. }
  2043. #u22911 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:352px;
  2047. top:30px;
  2048. width:143px;
  2049. height:30px;
  2050. display:flex;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. }
  2055. #u22911 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u22911_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u22912_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:153px;
  2074. height:30px;
  2075. }
  2076. #u22912 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:495px;
  2080. top:30px;
  2081. width:153px;
  2082. height:30px;
  2083. display:flex;
  2084. }
  2085. #u22912 .text {
  2086. position:absolute;
  2087. align-self:center;
  2088. padding:2px 2px 2px 2px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u22912_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. visibility:hidden;
  2097. }
  2098. #u22913_img {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:0px;
  2102. top:0px;
  2103. width:134px;
  2104. height:30px;
  2105. }
  2106. #u22913 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:648px;
  2110. top:30px;
  2111. width:134px;
  2112. height:30px;
  2113. display:flex;
  2114. }
  2115. #u22913 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u22913_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u22914_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:71px;
  2134. height:30px;
  2135. }
  2136. #u22914 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:60px;
  2141. width:71px;
  2142. height:30px;
  2143. display:flex;
  2144. }
  2145. #u22914 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 2px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u22914_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. visibility:hidden;
  2157. }
  2158. #u22915_img {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:138px;
  2164. height:30px;
  2165. }
  2166. #u22915 {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:71px;
  2170. top:60px;
  2171. width:138px;
  2172. height:30px;
  2173. display:flex;
  2174. }
  2175. #u22915 .text {
  2176. position:absolute;
  2177. align-self:center;
  2178. padding:2px 2px 2px 2px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u22915_text {
  2183. border-width:0px;
  2184. word-wrap:break-word;
  2185. text-transform:none;
  2186. visibility:hidden;
  2187. }
  2188. #u22916_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:143px;
  2194. height:30px;
  2195. }
  2196. #u22916 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:209px;
  2200. top:60px;
  2201. width:143px;
  2202. height:30px;
  2203. display:flex;
  2204. }
  2205. #u22916 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 2px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u22916_text {
  2213. border-width:0px;
  2214. word-wrap:break-word;
  2215. text-transform:none;
  2216. visibility:hidden;
  2217. }
  2218. #u22917_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:143px;
  2224. height:30px;
  2225. }
  2226. #u22917 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:352px;
  2230. top:60px;
  2231. width:143px;
  2232. height:30px;
  2233. display:flex;
  2234. }
  2235. #u22917 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 2px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u22917_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u22918_img {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:153px;
  2254. height:30px;
  2255. }
  2256. #u22918 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:495px;
  2260. top:60px;
  2261. width:153px;
  2262. height:30px;
  2263. display:flex;
  2264. }
  2265. #u22918 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u22918_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u22919_img {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:134px;
  2284. height:30px;
  2285. }
  2286. #u22919 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:648px;
  2290. top:60px;
  2291. width:134px;
  2292. height:30px;
  2293. display:flex;
  2294. }
  2295. #u22919 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u22919_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u22920_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:71px;
  2314. height:30px;
  2315. }
  2316. #u22920 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:90px;
  2321. width:71px;
  2322. height:30px;
  2323. display:flex;
  2324. }
  2325. #u22920 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 2px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u22920_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u22921_img {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:138px;
  2344. height:30px;
  2345. }
  2346. #u22921 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:71px;
  2350. top:90px;
  2351. width:138px;
  2352. height:30px;
  2353. display:flex;
  2354. }
  2355. #u22921 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 2px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u22921_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u22922_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:143px;
  2374. height:30px;
  2375. }
  2376. #u22922 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:209px;
  2380. top:90px;
  2381. width:143px;
  2382. height:30px;
  2383. display:flex;
  2384. }
  2385. #u22922 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u22922_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. visibility:hidden;
  2397. }
  2398. #u22923_img {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:143px;
  2404. height:30px;
  2405. }
  2406. #u22923 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:352px;
  2410. top:90px;
  2411. width:143px;
  2412. height:30px;
  2413. display:flex;
  2414. }
  2415. #u22923 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 2px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u22923_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u22924_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:153px;
  2434. height:30px;
  2435. }
  2436. #u22924 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:495px;
  2440. top:90px;
  2441. width:153px;
  2442. height:30px;
  2443. display:flex;
  2444. }
  2445. #u22924 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 2px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u22924_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. visibility:hidden;
  2457. }
  2458. #u22925_img {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:134px;
  2464. height:30px;
  2465. }
  2466. #u22925 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:648px;
  2470. top:90px;
  2471. width:134px;
  2472. height:30px;
  2473. display:flex;
  2474. }
  2475. #u22925 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u22925_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u22926_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:71px;
  2494. height:30px;
  2495. }
  2496. #u22926 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:120px;
  2501. width:71px;
  2502. height:30px;
  2503. display:flex;
  2504. }
  2505. #u22926 .text {
  2506. position:absolute;
  2507. align-self:center;
  2508. padding:2px 2px 2px 2px;
  2509. box-sizing:border-box;
  2510. width:100%;
  2511. }
  2512. #u22926_text {
  2513. border-width:0px;
  2514. word-wrap:break-word;
  2515. text-transform:none;
  2516. visibility:hidden;
  2517. }
  2518. #u22927_img {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:138px;
  2524. height:30px;
  2525. }
  2526. #u22927 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:71px;
  2530. top:120px;
  2531. width:138px;
  2532. height:30px;
  2533. display:flex;
  2534. }
  2535. #u22927 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u22927_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. visibility:hidden;
  2547. }
  2548. #u22928_img {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:143px;
  2554. height:30px;
  2555. }
  2556. #u22928 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:209px;
  2560. top:120px;
  2561. width:143px;
  2562. height:30px;
  2563. display:flex;
  2564. }
  2565. #u22928 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 2px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u22928_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. visibility:hidden;
  2577. }
  2578. #u22929_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:143px;
  2584. height:30px;
  2585. }
  2586. #u22929 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:352px;
  2590. top:120px;
  2591. width:143px;
  2592. height:30px;
  2593. display:flex;
  2594. }
  2595. #u22929 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 2px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u22929_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. visibility:hidden;
  2607. }
  2608. #u22930_img {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:153px;
  2614. height:30px;
  2615. }
  2616. #u22930 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:495px;
  2620. top:120px;
  2621. width:153px;
  2622. height:30px;
  2623. display:flex;
  2624. }
  2625. #u22930 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:2px 2px 2px 2px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u22930_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u22931_img {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:0px;
  2642. top:0px;
  2643. width:134px;
  2644. height:30px;
  2645. }
  2646. #u22931 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:648px;
  2650. top:120px;
  2651. width:134px;
  2652. height:30px;
  2653. display:flex;
  2654. }
  2655. #u22931 .text {
  2656. position:absolute;
  2657. align-self:center;
  2658. padding:2px 2px 2px 2px;
  2659. box-sizing:border-box;
  2660. width:100%;
  2661. }
  2662. #u22931_text {
  2663. border-width:0px;
  2664. word-wrap:break-word;
  2665. text-transform:none;
  2666. visibility:hidden;
  2667. }
  2668. #u22932_img {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:71px;
  2674. height:28px;
  2675. }
  2676. #u22932 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:150px;
  2681. width:71px;
  2682. height:28px;
  2683. display:flex;
  2684. }
  2685. #u22932 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 2px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u22932_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. visibility:hidden;
  2697. }
  2698. #u22933_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:138px;
  2704. height:28px;
  2705. }
  2706. #u22933 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:71px;
  2710. top:150px;
  2711. width:138px;
  2712. height:28px;
  2713. display:flex;
  2714. }
  2715. #u22933 .text {
  2716. position:absolute;
  2717. align-self:center;
  2718. padding:2px 2px 2px 2px;
  2719. box-sizing:border-box;
  2720. width:100%;
  2721. }
  2722. #u22933_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u22934_img {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:143px;
  2734. height:28px;
  2735. }
  2736. #u22934 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:209px;
  2740. top:150px;
  2741. width:143px;
  2742. height:28px;
  2743. display:flex;
  2744. }
  2745. #u22934 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u22934_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u22935_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:143px;
  2764. height:28px;
  2765. }
  2766. #u22935 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:352px;
  2770. top:150px;
  2771. width:143px;
  2772. height:28px;
  2773. display:flex;
  2774. }
  2775. #u22935 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u22935_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u22936_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:153px;
  2794. height:28px;
  2795. }
  2796. #u22936 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:495px;
  2800. top:150px;
  2801. width:153px;
  2802. height:28px;
  2803. display:flex;
  2804. }
  2805. #u22936 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u22936_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u22937_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:134px;
  2824. height:28px;
  2825. }
  2826. #u22937 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:648px;
  2830. top:150px;
  2831. width:134px;
  2832. height:28px;
  2833. display:flex;
  2834. }
  2835. #u22937 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 2px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u22937_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. visibility:hidden;
  2847. }
  2848. #u22938_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:71px;
  2854. height:30px;
  2855. }
  2856. #u22938 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:178px;
  2861. width:71px;
  2862. height:30px;
  2863. display:flex;
  2864. }
  2865. #u22938 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 2px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u22938_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u22939_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:138px;
  2884. height:30px;
  2885. }
  2886. #u22939 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:71px;
  2890. top:178px;
  2891. width:138px;
  2892. height:30px;
  2893. display:flex;
  2894. }
  2895. #u22939 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 2px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u22939_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. visibility:hidden;
  2907. }
  2908. #u22940_img {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:143px;
  2914. height:30px;
  2915. }
  2916. #u22940 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:209px;
  2920. top:178px;
  2921. width:143px;
  2922. height:30px;
  2923. display:flex;
  2924. }
  2925. #u22940 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 2px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u22940_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u22941_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:143px;
  2944. height:30px;
  2945. }
  2946. #u22941 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:352px;
  2950. top:178px;
  2951. width:143px;
  2952. height:30px;
  2953. display:flex;
  2954. }
  2955. #u22941 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 2px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u22941_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u22942_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:153px;
  2974. height:30px;
  2975. }
  2976. #u22942 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:495px;
  2980. top:178px;
  2981. width:153px;
  2982. height:30px;
  2983. display:flex;
  2984. }
  2985. #u22942 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 2px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u22942_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }
  2998. #u22943_img {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:134px;
  3004. height:30px;
  3005. }
  3006. #u22943 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:648px;
  3010. top:178px;
  3011. width:134px;
  3012. height:30px;
  3013. display:flex;
  3014. }
  3015. #u22943 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 2px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u22943_text {
  3023. border-width:0px;
  3024. word-wrap:break-word;
  3025. text-transform:none;
  3026. visibility:hidden;
  3027. }
  3028. #u22944_img {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:71px;
  3034. height:30px;
  3035. }
  3036. #u22944 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:208px;
  3041. width:71px;
  3042. height:30px;
  3043. display:flex;
  3044. }
  3045. #u22944 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u22944_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u22945_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:138px;
  3064. height:30px;
  3065. }
  3066. #u22945 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:71px;
  3070. top:208px;
  3071. width:138px;
  3072. height:30px;
  3073. display:flex;
  3074. }
  3075. #u22945 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:2px 2px 2px 2px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u22945_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. visibility:hidden;
  3087. }
  3088. #u22946_img {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:143px;
  3094. height:30px;
  3095. }
  3096. #u22946 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:209px;
  3100. top:208px;
  3101. width:143px;
  3102. height:30px;
  3103. display:flex;
  3104. }
  3105. #u22946 .text {
  3106. position:absolute;
  3107. align-self:center;
  3108. padding:2px 2px 2px 2px;
  3109. box-sizing:border-box;
  3110. width:100%;
  3111. }
  3112. #u22946_text {
  3113. border-width:0px;
  3114. word-wrap:break-word;
  3115. text-transform:none;
  3116. visibility:hidden;
  3117. }
  3118. #u22947_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:143px;
  3124. height:30px;
  3125. }
  3126. #u22947 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:352px;
  3130. top:208px;
  3131. width:143px;
  3132. height:30px;
  3133. display:flex;
  3134. }
  3135. #u22947 .text {
  3136. position:absolute;
  3137. align-self:center;
  3138. padding:2px 2px 2px 2px;
  3139. box-sizing:border-box;
  3140. width:100%;
  3141. }
  3142. #u22947_text {
  3143. border-width:0px;
  3144. word-wrap:break-word;
  3145. text-transform:none;
  3146. visibility:hidden;
  3147. }
  3148. #u22948_img {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:153px;
  3154. height:30px;
  3155. }
  3156. #u22948 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:495px;
  3160. top:208px;
  3161. width:153px;
  3162. height:30px;
  3163. display:flex;
  3164. }
  3165. #u22948 .text {
  3166. position:absolute;
  3167. align-self:center;
  3168. padding:2px 2px 2px 2px;
  3169. box-sizing:border-box;
  3170. width:100%;
  3171. }
  3172. #u22948_text {
  3173. border-width:0px;
  3174. word-wrap:break-word;
  3175. text-transform:none;
  3176. visibility:hidden;
  3177. }
  3178. #u22949_img {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:134px;
  3184. height:30px;
  3185. }
  3186. #u22949 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:648px;
  3190. top:208px;
  3191. width:134px;
  3192. height:30px;
  3193. display:flex;
  3194. }
  3195. #u22949 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u22949_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u22950_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:71px;
  3214. height:30px;
  3215. }
  3216. #u22950 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:238px;
  3221. width:71px;
  3222. height:30px;
  3223. display:flex;
  3224. }
  3225. #u22950 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u22950_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u22951_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:138px;
  3244. height:30px;
  3245. }
  3246. #u22951 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:71px;
  3250. top:238px;
  3251. width:138px;
  3252. height:30px;
  3253. display:flex;
  3254. }
  3255. #u22951 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u22951_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u22952_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:143px;
  3274. height:30px;
  3275. }
  3276. #u22952 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:209px;
  3280. top:238px;
  3281. width:143px;
  3282. height:30px;
  3283. display:flex;
  3284. }
  3285. #u22952 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u22952_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. visibility:hidden;
  3297. }
  3298. #u22953_img {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:143px;
  3304. height:30px;
  3305. }
  3306. #u22953 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:352px;
  3310. top:238px;
  3311. width:143px;
  3312. height:30px;
  3313. display:flex;
  3314. }
  3315. #u22953 .text {
  3316. position:absolute;
  3317. align-self:center;
  3318. padding:2px 2px 2px 2px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u22953_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. visibility:hidden;
  3327. }
  3328. #u22954_img {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:153px;
  3334. height:30px;
  3335. }
  3336. #u22954 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:495px;
  3340. top:238px;
  3341. width:153px;
  3342. height:30px;
  3343. display:flex;
  3344. }
  3345. #u22954 .text {
  3346. position:absolute;
  3347. align-self:center;
  3348. padding:2px 2px 2px 2px;
  3349. box-sizing:border-box;
  3350. width:100%;
  3351. }
  3352. #u22954_text {
  3353. border-width:0px;
  3354. word-wrap:break-word;
  3355. text-transform:none;
  3356. visibility:hidden;
  3357. }
  3358. #u22955_img {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:0px;
  3363. width:134px;
  3364. height:30px;
  3365. }
  3366. #u22955 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:648px;
  3370. top:238px;
  3371. width:134px;
  3372. height:30px;
  3373. display:flex;
  3374. }
  3375. #u22955 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 2px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u22955_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u22956_img {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:71px;
  3394. height:30px;
  3395. }
  3396. #u22956 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:268px;
  3401. width:71px;
  3402. height:30px;
  3403. display:flex;
  3404. }
  3405. #u22956 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 2px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u22956_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u22957_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:138px;
  3424. height:30px;
  3425. }
  3426. #u22957 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:71px;
  3430. top:268px;
  3431. width:138px;
  3432. height:30px;
  3433. display:flex;
  3434. }
  3435. #u22957 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 2px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u22957_text {
  3443. border-width:0px;
  3444. word-wrap:break-word;
  3445. text-transform:none;
  3446. visibility:hidden;
  3447. }
  3448. #u22958_img {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:143px;
  3454. height:30px;
  3455. }
  3456. #u22958 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:209px;
  3460. top:268px;
  3461. width:143px;
  3462. height:30px;
  3463. display:flex;
  3464. }
  3465. #u22958 .text {
  3466. position:absolute;
  3467. align-self:center;
  3468. padding:2px 2px 2px 2px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u22958_text {
  3473. border-width:0px;
  3474. word-wrap:break-word;
  3475. text-transform:none;
  3476. visibility:hidden;
  3477. }
  3478. #u22959_img {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:143px;
  3484. height:30px;
  3485. }
  3486. #u22959 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:352px;
  3490. top:268px;
  3491. width:143px;
  3492. height:30px;
  3493. display:flex;
  3494. }
  3495. #u22959 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 2px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u22959_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. visibility:hidden;
  3507. }
  3508. #u22960_img {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:153px;
  3514. height:30px;
  3515. }
  3516. #u22960 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:495px;
  3520. top:268px;
  3521. width:153px;
  3522. height:30px;
  3523. display:flex;
  3524. }
  3525. #u22960 .text {
  3526. position:absolute;
  3527. align-self:center;
  3528. padding:2px 2px 2px 2px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u22960_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. visibility:hidden;
  3537. }
  3538. #u22961_img {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:134px;
  3544. height:30px;
  3545. }
  3546. #u22961 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:648px;
  3550. top:268px;
  3551. width:134px;
  3552. height:30px;
  3553. display:flex;
  3554. }
  3555. #u22961 .text {
  3556. position:absolute;
  3557. align-self:center;
  3558. padding:2px 2px 2px 2px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u22961_text {
  3563. border-width:0px;
  3564. word-wrap:break-word;
  3565. text-transform:none;
  3566. visibility:hidden;
  3567. }
  3568. #u22962_img {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:71px;
  3574. height:30px;
  3575. }
  3576. #u22962 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:298px;
  3581. width:71px;
  3582. height:30px;
  3583. display:flex;
  3584. }
  3585. #u22962 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u22962_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u22963_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:138px;
  3604. height:30px;
  3605. }
  3606. #u22963 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:71px;
  3610. top:298px;
  3611. width:138px;
  3612. height:30px;
  3613. display:flex;
  3614. }
  3615. #u22963 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 2px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u22963_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. visibility:hidden;
  3627. }
  3628. #u22964_img {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:143px;
  3634. height:30px;
  3635. }
  3636. #u22964 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:209px;
  3640. top:298px;
  3641. width:143px;
  3642. height:30px;
  3643. display:flex;
  3644. }
  3645. #u22964 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:2px 2px 2px 2px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u22964_text {
  3653. border-width:0px;
  3654. word-wrap:break-word;
  3655. text-transform:none;
  3656. visibility:hidden;
  3657. }
  3658. #u22965_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:143px;
  3664. height:30px;
  3665. }
  3666. #u22965 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:352px;
  3670. top:298px;
  3671. width:143px;
  3672. height:30px;
  3673. display:flex;
  3674. }
  3675. #u22965 .text {
  3676. position:absolute;
  3677. align-self:center;
  3678. padding:2px 2px 2px 2px;
  3679. box-sizing:border-box;
  3680. width:100%;
  3681. }
  3682. #u22965_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u22966_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:153px;
  3694. height:30px;
  3695. }
  3696. #u22966 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:495px;
  3700. top:298px;
  3701. width:153px;
  3702. height:30px;
  3703. display:flex;
  3704. }
  3705. #u22966 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 2px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u22966_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u22967_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:134px;
  3724. height:30px;
  3725. }
  3726. #u22967 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:648px;
  3730. top:298px;
  3731. width:134px;
  3732. height:30px;
  3733. display:flex;
  3734. }
  3735. #u22967 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 2px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u22967_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u22968 label {
  3749. left:0px;
  3750. width:100%;
  3751. }
  3752. #u22968_img {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:12px;
  3758. height:12px;
  3759. }
  3760. #u22968 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:366px;
  3764. top:307px;
  3765. width:145px;
  3766. height:16px;
  3767. display:flex;
  3768. }
  3769. #u22968 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:0px 2px 0px 2px;
  3773. box-sizing:border-box;
  3774. }
  3775. #u22968_img.selected {
  3776. }
  3777. #u22968.selected {
  3778. }
  3779. #u22968_img.disabled {
  3780. }
  3781. #u22968.disabled {
  3782. }
  3783. #u22968_img.selectedDisabled {
  3784. }
  3785. #u22968.selectedDisabled {
  3786. }
  3787. #u22968_text {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:14px;
  3791. top:0px;
  3792. width:129px;
  3793. word-wrap:break-word;
  3794. text-transform:none;
  3795. visibility:hidden;
  3796. }
  3797. #u22968_input {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:0px;
  3803. height:0px;
  3804. opacity:0;
  3805. }
  3806. #u22969_div {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:73px;
  3812. height:50px;
  3813. background:inherit;
  3814. background-color:rgba(255, 255, 255, 0);
  3815. border:none;
  3816. border-left:0px;
  3817. border-top:0px;
  3818. border-right:0px;
  3819. border-radius:0px;
  3820. border-bottom-right-radius:0px;
  3821. border-bottom-left-radius:0px;
  3822. -moz-box-shadow:none;
  3823. -webkit-box-shadow:none;
  3824. box-shadow:none;
  3825. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3826. font-weight:500;
  3827. font-style:normal;
  3828. font-size:18px;
  3829. }
  3830. #u22969 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:348px;
  3834. top:50px;
  3835. width:73px;
  3836. height:50px;
  3837. display:flex;
  3838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3839. font-weight:500;
  3840. font-style:normal;
  3841. font-size:18px;
  3842. }
  3843. #u22969 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:0px 0px 0px 0px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u22969_text {
  3851. border-width:0px;
  3852. white-space:nowrap;
  3853. text-transform:none;
  3854. }
  3855. #u22971 {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:0px;
  3860. width:0px;
  3861. height:0px;
  3862. }
  3863. #u22972_div {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:200px;
  3869. height:1193px;
  3870. background:inherit;
  3871. background-color:rgba(255, 255, 255, 1);
  3872. border:none;
  3873. border-radius:0px;
  3874. -moz-box-shadow:none;
  3875. -webkit-box-shadow:none;
  3876. box-shadow:none;
  3877. }
  3878. #u22972 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:120px;
  3882. top:50px;
  3883. width:200px;
  3884. height:1193px;
  3885. display:flex;
  3886. }
  3887. #u22972 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 2px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u22972_text {
  3895. border-width:0px;
  3896. word-wrap:break-word;
  3897. text-transform:none;
  3898. visibility:hidden;
  3899. }
  3900. #u22973_div {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:200px;
  3906. height:60px;
  3907. background:inherit;
  3908. background-color:rgba(224, 231, 247, 1);
  3909. border:none;
  3910. border-radius:0px;
  3911. -moz-box-shadow:none;
  3912. -webkit-box-shadow:none;
  3913. box-shadow:none;
  3914. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3915. font-weight:500;
  3916. font-style:normal;
  3917. font-size:18px;
  3918. }
  3919. #u22973 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:120px;
  3923. top:50px;
  3924. width:200px;
  3925. height:60px;
  3926. display:flex;
  3927. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3928. font-weight:500;
  3929. font-style:normal;
  3930. font-size:18px;
  3931. }
  3932. #u22973 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:0px 0px 0px 20px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u22973_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. }
  3944. #u22974_div {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:65px;
  3950. height:22px;
  3951. background:inherit;
  3952. background-color:rgba(255, 255, 255, 0);
  3953. border:none;
  3954. border-radius:0px;
  3955. -moz-box-shadow:none;
  3956. -webkit-box-shadow:none;
  3957. box-shadow:none;
  3958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3959. font-weight:400;
  3960. font-style:normal;
  3961. font-size:16px;
  3962. }
  3963. #u22974 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:150px;
  3967. top:206px;
  3968. width:65px;
  3969. height:22px;
  3970. display:flex;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:16px;
  3975. }
  3976. #u22974 .text {
  3977. position:absolute;
  3978. align-self:flex-start;
  3979. padding:0px 0px 0px 0px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u22974_text {
  3984. border-width:0px;
  3985. white-space:nowrap;
  3986. text-transform:none;
  3987. }
  3988. #u22975_div {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:61px;
  3994. height:17px;
  3995. background:inherit;
  3996. background-color:rgba(255, 255, 255, 0);
  3997. border:none;
  3998. border-radius:0px;
  3999. -moz-box-shadow:none;
  4000. -webkit-box-shadow:none;
  4001. box-shadow:none;
  4002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. font-size:12px;
  4006. color:#AAAAAA;
  4007. }
  4008. #u22975 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:150px;
  4012. top:128px;
  4013. width:61px;
  4014. height:17px;
  4015. display:flex;
  4016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:12px;
  4020. color:#AAAAAA;
  4021. }
  4022. #u22975 .text {
  4023. position:absolute;
  4024. align-self:flex-start;
  4025. padding:0px 0px 0px 0px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u22975_text {
  4030. border-width:0px;
  4031. white-space:nowrap;
  4032. text-transform:none;
  4033. }
  4034. #u22976_img {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:201px;
  4040. height:2px;
  4041. }
  4042. #u22976 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:120px;
  4046. top:334px;
  4047. width:200px;
  4048. height:1px;
  4049. display:flex;
  4050. }
  4051. #u22976 .text {
  4052. position:absolute;
  4053. align-self:center;
  4054. padding:2px 2px 2px 2px;
  4055. box-sizing:border-box;
  4056. width:100%;
  4057. }
  4058. #u22976_text {
  4059. border-width:0px;
  4060. word-wrap:break-word;
  4061. text-transform:none;
  4062. visibility:hidden;
  4063. }
  4064. #u22977_div {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:65px;
  4070. height:22px;
  4071. background:inherit;
  4072. background-color:rgba(255, 255, 255, 0);
  4073. border:none;
  4074. border-radius:0px;
  4075. -moz-box-shadow:none;
  4076. -webkit-box-shadow:none;
  4077. box-shadow:none;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:16px;
  4082. }
  4083. #u22977 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:150px;
  4087. top:290px;
  4088. width:65px;
  4089. height:22px;
  4090. display:flex;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:16px;
  4095. }
  4096. #u22977 .text {
  4097. position:absolute;
  4098. align-self:flex-start;
  4099. padding:0px 0px 0px 0px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u22977_text {
  4104. border-width:0px;
  4105. white-space:nowrap;
  4106. text-transform:none;
  4107. }
  4108. #u22978_div {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:65px;
  4114. height:22px;
  4115. background:inherit;
  4116. background-color:rgba(255, 255, 255, 0);
  4117. border:none;
  4118. border-radius:0px;
  4119. -moz-box-shadow:none;
  4120. -webkit-box-shadow:none;
  4121. box-shadow:none;
  4122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:16px;
  4126. }
  4127. #u22978 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:150px;
  4131. top:391px;
  4132. width:65px;
  4133. height:22px;
  4134. display:flex;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:16px;
  4139. }
  4140. #u22978 .text {
  4141. position:absolute;
  4142. align-self:flex-start;
  4143. padding:0px 0px 0px 0px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u22978_text {
  4148. border-width:0px;
  4149. white-space:nowrap;
  4150. text-transform:none;
  4151. }
  4152. #u22979_div {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:49px;
  4158. height:17px;
  4159. background:inherit;
  4160. background-color:rgba(255, 255, 255, 0);
  4161. border:none;
  4162. border-radius:0px;
  4163. -moz-box-shadow:none;
  4164. -webkit-box-shadow:none;
  4165. box-shadow:none;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:12px;
  4170. color:#AAAAAA;
  4171. }
  4172. #u22979 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:150px;
  4176. top:355px;
  4177. width:49px;
  4178. height:17px;
  4179. display:flex;
  4180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4181. font-weight:400;
  4182. font-style:normal;
  4183. font-size:12px;
  4184. color:#AAAAAA;
  4185. }
  4186. #u22979 .text {
  4187. position:absolute;
  4188. align-self:flex-start;
  4189. padding:0px 0px 0px 0px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u22979_text {
  4194. border-width:0px;
  4195. white-space:nowrap;
  4196. text-transform:none;
  4197. }
  4198. #u22980_div {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:65px;
  4204. height:22px;
  4205. background:inherit;
  4206. background-color:rgba(255, 255, 255, 0);
  4207. border:none;
  4208. border-radius:0px;
  4209. -moz-box-shadow:none;
  4210. -webkit-box-shadow:none;
  4211. box-shadow:none;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:16px;
  4216. }
  4217. #u22980 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:150px;
  4221. top:433px;
  4222. width:65px;
  4223. height:22px;
  4224. display:flex;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:16px;
  4229. }
  4230. #u22980 .text {
  4231. position:absolute;
  4232. align-self:flex-start;
  4233. padding:0px 0px 0px 0px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u22980_text {
  4238. border-width:0px;
  4239. white-space:nowrap;
  4240. text-transform:none;
  4241. }
  4242. #u22981_img {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:201px;
  4248. height:2px;
  4249. }
  4250. #u22981 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:120px;
  4254. top:515px;
  4255. width:200px;
  4256. height:1px;
  4257. display:flex;
  4258. }
  4259. #u22981 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:2px 2px 2px 2px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u22981_text {
  4267. border-width:0px;
  4268. word-wrap:break-word;
  4269. text-transform:none;
  4270. visibility:hidden;
  4271. }
  4272. #u22982_div {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:49px;
  4278. height:22px;
  4279. background:inherit;
  4280. background-color:rgba(255, 255, 255, 0);
  4281. border:none;
  4282. border-radius:0px;
  4283. -moz-box-shadow:none;
  4284. -webkit-box-shadow:none;
  4285. box-shadow:none;
  4286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:16px;
  4290. }
  4291. #u22982 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:150px;
  4295. top:572px;
  4296. width:49px;
  4297. height:22px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:16px;
  4303. }
  4304. #u22982 .text {
  4305. position:absolute;
  4306. align-self:flex-start;
  4307. padding:0px 0px 0px 0px;
  4308. box-sizing:border-box;
  4309. width:100%;
  4310. }
  4311. #u22982_text {
  4312. border-width:0px;
  4313. white-space:nowrap;
  4314. text-transform:none;
  4315. }
  4316. #u22983_div {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:49px;
  4322. height:17px;
  4323. background:inherit;
  4324. background-color:rgba(255, 255, 255, 0);
  4325. border:none;
  4326. border-radius:0px;
  4327. -moz-box-shadow:none;
  4328. -webkit-box-shadow:none;
  4329. box-shadow:none;
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:12px;
  4334. color:#AAAAAA;
  4335. }
  4336. #u22983 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:150px;
  4340. top:536px;
  4341. width:49px;
  4342. height:17px;
  4343. display:flex;
  4344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4345. font-weight:400;
  4346. font-style:normal;
  4347. font-size:12px;
  4348. color:#AAAAAA;
  4349. }
  4350. #u22983 .text {
  4351. position:absolute;
  4352. align-self:flex-start;
  4353. padding:0px 0px 0px 0px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u22983_text {
  4358. border-width:0px;
  4359. white-space:nowrap;
  4360. text-transform:none;
  4361. }
  4362. #u22984_div {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:0px;
  4366. top:0px;
  4367. width:65px;
  4368. height:22px;
  4369. background:inherit;
  4370. background-color:rgba(255, 255, 255, 0);
  4371. border:none;
  4372. border-radius:0px;
  4373. -moz-box-shadow:none;
  4374. -webkit-box-shadow:none;
  4375. box-shadow:none;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:16px;
  4380. }
  4381. #u22984 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:150px;
  4385. top:248px;
  4386. width:65px;
  4387. height:22px;
  4388. display:flex;
  4389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4390. font-weight:400;
  4391. font-style:normal;
  4392. font-size:16px;
  4393. }
  4394. #u22984 .text {
  4395. position:absolute;
  4396. align-self:flex-start;
  4397. padding:0px 0px 0px 0px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u22984_text {
  4402. border-width:0px;
  4403. white-space:nowrap;
  4404. text-transform:none;
  4405. }
  4406. #u22985_div {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:65px;
  4412. height:22px;
  4413. background:inherit;
  4414. background-color:rgba(255, 255, 255, 0);
  4415. border:none;
  4416. border-radius:0px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:16px;
  4424. }
  4425. #u22985 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:150px;
  4429. top:475px;
  4430. width:65px;
  4431. height:22px;
  4432. display:flex;
  4433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. font-size:16px;
  4437. }
  4438. #u22985 .text {
  4439. position:absolute;
  4440. align-self:flex-start;
  4441. padding:0px 0px 0px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u22985_text {
  4446. border-width:0px;
  4447. white-space:nowrap;
  4448. text-transform:none;
  4449. }
  4450. #u22986_div {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:65px;
  4456. height:22px;
  4457. background:inherit;
  4458. background-color:rgba(255, 255, 255, 0);
  4459. border:none;
  4460. border-radius:0px;
  4461. -moz-box-shadow:none;
  4462. -webkit-box-shadow:none;
  4463. box-shadow:none;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:16px;
  4468. }
  4469. #u22986 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:150px;
  4473. top:164px;
  4474. width:65px;
  4475. height:22px;
  4476. display:flex;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:16px;
  4481. }
  4482. #u22986 .text {
  4483. position:absolute;
  4484. align-self:flex-start;
  4485. padding:0px 0px 0px 0px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u22986_text {
  4490. border-width:0px;
  4491. white-space:nowrap;
  4492. text-transform:none;
  4493. }
  4494. #u22987_div {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:85px;
  4500. height:40px;
  4501. background:inherit;
  4502. background-color:rgba(255, 255, 255, 0);
  4503. border:none;
  4504. border-left:0px;
  4505. border-top:0px;
  4506. border-right:0px;
  4507. border-radius:0px;
  4508. border-bottom-right-radius:0px;
  4509. border-bottom-left-radius:0px;
  4510. -moz-box-shadow:none;
  4511. -webkit-box-shadow:none;
  4512. box-shadow:none;
  4513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4514. font-weight:500;
  4515. font-style:normal;
  4516. font-size:14px;
  4517. }
  4518. #u22987 {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:641px;
  4522. top:695px;
  4523. width:85px;
  4524. height:40px;
  4525. display:flex;
  4526. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4527. font-weight:500;
  4528. font-style:normal;
  4529. font-size:14px;
  4530. }
  4531. #u22987 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:0px 0px 0px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u22987_text {
  4539. border-width:0px;
  4540. white-space:nowrap;
  4541. text-transform:none;
  4542. }
  4543. #u22988 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:0px;
  4549. height:0px;
  4550. }
  4551. #u22989_div {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:240px;
  4557. height:40px;
  4558. background:inherit;
  4559. background-color:rgba(242, 242, 242, 1);
  4560. box-sizing:border-box;
  4561. border-width:1px;
  4562. border-style:solid;
  4563. border-color:rgba(170, 170, 170, 1);
  4564. border-radius:4px;
  4565. -moz-box-shadow:none;
  4566. -webkit-box-shadow:none;
  4567. box-shadow:none;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. text-align:left;
  4572. }
  4573. #u22989 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:726px;
  4577. top:695px;
  4578. width:240px;
  4579. height:40px;
  4580. display:flex;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. text-align:left;
  4585. }
  4586. #u22989 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:2px 2px 2px 10px;
  4590. box-sizing:border-box;
  4591. width:100%;
  4592. }
  4593. #u22989_text {
  4594. border-width:0px;
  4595. word-wrap:break-word;
  4596. text-transform:none;
  4597. visibility:hidden;
  4598. }
  4599. #u22990_input {
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:226px;
  4604. height:31px;
  4605. padding:2px 2px 2px 2px;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:13px;
  4610. letter-spacing:normal;
  4611. color:#AAAAAA;
  4612. vertical-align:none;
  4613. text-align:left;
  4614. text-transform:none;
  4615. background-color:transparent;
  4616. border-color:transparent;
  4617. }
  4618. #u22990_input.disabled {
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:226px;
  4623. height:31px;
  4624. padding:2px 2px 2px 2px;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:13px;
  4629. letter-spacing:normal;
  4630. color:#AAAAAA;
  4631. vertical-align:none;
  4632. text-align:left;
  4633. text-transform:none;
  4634. background-color:transparent;
  4635. border-color:transparent;
  4636. }
  4637. #u22990_div {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:0px;
  4641. top:0px;
  4642. width:226px;
  4643. height:31px;
  4644. background:inherit;
  4645. background-color:rgba(242, 242, 242, 1);
  4646. border:none;
  4647. border-radius:0px;
  4648. -moz-box-shadow:none;
  4649. -webkit-box-shadow:none;
  4650. box-shadow:none;
  4651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. color:#AAAAAA;
  4655. }
  4656. #u22990 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:732px;
  4660. top:700px;
  4661. width:226px;
  4662. height:31px;
  4663. display:flex;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. color:#AAAAAA;
  4668. }
  4669. #u22990 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 2px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u22990_div.disabled {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:226px;
  4682. height:31px;
  4683. background:inherit;
  4684. background-color:rgba(240, 240, 240, 1);
  4685. border:none;
  4686. border-radius:0px;
  4687. -moz-box-shadow:none;
  4688. -webkit-box-shadow:none;
  4689. box-shadow:none;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. color:#AAAAAA;
  4694. }
  4695. #u22990.disabled {
  4696. }
  4697. #u22991_div {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:140px;
  4703. height:40px;
  4704. background:inherit;
  4705. background-color:rgba(25, 140, 251, 1);
  4706. border:none;
  4707. border-radius:4px;
  4708. -moz-box-shadow:none;
  4709. -webkit-box-shadow:none;
  4710. box-shadow:none;
  4711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. font-size:14px;
  4715. color:#FFFFFF;
  4716. }
  4717. #u22991 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:990px;
  4721. top:695px;
  4722. width:140px;
  4723. height:40px;
  4724. display:flex;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:14px;
  4729. color:#FFFFFF;
  4730. }
  4731. #u22991 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:5px 15px 5px 15px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u22991_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. }
  4743. #u22992_div {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:91px;
  4749. height:40px;
  4750. background:inherit;
  4751. background-color:rgba(255, 255, 255, 0);
  4752. border:none;
  4753. border-left:0px;
  4754. border-top:0px;
  4755. border-right:0px;
  4756. border-radius:0px;
  4757. border-bottom-right-radius:0px;
  4758. border-bottom-left-radius:0px;
  4759. -moz-box-shadow:none;
  4760. -webkit-box-shadow:none;
  4761. box-shadow:none;
  4762. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4763. font-weight:500;
  4764. font-style:normal;
  4765. font-size:18px;
  4766. }
  4767. #u22992 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:348px;
  4771. top:625px;
  4772. width:91px;
  4773. height:40px;
  4774. display:flex;
  4775. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4776. font-weight:500;
  4777. font-style:normal;
  4778. font-size:18px;
  4779. }
  4780. #u22992 .text {
  4781. position:absolute;
  4782. align-self:center;
  4783. padding:0px 0px 0px 0px;
  4784. box-sizing:border-box;
  4785. width:100%;
  4786. }
  4787. #u22992_text {
  4788. border-width:0px;
  4789. white-space:nowrap;
  4790. text-transform:none;
  4791. }
  4792. #u22993_div {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:31px;
  4798. height:30px;
  4799. background:inherit;
  4800. background-color:rgba(255, 255, 255, 1);
  4801. box-sizing:border-box;
  4802. border-width:1px;
  4803. border-style:solid;
  4804. border-color:rgba(217, 0, 27, 1);
  4805. border-radius:18px;
  4806. -moz-box-shadow:none;
  4807. -webkit-box-shadow:none;
  4808. box-shadow:none;
  4809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:18px;
  4813. color:#D9001B;
  4814. }
  4815. #u22993 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:329px;
  4819. top:309px;
  4820. width:31px;
  4821. height:30px;
  4822. display:flex;
  4823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:18px;
  4827. color:#D9001B;
  4828. }
  4829. #u22993 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:0px 0px 0px 0px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u22993_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. }
  4841. #u22994_div {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:31px;
  4847. height:30px;
  4848. background:inherit;
  4849. background-color:rgba(255, 255, 255, 1);
  4850. box-sizing:border-box;
  4851. border-width:1px;
  4852. border-style:solid;
  4853. border-color:rgba(217, 0, 27, 1);
  4854. border-radius:18px;
  4855. -moz-box-shadow:none;
  4856. -webkit-box-shadow:none;
  4857. box-shadow:none;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:18px;
  4862. color:#D9001B;
  4863. }
  4864. #u22994 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:958px;
  4868. top:854px;
  4869. width:31px;
  4870. height:30px;
  4871. display:flex;
  4872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:18px;
  4876. color:#D9001B;
  4877. }
  4878. #u22994 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:0px 0px 0px 0px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u22994_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. }
  4890. #u22995_div {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:43px;
  4896. height:40px;
  4897. background:inherit;
  4898. background-color:rgba(255, 255, 255, 0);
  4899. border:none;
  4900. border-left:0px;
  4901. border-top:0px;
  4902. border-right:0px;
  4903. border-radius:0px;
  4904. border-bottom-right-radius:0px;
  4905. border-bottom-left-radius:0px;
  4906. -moz-box-shadow:none;
  4907. -webkit-box-shadow:none;
  4908. box-shadow:none;
  4909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4910. font-weight:500;
  4911. font-style:normal;
  4912. font-size:14px;
  4913. }
  4914. #u22995 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:348px;
  4918. top:695px;
  4919. width:43px;
  4920. height:40px;
  4921. display:flex;
  4922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4923. font-weight:500;
  4924. font-style:normal;
  4925. font-size:14px;
  4926. }
  4927. #u22995 .text {
  4928. position:absolute;
  4929. align-self:center;
  4930. padding:0px 0px 0px 0px;
  4931. box-sizing:border-box;
  4932. width:100%;
  4933. }
  4934. #u22995_text {
  4935. border-width:0px;
  4936. white-space:nowrap;
  4937. text-transform:none;
  4938. }
  4939. #u22996 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:0px;
  4945. height:0px;
  4946. }
  4947. #u22997_div {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:240px;
  4953. height:40px;
  4954. background:inherit;
  4955. background-color:rgba(242, 242, 242, 1);
  4956. box-sizing:border-box;
  4957. border-width:1px;
  4958. border-style:solid;
  4959. border-color:rgba(170, 170, 170, 1);
  4960. border-radius:4px;
  4961. -moz-box-shadow:none;
  4962. -webkit-box-shadow:none;
  4963. box-shadow:none;
  4964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. text-align:left;
  4968. }
  4969. #u22997 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:391px;
  4973. top:695px;
  4974. width:240px;
  4975. height:40px;
  4976. display:flex;
  4977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. text-align:left;
  4981. }
  4982. #u22997 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 10px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u22997_text {
  4990. border-width:0px;
  4991. word-wrap:break-word;
  4992. text-transform:none;
  4993. visibility:hidden;
  4994. }
  4995. #u22998_input {
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:226px;
  5000. height:31px;
  5001. padding:2px 2px 2px 2px;
  5002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5003. font-weight:400;
  5004. font-style:normal;
  5005. font-size:13px;
  5006. letter-spacing:normal;
  5007. color:#AAAAAA;
  5008. vertical-align:none;
  5009. text-align:left;
  5010. text-transform:none;
  5011. background-color:transparent;
  5012. border-color:transparent;
  5013. }
  5014. #u22998_input.disabled {
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:226px;
  5019. height:31px;
  5020. padding:2px 2px 2px 2px;
  5021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:13px;
  5025. letter-spacing:normal;
  5026. color:#AAAAAA;
  5027. vertical-align:none;
  5028. text-align:left;
  5029. text-transform:none;
  5030. background-color:transparent;
  5031. border-color:transparent;
  5032. }
  5033. #u22998_div {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:226px;
  5039. height:31px;
  5040. background:inherit;
  5041. background-color:rgba(242, 242, 242, 1);
  5042. border:none;
  5043. border-radius:0px;
  5044. -moz-box-shadow:none;
  5045. -webkit-box-shadow:none;
  5046. box-shadow:none;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. color:#AAAAAA;
  5051. }
  5052. #u22998 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:397px;
  5056. top:700px;
  5057. width:226px;
  5058. height:31px;
  5059. display:flex;
  5060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. color:#AAAAAA;
  5064. }
  5065. #u22998 .text {
  5066. position:absolute;
  5067. align-self:center;
  5068. padding:2px 2px 2px 2px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u22998_div.disabled {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:226px;
  5078. height:31px;
  5079. background:inherit;
  5080. background-color:rgba(240, 240, 240, 1);
  5081. border:none;
  5082. border-radius:0px;
  5083. -moz-box-shadow:none;
  5084. -webkit-box-shadow:none;
  5085. box-shadow:none;
  5086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5087. font-weight:400;
  5088. font-style:normal;
  5089. color:#AAAAAA;
  5090. }
  5091. #u22998.disabled {
  5092. }
  5093. #u22999_div {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:351px;
  5099. height:30px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 0);
  5102. border:none;
  5103. border-top:0px;
  5104. border-right:0px;
  5105. border-bottom:0px;
  5106. border-radius:0px;
  5107. border-top-left-radius:0px;
  5108. border-bottom-left-radius:0px;
  5109. -moz-box-shadow:none;
  5110. -webkit-box-shadow:none;
  5111. box-shadow:none;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:14px;
  5116. }
  5117. #u22999 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:449px;
  5121. top:168px;
  5122. width:351px;
  5123. height:30px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:14px;
  5129. }
  5130. #u22999 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:5px 0px 5px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u22999_text {
  5138. border-width:0px;
  5139. white-space:nowrap;
  5140. text-transform:none;
  5141. }
  5142. #u23000_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:435px;
  5148. height:25px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-left:0px;
  5153. border-top:0px;
  5154. border-right:0px;
  5155. border-radius:0px;
  5156. border-bottom-right-radius:0px;
  5157. border-bottom-left-radius:0px;
  5158. -moz-box-shadow:none;
  5159. -webkit-box-shadow:none;
  5160. box-shadow:none;
  5161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5162. font-weight:400;
  5163. font-style:normal;
  5164. font-size:14px;
  5165. color:#7F7F7F;
  5166. line-height:25px;
  5167. }
  5168. #u23000 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:348px;
  5172. top:108px;
  5173. width:435px;
  5174. height:25px;
  5175. display:flex;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:14px;
  5180. color:#7F7F7F;
  5181. line-height:25px;
  5182. }
  5183. #u23000 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:0px 0px 0px 0px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u23000_text {
  5191. border-width:0px;
  5192. white-space:nowrap;
  5193. text-transform:none;
  5194. }
  5195. #u23001_div {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:273px;
  5201. height:32px;
  5202. background:inherit;
  5203. background-color:rgba(51, 51, 51, 1);
  5204. border:none;
  5205. border-radius:74px;
  5206. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5207. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5208. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:12px;
  5213. color:#FFFFFF;
  5214. }
  5215. #u23001 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:850px;
  5219. top:655px;
  5220. width:273px;
  5221. height:32px;
  5222. display:flex;
  5223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:12px;
  5227. color:#FFFFFF;
  5228. }
  5229. #u23001 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 16px 2px 16px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u23001_text {
  5237. border-width:0px;
  5238. white-space:nowrap;
  5239. text-transform:none;
  5240. }
  5241. #u23002_div {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:265px;
  5247. height:27px;
  5248. background:inherit;
  5249. background-color:rgba(255, 255, 255, 0);
  5250. border:none;
  5251. border-top:0px;
  5252. border-right:0px;
  5253. border-bottom:0px;
  5254. border-radius:0px;
  5255. border-top-left-radius:0px;
  5256. border-bottom-left-radius:0px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:12px;
  5264. color:#D9001B;
  5265. }
  5266. #u23002 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:834px;
  5270. top:627px;
  5271. width:265px;
  5272. height:27px;
  5273. display:flex;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:12px;
  5278. color:#D9001B;
  5279. }
  5280. #u23002 .text {
  5281. position:absolute;
  5282. align-self:center;
  5283. padding:5px 0px 5px 0px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u23002_text {
  5288. border-width:0px;
  5289. white-space:nowrap;
  5290. text-transform:none;
  5291. }
  5292. #u23003 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:0px;
  5298. height:0px;
  5299. }
  5300. #u23004_div {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:59px;
  5306. height:30px;
  5307. background:inherit;
  5308. background-color:rgba(24, 144, 255, 1);
  5309. box-sizing:border-box;
  5310. border-width:1px;
  5311. border-style:solid;
  5312. border-color:rgba(0, 153, 255, 1);
  5313. border-radius:4px;
  5314. -moz-box-shadow:none;
  5315. -webkit-box-shadow:none;
  5316. box-shadow:none;
  5317. font-family:'Microsoft YaHei', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:14px;
  5321. color:#FFFFFF;
  5322. }
  5323. #u23004 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:947px;
  5327. top:218px;
  5328. width:59px;
  5329. height:30px;
  5330. display:flex;
  5331. font-family:'Microsoft YaHei', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:14px;
  5335. color:#FFFFFF;
  5336. }
  5337. #u23004 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:5px 15px 5px 15px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u23004_text {
  5345. border-width:0px;
  5346. white-space:nowrap;
  5347. text-transform:none;
  5348. }
  5349. #u23005_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:55px;
  5355. height:30px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 1);
  5358. box-sizing:border-box;
  5359. border-width:1px;
  5360. border-style:solid;
  5361. border-color:rgba(170, 170, 170, 1);
  5362. border-radius:4px;
  5363. -moz-box-shadow:none;
  5364. -webkit-box-shadow:none;
  5365. box-shadow:none;
  5366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5367. font-weight:400;
  5368. font-style:normal;
  5369. font-size:12px;
  5370. color:#555555;
  5371. }
  5372. #u23005 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:1016px;
  5376. top:218px;
  5377. width:55px;
  5378. height:30px;
  5379. display:flex;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:12px;
  5384. color:#555555;
  5385. }
  5386. #u23005 .text {
  5387. position:absolute;
  5388. align-self:center;
  5389. padding:5px 15px 5px 15px;
  5390. box-sizing:border-box;
  5391. width:100%;
  5392. }
  5393. #u23005_text {
  5394. border-width:0px;
  5395. white-space:nowrap;
  5396. text-transform:none;
  5397. }
  5398. #u23006 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:0px;
  5402. top:0px;
  5403. width:0px;
  5404. height:0px;
  5405. }
  5406. #u23007_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:140px;
  5412. height:30px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 1);
  5415. box-sizing:border-box;
  5416. border-width:1px;
  5417. border-style:solid;
  5418. border-color:rgba(170, 170, 170, 1);
  5419. border-radius:4px;
  5420. -moz-box-shadow:none;
  5421. -webkit-box-shadow:none;
  5422. box-shadow:none;
  5423. }
  5424. #u23007 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:348px;
  5428. top:218px;
  5429. width:140px;
  5430. height:30px;
  5431. display:flex;
  5432. }
  5433. #u23007 .text {
  5434. position:absolute;
  5435. align-self:center;
  5436. padding:2px 2px 2px 0px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u23007_text {
  5441. border-width:0px;
  5442. word-wrap:break-word;
  5443. text-transform:none;
  5444. visibility:hidden;
  5445. }
  5446. #u23008_input {
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:133px;
  5451. height:23px;
  5452. padding:2px 2px 2px 0px;
  5453. font-family:'ArialMT', 'Arial', sans-serif;
  5454. font-weight:400;
  5455. font-style:normal;
  5456. font-size:13px;
  5457. letter-spacing:normal;
  5458. color:#AAAAAA;
  5459. vertical-align:none;
  5460. text-align:left;
  5461. text-transform:none;
  5462. background-color:transparent;
  5463. border-color:transparent;
  5464. }
  5465. #u23008_input.disabled {
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:133px;
  5470. height:23px;
  5471. padding:2px 2px 2px 0px;
  5472. font-family:'ArialMT', 'Arial', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:13px;
  5476. letter-spacing:normal;
  5477. color:#AAAAAA;
  5478. vertical-align:none;
  5479. text-align:left;
  5480. text-transform:none;
  5481. background-color:transparent;
  5482. border-color:transparent;
  5483. }
  5484. #u23008_div {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:133px;
  5490. height:23px;
  5491. background:inherit;
  5492. background-color:rgba(255, 255, 255, 1);
  5493. border:none;
  5494. border-radius:0px;
  5495. -moz-box-shadow:none;
  5496. -webkit-box-shadow:none;
  5497. box-shadow:none;
  5498. color:#AAAAAA;
  5499. }
  5500. #u23008 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:352px;
  5504. top:221px;
  5505. width:133px;
  5506. height:23px;
  5507. display:flex;
  5508. color:#AAAAAA;
  5509. }
  5510. #u23008 .text {
  5511. position:absolute;
  5512. align-self:flex-start;
  5513. padding:2px 2px 2px 0px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u23008_div.disabled {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:133px;
  5523. height:23px;
  5524. background:inherit;
  5525. background-color:rgba(240, 240, 240, 1);
  5526. border:none;
  5527. border-radius:0px;
  5528. -moz-box-shadow:none;
  5529. -webkit-box-shadow:none;
  5530. box-shadow:none;
  5531. color:#AAAAAA;
  5532. }
  5533. #u23008.disabled {
  5534. }
  5535. .u23008_input_option {
  5536. }
  5537. #u23009 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:0px;
  5543. height:0px;
  5544. }
  5545. #u23010_div {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:140px;
  5551. height:30px;
  5552. background:inherit;
  5553. background-color:rgba(255, 255, 255, 1);
  5554. box-sizing:border-box;
  5555. border-width:1px;
  5556. border-style:solid;
  5557. border-color:rgba(170, 170, 170, 1);
  5558. border-radius:4px;
  5559. -moz-box-shadow:none;
  5560. -webkit-box-shadow:none;
  5561. box-shadow:none;
  5562. }
  5563. #u23010 {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:498px;
  5567. top:218px;
  5568. width:140px;
  5569. height:30px;
  5570. display:flex;
  5571. }
  5572. #u23010 .text {
  5573. position:absolute;
  5574. align-self:center;
  5575. padding:2px 2px 2px 0px;
  5576. box-sizing:border-box;
  5577. width:100%;
  5578. }
  5579. #u23010_text {
  5580. border-width:0px;
  5581. word-wrap:break-word;
  5582. text-transform:none;
  5583. visibility:hidden;
  5584. }
  5585. #u23011_input {
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:133px;
  5590. height:23px;
  5591. padding:2px 2px 2px 0px;
  5592. font-family:'ArialMT', 'Arial', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:13px;
  5596. letter-spacing:normal;
  5597. color:#AAAAAA;
  5598. vertical-align:none;
  5599. text-align:left;
  5600. text-transform:none;
  5601. background-color:transparent;
  5602. border-color:transparent;
  5603. }
  5604. #u23011_input.disabled {
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:133px;
  5609. height:23px;
  5610. padding:2px 2px 2px 0px;
  5611. font-family:'ArialMT', 'Arial', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. font-size:13px;
  5615. letter-spacing:normal;
  5616. color:#AAAAAA;
  5617. vertical-align:none;
  5618. text-align:left;
  5619. text-transform:none;
  5620. background-color:transparent;
  5621. border-color:transparent;
  5622. }
  5623. #u23011_div {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:133px;
  5629. height:23px;
  5630. background:inherit;
  5631. background-color:rgba(255, 255, 255, 1);
  5632. border:none;
  5633. border-radius:0px;
  5634. -moz-box-shadow:none;
  5635. -webkit-box-shadow:none;
  5636. box-shadow:none;
  5637. color:#AAAAAA;
  5638. }
  5639. #u23011 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:502px;
  5643. top:221px;
  5644. width:133px;
  5645. height:23px;
  5646. display:flex;
  5647. color:#AAAAAA;
  5648. }
  5649. #u23011 .text {
  5650. position:absolute;
  5651. align-self:flex-start;
  5652. padding:2px 2px 2px 0px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u23011_div.disabled {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:133px;
  5662. height:23px;
  5663. background:inherit;
  5664. background-color:rgba(240, 240, 240, 1);
  5665. border:none;
  5666. border-radius:0px;
  5667. -moz-box-shadow:none;
  5668. -webkit-box-shadow:none;
  5669. box-shadow:none;
  5670. color:#AAAAAA;
  5671. }
  5672. #u23011.disabled {
  5673. }
  5674. .u23011_input_option {
  5675. }
  5676. #u23012 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:0px;
  5682. height:0px;
  5683. }
  5684. #u23013_div {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:140px;
  5690. height:30px;
  5691. background:inherit;
  5692. background-color:rgba(255, 255, 255, 1);
  5693. box-sizing:border-box;
  5694. border-width:1px;
  5695. border-style:solid;
  5696. border-color:rgba(170, 170, 170, 1);
  5697. border-radius:4px;
  5698. -moz-box-shadow:none;
  5699. -webkit-box-shadow:none;
  5700. box-shadow:none;
  5701. }
  5702. #u23013 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:648px;
  5706. top:218px;
  5707. width:140px;
  5708. height:30px;
  5709. display:flex;
  5710. }
  5711. #u23013 .text {
  5712. position:absolute;
  5713. align-self:center;
  5714. padding:2px 2px 2px 0px;
  5715. box-sizing:border-box;
  5716. width:100%;
  5717. }
  5718. #u23013_text {
  5719. border-width:0px;
  5720. word-wrap:break-word;
  5721. text-transform:none;
  5722. visibility:hidden;
  5723. }
  5724. #u23014_input {
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:133px;
  5729. height:23px;
  5730. padding:2px 2px 2px 0px;
  5731. font-family:'ArialMT', 'Arial', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. font-size:13px;
  5735. letter-spacing:normal;
  5736. color:#AAAAAA;
  5737. vertical-align:none;
  5738. text-align:left;
  5739. text-transform:none;
  5740. background-color:transparent;
  5741. border-color:transparent;
  5742. }
  5743. #u23014_input.disabled {
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:133px;
  5748. height:23px;
  5749. padding:2px 2px 2px 0px;
  5750. font-family:'ArialMT', 'Arial', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:13px;
  5754. letter-spacing:normal;
  5755. color:#AAAAAA;
  5756. vertical-align:none;
  5757. text-align:left;
  5758. text-transform:none;
  5759. background-color:transparent;
  5760. border-color:transparent;
  5761. }
  5762. #u23014_div {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:133px;
  5768. height:23px;
  5769. background:inherit;
  5770. background-color:rgba(255, 255, 255, 1);
  5771. border:none;
  5772. border-radius:0px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. color:#AAAAAA;
  5777. }
  5778. #u23014 {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:652px;
  5782. top:221px;
  5783. width:133px;
  5784. height:23px;
  5785. display:flex;
  5786. color:#AAAAAA;
  5787. }
  5788. #u23014 .text {
  5789. position:absolute;
  5790. align-self:flex-start;
  5791. padding:2px 2px 2px 0px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u23014_div.disabled {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:133px;
  5801. height:23px;
  5802. background:inherit;
  5803. background-color:rgba(240, 240, 240, 1);
  5804. border:none;
  5805. border-radius:0px;
  5806. -moz-box-shadow:none;
  5807. -webkit-box-shadow:none;
  5808. box-shadow:none;
  5809. color:#AAAAAA;
  5810. }
  5811. #u23014.disabled {
  5812. }
  5813. .u23014_input_option {
  5814. }
  5815. #u23015 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:0px;
  5821. height:0px;
  5822. }
  5823. #u23016_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:140px;
  5829. height:30px;
  5830. background:inherit;
  5831. background-color:rgba(255, 255, 255, 1);
  5832. box-sizing:border-box;
  5833. border-width:1px;
  5834. border-style:solid;
  5835. border-color:rgba(170, 170, 170, 1);
  5836. border-radius:4px;
  5837. -moz-box-shadow:none;
  5838. -webkit-box-shadow:none;
  5839. box-shadow:none;
  5840. }
  5841. #u23016 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:798px;
  5845. top:218px;
  5846. width:140px;
  5847. height:30px;
  5848. display:flex;
  5849. }
  5850. #u23016 .text {
  5851. position:absolute;
  5852. align-self:center;
  5853. padding:2px 2px 2px 0px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u23016_text {
  5858. border-width:0px;
  5859. word-wrap:break-word;
  5860. text-transform:none;
  5861. visibility:hidden;
  5862. }
  5863. #u23017_input {
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:133px;
  5868. height:23px;
  5869. padding:2px 2px 2px 0px;
  5870. font-family:'ArialMT', 'Arial', sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:13px;
  5874. letter-spacing:normal;
  5875. color:#AAAAAA;
  5876. vertical-align:none;
  5877. text-align:left;
  5878. text-transform:none;
  5879. background-color:transparent;
  5880. border-color:transparent;
  5881. }
  5882. #u23017_input.disabled {
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:133px;
  5887. height:23px;
  5888. padding:2px 2px 2px 0px;
  5889. font-family:'ArialMT', 'Arial', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:13px;
  5893. letter-spacing:normal;
  5894. color:#AAAAAA;
  5895. vertical-align:none;
  5896. text-align:left;
  5897. text-transform:none;
  5898. background-color:transparent;
  5899. border-color:transparent;
  5900. }
  5901. #u23017_div {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:133px;
  5907. height:23px;
  5908. background:inherit;
  5909. background-color:rgba(255, 255, 255, 1);
  5910. border:none;
  5911. border-radius:0px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. color:#AAAAAA;
  5916. }
  5917. #u23017 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:802px;
  5921. top:221px;
  5922. width:133px;
  5923. height:23px;
  5924. display:flex;
  5925. color:#AAAAAA;
  5926. }
  5927. #u23017 .text {
  5928. position:absolute;
  5929. align-self:flex-start;
  5930. padding:2px 2px 2px 0px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u23017_div.disabled {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:133px;
  5940. height:23px;
  5941. background:inherit;
  5942. background-color:rgba(240, 240, 240, 1);
  5943. border:none;
  5944. border-radius:0px;
  5945. -moz-box-shadow:none;
  5946. -webkit-box-shadow:none;
  5947. box-shadow:none;
  5948. color:#AAAAAA;
  5949. }
  5950. #u23017.disabled {
  5951. }
  5952. .u23017_input_option {
  5953. }
  5954. #u23018 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:0px;
  5960. height:0px;
  5961. }
  5962. #u23019_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:91px;
  5968. height:50px;
  5969. background:inherit;
  5970. background-color:rgba(255, 255, 255, 0);
  5971. border:none;
  5972. border-left:0px;
  5973. border-top:0px;
  5974. border-right:0px;
  5975. border-radius:0px;
  5976. border-bottom-right-radius:0px;
  5977. border-bottom-left-radius:0px;
  5978. -moz-box-shadow:none;
  5979. -webkit-box-shadow:none;
  5980. box-shadow:none;
  5981. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5982. font-weight:500;
  5983. font-style:normal;
  5984. font-size:18px;
  5985. }
  5986. #u23019 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:1156px;
  5990. top:178px;
  5991. width:91px;
  5992. height:50px;
  5993. display:flex;
  5994. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5995. font-weight:500;
  5996. font-style:normal;
  5997. font-size:18px;
  5998. }
  5999. #u23019 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:0px 0px 0px 0px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u23019_text {
  6007. border-width:0px;
  6008. white-space:nowrap;
  6009. text-transform:none;
  6010. }
  6011. #u23020_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:395px;
  6017. height:793px;
  6018. background:inherit;
  6019. background-color:rgba(255, 255, 255, 1);
  6020. box-sizing:border-box;
  6021. border-width:1px;
  6022. border-style:solid;
  6023. border-color:rgba(170, 170, 170, 1);
  6024. border-radius:4px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. }
  6029. #u23020 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:1156px;
  6033. top:228px;
  6034. width:395px;
  6035. height:793px;
  6036. display:flex;
  6037. }
  6038. #u23020 .text {
  6039. position:absolute;
  6040. align-self:center;
  6041. padding:2px 2px 2px 0px;
  6042. box-sizing:border-box;
  6043. width:100%;
  6044. }
  6045. #u23020_text {
  6046. border-width:0px;
  6047. word-wrap:break-word;
  6048. text-transform:none;
  6049. visibility:hidden;
  6050. }
  6051. #u23021 label {
  6052. left:0px;
  6053. width:100%;
  6054. }
  6055. #u23021_img {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:3px;
  6060. width:12px;
  6061. height:12px;
  6062. }
  6063. #u23021 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:1192px;
  6067. top:353px;
  6068. width:100px;
  6069. height:18px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. }
  6075. #u23021 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:0px 2px 0px 2px;
  6079. box-sizing:border-box;
  6080. }
  6081. #u23021_img.selected {
  6082. }
  6083. #u23021.selected {
  6084. }
  6085. #u23021_img.disabled {
  6086. }
  6087. #u23021.disabled {
  6088. }
  6089. #u23021_img.selectedDisabled {
  6090. }
  6091. #u23021.selectedDisabled {
  6092. }
  6093. #u23021_text {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:14px;
  6097. top:0px;
  6098. width:84px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. }
  6102. #u23021_input {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:0px;
  6108. height:0px;
  6109. opacity:0;
  6110. }
  6111. #u23022 label {
  6112. left:0px;
  6113. width:100%;
  6114. }
  6115. #u23022_img {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:3px;
  6120. width:12px;
  6121. height:12px;
  6122. }
  6123. #u23022 {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:1211px;
  6127. top:382px;
  6128. width:100px;
  6129. height:18px;
  6130. display:flex;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. }
  6135. #u23022 .text {
  6136. position:absolute;
  6137. align-self:center;
  6138. padding:0px 2px 0px 2px;
  6139. box-sizing:border-box;
  6140. }
  6141. #u23022_img.selected {
  6142. }
  6143. #u23022.selected {
  6144. }
  6145. #u23022_img.disabled {
  6146. }
  6147. #u23022.disabled {
  6148. }
  6149. #u23022_img.selectedDisabled {
  6150. }
  6151. #u23022.selectedDisabled {
  6152. }
  6153. #u23022_text {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:14px;
  6157. top:0px;
  6158. width:84px;
  6159. word-wrap:break-word;
  6160. text-transform:none;
  6161. }
  6162. #u23022_input {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:0px;
  6168. height:0px;
  6169. opacity:0;
  6170. }
  6171. #u23023 label {
  6172. left:0px;
  6173. width:100%;
  6174. }
  6175. #u23023_img {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:0px;
  6179. top:3px;
  6180. width:12px;
  6181. height:12px;
  6182. }
  6183. #u23023 {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:1211px;
  6187. top:410px;
  6188. width:100px;
  6189. height:18px;
  6190. display:flex;
  6191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. }
  6195. #u23023 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:0px 2px 0px 2px;
  6199. box-sizing:border-box;
  6200. }
  6201. #u23023_img.selected {
  6202. }
  6203. #u23023.selected {
  6204. }
  6205. #u23023_img.disabled {
  6206. }
  6207. #u23023.disabled {
  6208. }
  6209. #u23023_img.selectedDisabled {
  6210. }
  6211. #u23023.selectedDisabled {
  6212. }
  6213. #u23023_text {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:14px;
  6217. top:0px;
  6218. width:84px;
  6219. word-wrap:break-word;
  6220. text-transform:none;
  6221. }
  6222. #u23023_input {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:0px;
  6226. top:0px;
  6227. width:0px;
  6228. height:0px;
  6229. opacity:0;
  6230. }
  6231. #u23024 label {
  6232. left:0px;
  6233. width:100%;
  6234. }
  6235. #u23024_img {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:3px;
  6240. width:12px;
  6241. height:12px;
  6242. }
  6243. #u23024 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:1192px;
  6247. top:438px;
  6248. width:100px;
  6249. height:18px;
  6250. display:flex;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. }
  6255. #u23024 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:0px 2px 0px 2px;
  6259. box-sizing:border-box;
  6260. }
  6261. #u23024_img.selected {
  6262. }
  6263. #u23024.selected {
  6264. }
  6265. #u23024_img.disabled {
  6266. }
  6267. #u23024.disabled {
  6268. }
  6269. #u23024_img.selectedDisabled {
  6270. }
  6271. #u23024.selectedDisabled {
  6272. }
  6273. #u23024_text {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:14px;
  6277. top:0px;
  6278. width:84px;
  6279. word-wrap:break-word;
  6280. text-transform:none;
  6281. }
  6282. #u23024_input {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:0px;
  6288. height:0px;
  6289. opacity:0;
  6290. }
  6291. #u23025 label {
  6292. left:0px;
  6293. width:100%;
  6294. }
  6295. #u23025_img {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:3px;
  6300. width:12px;
  6301. height:12px;
  6302. }
  6303. #u23025 {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:1211px;
  6307. top:467px;
  6308. width:100px;
  6309. height:18px;
  6310. display:flex;
  6311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6312. font-weight:400;
  6313. font-style:normal;
  6314. }
  6315. #u23025 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:0px 2px 0px 2px;
  6319. box-sizing:border-box;
  6320. }
  6321. #u23025_img.selected {
  6322. }
  6323. #u23025.selected {
  6324. }
  6325. #u23025_img.disabled {
  6326. }
  6327. #u23025.disabled {
  6328. }
  6329. #u23025_img.selectedDisabled {
  6330. }
  6331. #u23025.selectedDisabled {
  6332. }
  6333. #u23025_text {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:14px;
  6337. top:0px;
  6338. width:84px;
  6339. word-wrap:break-word;
  6340. text-transform:none;
  6341. }
  6342. #u23025_input {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:0px;
  6348. height:0px;
  6349. opacity:0;
  6350. }
  6351. #u23026 label {
  6352. left:0px;
  6353. width:100%;
  6354. }
  6355. #u23026_img {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:0px;
  6359. top:3px;
  6360. width:12px;
  6361. height:12px;
  6362. }
  6363. #u23026 {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:1211px;
  6367. top:495px;
  6368. width:100px;
  6369. height:18px;
  6370. display:flex;
  6371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. }
  6375. #u23026 .text {
  6376. position:absolute;
  6377. align-self:center;
  6378. padding:0px 2px 0px 2px;
  6379. box-sizing:border-box;
  6380. }
  6381. #u23026_img.selected {
  6382. }
  6383. #u23026.selected {
  6384. }
  6385. #u23026_img.disabled {
  6386. }
  6387. #u23026.disabled {
  6388. }
  6389. #u23026_img.selectedDisabled {
  6390. }
  6391. #u23026.selectedDisabled {
  6392. }
  6393. #u23026_text {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:14px;
  6397. top:0px;
  6398. width:84px;
  6399. word-wrap:break-word;
  6400. text-transform:none;
  6401. }
  6402. #u23026_input {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:0px;
  6408. height:0px;
  6409. opacity:0;
  6410. }
  6411. #u23027 label {
  6412. left:0px;
  6413. width:100%;
  6414. }
  6415. #u23027_img {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:0px;
  6419. top:3px;
  6420. width:12px;
  6421. height:12px;
  6422. }
  6423. #u23027 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:1192px;
  6427. top:523px;
  6428. width:100px;
  6429. height:18px;
  6430. display:flex;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. }
  6435. #u23027 .text {
  6436. position:absolute;
  6437. align-self:center;
  6438. padding:0px 2px 0px 2px;
  6439. box-sizing:border-box;
  6440. }
  6441. #u23027_img.selected {
  6442. }
  6443. #u23027.selected {
  6444. }
  6445. #u23027_img.disabled {
  6446. }
  6447. #u23027.disabled {
  6448. }
  6449. #u23027_img.selectedDisabled {
  6450. }
  6451. #u23027.selectedDisabled {
  6452. }
  6453. #u23027_text {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:14px;
  6457. top:0px;
  6458. width:84px;
  6459. word-wrap:break-word;
  6460. text-transform:none;
  6461. }
  6462. #u23027_input {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:0px;
  6468. height:0px;
  6469. opacity:0;
  6470. }
  6471. #u23028 label {
  6472. left:0px;
  6473. width:100%;
  6474. }
  6475. #u23028_img {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:3px;
  6480. width:12px;
  6481. height:12px;
  6482. }
  6483. #u23028 {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:1211px;
  6487. top:552px;
  6488. width:100px;
  6489. height:18px;
  6490. display:flex;
  6491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6492. font-weight:400;
  6493. font-style:normal;
  6494. }
  6495. #u23028 .text {
  6496. position:absolute;
  6497. align-self:center;
  6498. padding:0px 2px 0px 2px;
  6499. box-sizing:border-box;
  6500. }
  6501. #u23028_img.selected {
  6502. }
  6503. #u23028.selected {
  6504. }
  6505. #u23028_img.disabled {
  6506. }
  6507. #u23028.disabled {
  6508. }
  6509. #u23028_img.selectedDisabled {
  6510. }
  6511. #u23028.selectedDisabled {
  6512. }
  6513. #u23028_text {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:14px;
  6517. top:0px;
  6518. width:84px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. }
  6522. #u23028_input {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:0px;
  6528. height:0px;
  6529. opacity:0;
  6530. }
  6531. #u23029 label {
  6532. left:0px;
  6533. width:100%;
  6534. }
  6535. #u23029_img {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:3px;
  6540. width:12px;
  6541. height:12px;
  6542. }
  6543. #u23029 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:1211px;
  6547. top:580px;
  6548. width:100px;
  6549. height:18px;
  6550. display:flex;
  6551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6552. font-weight:400;
  6553. font-style:normal;
  6554. }
  6555. #u23029 .text {
  6556. position:absolute;
  6557. align-self:center;
  6558. padding:0px 2px 0px 2px;
  6559. box-sizing:border-box;
  6560. }
  6561. #u23029_img.selected {
  6562. }
  6563. #u23029.selected {
  6564. }
  6565. #u23029_img.disabled {
  6566. }
  6567. #u23029.disabled {
  6568. }
  6569. #u23029_img.selectedDisabled {
  6570. }
  6571. #u23029.selectedDisabled {
  6572. }
  6573. #u23029_text {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:14px;
  6577. top:0px;
  6578. width:84px;
  6579. word-wrap:break-word;
  6580. text-transform:none;
  6581. }
  6582. #u23029_input {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:0px;
  6586. top:0px;
  6587. width:0px;
  6588. height:0px;
  6589. opacity:0;
  6590. }
  6591. #u23030 label {
  6592. left:0px;
  6593. width:100%;
  6594. }
  6595. #u23030_img {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:0px;
  6599. top:3px;
  6600. width:12px;
  6601. height:12px;
  6602. }
  6603. #u23030 {
  6604. border-width:0px;
  6605. position:absolute;
  6606. left:1390px;
  6607. top:353px;
  6608. width:100px;
  6609. height:18px;
  6610. display:flex;
  6611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6612. font-weight:400;
  6613. font-style:normal;
  6614. }
  6615. #u23030 .text {
  6616. position:absolute;
  6617. align-self:center;
  6618. padding:0px 2px 0px 2px;
  6619. box-sizing:border-box;
  6620. }
  6621. #u23030_img.selected {
  6622. }
  6623. #u23030.selected {
  6624. }
  6625. #u23030_img.disabled {
  6626. }
  6627. #u23030.disabled {
  6628. }
  6629. #u23030_img.selectedDisabled {
  6630. }
  6631. #u23030.selectedDisabled {
  6632. }
  6633. #u23030_text {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:14px;
  6637. top:0px;
  6638. width:84px;
  6639. word-wrap:break-word;
  6640. text-transform:none;
  6641. }
  6642. #u23030_input {
  6643. border-width:0px;
  6644. position:absolute;
  6645. left:0px;
  6646. top:0px;
  6647. width:0px;
  6648. height:0px;
  6649. opacity:0;
  6650. }
  6651. #u23031 label {
  6652. left:0px;
  6653. width:100%;
  6654. }
  6655. #u23031_img {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:3px;
  6660. width:12px;
  6661. height:12px;
  6662. }
  6663. #u23031 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:1409px;
  6667. top:382px;
  6668. width:100px;
  6669. height:18px;
  6670. display:flex;
  6671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. }
  6675. #u23031 .text {
  6676. position:absolute;
  6677. align-self:center;
  6678. padding:0px 2px 0px 2px;
  6679. box-sizing:border-box;
  6680. }
  6681. #u23031_img.selected {
  6682. }
  6683. #u23031.selected {
  6684. }
  6685. #u23031_img.disabled {
  6686. }
  6687. #u23031.disabled {
  6688. }
  6689. #u23031_img.selectedDisabled {
  6690. }
  6691. #u23031.selectedDisabled {
  6692. }
  6693. #u23031_text {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:14px;
  6697. top:0px;
  6698. width:84px;
  6699. word-wrap:break-word;
  6700. text-transform:none;
  6701. }
  6702. #u23031_input {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:0px;
  6708. height:0px;
  6709. opacity:0;
  6710. }
  6711. #u23032 label {
  6712. left:0px;
  6713. width:100%;
  6714. }
  6715. #u23032_img {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:3px;
  6720. width:12px;
  6721. height:12px;
  6722. }
  6723. #u23032 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:1409px;
  6727. top:410px;
  6728. width:100px;
  6729. height:18px;
  6730. display:flex;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. }
  6735. #u23032 .text {
  6736. position:absolute;
  6737. align-self:center;
  6738. padding:0px 2px 0px 2px;
  6739. box-sizing:border-box;
  6740. }
  6741. #u23032_img.selected {
  6742. }
  6743. #u23032.selected {
  6744. }
  6745. #u23032_img.disabled {
  6746. }
  6747. #u23032.disabled {
  6748. }
  6749. #u23032_img.selectedDisabled {
  6750. }
  6751. #u23032.selectedDisabled {
  6752. }
  6753. #u23032_text {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:14px;
  6757. top:0px;
  6758. width:84px;
  6759. word-wrap:break-word;
  6760. text-transform:none;
  6761. }
  6762. #u23032_input {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:0px;
  6768. height:0px;
  6769. opacity:0;
  6770. }
  6771. #u23033 label {
  6772. left:0px;
  6773. width:100%;
  6774. }
  6775. #u23033_img {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:3px;
  6780. width:12px;
  6781. height:12px;
  6782. }
  6783. #u23033 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:1390px;
  6787. top:438px;
  6788. width:100px;
  6789. height:18px;
  6790. display:flex;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. }
  6795. #u23033 .text {
  6796. position:absolute;
  6797. align-self:center;
  6798. padding:0px 2px 0px 2px;
  6799. box-sizing:border-box;
  6800. }
  6801. #u23033_img.selected {
  6802. }
  6803. #u23033.selected {
  6804. }
  6805. #u23033_img.disabled {
  6806. }
  6807. #u23033.disabled {
  6808. }
  6809. #u23033_img.selectedDisabled {
  6810. }
  6811. #u23033.selectedDisabled {
  6812. }
  6813. #u23033_text {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:14px;
  6817. top:0px;
  6818. width:84px;
  6819. word-wrap:break-word;
  6820. text-transform:none;
  6821. }
  6822. #u23033_input {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:0px;
  6828. height:0px;
  6829. opacity:0;
  6830. }
  6831. #u23034 label {
  6832. left:0px;
  6833. width:100%;
  6834. }
  6835. #u23034_img {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:3px;
  6840. width:12px;
  6841. height:12px;
  6842. }
  6843. #u23034 {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:1409px;
  6847. top:467px;
  6848. width:100px;
  6849. height:18px;
  6850. display:flex;
  6851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6852. font-weight:400;
  6853. font-style:normal;
  6854. }
  6855. #u23034 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:0px 2px 0px 2px;
  6859. box-sizing:border-box;
  6860. }
  6861. #u23034_img.selected {
  6862. }
  6863. #u23034.selected {
  6864. }
  6865. #u23034_img.disabled {
  6866. }
  6867. #u23034.disabled {
  6868. }
  6869. #u23034_img.selectedDisabled {
  6870. }
  6871. #u23034.selectedDisabled {
  6872. }
  6873. #u23034_text {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:14px;
  6877. top:0px;
  6878. width:84px;
  6879. word-wrap:break-word;
  6880. text-transform:none;
  6881. }
  6882. #u23034_input {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:0px;
  6888. height:0px;
  6889. opacity:0;
  6890. }
  6891. #u23035 label {
  6892. left:0px;
  6893. width:100%;
  6894. }
  6895. #u23035_img {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:3px;
  6900. width:12px;
  6901. height:12px;
  6902. }
  6903. #u23035 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:1409px;
  6907. top:495px;
  6908. width:100px;
  6909. height:18px;
  6910. display:flex;
  6911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. }
  6915. #u23035 .text {
  6916. position:absolute;
  6917. align-self:center;
  6918. padding:0px 2px 0px 2px;
  6919. box-sizing:border-box;
  6920. }
  6921. #u23035_img.selected {
  6922. }
  6923. #u23035.selected {
  6924. }
  6925. #u23035_img.disabled {
  6926. }
  6927. #u23035.disabled {
  6928. }
  6929. #u23035_img.selectedDisabled {
  6930. }
  6931. #u23035.selectedDisabled {
  6932. }
  6933. #u23035_text {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:14px;
  6937. top:0px;
  6938. width:84px;
  6939. word-wrap:break-word;
  6940. text-transform:none;
  6941. }
  6942. #u23035_input {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:0px;
  6948. height:0px;
  6949. opacity:0;
  6950. }
  6951. #u23036 label {
  6952. left:0px;
  6953. width:100%;
  6954. }
  6955. #u23036_img {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:0px;
  6959. top:3px;
  6960. width:12px;
  6961. height:12px;
  6962. }
  6963. #u23036 {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:1390px;
  6967. top:523px;
  6968. width:100px;
  6969. height:18px;
  6970. display:flex;
  6971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6972. font-weight:400;
  6973. font-style:normal;
  6974. }
  6975. #u23036 .text {
  6976. position:absolute;
  6977. align-self:center;
  6978. padding:0px 2px 0px 2px;
  6979. box-sizing:border-box;
  6980. }
  6981. #u23036_img.selected {
  6982. }
  6983. #u23036.selected {
  6984. }
  6985. #u23036_img.disabled {
  6986. }
  6987. #u23036.disabled {
  6988. }
  6989. #u23036_img.selectedDisabled {
  6990. }
  6991. #u23036.selectedDisabled {
  6992. }
  6993. #u23036_text {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:14px;
  6997. top:0px;
  6998. width:84px;
  6999. word-wrap:break-word;
  7000. text-transform:none;
  7001. }
  7002. #u23036_input {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:0px;
  7006. top:0px;
  7007. width:0px;
  7008. height:0px;
  7009. opacity:0;
  7010. }
  7011. #u23037 label {
  7012. left:0px;
  7013. width:100%;
  7014. }
  7015. #u23037_img {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:3px;
  7020. width:12px;
  7021. height:12px;
  7022. }
  7023. #u23037 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:1409px;
  7027. top:552px;
  7028. width:100px;
  7029. height:18px;
  7030. display:flex;
  7031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. }
  7035. #u23037 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:0px 2px 0px 2px;
  7039. box-sizing:border-box;
  7040. }
  7041. #u23037_img.selected {
  7042. }
  7043. #u23037.selected {
  7044. }
  7045. #u23037_img.disabled {
  7046. }
  7047. #u23037.disabled {
  7048. }
  7049. #u23037_img.selectedDisabled {
  7050. }
  7051. #u23037.selectedDisabled {
  7052. }
  7053. #u23037_text {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:14px;
  7057. top:0px;
  7058. width:84px;
  7059. word-wrap:break-word;
  7060. text-transform:none;
  7061. }
  7062. #u23037_input {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:0px;
  7066. top:0px;
  7067. width:0px;
  7068. height:0px;
  7069. opacity:0;
  7070. }
  7071. #u23038 label {
  7072. left:0px;
  7073. width:100%;
  7074. }
  7075. #u23038_img {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:3px;
  7080. width:12px;
  7081. height:12px;
  7082. }
  7083. #u23038 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:1409px;
  7087. top:580px;
  7088. width:100px;
  7089. height:18px;
  7090. display:flex;
  7091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. }
  7095. #u23038 .text {
  7096. position:absolute;
  7097. align-self:center;
  7098. padding:0px 2px 0px 2px;
  7099. box-sizing:border-box;
  7100. }
  7101. #u23038_img.selected {
  7102. }
  7103. #u23038.selected {
  7104. }
  7105. #u23038_img.disabled {
  7106. }
  7107. #u23038.disabled {
  7108. }
  7109. #u23038_img.selectedDisabled {
  7110. }
  7111. #u23038.selectedDisabled {
  7112. }
  7113. #u23038_text {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:14px;
  7117. top:0px;
  7118. width:84px;
  7119. word-wrap:break-word;
  7120. text-transform:none;
  7121. }
  7122. #u23038_input {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:0px;
  7128. height:0px;
  7129. opacity:0;
  7130. }
  7131. #u23039_div {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:0px;
  7136. width:10px;
  7137. height:393px;
  7138. background:inherit;
  7139. background-color:rgba(51, 51, 51, 1);
  7140. border:none;
  7141. border-radius:4px;
  7142. -moz-box-shadow:none;
  7143. -webkit-box-shadow:none;
  7144. box-shadow:none;
  7145. }
  7146. #u23039 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:1541px;
  7150. top:442px;
  7151. width:10px;
  7152. height:393px;
  7153. display:flex;
  7154. }
  7155. #u23039 .text {
  7156. position:absolute;
  7157. align-self:center;
  7158. padding:2px 2px 2px 0px;
  7159. box-sizing:border-box;
  7160. width:100%;
  7161. }
  7162. #u23039_text {
  7163. border-width:0px;
  7164. word-wrap:break-word;
  7165. text-transform:none;
  7166. visibility:hidden;
  7167. }
  7168. #u23040 {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:0px;
  7174. height:0px;
  7175. }
  7176. #u23041_div {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:350px;
  7182. height:40px;
  7183. background:inherit;
  7184. background-color:rgba(255, 255, 255, 1);
  7185. box-sizing:border-box;
  7186. border-width:1px;
  7187. border-style:solid;
  7188. border-color:rgba(201, 201, 201, 1);
  7189. border-radius:4px;
  7190. -moz-box-shadow:none;
  7191. -webkit-box-shadow:none;
  7192. box-shadow:none;
  7193. font-family:'Microsoft YaHei', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:14px;
  7197. color:#CCCCCC;
  7198. text-align:left;
  7199. }
  7200. #u23041 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:1176px;
  7204. top:251px;
  7205. width:350px;
  7206. height:40px;
  7207. display:flex;
  7208. font-family:'Microsoft YaHei', sans-serif;
  7209. font-weight:400;
  7210. font-style:normal;
  7211. font-size:14px;
  7212. color:#CCCCCC;
  7213. text-align:left;
  7214. }
  7215. #u23041 .text {
  7216. position:absolute;
  7217. align-self:center;
  7218. padding:2px 8px 2px 8px;
  7219. box-sizing:border-box;
  7220. width:100%;
  7221. }
  7222. #u23041_text {
  7223. border-width:0px;
  7224. word-wrap:break-word;
  7225. text-transform:none;
  7226. visibility:hidden;
  7227. }
  7228. #u23042_input {
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:204px;
  7233. height:33px;
  7234. padding:2px 2px 2px 2px;
  7235. font-family:'Microsoft YaHei', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:13px;
  7239. letter-spacing:normal;
  7240. color:#000000;
  7241. vertical-align:none;
  7242. text-align:left;
  7243. text-transform:none;
  7244. background-color:transparent;
  7245. border-color:transparent;
  7246. }
  7247. #u23042_input.disabled {
  7248. position:absolute;
  7249. left:0px;
  7250. top:0px;
  7251. width:204px;
  7252. height:33px;
  7253. padding:2px 2px 2px 2px;
  7254. font-family:'Microsoft YaHei', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:13px;
  7258. letter-spacing:normal;
  7259. color:#000000;
  7260. vertical-align:none;
  7261. text-align:left;
  7262. text-transform:none;
  7263. background-color:transparent;
  7264. border-color:transparent;
  7265. }
  7266. #u23042_div {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:204px;
  7272. height:33px;
  7273. background:inherit;
  7274. background-color:rgba(255, 255, 255, 1);
  7275. border:none;
  7276. border-radius:0px;
  7277. -moz-box-shadow:none;
  7278. -webkit-box-shadow:none;
  7279. box-shadow:none;
  7280. font-family:'Microsoft YaHei', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. }
  7284. #u23042 {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:1215px;
  7288. top:254px;
  7289. width:204px;
  7290. height:33px;
  7291. display:flex;
  7292. font-family:'Microsoft YaHei', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. }
  7296. #u23042 .text {
  7297. position:absolute;
  7298. align-self:center;
  7299. padding:2px 2px 2px 2px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u23042_div.disabled {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:204px;
  7309. height:33px;
  7310. background:inherit;
  7311. background-color:rgba(240, 240, 240, 1);
  7312. border:none;
  7313. border-radius:0px;
  7314. -moz-box-shadow:none;
  7315. -webkit-box-shadow:none;
  7316. box-shadow:none;
  7317. font-family:'Microsoft YaHei', sans-serif;
  7318. font-weight:400;
  7319. font-style:normal;
  7320. }
  7321. #u23042.disabled {
  7322. }
  7323. #u23043_img {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:0px;
  7327. top:0px;
  7328. width:24px;
  7329. height:24px;
  7330. }
  7331. #u23043 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:1184px;
  7335. top:259px;
  7336. width:24px;
  7337. height:24px;
  7338. display:flex;
  7339. font-family:'Microsoft YaHei', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. }
  7343. #u23043 .text {
  7344. position:absolute;
  7345. align-self:center;
  7346. padding:2px 2px 2px 2px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u23043_text {
  7351. border-width:0px;
  7352. word-wrap:break-word;
  7353. text-transform:none;
  7354. visibility:hidden;
  7355. }
  7356. #u23044_div {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:160px;
  7362. height:30px;
  7363. background:inherit;
  7364. background-color:rgba(242, 242, 242, 1);
  7365. border:none;
  7366. border-radius:0px;
  7367. -moz-box-shadow:none;
  7368. -webkit-box-shadow:none;
  7369. box-shadow:none;
  7370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7371. font-weight:400;
  7372. font-style:normal;
  7373. font-size:14px;
  7374. text-align:left;
  7375. }
  7376. #u23044 {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:1176px;
  7380. top:311px;
  7381. width:160px;
  7382. height:30px;
  7383. display:flex;
  7384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7385. font-weight:400;
  7386. font-style:normal;
  7387. font-size:14px;
  7388. text-align:left;
  7389. }
  7390. #u23044 .text {
  7391. position:absolute;
  7392. align-self:center;
  7393. padding:2px 8px 2px 8px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u23044_text {
  7398. border-width:0px;
  7399. word-wrap:break-word;
  7400. text-transform:none;
  7401. }
  7402. #u23045 label {
  7403. left:0px;
  7404. width:100%;
  7405. }
  7406. #u23045_img {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:0px;
  7410. top:2px;
  7411. width:12px;
  7412. height:12px;
  7413. }
  7414. #u23045 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:1291px;
  7418. top:318px;
  7419. width:45px;
  7420. height:16px;
  7421. display:flex;
  7422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7423. font-weight:400;
  7424. font-style:normal;
  7425. font-size:11px;
  7426. color:#198CFB;
  7427. }
  7428. #u23045 .text {
  7429. position:absolute;
  7430. align-self:center;
  7431. padding:0px 2px 0px 2px;
  7432. box-sizing:border-box;
  7433. }
  7434. #u23045_img.selected {
  7435. }
  7436. #u23045.selected {
  7437. }
  7438. #u23045_img.disabled {
  7439. }
  7440. #u23045.disabled {
  7441. }
  7442. #u23045_img.selectedDisabled {
  7443. }
  7444. #u23045.selectedDisabled {
  7445. }
  7446. #u23045_text {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:14px;
  7450. top:0px;
  7451. width:29px;
  7452. word-wrap:break-word;
  7453. text-transform:none;
  7454. }
  7455. #u23045_input {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:0px;
  7459. top:0px;
  7460. width:0px;
  7461. height:0px;
  7462. opacity:0;
  7463. }
  7464. #u23046_div {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:160px;
  7470. height:30px;
  7471. background:inherit;
  7472. background-color:rgba(242, 242, 242, 1);
  7473. border:none;
  7474. border-radius:0px;
  7475. -moz-box-shadow:none;
  7476. -webkit-box-shadow:none;
  7477. box-shadow:none;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:14px;
  7482. text-align:left;
  7483. }
  7484. #u23046 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:1366px;
  7488. top:311px;
  7489. width:160px;
  7490. height:30px;
  7491. display:flex;
  7492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7493. font-weight:400;
  7494. font-style:normal;
  7495. font-size:14px;
  7496. text-align:left;
  7497. }
  7498. #u23046 .text {
  7499. position:absolute;
  7500. align-self:center;
  7501. padding:2px 8px 2px 8px;
  7502. box-sizing:border-box;
  7503. width:100%;
  7504. }
  7505. #u23046_text {
  7506. border-width:0px;
  7507. word-wrap:break-word;
  7508. text-transform:none;
  7509. }
  7510. #u23047 label {
  7511. left:0px;
  7512. width:100%;
  7513. }
  7514. #u23047_img {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:2px;
  7519. width:12px;
  7520. height:12px;
  7521. }
  7522. #u23047 {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:1481px;
  7526. top:318px;
  7527. width:45px;
  7528. height:16px;
  7529. display:flex;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:11px;
  7534. color:#198CFB;
  7535. }
  7536. #u23047 .text {
  7537. position:absolute;
  7538. align-self:center;
  7539. padding:0px 2px 0px 2px;
  7540. box-sizing:border-box;
  7541. }
  7542. #u23047_img.selected {
  7543. }
  7544. #u23047.selected {
  7545. }
  7546. #u23047_img.disabled {
  7547. }
  7548. #u23047.disabled {
  7549. }
  7550. #u23047_img.selectedDisabled {
  7551. }
  7552. #u23047.selectedDisabled {
  7553. }
  7554. #u23047_text {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:14px;
  7558. top:0px;
  7559. width:29px;
  7560. word-wrap:break-word;
  7561. text-transform:none;
  7562. }
  7563. #u23047_input {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:0px;
  7569. height:0px;
  7570. opacity:0;
  7571. }
  7572. #u23048_div {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:0px;
  7576. top:0px;
  7577. width:31px;
  7578. height:30px;
  7579. background:inherit;
  7580. background-color:rgba(255, 255, 255, 1);
  7581. box-sizing:border-box;
  7582. border-width:1px;
  7583. border-style:solid;
  7584. border-color:rgba(217, 0, 27, 1);
  7585. border-radius:18px;
  7586. -moz-box-shadow:none;
  7587. -webkit-box-shadow:none;
  7588. box-shadow:none;
  7589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7590. font-weight:400;
  7591. font-style:normal;
  7592. font-size:18px;
  7593. color:#D9001B;
  7594. }
  7595. #u23048 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:1261px;
  7599. top:178px;
  7600. width:31px;
  7601. height:30px;
  7602. display:flex;
  7603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7604. font-weight:400;
  7605. font-style:normal;
  7606. font-size:18px;
  7607. color:#D9001B;
  7608. }
  7609. #u23048 .text {
  7610. position:absolute;
  7611. align-self:center;
  7612. padding:0px 0px 0px 0px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u23048_text {
  7617. border-width:0px;
  7618. word-wrap:break-word;
  7619. text-transform:none;
  7620. }
  7621. #u23049_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:73px;
  7627. height:40px;
  7628. background:inherit;
  7629. background-color:rgba(255, 255, 255, 0);
  7630. border:none;
  7631. border-left:0px;
  7632. border-top:0px;
  7633. border-right:0px;
  7634. border-radius:0px;
  7635. border-bottom-right-radius:0px;
  7636. border-bottom-left-radius:0px;
  7637. -moz-box-shadow:none;
  7638. -webkit-box-shadow:none;
  7639. box-shadow:none;
  7640. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7641. font-weight:500;
  7642. font-style:normal;
  7643. font-size:18px;
  7644. }
  7645. #u23049 {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:348px;
  7649. top:765px;
  7650. width:73px;
  7651. height:40px;
  7652. display:flex;
  7653. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7654. font-weight:500;
  7655. font-style:normal;
  7656. font-size:18px;
  7657. }
  7658. #u23049 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:0px 0px 0px 0px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u23049_text {
  7666. border-width:0px;
  7667. white-space:nowrap;
  7668. text-transform:none;
  7669. }
  7670. #u23050_div {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:140px;
  7676. height:40px;
  7677. background:inherit;
  7678. background-color:rgba(25, 140, 251, 1);
  7679. border:none;
  7680. border-radius:4px;
  7681. -moz-box-shadow:none;
  7682. -webkit-box-shadow:none;
  7683. box-shadow:none;
  7684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:14px;
  7688. color:#FFFFFF;
  7689. }
  7690. #u23050 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:989px;
  7694. top:820px;
  7695. width:140px;
  7696. height:40px;
  7697. display:flex;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:14px;
  7702. color:#FFFFFF;
  7703. }
  7704. #u23050 .text {
  7705. position:absolute;
  7706. align-self:center;
  7707. padding:5px 15px 5px 15px;
  7708. box-sizing:border-box;
  7709. width:100%;
  7710. }
  7711. #u23050_text {
  7712. border-width:0px;
  7713. word-wrap:break-word;
  7714. text-transform:none;
  7715. }
  7716. #u23051_div {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:0px;
  7720. top:0px;
  7721. width:99px;
  7722. height:40px;
  7723. background:inherit;
  7724. background-color:rgba(255, 255, 255, 0);
  7725. border:none;
  7726. border-left:0px;
  7727. border-top:0px;
  7728. border-right:0px;
  7729. border-radius:0px;
  7730. border-bottom-right-radius:0px;
  7731. border-bottom-left-radius:0px;
  7732. -moz-box-shadow:none;
  7733. -webkit-box-shadow:none;
  7734. box-shadow:none;
  7735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7736. font-weight:500;
  7737. font-style:normal;
  7738. font-size:14px;
  7739. }
  7740. #u23051 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:350px;
  7744. top:825px;
  7745. width:99px;
  7746. height:40px;
  7747. display:flex;
  7748. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7749. font-weight:500;
  7750. font-style:normal;
  7751. font-size:14px;
  7752. }
  7753. #u23051 .text {
  7754. position:absolute;
  7755. align-self:center;
  7756. padding:0px 0px 0px 0px;
  7757. box-sizing:border-box;
  7758. width:100%;
  7759. }
  7760. #u23051_text {
  7761. border-width:0px;
  7762. white-space:nowrap;
  7763. text-transform:none;
  7764. }
  7765. #u23052 {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:0px;
  7771. height:0px;
  7772. }
  7773. #u23053_div {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:0px;
  7777. top:0px;
  7778. width:400px;
  7779. height:40px;
  7780. background:inherit;
  7781. background-color:rgba(255, 255, 255, 1);
  7782. box-sizing:border-box;
  7783. border-width:1px;
  7784. border-style:solid;
  7785. border-color:rgba(170, 170, 170, 1);
  7786. border-radius:4px;
  7787. -moz-box-shadow:none;
  7788. -webkit-box-shadow:none;
  7789. box-shadow:none;
  7790. }
  7791. #u23053 {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:454px;
  7795. top:825px;
  7796. width:400px;
  7797. height:40px;
  7798. display:flex;
  7799. }
  7800. #u23053 .text {
  7801. position:absolute;
  7802. align-self:center;
  7803. padding:2px 2px 2px 0px;
  7804. box-sizing:border-box;
  7805. width:100%;
  7806. }
  7807. #u23053_text {
  7808. border-width:0px;
  7809. word-wrap:break-word;
  7810. text-transform:none;
  7811. visibility:hidden;
  7812. }
  7813. #u23054_input {
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:380px;
  7818. height:31px;
  7819. padding:2px 2px 2px 0px;
  7820. font-family:'ArialMT', 'Arial', sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:13px;
  7824. letter-spacing:normal;
  7825. color:#AAAAAA;
  7826. vertical-align:none;
  7827. text-align:left;
  7828. text-transform:none;
  7829. background-color:transparent;
  7830. border-color:transparent;
  7831. }
  7832. #u23054_input.disabled {
  7833. position:absolute;
  7834. left:0px;
  7835. top:0px;
  7836. width:380px;
  7837. height:31px;
  7838. padding:2px 2px 2px 0px;
  7839. font-family:'ArialMT', 'Arial', sans-serif;
  7840. font-weight:400;
  7841. font-style:normal;
  7842. font-size:13px;
  7843. letter-spacing:normal;
  7844. color:#AAAAAA;
  7845. vertical-align:none;
  7846. text-align:left;
  7847. text-transform:none;
  7848. background-color:transparent;
  7849. border-color:transparent;
  7850. }
  7851. #u23054_div {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:380px;
  7857. height:31px;
  7858. background:inherit;
  7859. background-color:rgba(255, 255, 255, 1);
  7860. border:none;
  7861. border-radius:0px;
  7862. -moz-box-shadow:none;
  7863. -webkit-box-shadow:none;
  7864. box-shadow:none;
  7865. color:#AAAAAA;
  7866. }
  7867. #u23054 {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:466px;
  7871. top:829px;
  7872. width:380px;
  7873. height:31px;
  7874. display:flex;
  7875. color:#AAAAAA;
  7876. }
  7877. #u23054 .text {
  7878. position:absolute;
  7879. align-self:flex-start;
  7880. padding:2px 2px 2px 0px;
  7881. box-sizing:border-box;
  7882. width:100%;
  7883. }
  7884. #u23054_div.disabled {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:0px;
  7888. top:0px;
  7889. width:380px;
  7890. height:31px;
  7891. background:inherit;
  7892. background-color:rgba(240, 240, 240, 1);
  7893. border:none;
  7894. border-radius:0px;
  7895. -moz-box-shadow:none;
  7896. -webkit-box-shadow:none;
  7897. box-shadow:none;
  7898. color:#AAAAAA;
  7899. }
  7900. #u23054.disabled {
  7901. }
  7902. .u23054_input_option {
  7903. }
  7904. #u23055 label {
  7905. left:0px;
  7906. width:100%;
  7907. }
  7908. #u23055_img {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:0px;
  7912. top:3px;
  7913. width:12px;
  7914. height:12px;
  7915. }
  7916. #u23055 {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:868px;
  7920. top:836px;
  7921. width:100px;
  7922. height:18px;
  7923. display:flex;
  7924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7925. font-weight:400;
  7926. font-style:normal;
  7927. }
  7928. #u23055 .text {
  7929. position:absolute;
  7930. align-self:center;
  7931. padding:0px 2px 0px 2px;
  7932. box-sizing:border-box;
  7933. }
  7934. #u23055_img.selected {
  7935. }
  7936. #u23055.selected {
  7937. }
  7938. #u23055_img.disabled {
  7939. }
  7940. #u23055.disabled {
  7941. }
  7942. #u23055_img.selectedDisabled {
  7943. }
  7944. #u23055.selectedDisabled {
  7945. }
  7946. #u23055_text {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:14px;
  7950. top:0px;
  7951. width:84px;
  7952. word-wrap:break-word;
  7953. text-transform:none;
  7954. }
  7955. #u23055_input {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:0px;
  7959. top:0px;
  7960. width:0px;
  7961. height:0px;
  7962. opacity:0;
  7963. }
  7964. #u23056_div {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:0px;
  7969. width:165px;
  7970. height:32px;
  7971. background:inherit;
  7972. background-color:rgba(51, 51, 51, 1);
  7973. border:none;
  7974. border-radius:74px;
  7975. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7976. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7977. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7979. font-weight:400;
  7980. font-style:normal;
  7981. font-size:12px;
  7982. color:#FFFFFF;
  7983. }
  7984. #u23056 {
  7985. border-width:0px;
  7986. position:absolute;
  7987. left:958px;
  7988. top:780px;
  7989. width:165px;
  7990. height:32px;
  7991. display:flex;
  7992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7993. font-weight:400;
  7994. font-style:normal;
  7995. font-size:12px;
  7996. color:#FFFFFF;
  7997. }
  7998. #u23056 .text {
  7999. position:absolute;
  8000. align-self:center;
  8001. padding:2px 16px 2px 16px;
  8002. box-sizing:border-box;
  8003. width:100%;
  8004. }
  8005. #u23056_text {
  8006. border-width:0px;
  8007. white-space:nowrap;
  8008. text-transform:none;
  8009. }
  8010. #u23057_div {
  8011. border-width:0px;
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:325px;
  8016. height:27px;
  8017. background:inherit;
  8018. background-color:rgba(255, 255, 255, 0);
  8019. border:none;
  8020. border-top:0px;
  8021. border-right:0px;
  8022. border-bottom:0px;
  8023. border-radius:0px;
  8024. border-top-left-radius:0px;
  8025. border-bottom-left-radius:0px;
  8026. -moz-box-shadow:none;
  8027. -webkit-box-shadow:none;
  8028. box-shadow:none;
  8029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8030. font-weight:400;
  8031. font-style:normal;
  8032. font-size:12px;
  8033. color:#D9001B;
  8034. }
  8035. #u23057 {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:787px;
  8039. top:753px;
  8040. width:325px;
  8041. height:27px;
  8042. display:flex;
  8043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:12px;
  8047. color:#D9001B;
  8048. }
  8049. #u23057 .text {
  8050. position:absolute;
  8051. align-self:center;
  8052. padding:5px 0px 5px 0px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u23057_text {
  8057. border-width:0px;
  8058. white-space:nowrap;
  8059. text-transform:none;
  8060. }
  8061. #u23058_div {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:114px;
  8067. height:40px;
  8068. background:inherit;
  8069. background-color:rgba(245, 154, 35, 1);
  8070. border:none;
  8071. border-radius:4px;
  8072. -moz-box-shadow:none;
  8073. -webkit-box-shadow:none;
  8074. box-shadow:none;
  8075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8076. font-weight:400;
  8077. font-style:normal;
  8078. font-size:14px;
  8079. color:#FFFFFF;
  8080. }
  8081. #u23058 {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:1016px;
  8085. top:163px;
  8086. width:114px;
  8087. height:40px;
  8088. display:flex;
  8089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8090. font-weight:400;
  8091. font-style:normal;
  8092. font-size:14px;
  8093. color:#FFFFFF;
  8094. }
  8095. #u23058 .text {
  8096. position:absolute;
  8097. align-self:center;
  8098. padding:5px 15px 5px 15px;
  8099. box-sizing:border-box;
  8100. width:100%;
  8101. }
  8102. #u23058_text {
  8103. border-width:0px;
  8104. word-wrap:break-word;
  8105. text-transform:none;
  8106. }
  8107. #u23059_div {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:0px;
  8111. top:0px;
  8112. width:31px;
  8113. height:30px;
  8114. background:inherit;
  8115. background-color:rgba(255, 255, 255, 1);
  8116. box-sizing:border-box;
  8117. border-width:1px;
  8118. border-style:solid;
  8119. border-color:rgba(217, 0, 27, 1);
  8120. border-radius:18px;
  8121. -moz-box-shadow:none;
  8122. -webkit-box-shadow:none;
  8123. box-shadow:none;
  8124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8125. font-weight:400;
  8126. font-style:normal;
  8127. font-size:18px;
  8128. color:#D9001B;
  8129. }
  8130. #u23059 {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:1138px;
  8134. top:705px;
  8135. width:31px;
  8136. height:30px;
  8137. display:flex;
  8138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8139. font-weight:400;
  8140. font-style:normal;
  8141. font-size:18px;
  8142. color:#D9001B;
  8143. }
  8144. #u23059 .text {
  8145. position:absolute;
  8146. align-self:center;
  8147. padding:0px 0px 0px 0px;
  8148. box-sizing:border-box;
  8149. width:100%;
  8150. }
  8151. #u23059_text {
  8152. border-width:0px;
  8153. word-wrap:break-word;
  8154. text-transform:none;
  8155. }
  8156. #u23060_img {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:0px;
  8160. top:0px;
  8161. width:19px;
  8162. height:19px;
  8163. }
  8164. #u23060 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:987px;
  8168. top:174px;
  8169. width:19px;
  8170. height:19px;
  8171. display:flex;
  8172. }
  8173. #u23060 .text {
  8174. position:absolute;
  8175. align-self:center;
  8176. padding:2px 2px 2px 2px;
  8177. box-sizing:border-box;
  8178. width:100%;
  8179. }
  8180. #u23060_text {
  8181. border-width:0px;
  8182. word-wrap:break-word;
  8183. text-transform:none;
  8184. visibility:hidden;
  8185. }
  8186. #u23061 {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:0px;
  8192. height:0px;
  8193. }
  8194. #u23062_div {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:0px;
  8198. top:0px;
  8199. width:460px;
  8200. height:140px;
  8201. background:inherit;
  8202. background-color:rgba(51, 51, 51, 1);
  8203. border:none;
  8204. border-radius:5px;
  8205. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8206. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8207. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:12px;
  8212. color:#FFFFFF;
  8213. }
  8214. #u23062 {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:757px;
  8218. top:16px;
  8219. width:460px;
  8220. height:140px;
  8221. display:flex;
  8222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8223. font-weight:400;
  8224. font-style:normal;
  8225. font-size:12px;
  8226. color:#FFFFFF;
  8227. }
  8228. #u23062 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:2px 16px 2px 16px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u23062_text {
  8236. border-width:0px;
  8237. word-wrap:break-word;
  8238. text-transform:none;
  8239. visibility:hidden;
  8240. }
  8241. #u23063_div {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:416px;
  8247. height:119px;
  8248. background:inherit;
  8249. background-color:rgba(255, 255, 255, 0);
  8250. border:none;
  8251. border-radius:0px;
  8252. -moz-box-shadow:none;
  8253. -webkit-box-shadow:none;
  8254. box-shadow:none;
  8255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8256. font-weight:400;
  8257. font-style:normal;
  8258. font-size:12px;
  8259. color:#FFFFFF;
  8260. }
  8261. #u23063 {
  8262. border-width:0px;
  8263. position:absolute;
  8264. left:772px;
  8265. top:26px;
  8266. width:416px;
  8267. height:119px;
  8268. display:flex;
  8269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8270. font-weight:400;
  8271. font-style:normal;
  8272. font-size:12px;
  8273. color:#FFFFFF;
  8274. }
  8275. #u23063 .text {
  8276. position:absolute;
  8277. align-self:flex-start;
  8278. padding:0px 0px 0px 0px;
  8279. box-sizing:border-box;
  8280. width:100%;
  8281. }
  8282. #u23063_text {
  8283. border-width:0px;
  8284. white-space:nowrap;
  8285. text-transform:none;
  8286. }
  8287. #u23064_div {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:0px;
  8292. width:103px;
  8293. height:30px;
  8294. background:inherit;
  8295. background-color:rgba(255, 255, 255, 1);
  8296. box-sizing:border-box;
  8297. border-width:1px;
  8298. border-style:solid;
  8299. border-color:rgba(170, 170, 170, 1);
  8300. border-radius:4px;
  8301. -moz-box-shadow:none;
  8302. -webkit-box-shadow:none;
  8303. box-shadow:none;
  8304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8305. font-weight:400;
  8306. font-style:normal;
  8307. font-size:12px;
  8308. color:#555555;
  8309. }
  8310. #u23064 {
  8311. border-width:0px;
  8312. position:absolute;
  8313. left:1464px;
  8314. top:71px;
  8315. width:103px;
  8316. height:30px;
  8317. display:flex;
  8318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8319. font-weight:400;
  8320. font-style:normal;
  8321. font-size:12px;
  8322. color:#555555;
  8323. }
  8324. #u23064 .text {
  8325. position:absolute;
  8326. align-self:center;
  8327. padding:5px 15px 5px 15px;
  8328. box-sizing:border-box;
  8329. width:100%;
  8330. }
  8331. #u23064_text {
  8332. border-width:0px;
  8333. white-space:nowrap;
  8334. text-transform:none;
  8335. }
  8336. #u23065 {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:0px;
  8342. height:0px;
  8343. }
  8344. #u23066_div {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:580px;
  8350. height:283px;
  8351. background:inherit;
  8352. background-color:rgba(255, 255, 255, 1);
  8353. box-sizing:border-box;
  8354. border-width:1px;
  8355. border-style:solid;
  8356. border-color:rgba(204, 204, 204, 1);
  8357. border-radius:4px;
  8358. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8359. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8360. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8361. font-family:'Microsoft YaHei', sans-serif;
  8362. font-weight:400;
  8363. font-style:normal;
  8364. }
  8365. #u23066 {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:1623px;
  8369. top:71px;
  8370. width:580px;
  8371. height:283px;
  8372. display:flex;
  8373. font-family:'Microsoft YaHei', sans-serif;
  8374. font-weight:400;
  8375. font-style:normal;
  8376. }
  8377. #u23066 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:2px 2px 2px 2px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u23066_text {
  8385. border-width:0px;
  8386. word-wrap:break-word;
  8387. text-transform:none;
  8388. visibility:hidden;
  8389. }
  8390. #u23067_div {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:127px;
  8396. height:22px;
  8397. background:inherit;
  8398. background-color:rgba(255, 255, 255, 0);
  8399. border:none;
  8400. border-radius:0px;
  8401. -moz-box-shadow:none;
  8402. -webkit-box-shadow:none;
  8403. box-shadow:none;
  8404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8405. font-weight:400;
  8406. font-style:normal;
  8407. font-size:14px;
  8408. color:#666666;
  8409. line-height:22px;
  8410. }
  8411. #u23067 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:1652px;
  8415. top:138px;
  8416. width:127px;
  8417. height:22px;
  8418. display:flex;
  8419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8420. font-weight:400;
  8421. font-style:normal;
  8422. font-size:14px;
  8423. color:#666666;
  8424. line-height:22px;
  8425. }
  8426. #u23067 .text {
  8427. position:absolute;
  8428. align-self:flex-start;
  8429. padding:0px 0px 0px 0px;
  8430. box-sizing:border-box;
  8431. width:100%;
  8432. }
  8433. #u23067_text {
  8434. border-width:0px;
  8435. white-space:nowrap;
  8436. text-transform:none;
  8437. }
  8438. #u23068_div {
  8439. border-width:0px;
  8440. position:absolute;
  8441. left:0px;
  8442. top:0px;
  8443. width:469px;
  8444. height:21px;
  8445. background:inherit;
  8446. background-color:rgba(255, 255, 255, 0);
  8447. border:none;
  8448. border-radius:0px;
  8449. -moz-box-shadow:none;
  8450. -webkit-box-shadow:none;
  8451. box-shadow:none;
  8452. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8453. font-weight:650;
  8454. font-style:normal;
  8455. font-size:18px;
  8456. color:#000000;
  8457. line-height:22px;
  8458. }
  8459. #u23068 {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:1652px;
  8463. top:100px;
  8464. width:469px;
  8465. height:21px;
  8466. display:flex;
  8467. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8468. font-weight:650;
  8469. font-style:normal;
  8470. font-size:18px;
  8471. color:#000000;
  8472. line-height:22px;
  8473. }
  8474. #u23068 .text {
  8475. position:absolute;
  8476. align-self:flex-start;
  8477. padding:0px 0px 0px 0px;
  8478. box-sizing:border-box;
  8479. width:100%;
  8480. }
  8481. #u23068_text {
  8482. border-width:0px;
  8483. white-space:nowrap;
  8484. text-transform:none;
  8485. }
  8486. #u23069_div {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:0px;
  8490. top:0px;
  8491. width:61px;
  8492. height:30px;
  8493. background:inherit;
  8494. background-color:rgba(24, 144, 255, 1);
  8495. border:none;
  8496. border-radius:4px;
  8497. -moz-box-shadow:none;
  8498. -webkit-box-shadow:none;
  8499. box-shadow:none;
  8500. font-family:'Microsoft YaHei', sans-serif;
  8501. font-weight:400;
  8502. font-style:normal;
  8503. font-size:14px;
  8504. color:#FFFFFF;
  8505. }
  8506. #u23069 {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:2112px;
  8510. top:304px;
  8511. width:61px;
  8512. height:30px;
  8513. display:flex;
  8514. font-family:'Microsoft YaHei', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:14px;
  8518. color:#FFFFFF;
  8519. }
  8520. #u23069 .text {
  8521. position:absolute;
  8522. align-self:center;
  8523. padding:2px 16px 2px 16px;
  8524. box-sizing:border-box;
  8525. width:100%;
  8526. }
  8527. #u23069_text {
  8528. border-width:0px;
  8529. white-space:nowrap;
  8530. text-transform:none;
  8531. }
  8532. #u23070_div {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:0px;
  8536. top:0px;
  8537. width:66px;
  8538. height:30px;
  8539. background:inherit;
  8540. background-color:rgba(255, 255, 255, 1);
  8541. box-sizing:border-box;
  8542. border-width:1px;
  8543. border-style:solid;
  8544. border-color:rgba(217, 217, 217, 1);
  8545. border-radius:4px;
  8546. -moz-box-shadow:none;
  8547. -webkit-box-shadow:none;
  8548. box-shadow:none;
  8549. font-family:'Microsoft YaHei', sans-serif;
  8550. font-weight:400;
  8551. font-style:normal;
  8552. font-size:14px;
  8553. color:rgba(0, 0, 0, 0.647058823529412);
  8554. line-height:21px;
  8555. }
  8556. #u23070 {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:2030px;
  8560. top:304px;
  8561. width:66px;
  8562. height:30px;
  8563. display:flex;
  8564. font-family:'Microsoft YaHei', sans-serif;
  8565. font-weight:400;
  8566. font-style:normal;
  8567. font-size:14px;
  8568. color:rgba(0, 0, 0, 0.647058823529412);
  8569. line-height:21px;
  8570. }
  8571. #u23070 .text {
  8572. position:absolute;
  8573. align-self:center;
  8574. padding:2px 16px 2px 16px;
  8575. box-sizing:border-box;
  8576. width:100%;
  8577. }
  8578. #u23070_text {
  8579. border-width:0px;
  8580. white-space:nowrap;
  8581. text-transform:none;
  8582. }
  8583. #u23071_img {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:0px;
  8587. top:0px;
  8588. width:100px;
  8589. height:100px;
  8590. }
  8591. #u23071 {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:1652px;
  8595. top:180px;
  8596. width:100px;
  8597. height:100px;
  8598. display:flex;
  8599. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8600. font-style:normal;
  8601. color:#AAAAAA;
  8602. }
  8603. #u23071 .text {
  8604. position:absolute;
  8605. align-self:center;
  8606. padding:2px 2px 2px 2px;
  8607. box-sizing:border-box;
  8608. width:100%;
  8609. }
  8610. #u23071_text {
  8611. border-width:0px;
  8612. word-wrap:break-word;
  8613. text-transform:none;
  8614. }