styles.css 164 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2101px;
  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. #u27821_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. #u27821 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u27821 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u27821_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u27822_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. #u27822 {
  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. #u27822 .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. #u27822_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u27823_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. #u27823 {
  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. #u27823 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u27823_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u27824 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u27825_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u27825 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u27825 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u27825_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u27826_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. #u27826 {
  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. #u27826 .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. #u27826_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u27827_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. #u27827 {
  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. #u27827 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u27827_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u27828 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u27829_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. #u27829 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u27829 .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. #u27829_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u27830_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u27830 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u27830 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u27830_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u27831 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u27832_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. #u27832 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u27832 .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. #u27832_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u27833_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u27833 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u27833 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u27833_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u27834 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u27835_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u27835 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u27835 .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. #u27835_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u27836_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u27836 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u27836 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u27836_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u27837 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u27838_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u27838 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u27838 .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. #u27838_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u27839_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u27839 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u27839 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u27839_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u27840 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u27841_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. #u27841 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u27841 .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. #u27841_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u27842_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u27842 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u27842 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u27842_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u27843 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u27844_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. #u27844 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u27844 .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. #u27844_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u27845_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u27845 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u27845 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u27845_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u27846 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u27847_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. #u27847 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u27847 .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. #u27847_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u27848_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u27848 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u27848 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u27848_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u27849 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u27850_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. #u27850 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u27850 .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. #u27850_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u27851_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u27851 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u27851 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u27851_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u27852 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u27853_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u27853 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u27853 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u27853_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u27854_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u27854 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u27854 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u27854_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u27855_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u27855 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u27855 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u27855_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u27856_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u27856 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u27856 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u27856_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u27857_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u27857 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u27857 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u27857_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u27858_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u27858 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u27858 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u27858_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u27859 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u27860_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u27860 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u27860 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u27860_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u27861_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u27861 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u27861 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u27861_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u27862 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u27863_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u27863 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u27863 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u27863_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u27864_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u27864 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u27864 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u27864_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u27865 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u27866_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u27866_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u27866_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u27866 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u27866 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u27866_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u27866.disabled {
  1428. }
  1429. .u27866_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u27867_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u27867 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u27867 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u27867_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u27868_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u27868 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u27868 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u27868_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u27869_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u27869 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u27869 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u27869_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u27870_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:260px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u27870 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:260px;
  1560. display:flex;
  1561. }
  1562. #u27870 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u27870_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u27871_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:1260px;
  1581. height:910px;
  1582. background:inherit;
  1583. background-color:rgba(255, 255, 255, 1);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. }
  1590. #u27871 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:330px;
  1594. top:320px;
  1595. width:1260px;
  1596. height:910px;
  1597. display:flex;
  1598. }
  1599. #u27871 .text {
  1600. position:absolute;
  1601. align-self:center;
  1602. padding:2px 2px 2px 2px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u27871_text {
  1607. border-width:0px;
  1608. word-wrap:break-word;
  1609. text-transform:none;
  1610. visibility:hidden;
  1611. }
  1612. #u27872_div {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:239px;
  1618. height:50px;
  1619. background:inherit;
  1620. background-color:rgba(224, 231, 247, 0);
  1621. border:none;
  1622. border-radius:0px;
  1623. -moz-box-shadow:none;
  1624. -webkit-box-shadow:none;
  1625. box-shadow:none;
  1626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1627. font-weight:500;
  1628. font-style:normal;
  1629. font-size:18px;
  1630. }
  1631. #u27872 {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:350px;
  1635. top:50px;
  1636. width:239px;
  1637. height:50px;
  1638. display:flex;
  1639. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1640. font-weight:500;
  1641. font-style:normal;
  1642. font-size:18px;
  1643. }
  1644. #u27872 .text {
  1645. position:absolute;
  1646. align-self:center;
  1647. padding:0px 0px 0px 0px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u27872_text {
  1652. border-width:0px;
  1653. white-space:nowrap;
  1654. text-transform:none;
  1655. }
  1656. #u27873 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:350px;
  1660. top:583px;
  1661. width:1220px;
  1662. height:190px;
  1663. }
  1664. #u27874_img {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:111px;
  1670. height:38px;
  1671. }
  1672. #u27874 {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:111px;
  1678. height:38px;
  1679. display:flex;
  1680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1681. font-weight:400;
  1682. font-style:normal;
  1683. font-size:14px;
  1684. color:#FFFFFF;
  1685. line-height:30px;
  1686. }
  1687. #u27874 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:2px 0px 2px 0px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u27874_text {
  1695. border-width:0px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. }
  1699. #u27875_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:111px;
  1705. height:38px;
  1706. }
  1707. #u27875 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:111px;
  1711. top:0px;
  1712. width:111px;
  1713. height:38px;
  1714. display:flex;
  1715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1716. font-weight:400;
  1717. font-style:normal;
  1718. font-size:14px;
  1719. color:#FFFFFF;
  1720. line-height:30px;
  1721. }
  1722. #u27875 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 0px 2px 0px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u27875_text {
  1730. border-width:0px;
  1731. word-wrap:break-word;
  1732. text-transform:none;
  1733. }
  1734. #u27876_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:111px;
  1740. height:38px;
  1741. }
  1742. #u27876 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:222px;
  1746. top:0px;
  1747. width:111px;
  1748. height:38px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:14px;
  1754. color:#FFFFFF;
  1755. line-height:30px;
  1756. }
  1757. #u27876 .text {
  1758. position:absolute;
  1759. align-self:center;
  1760. padding:2px 0px 2px 0px;
  1761. box-sizing:border-box;
  1762. width:100%;
  1763. }
  1764. #u27876_text {
  1765. border-width:0px;
  1766. word-wrap:break-word;
  1767. text-transform:none;
  1768. }
  1769. #u27877_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:111px;
  1775. height:38px;
  1776. }
  1777. #u27877 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:333px;
  1781. top:0px;
  1782. width:111px;
  1783. height:38px;
  1784. display:flex;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. color:#FFFFFF;
  1790. line-height:30px;
  1791. }
  1792. #u27877 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 0px 2px 0px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u27877_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. }
  1804. #u27878_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:111px;
  1810. height:38px;
  1811. }
  1812. #u27878 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:444px;
  1816. top:0px;
  1817. width:111px;
  1818. height:38px;
  1819. display:flex;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. color:#FFFFFF;
  1825. line-height:30px;
  1826. }
  1827. #u27878 .text {
  1828. position:absolute;
  1829. align-self:center;
  1830. padding:2px 0px 2px 0px;
  1831. box-sizing:border-box;
  1832. width:100%;
  1833. }
  1834. #u27878_text {
  1835. border-width:0px;
  1836. word-wrap:break-word;
  1837. text-transform:none;
  1838. }
  1839. #u27879_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:111px;
  1845. height:38px;
  1846. }
  1847. #u27879 {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:555px;
  1851. top:0px;
  1852. width:111px;
  1853. height:38px;
  1854. display:flex;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:14px;
  1859. color:#FFFFFF;
  1860. line-height:30px;
  1861. }
  1862. #u27879 .text {
  1863. position:absolute;
  1864. align-self:center;
  1865. padding:2px 0px 2px 0px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u27879_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. }
  1874. #u27880_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:111px;
  1880. height:38px;
  1881. }
  1882. #u27880 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:666px;
  1886. top:0px;
  1887. width:111px;
  1888. height:38px;
  1889. display:flex;
  1890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:14px;
  1894. color:#FFFFFF;
  1895. line-height:30px;
  1896. }
  1897. #u27880 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 0px 2px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u27880_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u27881_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:111px;
  1915. height:38px;
  1916. }
  1917. #u27881 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:777px;
  1921. top:0px;
  1922. width:111px;
  1923. height:38px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:14px;
  1929. color:#FFFFFF;
  1930. line-height:30px;
  1931. }
  1932. #u27881 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 0px 2px 0px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u27881_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. }
  1944. #u27882_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:111px;
  1950. height:38px;
  1951. }
  1952. #u27882 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:888px;
  1956. top:0px;
  1957. width:111px;
  1958. height:38px;
  1959. display:flex;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:14px;
  1964. color:#FFFFFF;
  1965. line-height:30px;
  1966. }
  1967. #u27882 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 0px 2px 0px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u27882_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. }
  1979. #u27883_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:221px;
  1985. height:38px;
  1986. }
  1987. #u27883 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:999px;
  1991. top:0px;
  1992. width:221px;
  1993. height:38px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:14px;
  1999. color:#FFFFFF;
  2000. line-height:30px;
  2001. }
  2002. #u27883 .text {
  2003. position:absolute;
  2004. align-self:center;
  2005. padding:2px 0px 2px 0px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u27883_text {
  2010. border-width:0px;
  2011. word-wrap:break-word;
  2012. text-transform:none;
  2013. }
  2014. #u27884_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:111px;
  2020. height:38px;
  2021. }
  2022. #u27884 {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:38px;
  2027. width:111px;
  2028. height:38px;
  2029. display:flex;
  2030. font-size:14px;
  2031. line-height:30px;
  2032. }
  2033. #u27884 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 0px 2px 0px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u27884_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. visibility:hidden;
  2045. }
  2046. #u27885_img {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:111px;
  2052. height:38px;
  2053. }
  2054. #u27885 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:111px;
  2058. top:38px;
  2059. width:111px;
  2060. height:38px;
  2061. display:flex;
  2062. font-size:14px;
  2063. line-height:30px;
  2064. }
  2065. #u27885 .text {
  2066. position:absolute;
  2067. align-self:center;
  2068. padding:2px 0px 2px 0px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u27885_text {
  2073. border-width:0px;
  2074. word-wrap:break-word;
  2075. text-transform:none;
  2076. visibility:hidden;
  2077. }
  2078. #u27886_img {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:111px;
  2084. height:38px;
  2085. }
  2086. #u27886 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:222px;
  2090. top:38px;
  2091. width:111px;
  2092. height:38px;
  2093. display:flex;
  2094. font-size:14px;
  2095. line-height:30px;
  2096. }
  2097. #u27886 .text {
  2098. position:absolute;
  2099. align-self:center;
  2100. padding:2px 0px 2px 0px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u27886_text {
  2105. border-width:0px;
  2106. word-wrap:break-word;
  2107. text-transform:none;
  2108. visibility:hidden;
  2109. }
  2110. #u27887_img {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:111px;
  2116. height:38px;
  2117. }
  2118. #u27887 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:333px;
  2122. top:38px;
  2123. width:111px;
  2124. height:38px;
  2125. display:flex;
  2126. font-size:14px;
  2127. line-height:30px;
  2128. }
  2129. #u27887 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 0px 2px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u27887_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u27888_img {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:111px;
  2148. height:38px;
  2149. }
  2150. #u27888 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:444px;
  2154. top:38px;
  2155. width:111px;
  2156. height:38px;
  2157. display:flex;
  2158. font-size:14px;
  2159. line-height:30px;
  2160. }
  2161. #u27888 .text {
  2162. position:absolute;
  2163. align-self:center;
  2164. padding:2px 0px 2px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u27888_text {
  2169. border-width:0px;
  2170. word-wrap:break-word;
  2171. text-transform:none;
  2172. visibility:hidden;
  2173. }
  2174. #u27889_img {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:111px;
  2180. height:38px;
  2181. }
  2182. #u27889 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:555px;
  2186. top:38px;
  2187. width:111px;
  2188. height:38px;
  2189. display:flex;
  2190. font-size:14px;
  2191. line-height:30px;
  2192. }
  2193. #u27889 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 0px 2px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u27889_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. visibility:hidden;
  2205. }
  2206. #u27890_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:111px;
  2212. height:38px;
  2213. }
  2214. #u27890 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:666px;
  2218. top:38px;
  2219. width:111px;
  2220. height:38px;
  2221. display:flex;
  2222. font-size:14px;
  2223. line-height:30px;
  2224. }
  2225. #u27890 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 0px 2px 0px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u27890_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. visibility:hidden;
  2237. }
  2238. #u27891_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:111px;
  2244. height:38px;
  2245. }
  2246. #u27891 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:777px;
  2250. top:38px;
  2251. width:111px;
  2252. height:38px;
  2253. display:flex;
  2254. font-size:14px;
  2255. line-height:30px;
  2256. }
  2257. #u27891 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 0px 2px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u27891_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. visibility:hidden;
  2269. }
  2270. #u27892_img {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:111px;
  2276. height:38px;
  2277. }
  2278. #u27892 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:888px;
  2282. top:38px;
  2283. width:111px;
  2284. height:38px;
  2285. display:flex;
  2286. font-size:14px;
  2287. line-height:30px;
  2288. }
  2289. #u27892 .text {
  2290. position:absolute;
  2291. align-self:center;
  2292. padding:2px 0px 2px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u27892_text {
  2297. border-width:0px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. visibility:hidden;
  2301. }
  2302. #u27893_img {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:221px;
  2308. height:38px;
  2309. }
  2310. #u27893 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:999px;
  2314. top:38px;
  2315. width:221px;
  2316. height:38px;
  2317. display:flex;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:14px;
  2322. color:#298FFF;
  2323. line-height:30px;
  2324. }
  2325. #u27893 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 0px 2px 0px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u27893_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. }
  2337. #u27894_img {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:111px;
  2343. height:38px;
  2344. }
  2345. #u27894 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:76px;
  2350. width:111px;
  2351. height:38px;
  2352. display:flex;
  2353. font-size:14px;
  2354. line-height:30px;
  2355. }
  2356. #u27894 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 0px 2px 0px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u27894_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. visibility:hidden;
  2368. }
  2369. #u27895_img {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:111px;
  2375. height:38px;
  2376. }
  2377. #u27895 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:111px;
  2381. top:76px;
  2382. width:111px;
  2383. height:38px;
  2384. display:flex;
  2385. font-size:14px;
  2386. line-height:30px;
  2387. }
  2388. #u27895 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 0px 2px 0px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u27895_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u27896_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:111px;
  2407. height:38px;
  2408. }
  2409. #u27896 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:222px;
  2413. top:76px;
  2414. width:111px;
  2415. height:38px;
  2416. display:flex;
  2417. font-size:14px;
  2418. line-height:30px;
  2419. }
  2420. #u27896 .text {
  2421. position:absolute;
  2422. align-self:center;
  2423. padding:2px 0px 2px 0px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u27896_text {
  2428. border-width:0px;
  2429. word-wrap:break-word;
  2430. text-transform:none;
  2431. visibility:hidden;
  2432. }
  2433. #u27897_img {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:111px;
  2439. height:38px;
  2440. }
  2441. #u27897 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:333px;
  2445. top:76px;
  2446. width:111px;
  2447. height:38px;
  2448. display:flex;
  2449. font-size:14px;
  2450. line-height:30px;
  2451. }
  2452. #u27897 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:2px 0px 2px 0px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u27897_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. visibility:hidden;
  2464. }
  2465. #u27898_img {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:111px;
  2471. height:38px;
  2472. }
  2473. #u27898 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:444px;
  2477. top:76px;
  2478. width:111px;
  2479. height:38px;
  2480. display:flex;
  2481. font-size:14px;
  2482. line-height:30px;
  2483. }
  2484. #u27898 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 0px 2px 0px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u27898_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. visibility:hidden;
  2496. }
  2497. #u27899_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:111px;
  2503. height:38px;
  2504. }
  2505. #u27899 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:555px;
  2509. top:76px;
  2510. width:111px;
  2511. height:38px;
  2512. display:flex;
  2513. font-size:14px;
  2514. line-height:30px;
  2515. }
  2516. #u27899 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:2px 0px 2px 0px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u27899_text {
  2524. border-width:0px;
  2525. word-wrap:break-word;
  2526. text-transform:none;
  2527. visibility:hidden;
  2528. }
  2529. #u27900_img {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:111px;
  2535. height:38px;
  2536. }
  2537. #u27900 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:666px;
  2541. top:76px;
  2542. width:111px;
  2543. height:38px;
  2544. display:flex;
  2545. font-size:14px;
  2546. line-height:30px;
  2547. }
  2548. #u27900 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 0px 2px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u27900_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u27901_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:111px;
  2567. height:38px;
  2568. }
  2569. #u27901 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:777px;
  2573. top:76px;
  2574. width:111px;
  2575. height:38px;
  2576. display:flex;
  2577. font-size:14px;
  2578. line-height:30px;
  2579. }
  2580. #u27901 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 0px 2px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u27901_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u27902_img {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:111px;
  2599. height:38px;
  2600. }
  2601. #u27902 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:888px;
  2605. top:76px;
  2606. width:111px;
  2607. height:38px;
  2608. display:flex;
  2609. font-size:14px;
  2610. line-height:30px;
  2611. }
  2612. #u27902 .text {
  2613. position:absolute;
  2614. align-self:center;
  2615. padding:2px 0px 2px 0px;
  2616. box-sizing:border-box;
  2617. width:100%;
  2618. }
  2619. #u27902_text {
  2620. border-width:0px;
  2621. word-wrap:break-word;
  2622. text-transform:none;
  2623. visibility:hidden;
  2624. }
  2625. #u27903_img {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:221px;
  2631. height:38px;
  2632. }
  2633. #u27903 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:999px;
  2637. top:76px;
  2638. width:221px;
  2639. height:38px;
  2640. display:flex;
  2641. font-size:14px;
  2642. line-height:30px;
  2643. }
  2644. #u27903 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 0px 2px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u27903_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. visibility:hidden;
  2656. }
  2657. #u27904_img {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:111px;
  2663. height:38px;
  2664. }
  2665. #u27904 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:114px;
  2670. width:111px;
  2671. height:38px;
  2672. display:flex;
  2673. font-size:14px;
  2674. line-height:30px;
  2675. }
  2676. #u27904 .text {
  2677. position:absolute;
  2678. align-self:center;
  2679. padding:2px 0px 2px 0px;
  2680. box-sizing:border-box;
  2681. width:100%;
  2682. }
  2683. #u27904_text {
  2684. border-width:0px;
  2685. word-wrap:break-word;
  2686. text-transform:none;
  2687. visibility:hidden;
  2688. }
  2689. #u27905_img {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:111px;
  2695. height:38px;
  2696. }
  2697. #u27905 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:111px;
  2701. top:114px;
  2702. width:111px;
  2703. height:38px;
  2704. display:flex;
  2705. font-size:14px;
  2706. line-height:30px;
  2707. }
  2708. #u27905 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 0px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u27905_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u27906_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:111px;
  2727. height:38px;
  2728. }
  2729. #u27906 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:222px;
  2733. top:114px;
  2734. width:111px;
  2735. height:38px;
  2736. display:flex;
  2737. font-size:14px;
  2738. line-height:30px;
  2739. }
  2740. #u27906 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 0px 2px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u27906_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. visibility:hidden;
  2752. }
  2753. #u27907_img {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:111px;
  2759. height:38px;
  2760. }
  2761. #u27907 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:333px;
  2765. top:114px;
  2766. width:111px;
  2767. height:38px;
  2768. display:flex;
  2769. font-size:14px;
  2770. line-height:30px;
  2771. }
  2772. #u27907 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 0px 2px 0px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u27907_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u27908_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:111px;
  2791. height:38px;
  2792. }
  2793. #u27908 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:444px;
  2797. top:114px;
  2798. width:111px;
  2799. height:38px;
  2800. display:flex;
  2801. font-size:14px;
  2802. line-height:30px;
  2803. }
  2804. #u27908 .text {
  2805. position:absolute;
  2806. align-self:center;
  2807. padding:2px 0px 2px 0px;
  2808. box-sizing:border-box;
  2809. width:100%;
  2810. }
  2811. #u27908_text {
  2812. border-width:0px;
  2813. word-wrap:break-word;
  2814. text-transform:none;
  2815. visibility:hidden;
  2816. }
  2817. #u27909_img {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:111px;
  2823. height:38px;
  2824. }
  2825. #u27909 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:555px;
  2829. top:114px;
  2830. width:111px;
  2831. height:38px;
  2832. display:flex;
  2833. font-size:14px;
  2834. line-height:30px;
  2835. }
  2836. #u27909 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:2px 0px 2px 0px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u27909_text {
  2844. border-width:0px;
  2845. word-wrap:break-word;
  2846. text-transform:none;
  2847. visibility:hidden;
  2848. }
  2849. #u27910_img {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:111px;
  2855. height:38px;
  2856. }
  2857. #u27910 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:666px;
  2861. top:114px;
  2862. width:111px;
  2863. height:38px;
  2864. display:flex;
  2865. font-size:14px;
  2866. line-height:30px;
  2867. }
  2868. #u27910 .text {
  2869. position:absolute;
  2870. align-self:center;
  2871. padding:2px 0px 2px 0px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u27910_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. visibility:hidden;
  2880. }
  2881. #u27911_img {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:111px;
  2887. height:38px;
  2888. }
  2889. #u27911 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:777px;
  2893. top:114px;
  2894. width:111px;
  2895. height:38px;
  2896. display:flex;
  2897. font-size:14px;
  2898. line-height:30px;
  2899. }
  2900. #u27911 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 0px 2px 0px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u27911_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. visibility:hidden;
  2912. }
  2913. #u27912_img {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:111px;
  2919. height:38px;
  2920. }
  2921. #u27912 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:888px;
  2925. top:114px;
  2926. width:111px;
  2927. height:38px;
  2928. display:flex;
  2929. font-size:14px;
  2930. line-height:30px;
  2931. }
  2932. #u27912 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:2px 0px 2px 0px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u27912_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. visibility:hidden;
  2944. }
  2945. #u27913_img {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:221px;
  2951. height:38px;
  2952. }
  2953. #u27913 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:999px;
  2957. top:114px;
  2958. width:221px;
  2959. height:38px;
  2960. display:flex;
  2961. font-size:14px;
  2962. line-height:30px;
  2963. }
  2964. #u27913 .text {
  2965. position:absolute;
  2966. align-self:center;
  2967. padding:2px 0px 2px 0px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u27913_text {
  2972. border-width:0px;
  2973. word-wrap:break-word;
  2974. text-transform:none;
  2975. visibility:hidden;
  2976. }
  2977. #u27914_img {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:111px;
  2983. height:38px;
  2984. }
  2985. #u27914 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:152px;
  2990. width:111px;
  2991. height:38px;
  2992. display:flex;
  2993. font-size:14px;
  2994. line-height:30px;
  2995. }
  2996. #u27914 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:2px 0px 2px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u27914_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. visibility:hidden;
  3008. }
  3009. #u27915_img {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:111px;
  3015. height:38px;
  3016. }
  3017. #u27915 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:111px;
  3021. top:152px;
  3022. width:111px;
  3023. height:38px;
  3024. display:flex;
  3025. font-size:14px;
  3026. line-height:30px;
  3027. }
  3028. #u27915 .text {
  3029. position:absolute;
  3030. align-self:center;
  3031. padding:2px 0px 2px 0px;
  3032. box-sizing:border-box;
  3033. width:100%;
  3034. }
  3035. #u27915_text {
  3036. border-width:0px;
  3037. word-wrap:break-word;
  3038. text-transform:none;
  3039. visibility:hidden;
  3040. }
  3041. #u27916_img {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:111px;
  3047. height:38px;
  3048. }
  3049. #u27916 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:222px;
  3053. top:152px;
  3054. width:111px;
  3055. height:38px;
  3056. display:flex;
  3057. font-size:14px;
  3058. line-height:30px;
  3059. }
  3060. #u27916 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 0px 2px 0px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u27916_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u27917_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:111px;
  3079. height:38px;
  3080. }
  3081. #u27917 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:333px;
  3085. top:152px;
  3086. width:111px;
  3087. height:38px;
  3088. display:flex;
  3089. font-size:14px;
  3090. line-height:30px;
  3091. }
  3092. #u27917 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 0px 2px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u27917_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u27918_img {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:111px;
  3111. height:38px;
  3112. }
  3113. #u27918 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:444px;
  3117. top:152px;
  3118. width:111px;
  3119. height:38px;
  3120. display:flex;
  3121. font-size:14px;
  3122. line-height:30px;
  3123. }
  3124. #u27918 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 0px 2px 0px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u27918_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. visibility:hidden;
  3136. }
  3137. #u27919_img {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:111px;
  3143. height:38px;
  3144. }
  3145. #u27919 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:555px;
  3149. top:152px;
  3150. width:111px;
  3151. height:38px;
  3152. display:flex;
  3153. font-size:14px;
  3154. line-height:30px;
  3155. }
  3156. #u27919 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 0px 2px 0px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u27919_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u27920_img {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:111px;
  3175. height:38px;
  3176. }
  3177. #u27920 {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:666px;
  3181. top:152px;
  3182. width:111px;
  3183. height:38px;
  3184. display:flex;
  3185. font-size:14px;
  3186. line-height:30px;
  3187. }
  3188. #u27920 .text {
  3189. position:absolute;
  3190. align-self:center;
  3191. padding:2px 0px 2px 0px;
  3192. box-sizing:border-box;
  3193. width:100%;
  3194. }
  3195. #u27920_text {
  3196. border-width:0px;
  3197. word-wrap:break-word;
  3198. text-transform:none;
  3199. visibility:hidden;
  3200. }
  3201. #u27921_img {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:0px;
  3206. width:111px;
  3207. height:38px;
  3208. }
  3209. #u27921 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:777px;
  3213. top:152px;
  3214. width:111px;
  3215. height:38px;
  3216. display:flex;
  3217. font-size:14px;
  3218. line-height:30px;
  3219. }
  3220. #u27921 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 0px 2px 0px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u27921_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u27922_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:111px;
  3239. height:38px;
  3240. }
  3241. #u27922 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:888px;
  3245. top:152px;
  3246. width:111px;
  3247. height:38px;
  3248. display:flex;
  3249. font-size:14px;
  3250. line-height:30px;
  3251. }
  3252. #u27922 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 0px 2px 0px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u27922_text {
  3260. border-width:0px;
  3261. word-wrap:break-word;
  3262. text-transform:none;
  3263. visibility:hidden;
  3264. }
  3265. #u27923_img {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:221px;
  3271. height:38px;
  3272. }
  3273. #u27923 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:999px;
  3277. top:152px;
  3278. width:221px;
  3279. height:38px;
  3280. display:flex;
  3281. font-size:14px;
  3282. line-height:30px;
  3283. }
  3284. #u27923 .text {
  3285. position:absolute;
  3286. align-self:center;
  3287. padding:2px 0px 2px 0px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u27923_text {
  3292. border-width:0px;
  3293. word-wrap:break-word;
  3294. text-transform:none;
  3295. visibility:hidden;
  3296. }
  3297. #u27924 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:0px;
  3303. height:0px;
  3304. }
  3305. #u27925_div {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:61px;
  3311. height:32px;
  3312. background:inherit;
  3313. background-color:rgba(24, 144, 255, 1);
  3314. border:none;
  3315. border-radius:4px;
  3316. -moz-box-shadow:none;
  3317. -webkit-box-shadow:none;
  3318. box-shadow:none;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:14px;
  3323. color:#FFFFFF;
  3324. }
  3325. #u27925 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:800px;
  3329. top:500px;
  3330. width:61px;
  3331. height:32px;
  3332. display:flex;
  3333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3334. font-weight:400;
  3335. font-style:normal;
  3336. font-size:14px;
  3337. color:#FFFFFF;
  3338. }
  3339. #u27925 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 16px 2px 16px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u27925_text {
  3347. border-width:0px;
  3348. white-space:nowrap;
  3349. text-transform:none;
  3350. }
  3351. #u27926_div {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:61px;
  3357. height:32px;
  3358. background:inherit;
  3359. background-color:rgba(255, 255, 255, 1);
  3360. box-sizing:border-box;
  3361. border-width:1px;
  3362. border-style:solid;
  3363. border-color:rgba(217, 217, 217, 1);
  3364. border-radius:4px;
  3365. -moz-box-shadow:none;
  3366. -webkit-box-shadow:none;
  3367. box-shadow:none;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:14px;
  3372. color:rgba(0, 0, 0, 0.647058823529412);
  3373. line-height:21px;
  3374. }
  3375. #u27926 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:871px;
  3379. top:500px;
  3380. width:61px;
  3381. height:32px;
  3382. display:flex;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:14px;
  3387. color:rgba(0, 0, 0, 0.647058823529412);
  3388. line-height:21px;
  3389. }
  3390. #u27926 .text {
  3391. position:absolute;
  3392. align-self:center;
  3393. padding:2px 16px 2px 16px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u27926_text {
  3398. border-width:0px;
  3399. white-space:nowrap;
  3400. text-transform:none;
  3401. }
  3402. #u27927 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:0px;
  3408. height:0px;
  3409. }
  3410. #u27928_div {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:140px;
  3416. height:30px;
  3417. background:inherit;
  3418. background-color:rgba(255, 255, 255, 1);
  3419. box-sizing:border-box;
  3420. border-width:1px;
  3421. border-style:solid;
  3422. border-color:rgba(215, 215, 215, 1);
  3423. border-radius:4px;
  3424. -moz-box-shadow:none;
  3425. -webkit-box-shadow:none;
  3426. box-shadow:none;
  3427. font-size:14px;
  3428. }
  3429. #u27928 {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:350px;
  3433. top:501px;
  3434. width:140px;
  3435. height:30px;
  3436. display:flex;
  3437. font-size:14px;
  3438. }
  3439. #u27928 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 2px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u27928_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u27929_input {
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:134px;
  3457. height:23px;
  3458. padding:2px 2px 2px 2px;
  3459. font-family:'ArialMT', 'Arial', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:14px;
  3463. letter-spacing:normal;
  3464. color:#AAAAAA;
  3465. vertical-align:none;
  3466. text-align:left;
  3467. text-transform:none;
  3468. background-color:transparent;
  3469. border-color:transparent;
  3470. }
  3471. #u27929_input.disabled {
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:134px;
  3476. height:23px;
  3477. padding:2px 2px 2px 2px;
  3478. font-family:'ArialMT', 'Arial', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:14px;
  3482. letter-spacing:normal;
  3483. color:#AAAAAA;
  3484. vertical-align:none;
  3485. text-align:left;
  3486. text-transform:none;
  3487. background-color:transparent;
  3488. border-color:transparent;
  3489. }
  3490. #u27929_div {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:134px;
  3496. height:23px;
  3497. background:inherit;
  3498. background-color:rgba(255, 255, 255, 1);
  3499. border:none;
  3500. border-radius:0px;
  3501. -moz-box-shadow:none;
  3502. -webkit-box-shadow:none;
  3503. box-shadow:none;
  3504. font-size:14px;
  3505. color:#AAAAAA;
  3506. }
  3507. #u27929 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:354px;
  3511. top:503px;
  3512. width:134px;
  3513. height:23px;
  3514. display:flex;
  3515. font-size:14px;
  3516. color:#AAAAAA;
  3517. }
  3518. #u27929 .text {
  3519. position:absolute;
  3520. align-self:flex-start;
  3521. padding:2px 2px 2px 2px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u27929_div.disabled {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:134px;
  3531. height:23px;
  3532. background:inherit;
  3533. background-color:rgba(240, 240, 240, 1);
  3534. border:none;
  3535. border-radius:0px;
  3536. -moz-box-shadow:none;
  3537. -webkit-box-shadow:none;
  3538. box-shadow:none;
  3539. font-size:14px;
  3540. color:#AAAAAA;
  3541. }
  3542. #u27929.disabled {
  3543. }
  3544. .u27929_input_option {
  3545. font-size:14px;
  3546. }
  3547. #u27930_div {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:1220px;
  3553. height:180px;
  3554. background:inherit;
  3555. background-color:rgba(255, 255, 255, 1);
  3556. box-sizing:border-box;
  3557. border-width:1px;
  3558. border-style:solid;
  3559. border-color:rgba(217, 217, 217, 1);
  3560. border-radius:4px;
  3561. -moz-box-shadow:none;
  3562. -webkit-box-shadow:none;
  3563. box-shadow:none;
  3564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3565. font-weight:400;
  3566. font-style:normal;
  3567. font-size:14px;
  3568. color:rgba(0, 0, 0, 0.647058823529412);
  3569. line-height:21px;
  3570. }
  3571. #u27930 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:350px;
  3575. top:110px;
  3576. width:1220px;
  3577. height:180px;
  3578. display:flex;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:14px;
  3583. color:rgba(0, 0, 0, 0.647058823529412);
  3584. line-height:21px;
  3585. }
  3586. #u27930 .text {
  3587. position:absolute;
  3588. align-self:center;
  3589. padding:2px 16px 2px 16px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u27930_text {
  3594. border-width:0px;
  3595. word-wrap:break-word;
  3596. text-transform:none;
  3597. visibility:hidden;
  3598. }
  3599. #u27931 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:0px;
  3605. height:0px;
  3606. }
  3607. #u27932_div {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:140px;
  3613. height:30px;
  3614. background:inherit;
  3615. background-color:rgba(255, 255, 255, 1);
  3616. box-sizing:border-box;
  3617. border-width:1px;
  3618. border-style:solid;
  3619. border-color:rgba(201, 201, 201, 1);
  3620. border-radius:4px;
  3621. -moz-box-shadow:none;
  3622. -webkit-box-shadow:none;
  3623. box-shadow:none;
  3624. font-family:'Microsoft YaHei', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:14px;
  3628. color:#CCCCCC;
  3629. text-align:left;
  3630. }
  3631. #u27932 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:500px;
  3635. top:500px;
  3636. width:140px;
  3637. height:30px;
  3638. display:flex;
  3639. font-family:'Microsoft YaHei', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:14px;
  3643. color:#CCCCCC;
  3644. text-align:left;
  3645. }
  3646. #u27932 .text {
  3647. position:absolute;
  3648. align-self:center;
  3649. padding:2px 8px 2px 8px;
  3650. box-sizing:border-box;
  3651. width:100%;
  3652. }
  3653. #u27932_text {
  3654. border-width:0px;
  3655. word-wrap:break-word;
  3656. text-transform:none;
  3657. visibility:hidden;
  3658. }
  3659. #u27933_input {
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:130px;
  3664. height:25px;
  3665. padding:2px 2px 2px 2px;
  3666. font-family:'Microsoft YaHei', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:13px;
  3670. letter-spacing:normal;
  3671. color:#000000;
  3672. vertical-align:none;
  3673. text-align:left;
  3674. text-transform:none;
  3675. background-color:transparent;
  3676. border-color:transparent;
  3677. }
  3678. #u27933_input.disabled {
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:130px;
  3683. height:25px;
  3684. padding:2px 2px 2px 2px;
  3685. font-family:'Microsoft YaHei', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:13px;
  3689. letter-spacing:normal;
  3690. color:#000000;
  3691. vertical-align:none;
  3692. text-align:left;
  3693. text-transform:none;
  3694. background-color:transparent;
  3695. border-color:transparent;
  3696. }
  3697. #u27933_div {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:130px;
  3703. height:25px;
  3704. background:inherit;
  3705. background-color:rgba(255, 255, 255, 1);
  3706. border:none;
  3707. border-radius:0px;
  3708. -moz-box-shadow:none;
  3709. -webkit-box-shadow:none;
  3710. box-shadow:none;
  3711. font-family:'Microsoft YaHei', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. }
  3715. #u27933 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:505px;
  3719. top:501px;
  3720. width:130px;
  3721. height:25px;
  3722. display:flex;
  3723. font-family:'Microsoft YaHei', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. }
  3727. #u27933 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u27933_div.disabled {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:130px;
  3740. height:25px;
  3741. background:inherit;
  3742. background-color:rgba(240, 240, 240, 1);
  3743. border:none;
  3744. border-radius:0px;
  3745. -moz-box-shadow:none;
  3746. -webkit-box-shadow:none;
  3747. box-shadow:none;
  3748. font-family:'Microsoft YaHei', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. }
  3752. #u27933.disabled {
  3753. }
  3754. #u27934 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:0px;
  3760. height:0px;
  3761. }
  3762. #u27935_div {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:140px;
  3768. height:30px;
  3769. background:inherit;
  3770. background-color:rgba(255, 255, 255, 1);
  3771. box-sizing:border-box;
  3772. border-width:1px;
  3773. border-style:solid;
  3774. border-color:rgba(215, 215, 215, 1);
  3775. border-radius:4px;
  3776. -moz-box-shadow:none;
  3777. -webkit-box-shadow:none;
  3778. box-shadow:none;
  3779. font-size:14px;
  3780. }
  3781. #u27935 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:650px;
  3785. top:500px;
  3786. width:140px;
  3787. height:30px;
  3788. display:flex;
  3789. font-size:14px;
  3790. }
  3791. #u27935 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 2px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u27935_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u27936_input {
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:134px;
  3809. height:23px;
  3810. padding:2px 2px 2px 2px;
  3811. font-family:'ArialMT', 'Arial', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:14px;
  3815. letter-spacing:normal;
  3816. color:#AAAAAA;
  3817. vertical-align:none;
  3818. text-align:left;
  3819. text-transform:none;
  3820. background-color:transparent;
  3821. border-color:transparent;
  3822. }
  3823. #u27936_input.disabled {
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:134px;
  3828. height:23px;
  3829. padding:2px 2px 2px 2px;
  3830. font-family:'ArialMT', 'Arial', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:14px;
  3834. letter-spacing:normal;
  3835. color:#AAAAAA;
  3836. vertical-align:none;
  3837. text-align:left;
  3838. text-transform:none;
  3839. background-color:transparent;
  3840. border-color:transparent;
  3841. }
  3842. #u27936_div {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:134px;
  3848. height:23px;
  3849. background:inherit;
  3850. background-color:rgba(255, 255, 255, 1);
  3851. border:none;
  3852. border-radius:0px;
  3853. -moz-box-shadow:none;
  3854. -webkit-box-shadow:none;
  3855. box-shadow:none;
  3856. font-size:14px;
  3857. color:#AAAAAA;
  3858. }
  3859. #u27936 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:654px;
  3863. top:502px;
  3864. width:134px;
  3865. height:23px;
  3866. display:flex;
  3867. font-size:14px;
  3868. color:#AAAAAA;
  3869. }
  3870. #u27936 .text {
  3871. position:absolute;
  3872. align-self:flex-start;
  3873. padding:2px 2px 2px 2px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u27936_div.disabled {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:0px;
  3881. top:0px;
  3882. width:134px;
  3883. height:23px;
  3884. background:inherit;
  3885. background-color:rgba(240, 240, 240, 1);
  3886. border:none;
  3887. border-radius:0px;
  3888. -moz-box-shadow:none;
  3889. -webkit-box-shadow:none;
  3890. box-shadow:none;
  3891. font-size:14px;
  3892. color:#AAAAAA;
  3893. }
  3894. #u27936.disabled {
  3895. }
  3896. .u27936_input_option {
  3897. font-size:14px;
  3898. }
  3899. #u27937_div {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:580px;
  3905. height:30px;
  3906. background:inherit;
  3907. background-color:rgba(224, 231, 247, 0);
  3908. border:none;
  3909. border-radius:0px;
  3910. -moz-box-shadow:none;
  3911. -webkit-box-shadow:none;
  3912. box-shadow:none;
  3913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3914. font-weight:400;
  3915. font-style:normal;
  3916. line-height:30px;
  3917. }
  3918. #u27937 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:370px;
  3922. top:120px;
  3923. width:580px;
  3924. height:30px;
  3925. display:flex;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. line-height:30px;
  3930. }
  3931. #u27937 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:0px 0px 0px 0px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u27937_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. }
  3943. #u27938_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:30px;
  3949. height:30px;
  3950. }
  3951. #u27938 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:380px;
  3955. top:160px;
  3956. width:30px;
  3957. height:30px;
  3958. display:flex;
  3959. font-size:18px;
  3960. color:#FFFFFF;
  3961. }
  3962. #u27938 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:2px 2px 2px 2px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u27938_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. }
  3974. #u27939_div {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:109px;
  3980. height:25px;
  3981. background:inherit;
  3982. background-color:rgba(224, 231, 247, 0);
  3983. border:none;
  3984. border-radius:0px;
  3985. -moz-box-shadow:none;
  3986. -webkit-box-shadow:none;
  3987. box-shadow:none;
  3988. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3989. font-weight:500;
  3990. font-style:normal;
  3991. font-size:18px;
  3992. }
  3993. #u27939 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:420px;
  3997. top:163px;
  3998. width:109px;
  3999. height:25px;
  4000. display:flex;
  4001. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4002. font-weight:500;
  4003. font-style:normal;
  4004. font-size:18px;
  4005. }
  4006. #u27939 .text {
  4007. position:absolute;
  4008. align-self:center;
  4009. padding:0px 0px 0px 0px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u27939_text {
  4014. border-width:0px;
  4015. white-space:nowrap;
  4016. text-transform:none;
  4017. }
  4018. #u27940 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:0px;
  4024. height:0px;
  4025. }
  4026. #u27941_div {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:49px;
  4032. height:30px;
  4033. background:inherit;
  4034. background-color:rgba(224, 231, 247, 0);
  4035. border:none;
  4036. border-radius:0px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. font-size:12px;
  4044. line-height:30px;
  4045. }
  4046. #u27941 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:1238px;
  4050. top:60px;
  4051. width:49px;
  4052. height:30px;
  4053. display:flex;
  4054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4055. font-weight:400;
  4056. font-style:normal;
  4057. font-size:12px;
  4058. line-height:30px;
  4059. }
  4060. #u27941 .text {
  4061. position:absolute;
  4062. align-self:center;
  4063. padding:0px 0px 0px 0px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u27941_text {
  4068. border-width:0px;
  4069. white-space:nowrap;
  4070. text-transform:none;
  4071. }
  4072. #u27942_img {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:17px;
  4078. height:17px;
  4079. }
  4080. #u27942 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:1216px;
  4084. top:66px;
  4085. width:17px;
  4086. height:17px;
  4087. display:flex;
  4088. font-size:8px;
  4089. color:#FFFFFF;
  4090. }
  4091. #u27942 .text {
  4092. position:absolute;
  4093. align-self:center;
  4094. padding:2px 2px 2px 2px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u27942_text {
  4099. border-width:0px;
  4100. word-wrap:break-word;
  4101. text-transform:none;
  4102. }
  4103. #u27943 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:0px;
  4109. height:0px;
  4110. }
  4111. #u27944_div {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:0px;
  4115. top:0px;
  4116. width:49px;
  4117. height:30px;
  4118. background:inherit;
  4119. background-color:rgba(224, 231, 247, 0);
  4120. border:none;
  4121. border-radius:0px;
  4122. -moz-box-shadow:none;
  4123. -webkit-box-shadow:none;
  4124. box-shadow:none;
  4125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. line-height:30px;
  4130. }
  4131. #u27944 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:1334px;
  4135. top:60px;
  4136. width:49px;
  4137. height:30px;
  4138. display:flex;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:12px;
  4143. line-height:30px;
  4144. }
  4145. #u27944 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:0px 0px 0px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u27944_text {
  4153. border-width:0px;
  4154. white-space:nowrap;
  4155. text-transform:none;
  4156. }
  4157. #u27945_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:17px;
  4163. height:17px;
  4164. }
  4165. #u27945 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:1312px;
  4169. top:66px;
  4170. width:17px;
  4171. height:17px;
  4172. display:flex;
  4173. font-size:8px;
  4174. color:#FFFFFF;
  4175. }
  4176. #u27945 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 2px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u27945_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. }
  4188. #u27946 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:0px;
  4194. height:0px;
  4195. }
  4196. #u27947_div {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:37px;
  4202. height:30px;
  4203. background:inherit;
  4204. background-color:rgba(224, 231, 247, 0);
  4205. border:none;
  4206. border-radius:0px;
  4207. -moz-box-shadow:none;
  4208. -webkit-box-shadow:none;
  4209. box-shadow:none;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:12px;
  4214. line-height:30px;
  4215. }
  4216. #u27947 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:1431px;
  4220. top:60px;
  4221. width:37px;
  4222. height:30px;
  4223. display:flex;
  4224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4225. font-weight:400;
  4226. font-style:normal;
  4227. font-size:12px;
  4228. line-height:30px;
  4229. }
  4230. #u27947 .text {
  4231. position:absolute;
  4232. align-self:center;
  4233. padding:0px 0px 0px 0px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u27947_text {
  4238. border-width:0px;
  4239. white-space:nowrap;
  4240. text-transform:none;
  4241. }
  4242. #u27948_img {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:17px;
  4248. height:17px;
  4249. }
  4250. #u27948 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:1409px;
  4254. top:66px;
  4255. width:17px;
  4256. height:17px;
  4257. display:flex;
  4258. font-size:8px;
  4259. color:#FFFFFF;
  4260. }
  4261. #u27948 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 2px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u27948_text {
  4269. border-width:0px;
  4270. word-wrap:break-word;
  4271. text-transform:none;
  4272. }
  4273. #u27949 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:0px;
  4279. height:0px;
  4280. }
  4281. #u27950_div {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:49px;
  4287. height:30px;
  4288. background:inherit;
  4289. background-color:rgba(224, 231, 247, 0);
  4290. border:none;
  4291. border-radius:0px;
  4292. -moz-box-shadow:none;
  4293. -webkit-box-shadow:none;
  4294. box-shadow:none;
  4295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4296. font-weight:400;
  4297. font-style:normal;
  4298. font-size:12px;
  4299. line-height:30px;
  4300. }
  4301. #u27950 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:1513px;
  4305. top:60px;
  4306. width:49px;
  4307. height:30px;
  4308. display:flex;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:12px;
  4313. line-height:30px;
  4314. }
  4315. #u27950 .text {
  4316. position:absolute;
  4317. align-self:center;
  4318. padding:0px 0px 0px 0px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u27950_text {
  4323. border-width:0px;
  4324. white-space:nowrap;
  4325. text-transform:none;
  4326. }
  4327. #u27951_img {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:17px;
  4333. height:17px;
  4334. }
  4335. #u27951 {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:1491px;
  4339. top:66px;
  4340. width:17px;
  4341. height:17px;
  4342. display:flex;
  4343. font-size:8px;
  4344. color:#FFFFFF;
  4345. }
  4346. #u27951 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 2px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u27951_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. }
  4358. #u27952_div {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:580px;
  4364. height:30px;
  4365. background:inherit;
  4366. background-color:rgba(224, 231, 247, 0);
  4367. border:none;
  4368. border-radius:0px;
  4369. -moz-box-shadow:none;
  4370. -webkit-box-shadow:none;
  4371. box-shadow:none;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. line-height:30px;
  4376. }
  4377. #u27952 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:350px;
  4381. top:552px;
  4382. width:580px;
  4383. height:30px;
  4384. display:flex;
  4385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. line-height:30px;
  4389. }
  4390. #u27952 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:0px 0px 0px 0px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u27952_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. }
  4402. #u27953_img {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:30px;
  4408. height:30px;
  4409. }
  4410. #u27953 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:650px;
  4414. top:160px;
  4415. width:30px;
  4416. height:30px;
  4417. display:flex;
  4418. font-size:18px;
  4419. color:#FFFFFF;
  4420. }
  4421. #u27953 .text {
  4422. position:absolute;
  4423. align-self:center;
  4424. padding:2px 2px 2px 2px;
  4425. box-sizing:border-box;
  4426. width:100%;
  4427. }
  4428. #u27953_text {
  4429. border-width:0px;
  4430. word-wrap:break-word;
  4431. text-transform:none;
  4432. }
  4433. #u27954_div {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:157px;
  4439. height:25px;
  4440. background:inherit;
  4441. background-color:rgba(224, 231, 247, 0);
  4442. border:none;
  4443. border-radius:0px;
  4444. -moz-box-shadow:none;
  4445. -webkit-box-shadow:none;
  4446. box-shadow:none;
  4447. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4448. font-weight:500;
  4449. font-style:normal;
  4450. font-size:18px;
  4451. }
  4452. #u27954 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:690px;
  4456. top:163px;
  4457. width:157px;
  4458. height:25px;
  4459. display:flex;
  4460. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4461. font-weight:500;
  4462. font-style:normal;
  4463. font-size:18px;
  4464. }
  4465. #u27954 .text {
  4466. position:absolute;
  4467. align-self:center;
  4468. padding:0px 0px 0px 0px;
  4469. box-sizing:border-box;
  4470. width:100%;
  4471. }
  4472. #u27954_text {
  4473. border-width:0px;
  4474. white-space:nowrap;
  4475. text-transform:none;
  4476. }
  4477. #u27955_img {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:30px;
  4483. height:30px;
  4484. }
  4485. #u27955 {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:965px;
  4489. top:160px;
  4490. width:30px;
  4491. height:30px;
  4492. display:flex;
  4493. font-size:18px;
  4494. color:#FFFFFF;
  4495. }
  4496. #u27955 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 2px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u27955_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. }
  4508. #u27956_div {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:145px;
  4514. height:25px;
  4515. background:inherit;
  4516. background-color:rgba(224, 231, 247, 0);
  4517. border:none;
  4518. border-radius:0px;
  4519. -moz-box-shadow:none;
  4520. -webkit-box-shadow:none;
  4521. box-shadow:none;
  4522. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4523. font-weight:500;
  4524. font-style:normal;
  4525. font-size:18px;
  4526. }
  4527. #u27956 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:1005px;
  4531. top:163px;
  4532. width:145px;
  4533. height:25px;
  4534. display:flex;
  4535. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4536. font-weight:500;
  4537. font-style:normal;
  4538. font-size:18px;
  4539. }
  4540. #u27956 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:0px 0px 0px 0px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u27956_text {
  4548. border-width:0px;
  4549. white-space:nowrap;
  4550. text-transform:none;
  4551. }
  4552. #u27957_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:30px;
  4558. height:30px;
  4559. }
  4560. #u27957 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:1282px;
  4564. top:160px;
  4565. width:30px;
  4566. height:30px;
  4567. display:flex;
  4568. font-size:18px;
  4569. color:#FFFFFF;
  4570. }
  4571. #u27957 .text {
  4572. position:absolute;
  4573. align-self:center;
  4574. padding:2px 2px 2px 2px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u27957_text {
  4579. border-width:0px;
  4580. word-wrap:break-word;
  4581. text-transform:none;
  4582. }
  4583. #u27958_div {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:73px;
  4589. height:25px;
  4590. background:inherit;
  4591. background-color:rgba(224, 231, 247, 0);
  4592. border:none;
  4593. border-radius:0px;
  4594. -moz-box-shadow:none;
  4595. -webkit-box-shadow:none;
  4596. box-shadow:none;
  4597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4598. font-weight:500;
  4599. font-style:normal;
  4600. font-size:18px;
  4601. }
  4602. #u27958 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:1322px;
  4606. top:163px;
  4607. width:73px;
  4608. height:25px;
  4609. display:flex;
  4610. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4611. font-weight:500;
  4612. font-style:normal;
  4613. font-size:18px;
  4614. }
  4615. #u27958 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:0px 0px 0px 0px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u27958_text {
  4623. border-width:0px;
  4624. white-space:nowrap;
  4625. text-transform:none;
  4626. }
  4627. #u27959_div {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:1216px;
  4633. height:110px;
  4634. background:inherit;
  4635. background-color:rgba(255, 255, 255, 1);
  4636. box-sizing:border-box;
  4637. border-width:1px;
  4638. border-style:solid;
  4639. border-color:rgba(217, 217, 217, 1);
  4640. border-radius:4px;
  4641. -moz-box-shadow:none;
  4642. -webkit-box-shadow:none;
  4643. box-shadow:none;
  4644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:14px;
  4648. color:rgba(0, 0, 0, 0.647058823529412);
  4649. line-height:21px;
  4650. }
  4651. #u27959 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:354px;
  4655. top:370px;
  4656. width:1216px;
  4657. height:110px;
  4658. display:flex;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:14px;
  4663. color:rgba(0, 0, 0, 0.647058823529412);
  4664. line-height:21px;
  4665. }
  4666. #u27959 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 16px 2px 16px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u27959_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u27960_div {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:93px;
  4685. height:17px;
  4686. background:inherit;
  4687. background-color:rgba(224, 231, 247, 0);
  4688. border:none;
  4689. border-radius:0px;
  4690. -moz-box-shadow:none;
  4691. -webkit-box-shadow:none;
  4692. box-shadow:none;
  4693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:12px;
  4697. }
  4698. #u27960 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:467px;
  4702. top:427px;
  4703. width:93px;
  4704. height:17px;
  4705. display:flex;
  4706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4707. font-weight:400;
  4708. font-style:normal;
  4709. font-size:12px;
  4710. }
  4711. #u27960 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:0px 0px 0px 0px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u27960_text {
  4719. border-width:0px;
  4720. white-space:nowrap;
  4721. text-transform:none;
  4722. }
  4723. #u27961_div {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:580px;
  4729. height:30px;
  4730. background:inherit;
  4731. background-color:rgba(224, 231, 247, 0);
  4732. border:none;
  4733. border-radius:0px;
  4734. -moz-box-shadow:none;
  4735. -webkit-box-shadow:none;
  4736. box-shadow:none;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. line-height:30px;
  4741. }
  4742. #u27961 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:354px;
  4746. top:340px;
  4747. width:580px;
  4748. height:30px;
  4749. display:flex;
  4750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. line-height:30px;
  4754. }
  4755. #u27961 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:0px 0px 0px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u27961_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. }
  4767. #u27962_img {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:60px;
  4773. height:60px;
  4774. }
  4775. #u27962 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:387px;
  4779. top:393px;
  4780. width:60px;
  4781. height:60px;
  4782. display:flex;
  4783. }
  4784. #u27962 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 2px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u27962_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. }
  4796. #u27963_div {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:60px;
  4802. height:25px;
  4803. background:inherit;
  4804. background-color:rgba(224, 231, 247, 0);
  4805. border:none;
  4806. border-radius:0px;
  4807. -moz-box-shadow:none;
  4808. -webkit-box-shadow:none;
  4809. box-shadow:none;
  4810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4811. font-weight:500;
  4812. font-style:normal;
  4813. font-size:18px;
  4814. }
  4815. #u27963 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:467px;
  4819. top:402px;
  4820. width:60px;
  4821. height:25px;
  4822. display:flex;
  4823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4824. font-weight:500;
  4825. font-style:normal;
  4826. font-size:18px;
  4827. }
  4828. #u27963 .text {
  4829. position:absolute;
  4830. align-self:center;
  4831. padding:0px 0px 0px 0px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u27963_text {
  4836. border-width:0px;
  4837. white-space:nowrap;
  4838. text-transform:none;
  4839. }
  4840. #u27964_img {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:2px;
  4846. height:39px;
  4847. }
  4848. #u27964 {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:621px;
  4852. top:405px;
  4853. width:1px;
  4854. height:38px;
  4855. display:flex;
  4856. }
  4857. #u27964 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:2px 2px 2px 2px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u27964_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. visibility:hidden;
  4869. }
  4870. #u27965_div {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:81px;
  4876. height:17px;
  4877. background:inherit;
  4878. background-color:rgba(224, 231, 247, 0);
  4879. border:none;
  4880. border-radius:0px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:12px;
  4888. }
  4889. #u27965 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:768px;
  4893. top:427px;
  4894. width:81px;
  4895. height:17px;
  4896. display:flex;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:12px;
  4901. }
  4902. #u27965 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:0px 0px 0px 0px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u27965_text {
  4910. border-width:0px;
  4911. white-space:nowrap;
  4912. text-transform:none;
  4913. }
  4914. #u27966_img {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:60px;
  4920. height:60px;
  4921. }
  4922. #u27966 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:688px;
  4926. top:393px;
  4927. width:60px;
  4928. height:60px;
  4929. display:flex;
  4930. }
  4931. #u27966 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:2px 2px 2px 2px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u27966_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. }
  4943. #u27967_div {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:60px;
  4949. height:25px;
  4950. background:inherit;
  4951. background-color:rgba(224, 231, 247, 0);
  4952. border:none;
  4953. border-radius:0px;
  4954. -moz-box-shadow:none;
  4955. -webkit-box-shadow:none;
  4956. box-shadow:none;
  4957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4958. font-weight:500;
  4959. font-style:normal;
  4960. font-size:18px;
  4961. }
  4962. #u27967 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:768px;
  4966. top:402px;
  4967. width:60px;
  4968. height:25px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4971. font-weight:500;
  4972. font-style:normal;
  4973. font-size:18px;
  4974. }
  4975. #u27967 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:0px 0px 0px 0px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u27967_text {
  4983. border-width:0px;
  4984. white-space:nowrap;
  4985. text-transform:none;
  4986. }
  4987. #u27968_div {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:81px;
  4993. height:17px;
  4994. background:inherit;
  4995. background-color:rgba(224, 231, 247, 0);
  4996. border:none;
  4997. border-radius:0px;
  4998. -moz-box-shadow:none;
  4999. -webkit-box-shadow:none;
  5000. box-shadow:none;
  5001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:12px;
  5005. }
  5006. #u27968 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:1023px;
  5010. top:427px;
  5011. width:81px;
  5012. height:17px;
  5013. display:flex;
  5014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. }
  5019. #u27968 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:0px 0px 0px 0px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u27968_text {
  5027. border-width:0px;
  5028. white-space:nowrap;
  5029. text-transform:none;
  5030. }
  5031. #u27969_img {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:60px;
  5037. height:60px;
  5038. }
  5039. #u27969 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:943px;
  5043. top:393px;
  5044. width:60px;
  5045. height:60px;
  5046. display:flex;
  5047. }
  5048. #u27969 .text {
  5049. position:absolute;
  5050. align-self:center;
  5051. padding:2px 2px 2px 2px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u27969_text {
  5056. border-width:0px;
  5057. word-wrap:break-word;
  5058. text-transform:none;
  5059. }
  5060. #u27970_div {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:60px;
  5066. height:25px;
  5067. background:inherit;
  5068. background-color:rgba(224, 231, 247, 0);
  5069. border:none;
  5070. border-radius:0px;
  5071. -moz-box-shadow:none;
  5072. -webkit-box-shadow:none;
  5073. box-shadow:none;
  5074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5075. font-weight:500;
  5076. font-style:normal;
  5077. font-size:18px;
  5078. }
  5079. #u27970 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:1023px;
  5083. top:402px;
  5084. width:60px;
  5085. height:25px;
  5086. display:flex;
  5087. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5088. font-weight:500;
  5089. font-style:normal;
  5090. font-size:18px;
  5091. }
  5092. #u27970 .text {
  5093. position:absolute;
  5094. align-self:center;
  5095. padding:0px 0px 0px 0px;
  5096. box-sizing:border-box;
  5097. width:100%;
  5098. }
  5099. #u27970_text {
  5100. border-width:0px;
  5101. white-space:nowrap;
  5102. text-transform:none;
  5103. }
  5104. #u27971_div {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:81px;
  5110. height:17px;
  5111. background:inherit;
  5112. background-color:rgba(224, 231, 247, 0);
  5113. border:none;
  5114. border-radius:0px;
  5115. -moz-box-shadow:none;
  5116. -webkit-box-shadow:none;
  5117. box-shadow:none;
  5118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. }
  5123. #u27971 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:1271px;
  5127. top:427px;
  5128. width:81px;
  5129. height:17px;
  5130. display:flex;
  5131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5132. font-weight:400;
  5133. font-style:normal;
  5134. font-size:12px;
  5135. }
  5136. #u27971 .text {
  5137. position:absolute;
  5138. align-self:center;
  5139. padding:0px 0px 0px 0px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u27971_text {
  5144. border-width:0px;
  5145. white-space:nowrap;
  5146. text-transform:none;
  5147. }
  5148. #u27972_img {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:60px;
  5154. height:60px;
  5155. }
  5156. #u27972 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:1191px;
  5160. top:393px;
  5161. width:60px;
  5162. height:60px;
  5163. display:flex;
  5164. }
  5165. #u27972 .text {
  5166. position:absolute;
  5167. align-self:center;
  5168. padding:2px 2px 2px 2px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u27972_text {
  5173. border-width:0px;
  5174. word-wrap:break-word;
  5175. text-transform:none;
  5176. }
  5177. #u27973_div {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:0px;
  5181. top:0px;
  5182. width:60px;
  5183. height:25px;
  5184. background:inherit;
  5185. background-color:rgba(224, 231, 247, 0);
  5186. border:none;
  5187. border-radius:0px;
  5188. -moz-box-shadow:none;
  5189. -webkit-box-shadow:none;
  5190. box-shadow:none;
  5191. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5192. font-weight:500;
  5193. font-style:normal;
  5194. font-size:18px;
  5195. }
  5196. #u27973 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:1271px;
  5200. top:402px;
  5201. width:60px;
  5202. height:25px;
  5203. display:flex;
  5204. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5205. font-weight:500;
  5206. font-style:normal;
  5207. font-size:18px;
  5208. }
  5209. #u27973 .text {
  5210. position:absolute;
  5211. align-self:center;
  5212. padding:0px 0px 0px 0px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u27973_text {
  5217. border-width:0px;
  5218. white-space:nowrap;
  5219. text-transform:none;
  5220. }
  5221. #u27974_div {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:373px;
  5227. height:90px;
  5228. background:inherit;
  5229. background-color:rgba(255, 255, 255, 0);
  5230. border:none;
  5231. border-radius:0px;
  5232. -moz-box-shadow:none;
  5233. -webkit-box-shadow:none;
  5234. box-shadow:none;
  5235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5236. font-weight:400;
  5237. font-style:normal;
  5238. font-size:14px;
  5239. color:#D9001B;
  5240. line-height:30px;
  5241. }
  5242. #u27974 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:890px;
  5246. top:875px;
  5247. width:373px;
  5248. height:90px;
  5249. display:flex;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:14px;
  5254. color:#D9001B;
  5255. line-height:30px;
  5256. }
  5257. #u27974 .text {
  5258. position:absolute;
  5259. align-self:flex-start;
  5260. padding:0px 0px 0px 0px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u27974_text {
  5265. border-width:0px;
  5266. white-space:nowrap;
  5267. text-transform:none;
  5268. }
  5269. #u27975_div {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:0px;
  5273. top:0px;
  5274. width:210px;
  5275. height:28px;
  5276. background:inherit;
  5277. background-color:rgba(255, 255, 255, 0);
  5278. border:none;
  5279. border-radius:0px;
  5280. -moz-box-shadow:none;
  5281. -webkit-box-shadow:none;
  5282. box-shadow:none;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:10px;
  5287. }
  5288. #u27975 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:420px;
  5292. top:198px;
  5293. width:210px;
  5294. height:28px;
  5295. display:flex;
  5296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:10px;
  5300. }
  5301. #u27975 .text {
  5302. position:absolute;
  5303. align-self:flex-start;
  5304. padding:0px 0px 0px 0px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u27975_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. }
  5313. #u27976_div {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:210px;
  5319. height:28px;
  5320. background:inherit;
  5321. background-color:rgba(255, 255, 255, 0);
  5322. border:none;
  5323. border-radius:0px;
  5324. -moz-box-shadow:none;
  5325. -webkit-box-shadow:none;
  5326. box-shadow:none;
  5327. font-size:10px;
  5328. color:#D9001B;
  5329. }
  5330. #u27976 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:420px;
  5334. top:236px;
  5335. width:210px;
  5336. height:28px;
  5337. display:flex;
  5338. font-size:10px;
  5339. color:#D9001B;
  5340. }
  5341. #u27976 .text {
  5342. position:absolute;
  5343. align-self:flex-start;
  5344. padding:0px 0px 0px 0px;
  5345. box-sizing:border-box;
  5346. width:100%;
  5347. }
  5348. #u27976_text {
  5349. border-width:0px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. }
  5353. #u27977_div {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:0px;
  5357. top:0px;
  5358. width:210px;
  5359. height:28px;
  5360. background:inherit;
  5361. background-color:rgba(255, 255, 255, 0);
  5362. border:none;
  5363. border-radius:0px;
  5364. -moz-box-shadow:none;
  5365. -webkit-box-shadow:none;
  5366. box-shadow:none;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:10px;
  5371. }
  5372. #u27977 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:690px;
  5376. top:198px;
  5377. width:210px;
  5378. height:28px;
  5379. display:flex;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:10px;
  5384. }
  5385. #u27977 .text {
  5386. position:absolute;
  5387. align-self:flex-start;
  5388. padding:0px 0px 0px 0px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u27977_text {
  5393. border-width:0px;
  5394. word-wrap:break-word;
  5395. text-transform:none;
  5396. }
  5397. #u27978_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:210px;
  5403. height:28px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 0);
  5406. border:none;
  5407. border-radius:0px;
  5408. -moz-box-shadow:none;
  5409. -webkit-box-shadow:none;
  5410. box-shadow:none;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:10px;
  5415. }
  5416. #u27978 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:1005px;
  5420. top:198px;
  5421. width:210px;
  5422. height:28px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:10px;
  5428. }
  5429. #u27978 .text {
  5430. position:absolute;
  5431. align-self:flex-start;
  5432. padding:0px 0px 0px 0px;
  5433. box-sizing:border-box;
  5434. width:100%;
  5435. }
  5436. #u27978_text {
  5437. border-width:0px;
  5438. word-wrap:break-word;
  5439. text-transform:none;
  5440. }
  5441. #u27979_div {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:228px;
  5447. height:28px;
  5448. background:inherit;
  5449. background-color:rgba(255, 255, 255, 0);
  5450. border:none;
  5451. border-radius:0px;
  5452. -moz-box-shadow:none;
  5453. -webkit-box-shadow:none;
  5454. box-shadow:none;
  5455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5456. font-weight:400;
  5457. font-style:normal;
  5458. font-size:10px;
  5459. color:#D9001B;
  5460. }
  5461. #u27979 {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:1005px;
  5465. top:236px;
  5466. width:228px;
  5467. height:28px;
  5468. display:flex;
  5469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5470. font-weight:400;
  5471. font-style:normal;
  5472. font-size:10px;
  5473. color:#D9001B;
  5474. }
  5475. #u27979 .text {
  5476. position:absolute;
  5477. align-self:flex-start;
  5478. padding:0px 0px 0px 0px;
  5479. box-sizing:border-box;
  5480. width:100%;
  5481. }
  5482. #u27979_text {
  5483. border-width:0px;
  5484. word-wrap:break-word;
  5485. text-transform:none;
  5486. }
  5487. #u27980_div {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:0px;
  5491. top:0px;
  5492. width:210px;
  5493. height:28px;
  5494. background:inherit;
  5495. background-color:rgba(255, 255, 255, 0);
  5496. border:none;
  5497. border-radius:0px;
  5498. -moz-box-shadow:none;
  5499. -webkit-box-shadow:none;
  5500. box-shadow:none;
  5501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5502. font-weight:400;
  5503. font-style:normal;
  5504. font-size:10px;
  5505. }
  5506. #u27980 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:1322px;
  5510. top:198px;
  5511. width:210px;
  5512. height:28px;
  5513. display:flex;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:10px;
  5518. }
  5519. #u27980 .text {
  5520. position:absolute;
  5521. align-self:flex-start;
  5522. padding:0px 0px 0px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u27980_text {
  5527. border-width:0px;
  5528. word-wrap:break-word;
  5529. text-transform:none;
  5530. }
  5531. #u27981_div {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:204px;
  5537. height:28px;
  5538. background:inherit;
  5539. background-color:rgba(255, 255, 255, 0);
  5540. border:none;
  5541. border-radius:0px;
  5542. -moz-box-shadow:none;
  5543. -webkit-box-shadow:none;
  5544. box-shadow:none;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:10px;
  5549. color:#D9001B;
  5550. }
  5551. #u27981 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:1322px;
  5555. top:236px;
  5556. width:204px;
  5557. height:28px;
  5558. display:flex;
  5559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:10px;
  5563. color:#D9001B;
  5564. }
  5565. #u27981 .text {
  5566. position:absolute;
  5567. align-self:flex-start;
  5568. padding:0px 0px 0px 0px;
  5569. box-sizing:border-box;
  5570. width:100%;
  5571. }
  5572. #u27981_text {
  5573. border-width:0px;
  5574. word-wrap:break-word;
  5575. text-transform:none;
  5576. }
  5577. #u27982 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:0px;
  5583. height:0px;
  5584. }
  5585. #u27983_div {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:0px;
  5590. width:440px;
  5591. height:164px;
  5592. background:inherit;
  5593. background-color:rgba(255, 255, 255, 1);
  5594. border:none;
  5595. border-radius:4px;
  5596. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5597. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5598. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5599. font-family:'Microsoft YaHei', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. }
  5603. #u27983 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:1661px;
  5607. top:66px;
  5608. width:440px;
  5609. height:164px;
  5610. display:flex;
  5611. font-family:'Microsoft YaHei', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. }
  5615. #u27983 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:2px 2px 2px 2px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u27983_text {
  5623. border-width:0px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. visibility:hidden;
  5627. }
  5628. #u27984_div {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:57px;
  5634. height:22px;
  5635. background:inherit;
  5636. background-color:rgba(255, 255, 255, 0);
  5637. border:none;
  5638. border-radius:0px;
  5639. -moz-box-shadow:none;
  5640. -webkit-box-shadow:none;
  5641. box-shadow:none;
  5642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:14px;
  5646. color:#666666;
  5647. line-height:22px;
  5648. }
  5649. #u27984 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:1688px;
  5653. top:137px;
  5654. width:57px;
  5655. height:22px;
  5656. display:flex;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:14px;
  5661. color:#666666;
  5662. line-height:22px;
  5663. }
  5664. #u27984 .text {
  5665. position:absolute;
  5666. align-self:flex-start;
  5667. padding:0px 0px 0px 0px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u27984_text {
  5672. border-width:0px;
  5673. white-space:nowrap;
  5674. text-transform:none;
  5675. }
  5676. #u27985_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:73px;
  5682. height:21px;
  5683. background:inherit;
  5684. background-color:rgba(255, 255, 255, 0);
  5685. border:none;
  5686. border-radius:0px;
  5687. -moz-box-shadow:none;
  5688. -webkit-box-shadow:none;
  5689. box-shadow:none;
  5690. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5691. font-weight:650;
  5692. font-style:normal;
  5693. font-size:18px;
  5694. color:#000000;
  5695. line-height:22px;
  5696. }
  5697. #u27985 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:1688px;
  5701. top:91px;
  5702. width:73px;
  5703. height:21px;
  5704. display:flex;
  5705. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5706. font-weight:650;
  5707. font-style:normal;
  5708. font-size:18px;
  5709. color:#000000;
  5710. line-height:22px;
  5711. }
  5712. #u27985 .text {
  5713. position:absolute;
  5714. align-self:flex-start;
  5715. padding:0px 0px 0px 0px;
  5716. box-sizing:border-box;
  5717. width:100%;
  5718. }
  5719. #u27985_text {
  5720. border-width:0px;
  5721. white-space:nowrap;
  5722. text-transform:none;
  5723. }
  5724. #u27986_div {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:61px;
  5730. height:32px;
  5731. background:inherit;
  5732. background-color:rgba(24, 144, 255, 1);
  5733. border:none;
  5734. border-radius:4px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. font-family:'Microsoft YaHei', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:14px;
  5742. color:#FFFFFF;
  5743. }
  5744. #u27986 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:2020px;
  5748. top:181px;
  5749. width:61px;
  5750. height:32px;
  5751. display:flex;
  5752. font-family:'Microsoft YaHei', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:14px;
  5756. color:#FFFFFF;
  5757. }
  5758. #u27986 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:2px 16px 2px 16px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u27986_text {
  5766. border-width:0px;
  5767. white-space:nowrap;
  5768. text-transform:none;
  5769. }
  5770. #u27987_div {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:0px;
  5774. top:0px;
  5775. width:66px;
  5776. height:32px;
  5777. background:inherit;
  5778. background-color:rgba(255, 255, 255, 1);
  5779. box-sizing:border-box;
  5780. border-width:1px;
  5781. border-style:solid;
  5782. border-color:rgba(217, 217, 217, 1);
  5783. border-radius:4px;
  5784. -moz-box-shadow:none;
  5785. -webkit-box-shadow:none;
  5786. box-shadow:none;
  5787. font-family:'Microsoft YaHei', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:14px;
  5791. color:rgba(0, 0, 0, 0.647058823529412);
  5792. line-height:21px;
  5793. }
  5794. #u27987 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:1938px;
  5798. top:181px;
  5799. width:66px;
  5800. height:32px;
  5801. display:flex;
  5802. font-family:'Microsoft YaHei', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:14px;
  5806. color:rgba(0, 0, 0, 0.647058823529412);
  5807. line-height:21px;
  5808. }
  5809. #u27987 .text {
  5810. position:absolute;
  5811. align-self:center;
  5812. padding:2px 16px 2px 16px;
  5813. box-sizing:border-box;
  5814. width:100%;
  5815. }
  5816. #u27987_text {
  5817. border-width:0px;
  5818. white-space:nowrap;
  5819. text-transform:none;
  5820. }
  5821. #u27988 label {
  5822. left:0px;
  5823. width:100%;
  5824. }
  5825. #u27988_img {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:4px;
  5830. width:12px;
  5831. height:12px;
  5832. }
  5833. #u27988 {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:1763px;
  5837. top:138px;
  5838. width:100px;
  5839. height:20px;
  5840. display:flex;
  5841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5842. font-weight:400;
  5843. font-style:normal;
  5844. font-size:14px;
  5845. }
  5846. #u27988 .text {
  5847. position:absolute;
  5848. align-self:center;
  5849. padding:0px 2px 0px 2px;
  5850. box-sizing:border-box;
  5851. }
  5852. #u27988_img.selected {
  5853. }
  5854. #u27988.selected {
  5855. }
  5856. #u27988_img.disabled {
  5857. }
  5858. #u27988.disabled {
  5859. }
  5860. #u27988_img.selectedDisabled {
  5861. }
  5862. #u27988.selectedDisabled {
  5863. }
  5864. #u27988_text {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:14px;
  5868. top:0px;
  5869. width:84px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. }
  5873. #u27988_input {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:0px;
  5879. height:0px;
  5880. opacity:0;
  5881. }
  5882. #u27989 label {
  5883. left:0px;
  5884. width:100%;
  5885. }
  5886. #u27989_img {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:4px;
  5891. width:12px;
  5892. height:12px;
  5893. }
  5894. #u27989 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:1863px;
  5898. top:138px;
  5899. width:100px;
  5900. height:20px;
  5901. display:flex;
  5902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:14px;
  5906. }
  5907. #u27989 .text {
  5908. position:absolute;
  5909. align-self:center;
  5910. padding:0px 2px 0px 2px;
  5911. box-sizing:border-box;
  5912. }
  5913. #u27989_img.selected {
  5914. }
  5915. #u27989.selected {
  5916. }
  5917. #u27989_img.disabled {
  5918. }
  5919. #u27989.disabled {
  5920. }
  5921. #u27989_img.selectedDisabled {
  5922. }
  5923. #u27989.selectedDisabled {
  5924. }
  5925. #u27989_text {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:14px;
  5929. top:0px;
  5930. width:84px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. }
  5934. #u27989_input {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:0px;
  5940. height:0px;
  5941. opacity:0;
  5942. }
  5943. #u27990 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:0px;
  5949. height:0px;
  5950. }
  5951. #u27991_div {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:440px;
  5957. height:240px;
  5958. background:inherit;
  5959. background-color:rgba(255, 255, 255, 1);
  5960. border:none;
  5961. border-radius:4px;
  5962. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5963. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5964. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5965. font-family:'Microsoft YaHei', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. }
  5969. #u27991 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:1661px;
  5973. top:252px;
  5974. width:440px;
  5975. height:240px;
  5976. display:flex;
  5977. font-family:'Microsoft YaHei', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. }
  5981. #u27991 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:2px 2px 2px 2px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u27991_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. visibility:hidden;
  5993. }
  5994. #u27992_div {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:57px;
  6000. height:22px;
  6001. background:inherit;
  6002. background-color:rgba(255, 255, 255, 0);
  6003. border:none;
  6004. border-radius:0px;
  6005. -moz-box-shadow:none;
  6006. -webkit-box-shadow:none;
  6007. box-shadow:none;
  6008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:14px;
  6012. color:#666666;
  6013. line-height:22px;
  6014. }
  6015. #u27992 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:1688px;
  6019. top:323px;
  6020. width:57px;
  6021. height:22px;
  6022. display:flex;
  6023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6024. font-weight:400;
  6025. font-style:normal;
  6026. font-size:14px;
  6027. color:#666666;
  6028. line-height:22px;
  6029. }
  6030. #u27992 .text {
  6031. position:absolute;
  6032. align-self:flex-start;
  6033. padding:0px 0px 0px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u27992_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u27993_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:73px;
  6048. height:21px;
  6049. background:inherit;
  6050. background-color:rgba(255, 255, 255, 0);
  6051. border:none;
  6052. border-radius:0px;
  6053. -moz-box-shadow:none;
  6054. -webkit-box-shadow:none;
  6055. box-shadow:none;
  6056. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6057. font-weight:650;
  6058. font-style:normal;
  6059. font-size:18px;
  6060. color:#000000;
  6061. line-height:22px;
  6062. }
  6063. #u27993 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:1688px;
  6067. top:277px;
  6068. width:73px;
  6069. height:21px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6072. font-weight:650;
  6073. font-style:normal;
  6074. font-size:18px;
  6075. color:#000000;
  6076. line-height:22px;
  6077. }
  6078. #u27993 .text {
  6079. position:absolute;
  6080. align-self:flex-start;
  6081. padding:0px 0px 0px 0px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u27993_text {
  6086. border-width:0px;
  6087. white-space:nowrap;
  6088. text-transform:none;
  6089. }
  6090. #u27994_div {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:61px;
  6096. height:32px;
  6097. background:inherit;
  6098. background-color:rgba(24, 144, 255, 1);
  6099. border:none;
  6100. border-radius:4px;
  6101. -moz-box-shadow:none;
  6102. -webkit-box-shadow:none;
  6103. box-shadow:none;
  6104. font-family:'Microsoft YaHei', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:14px;
  6108. color:#FFFFFF;
  6109. }
  6110. #u27994 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:2020px;
  6114. top:440px;
  6115. width:61px;
  6116. height:32px;
  6117. display:flex;
  6118. font-family:'Microsoft YaHei', sans-serif;
  6119. font-weight:400;
  6120. font-style:normal;
  6121. font-size:14px;
  6122. color:#FFFFFF;
  6123. }
  6124. #u27994 .text {
  6125. position:absolute;
  6126. align-self:center;
  6127. padding:2px 16px 2px 16px;
  6128. box-sizing:border-box;
  6129. width:100%;
  6130. }
  6131. #u27994_text {
  6132. border-width:0px;
  6133. white-space:nowrap;
  6134. text-transform:none;
  6135. }
  6136. #u27995_div {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:66px;
  6142. height:32px;
  6143. background:inherit;
  6144. background-color:rgba(255, 255, 255, 1);
  6145. box-sizing:border-box;
  6146. border-width:1px;
  6147. border-style:solid;
  6148. border-color:rgba(217, 217, 217, 1);
  6149. border-radius:4px;
  6150. -moz-box-shadow:none;
  6151. -webkit-box-shadow:none;
  6152. box-shadow:none;
  6153. font-family:'Microsoft YaHei', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:14px;
  6157. color:rgba(0, 0, 0, 0.647058823529412);
  6158. line-height:21px;
  6159. }
  6160. #u27995 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:1938px;
  6164. top:440px;
  6165. width:66px;
  6166. height:32px;
  6167. display:flex;
  6168. font-family:'Microsoft YaHei', sans-serif;
  6169. font-weight:400;
  6170. font-style:normal;
  6171. font-size:14px;
  6172. color:rgba(0, 0, 0, 0.647058823529412);
  6173. line-height:21px;
  6174. }
  6175. #u27995 .text {
  6176. position:absolute;
  6177. align-self:center;
  6178. padding:2px 16px 2px 16px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u27995_text {
  6183. border-width:0px;
  6184. white-space:nowrap;
  6185. text-transform:none;
  6186. }
  6187. #u27996 label {
  6188. left:0px;
  6189. width:100%;
  6190. }
  6191. #u27996_img {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:0px;
  6195. top:4px;
  6196. width:12px;
  6197. height:12px;
  6198. }
  6199. #u27996 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:1763px;
  6203. top:324px;
  6204. width:100px;
  6205. height:20px;
  6206. display:flex;
  6207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6208. font-weight:400;
  6209. font-style:normal;
  6210. font-size:14px;
  6211. }
  6212. #u27996 .text {
  6213. position:absolute;
  6214. align-self:center;
  6215. padding:0px 2px 0px 2px;
  6216. box-sizing:border-box;
  6217. }
  6218. #u27996_img.selected {
  6219. }
  6220. #u27996.selected {
  6221. }
  6222. #u27996_img.disabled {
  6223. }
  6224. #u27996.disabled {
  6225. }
  6226. #u27996_img.selectedDisabled {
  6227. }
  6228. #u27996.selectedDisabled {
  6229. }
  6230. #u27996_text {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:14px;
  6234. top:0px;
  6235. width:84px;
  6236. word-wrap:break-word;
  6237. text-transform:none;
  6238. }
  6239. #u27996_input {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:0px;
  6245. height:0px;
  6246. opacity:0;
  6247. }
  6248. #u27997 label {
  6249. left:0px;
  6250. width:100%;
  6251. }
  6252. #u27997_img {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:0px;
  6256. top:4px;
  6257. width:12px;
  6258. height:12px;
  6259. }
  6260. #u27997 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:1863px;
  6264. top:324px;
  6265. width:100px;
  6266. height:20px;
  6267. display:flex;
  6268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:14px;
  6272. }
  6273. #u27997 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:0px 2px 0px 2px;
  6277. box-sizing:border-box;
  6278. }
  6279. #u27997_img.selected {
  6280. }
  6281. #u27997.selected {
  6282. }
  6283. #u27997_img.disabled {
  6284. }
  6285. #u27997.disabled {
  6286. }
  6287. #u27997_img.selectedDisabled {
  6288. }
  6289. #u27997.selectedDisabled {
  6290. }
  6291. #u27997_text {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:14px;
  6295. top:0px;
  6296. width:84px;
  6297. word-wrap:break-word;
  6298. text-transform:none;
  6299. }
  6300. #u27997_input {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:0px;
  6306. height:0px;
  6307. opacity:0;
  6308. }
  6309. #u27998_div {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:57px;
  6315. height:22px;
  6316. background:inherit;
  6317. background-color:rgba(255, 255, 255, 0);
  6318. border:none;
  6319. border-radius:0px;
  6320. -moz-box-shadow:none;
  6321. -webkit-box-shadow:none;
  6322. box-shadow:none;
  6323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:14px;
  6327. color:#666666;
  6328. line-height:22px;
  6329. }
  6330. #u27998 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:1688px;
  6334. top:364px;
  6335. width:57px;
  6336. height:22px;
  6337. display:flex;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:14px;
  6342. color:#666666;
  6343. line-height:22px;
  6344. }
  6345. #u27998 .text {
  6346. position:absolute;
  6347. align-self:flex-start;
  6348. padding:0px 0px 0px 0px;
  6349. box-sizing:border-box;
  6350. width:100%;
  6351. }
  6352. #u27998_text {
  6353. border-width:0px;
  6354. white-space:nowrap;
  6355. text-transform:none;
  6356. }
  6357. #u27999 label {
  6358. left:0px;
  6359. width:100%;
  6360. }
  6361. #u27999_img {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:4px;
  6366. width:12px;
  6367. height:12px;
  6368. }
  6369. #u27999 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:1763px;
  6373. top:365px;
  6374. width:100px;
  6375. height:20px;
  6376. display:flex;
  6377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:14px;
  6381. }
  6382. #u27999 .text {
  6383. position:absolute;
  6384. align-self:center;
  6385. padding:0px 2px 0px 2px;
  6386. box-sizing:border-box;
  6387. }
  6388. #u27999_img.selected {
  6389. }
  6390. #u27999.selected {
  6391. }
  6392. #u27999_img.disabled {
  6393. }
  6394. #u27999.disabled {
  6395. }
  6396. #u27999_img.selectedDisabled {
  6397. }
  6398. #u27999.selectedDisabled {
  6399. }
  6400. #u27999_text {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:14px;
  6404. top:0px;
  6405. width:84px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. }
  6409. #u27999_input {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:0px;
  6415. height:0px;
  6416. opacity:0;
  6417. }
  6418. #u28000 label {
  6419. left:0px;
  6420. width:100%;
  6421. }
  6422. #u28000_img {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:4px;
  6427. width:12px;
  6428. height:12px;
  6429. }
  6430. #u28000 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:1863px;
  6434. top:365px;
  6435. width:100px;
  6436. height:20px;
  6437. display:flex;
  6438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6439. font-weight:400;
  6440. font-style:normal;
  6441. font-size:14px;
  6442. }
  6443. #u28000 .text {
  6444. position:absolute;
  6445. align-self:center;
  6446. padding:0px 2px 0px 2px;
  6447. box-sizing:border-box;
  6448. }
  6449. #u28000_img.selected {
  6450. }
  6451. #u28000.selected {
  6452. }
  6453. #u28000_img.disabled {
  6454. }
  6455. #u28000.disabled {
  6456. }
  6457. #u28000_img.selectedDisabled {
  6458. }
  6459. #u28000.selectedDisabled {
  6460. }
  6461. #u28000_text {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:14px;
  6465. top:0px;
  6466. width:84px;
  6467. word-wrap:break-word;
  6468. text-transform:none;
  6469. }
  6470. #u28000_input {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:0px;
  6476. height:0px;
  6477. opacity:0;
  6478. }
  6479. #u28001 label {
  6480. left:0px;
  6481. width:100%;
  6482. }
  6483. #u28001_img {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:4px;
  6488. width:12px;
  6489. height:12px;
  6490. }
  6491. #u28001 {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:1963px;
  6495. top:365px;
  6496. width:100px;
  6497. height:20px;
  6498. display:flex;
  6499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6500. font-weight:400;
  6501. font-style:normal;
  6502. font-size:14px;
  6503. }
  6504. #u28001 .text {
  6505. position:absolute;
  6506. align-self:center;
  6507. padding:0px 2px 0px 2px;
  6508. box-sizing:border-box;
  6509. }
  6510. #u28001_img.selected {
  6511. }
  6512. #u28001.selected {
  6513. }
  6514. #u28001_img.disabled {
  6515. }
  6516. #u28001.disabled {
  6517. }
  6518. #u28001_img.selectedDisabled {
  6519. }
  6520. #u28001.selectedDisabled {
  6521. }
  6522. #u28001_text {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:14px;
  6526. top:0px;
  6527. width:84px;
  6528. word-wrap:break-word;
  6529. text-transform:none;
  6530. }
  6531. #u28001_input {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:0px;
  6535. top:0px;
  6536. width:0px;
  6537. height:0px;
  6538. opacity:0;
  6539. }
  6540. #u28002_div {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:385px;
  6546. height:34px;
  6547. background:inherit;
  6548. background-color:rgba(255, 255, 255, 0);
  6549. border:none;
  6550. border-radius:0px;
  6551. -moz-box-shadow:none;
  6552. -webkit-box-shadow:none;
  6553. box-shadow:none;
  6554. font-size:12px;
  6555. color:#1890FF;
  6556. }
  6557. #u28002 {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:1688px;
  6561. top:396px;
  6562. width:385px;
  6563. height:34px;
  6564. display:flex;
  6565. font-size:12px;
  6566. color:#1890FF;
  6567. }
  6568. #u28002 .text {
  6569. position:absolute;
  6570. align-self:flex-start;
  6571. padding:0px 0px 0px 0px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u28002_text {
  6576. border-width:0px;
  6577. word-wrap:break-word;
  6578. text-transform:none;
  6579. }
  6580. #u28003 {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:0px;
  6586. height:0px;
  6587. }
  6588. #u28004_div {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:0px;
  6592. top:0px;
  6593. width:440px;
  6594. height:300px;
  6595. background:inherit;
  6596. background-color:rgba(255, 255, 255, 1);
  6597. border:none;
  6598. border-radius:4px;
  6599. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6600. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6601. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6602. font-family:'Microsoft YaHei', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. }
  6606. #u28004 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:1661px;
  6610. top:531px;
  6611. width:440px;
  6612. height:300px;
  6613. display:flex;
  6614. font-family:'Microsoft YaHei', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. }
  6618. #u28004 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:2px 2px 2px 2px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u28004_text {
  6626. border-width:0px;
  6627. word-wrap:break-word;
  6628. text-transform:none;
  6629. visibility:hidden;
  6630. }
  6631. #u28005_div {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:57px;
  6637. height:22px;
  6638. background:inherit;
  6639. background-color:rgba(255, 255, 255, 0);
  6640. border:none;
  6641. border-radius:0px;
  6642. -moz-box-shadow:none;
  6643. -webkit-box-shadow:none;
  6644. box-shadow:none;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:14px;
  6649. color:#666666;
  6650. line-height:22px;
  6651. }
  6652. #u28005 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:1688px;
  6656. top:602px;
  6657. width:57px;
  6658. height:22px;
  6659. display:flex;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:14px;
  6664. color:#666666;
  6665. line-height:22px;
  6666. }
  6667. #u28005 .text {
  6668. position:absolute;
  6669. align-self:flex-start;
  6670. padding:0px 0px 0px 0px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u28005_text {
  6675. border-width:0px;
  6676. white-space:nowrap;
  6677. text-transform:none;
  6678. }
  6679. #u28006_div {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:73px;
  6685. height:21px;
  6686. background:inherit;
  6687. background-color:rgba(255, 255, 255, 0);
  6688. border:none;
  6689. border-radius:0px;
  6690. -moz-box-shadow:none;
  6691. -webkit-box-shadow:none;
  6692. box-shadow:none;
  6693. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6694. font-weight:650;
  6695. font-style:normal;
  6696. font-size:18px;
  6697. color:#000000;
  6698. line-height:22px;
  6699. }
  6700. #u28006 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:1688px;
  6704. top:556px;
  6705. width:73px;
  6706. height:21px;
  6707. display:flex;
  6708. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6709. font-weight:650;
  6710. font-style:normal;
  6711. font-size:18px;
  6712. color:#000000;
  6713. line-height:22px;
  6714. }
  6715. #u28006 .text {
  6716. position:absolute;
  6717. align-self:flex-start;
  6718. padding:0px 0px 0px 0px;
  6719. box-sizing:border-box;
  6720. width:100%;
  6721. }
  6722. #u28006_text {
  6723. border-width:0px;
  6724. white-space:nowrap;
  6725. text-transform:none;
  6726. }
  6727. #u28007_div {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:61px;
  6733. height:32px;
  6734. background:inherit;
  6735. background-color:rgba(24, 144, 255, 1);
  6736. border:none;
  6737. border-radius:4px;
  6738. -moz-box-shadow:none;
  6739. -webkit-box-shadow:none;
  6740. box-shadow:none;
  6741. font-family:'Microsoft YaHei', sans-serif;
  6742. font-weight:400;
  6743. font-style:normal;
  6744. font-size:14px;
  6745. color:#FFFFFF;
  6746. }
  6747. #u28007 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:2020px;
  6751. top:788px;
  6752. width:61px;
  6753. height:32px;
  6754. display:flex;
  6755. font-family:'Microsoft YaHei', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:14px;
  6759. color:#FFFFFF;
  6760. }
  6761. #u28007 .text {
  6762. position:absolute;
  6763. align-self:center;
  6764. padding:2px 16px 2px 16px;
  6765. box-sizing:border-box;
  6766. width:100%;
  6767. }
  6768. #u28007_text {
  6769. border-width:0px;
  6770. white-space:nowrap;
  6771. text-transform:none;
  6772. }
  6773. #u28008_div {
  6774. border-width:0px;
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:66px;
  6779. height:32px;
  6780. background:inherit;
  6781. background-color:rgba(255, 255, 255, 1);
  6782. box-sizing:border-box;
  6783. border-width:1px;
  6784. border-style:solid;
  6785. border-color:rgba(217, 217, 217, 1);
  6786. border-radius:4px;
  6787. -moz-box-shadow:none;
  6788. -webkit-box-shadow:none;
  6789. box-shadow:none;
  6790. font-family:'Microsoft YaHei', sans-serif;
  6791. font-weight:400;
  6792. font-style:normal;
  6793. font-size:14px;
  6794. color:rgba(0, 0, 0, 0.647058823529412);
  6795. line-height:21px;
  6796. }
  6797. #u28008 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:1938px;
  6801. top:788px;
  6802. width:66px;
  6803. height:32px;
  6804. display:flex;
  6805. font-family:'Microsoft YaHei', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:14px;
  6809. color:rgba(0, 0, 0, 0.647058823529412);
  6810. line-height:21px;
  6811. }
  6812. #u28008 .text {
  6813. position:absolute;
  6814. align-self:center;
  6815. padding:2px 16px 2px 16px;
  6816. box-sizing:border-box;
  6817. width:100%;
  6818. }
  6819. #u28008_text {
  6820. border-width:0px;
  6821. white-space:nowrap;
  6822. text-transform:none;
  6823. }
  6824. #u28009 label {
  6825. left:0px;
  6826. width:100%;
  6827. }
  6828. #u28009_img {
  6829. border-width:0px;
  6830. position:absolute;
  6831. left:0px;
  6832. top:4px;
  6833. width:12px;
  6834. height:12px;
  6835. }
  6836. #u28009 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:1763px;
  6840. top:603px;
  6841. width:100px;
  6842. height:20px;
  6843. display:flex;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:14px;
  6848. }
  6849. #u28009 .text {
  6850. position:absolute;
  6851. align-self:center;
  6852. padding:0px 2px 0px 2px;
  6853. box-sizing:border-box;
  6854. }
  6855. #u28009_img.selected {
  6856. }
  6857. #u28009.selected {
  6858. }
  6859. #u28009_img.disabled {
  6860. }
  6861. #u28009.disabled {
  6862. }
  6863. #u28009_img.selectedDisabled {
  6864. }
  6865. #u28009.selectedDisabled {
  6866. }
  6867. #u28009_text {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:14px;
  6871. top:0px;
  6872. width:84px;
  6873. word-wrap:break-word;
  6874. text-transform:none;
  6875. }
  6876. #u28009_input {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:0px;
  6882. height:0px;
  6883. opacity:0;
  6884. }
  6885. #u28010 label {
  6886. left:0px;
  6887. width:100%;
  6888. }
  6889. #u28010_img {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:0px;
  6893. top:4px;
  6894. width:12px;
  6895. height:12px;
  6896. }
  6897. #u28010 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:1863px;
  6901. top:603px;
  6902. width:100px;
  6903. height:20px;
  6904. display:flex;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. font-size:14px;
  6909. }
  6910. #u28010 .text {
  6911. position:absolute;
  6912. align-self:center;
  6913. padding:0px 2px 0px 2px;
  6914. box-sizing:border-box;
  6915. }
  6916. #u28010_img.selected {
  6917. }
  6918. #u28010.selected {
  6919. }
  6920. #u28010_img.disabled {
  6921. }
  6922. #u28010.disabled {
  6923. }
  6924. #u28010_img.selectedDisabled {
  6925. }
  6926. #u28010.selectedDisabled {
  6927. }
  6928. #u28010_text {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:14px;
  6932. top:0px;
  6933. width:84px;
  6934. word-wrap:break-word;
  6935. text-transform:none;
  6936. }
  6937. #u28010_input {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:0px;
  6943. height:0px;
  6944. opacity:0;
  6945. }
  6946. #u28011_div {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:57px;
  6952. height:22px;
  6953. background:inherit;
  6954. background-color:rgba(255, 255, 255, 0);
  6955. border:none;
  6956. border-radius:0px;
  6957. -moz-box-shadow:none;
  6958. -webkit-box-shadow:none;
  6959. box-shadow:none;
  6960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:14px;
  6964. color:#666666;
  6965. line-height:22px;
  6966. }
  6967. #u28011 {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:1688px;
  6971. top:643px;
  6972. width:57px;
  6973. height:22px;
  6974. display:flex;
  6975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. font-size:14px;
  6979. color:#666666;
  6980. line-height:22px;
  6981. }
  6982. #u28011 .text {
  6983. position:absolute;
  6984. align-self:flex-start;
  6985. padding:0px 0px 0px 0px;
  6986. box-sizing:border-box;
  6987. width:100%;
  6988. }
  6989. #u28011_text {
  6990. border-width:0px;
  6991. white-space:nowrap;
  6992. text-transform:none;
  6993. }
  6994. #u28012 label {
  6995. left:0px;
  6996. width:100%;
  6997. }
  6998. #u28012_img {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:4px;
  7003. width:12px;
  7004. height:12px;
  7005. }
  7006. #u28012 {
  7007. border-width:0px;
  7008. position:absolute;
  7009. left:1763px;
  7010. top:644px;
  7011. width:100px;
  7012. height:20px;
  7013. display:flex;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:14px;
  7018. }
  7019. #u28012 .text {
  7020. position:absolute;
  7021. align-self:center;
  7022. padding:0px 2px 0px 2px;
  7023. box-sizing:border-box;
  7024. }
  7025. #u28012_img.selected {
  7026. }
  7027. #u28012.selected {
  7028. }
  7029. #u28012_img.disabled {
  7030. }
  7031. #u28012.disabled {
  7032. }
  7033. #u28012_img.selectedDisabled {
  7034. }
  7035. #u28012.selectedDisabled {
  7036. }
  7037. #u28012_text {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:14px;
  7041. top:0px;
  7042. width:84px;
  7043. word-wrap:break-word;
  7044. text-transform:none;
  7045. }
  7046. #u28012_input {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:0px;
  7052. height:0px;
  7053. opacity:0;
  7054. }
  7055. #u28013 label {
  7056. left:0px;
  7057. width:100%;
  7058. }
  7059. #u28013_img {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:4px;
  7064. width:12px;
  7065. height:12px;
  7066. }
  7067. #u28013 {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:1863px;
  7071. top:644px;
  7072. width:100px;
  7073. height:20px;
  7074. display:flex;
  7075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7076. font-weight:400;
  7077. font-style:normal;
  7078. font-size:14px;
  7079. }
  7080. #u28013 .text {
  7081. position:absolute;
  7082. align-self:center;
  7083. padding:0px 2px 0px 2px;
  7084. box-sizing:border-box;
  7085. }
  7086. #u28013_img.selected {
  7087. }
  7088. #u28013.selected {
  7089. }
  7090. #u28013_img.disabled {
  7091. }
  7092. #u28013.disabled {
  7093. }
  7094. #u28013_img.selectedDisabled {
  7095. }
  7096. #u28013.selectedDisabled {
  7097. }
  7098. #u28013_text {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:14px;
  7102. top:0px;
  7103. width:84px;
  7104. word-wrap:break-word;
  7105. text-transform:none;
  7106. }
  7107. #u28013_input {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:0px;
  7113. height:0px;
  7114. opacity:0;
  7115. }
  7116. #u28014 label {
  7117. left:0px;
  7118. width:100%;
  7119. }
  7120. #u28014_img {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:4px;
  7125. width:12px;
  7126. height:12px;
  7127. }
  7128. #u28014 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:1963px;
  7132. top:644px;
  7133. width:100px;
  7134. height:20px;
  7135. display:flex;
  7136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:14px;
  7140. }
  7141. #u28014 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:0px 2px 0px 2px;
  7145. box-sizing:border-box;
  7146. }
  7147. #u28014_img.selected {
  7148. }
  7149. #u28014.selected {
  7150. }
  7151. #u28014_img.disabled {
  7152. }
  7153. #u28014.disabled {
  7154. }
  7155. #u28014_img.selectedDisabled {
  7156. }
  7157. #u28014.selectedDisabled {
  7158. }
  7159. #u28014_text {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:14px;
  7163. top:0px;
  7164. width:84px;
  7165. word-wrap:break-word;
  7166. text-transform:none;
  7167. }
  7168. #u28014_input {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:0px;
  7174. height:0px;
  7175. opacity:0;
  7176. }
  7177. #u28015_div {
  7178. border-width:0px;
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:57px;
  7183. height:22px;
  7184. background:inherit;
  7185. background-color:rgba(255, 255, 255, 0);
  7186. border:none;
  7187. border-radius:0px;
  7188. -moz-box-shadow:none;
  7189. -webkit-box-shadow:none;
  7190. box-shadow:none;
  7191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7192. font-weight:400;
  7193. font-style:normal;
  7194. font-size:14px;
  7195. color:#666666;
  7196. line-height:22px;
  7197. }
  7198. #u28015 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:1688px;
  7202. top:684px;
  7203. width:57px;
  7204. height:22px;
  7205. display:flex;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:14px;
  7210. color:#666666;
  7211. line-height:22px;
  7212. }
  7213. #u28015 .text {
  7214. position:absolute;
  7215. align-self:flex-start;
  7216. padding:0px 0px 0px 0px;
  7217. box-sizing:border-box;
  7218. width:100%;
  7219. }
  7220. #u28015_text {
  7221. border-width:0px;
  7222. white-space:nowrap;
  7223. text-transform:none;
  7224. }
  7225. #u28016 {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:0px;
  7231. height:0px;
  7232. }
  7233. #u28017_div {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:0px;
  7237. top:0px;
  7238. width:280px;
  7239. height:30px;
  7240. background:inherit;
  7241. background-color:rgba(255, 255, 255, 1);
  7242. box-sizing:border-box;
  7243. border-width:1px;
  7244. border-style:solid;
  7245. border-color:rgba(215, 215, 215, 1);
  7246. border-radius:4px;
  7247. -moz-box-shadow:none;
  7248. -webkit-box-shadow:none;
  7249. box-shadow:none;
  7250. font-size:14px;
  7251. }
  7252. #u28017 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:1763px;
  7256. top:680px;
  7257. width:280px;
  7258. height:30px;
  7259. display:flex;
  7260. font-size:14px;
  7261. }
  7262. #u28017 .text {
  7263. position:absolute;
  7264. align-self:center;
  7265. padding:2px 2px 2px 2px;
  7266. box-sizing:border-box;
  7267. width:100%;
  7268. }
  7269. #u28017_text {
  7270. border-width:0px;
  7271. word-wrap:break-word;
  7272. text-transform:none;
  7273. visibility:hidden;
  7274. }
  7275. #u28018_input {
  7276. position:absolute;
  7277. left:0px;
  7278. top:0px;
  7279. width:268px;
  7280. height:23px;
  7281. padding:2px 2px 2px 2px;
  7282. font-family:'ArialMT', 'Arial', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:14px;
  7286. letter-spacing:normal;
  7287. color:#AAAAAA;
  7288. vertical-align:none;
  7289. text-align:left;
  7290. text-transform:none;
  7291. background-color:transparent;
  7292. border-color:transparent;
  7293. }
  7294. #u28018_input.disabled {
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:268px;
  7299. height:23px;
  7300. padding:2px 2px 2px 2px;
  7301. font-family:'ArialMT', 'Arial', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:14px;
  7305. letter-spacing:normal;
  7306. color:#AAAAAA;
  7307. vertical-align:none;
  7308. text-align:left;
  7309. text-transform:none;
  7310. background-color:transparent;
  7311. border-color:transparent;
  7312. }
  7313. #u28018_div {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:0px;
  7317. top:0px;
  7318. width:268px;
  7319. height:23px;
  7320. background:inherit;
  7321. background-color:rgba(255, 255, 255, 1);
  7322. border:none;
  7323. border-radius:0px;
  7324. -moz-box-shadow:none;
  7325. -webkit-box-shadow:none;
  7326. box-shadow:none;
  7327. font-size:14px;
  7328. color:#AAAAAA;
  7329. }
  7330. #u28018 {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:1771px;
  7334. top:682px;
  7335. width:268px;
  7336. height:23px;
  7337. display:flex;
  7338. font-size:14px;
  7339. color:#AAAAAA;
  7340. }
  7341. #u28018 .text {
  7342. position:absolute;
  7343. align-self:flex-start;
  7344. padding:2px 2px 2px 2px;
  7345. box-sizing:border-box;
  7346. width:100%;
  7347. }
  7348. #u28018_div.disabled {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:0px;
  7352. top:0px;
  7353. width:268px;
  7354. height:23px;
  7355. background:inherit;
  7356. background-color:rgba(240, 240, 240, 1);
  7357. border:none;
  7358. border-radius:0px;
  7359. -moz-box-shadow:none;
  7360. -webkit-box-shadow:none;
  7361. box-shadow:none;
  7362. font-size:14px;
  7363. color:#AAAAAA;
  7364. }
  7365. #u28018.disabled {
  7366. }
  7367. .u28018_input_option {
  7368. font-size:14px;
  7369. }
  7370. #u28019_div {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:385px;
  7376. height:51px;
  7377. background:inherit;
  7378. background-color:rgba(255, 255, 255, 0);
  7379. border:none;
  7380. border-radius:0px;
  7381. -moz-box-shadow:none;
  7382. -webkit-box-shadow:none;
  7383. box-shadow:none;
  7384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7385. font-weight:400;
  7386. font-style:normal;
  7387. font-size:12px;
  7388. color:#1890FF;
  7389. }
  7390. #u28019 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:1688px;
  7394. top:720px;
  7395. width:385px;
  7396. height:51px;
  7397. display:flex;
  7398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7399. font-weight:400;
  7400. font-style:normal;
  7401. font-size:12px;
  7402. color:#1890FF;
  7403. }
  7404. #u28019 .text {
  7405. position:absolute;
  7406. align-self:flex-start;
  7407. padding:0px 0px 0px 0px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u28019_text {
  7412. border-width:0px;
  7413. word-wrap:break-word;
  7414. text-transform:none;
  7415. }
  7416. #u28020 {
  7417. border-width:0px;
  7418. position:absolute;
  7419. left:0px;
  7420. top:0px;
  7421. width:0px;
  7422. height:0px;
  7423. }
  7424. #u28021_div {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:0px;
  7428. top:0px;
  7429. width:440px;
  7430. height:300px;
  7431. background:inherit;
  7432. background-color:rgba(255, 255, 255, 1);
  7433. border:none;
  7434. border-radius:4px;
  7435. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7436. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7437. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7438. font-family:'Microsoft YaHei', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. }
  7442. #u28021 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:1661px;
  7446. top:857px;
  7447. width:440px;
  7448. height:300px;
  7449. display:flex;
  7450. font-family:'Microsoft YaHei', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. }
  7454. #u28021 .text {
  7455. position:absolute;
  7456. align-self:center;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u28021_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. visibility:hidden;
  7466. }
  7467. #u28022_div {
  7468. border-width:0px;
  7469. position:absolute;
  7470. left:0px;
  7471. top:0px;
  7472. width:57px;
  7473. height:22px;
  7474. background:inherit;
  7475. background-color:rgba(255, 255, 255, 0);
  7476. border:none;
  7477. border-radius:0px;
  7478. -moz-box-shadow:none;
  7479. -webkit-box-shadow:none;
  7480. box-shadow:none;
  7481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7482. font-weight:400;
  7483. font-style:normal;
  7484. font-size:14px;
  7485. color:#666666;
  7486. line-height:22px;
  7487. }
  7488. #u28022 {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:1688px;
  7492. top:928px;
  7493. width:57px;
  7494. height:22px;
  7495. display:flex;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:14px;
  7500. color:#666666;
  7501. line-height:22px;
  7502. }
  7503. #u28022 .text {
  7504. position:absolute;
  7505. align-self:flex-start;
  7506. padding:0px 0px 0px 0px;
  7507. box-sizing:border-box;
  7508. width:100%;
  7509. }
  7510. #u28022_text {
  7511. border-width:0px;
  7512. white-space:nowrap;
  7513. text-transform:none;
  7514. }
  7515. #u28023_div {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:0px;
  7519. top:0px;
  7520. width:73px;
  7521. height:21px;
  7522. background:inherit;
  7523. background-color:rgba(255, 255, 255, 0);
  7524. border:none;
  7525. border-radius:0px;
  7526. -moz-box-shadow:none;
  7527. -webkit-box-shadow:none;
  7528. box-shadow:none;
  7529. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7530. font-weight:650;
  7531. font-style:normal;
  7532. font-size:18px;
  7533. color:#000000;
  7534. line-height:22px;
  7535. }
  7536. #u28023 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:1688px;
  7540. top:882px;
  7541. width:73px;
  7542. height:21px;
  7543. display:flex;
  7544. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7545. font-weight:650;
  7546. font-style:normal;
  7547. font-size:18px;
  7548. color:#000000;
  7549. line-height:22px;
  7550. }
  7551. #u28023 .text {
  7552. position:absolute;
  7553. align-self:flex-start;
  7554. padding:0px 0px 0px 0px;
  7555. box-sizing:border-box;
  7556. width:100%;
  7557. }
  7558. #u28023_text {
  7559. border-width:0px;
  7560. white-space:nowrap;
  7561. text-transform:none;
  7562. }
  7563. #u28024_div {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:61px;
  7569. height:32px;
  7570. background:inherit;
  7571. background-color:rgba(24, 144, 255, 1);
  7572. border:none;
  7573. border-radius:4px;
  7574. -moz-box-shadow:none;
  7575. -webkit-box-shadow:none;
  7576. box-shadow:none;
  7577. font-family:'Microsoft YaHei', sans-serif;
  7578. font-weight:400;
  7579. font-style:normal;
  7580. font-size:14px;
  7581. color:#FFFFFF;
  7582. }
  7583. #u28024 {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:2020px;
  7587. top:1114px;
  7588. width:61px;
  7589. height:32px;
  7590. display:flex;
  7591. font-family:'Microsoft YaHei', sans-serif;
  7592. font-weight:400;
  7593. font-style:normal;
  7594. font-size:14px;
  7595. color:#FFFFFF;
  7596. }
  7597. #u28024 .text {
  7598. position:absolute;
  7599. align-self:center;
  7600. padding:2px 16px 2px 16px;
  7601. box-sizing:border-box;
  7602. width:100%;
  7603. }
  7604. #u28024_text {
  7605. border-width:0px;
  7606. white-space:nowrap;
  7607. text-transform:none;
  7608. }
  7609. #u28025_div {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:66px;
  7615. height:32px;
  7616. background:inherit;
  7617. background-color:rgba(255, 255, 255, 1);
  7618. box-sizing:border-box;
  7619. border-width:1px;
  7620. border-style:solid;
  7621. border-color:rgba(217, 217, 217, 1);
  7622. border-radius:4px;
  7623. -moz-box-shadow:none;
  7624. -webkit-box-shadow:none;
  7625. box-shadow:none;
  7626. font-family:'Microsoft YaHei', sans-serif;
  7627. font-weight:400;
  7628. font-style:normal;
  7629. font-size:14px;
  7630. color:rgba(0, 0, 0, 0.647058823529412);
  7631. line-height:21px;
  7632. }
  7633. #u28025 {
  7634. border-width:0px;
  7635. position:absolute;
  7636. left:1938px;
  7637. top:1114px;
  7638. width:66px;
  7639. height:32px;
  7640. display:flex;
  7641. font-family:'Microsoft YaHei', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. font-size:14px;
  7645. color:rgba(0, 0, 0, 0.647058823529412);
  7646. line-height:21px;
  7647. }
  7648. #u28025 .text {
  7649. position:absolute;
  7650. align-self:center;
  7651. padding:2px 16px 2px 16px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u28025_text {
  7656. border-width:0px;
  7657. white-space:nowrap;
  7658. text-transform:none;
  7659. }
  7660. #u28026 label {
  7661. left:0px;
  7662. width:100%;
  7663. }
  7664. #u28026_img {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:4px;
  7669. width:12px;
  7670. height:12px;
  7671. }
  7672. #u28026 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:1763px;
  7676. top:929px;
  7677. width:100px;
  7678. height:20px;
  7679. display:flex;
  7680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7681. font-weight:400;
  7682. font-style:normal;
  7683. font-size:14px;
  7684. }
  7685. #u28026 .text {
  7686. position:absolute;
  7687. align-self:center;
  7688. padding:0px 2px 0px 2px;
  7689. box-sizing:border-box;
  7690. }
  7691. #u28026_img.selected {
  7692. }
  7693. #u28026.selected {
  7694. }
  7695. #u28026_img.disabled {
  7696. }
  7697. #u28026.disabled {
  7698. }
  7699. #u28026_img.selectedDisabled {
  7700. }
  7701. #u28026.selectedDisabled {
  7702. }
  7703. #u28026_text {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:14px;
  7707. top:0px;
  7708. width:84px;
  7709. word-wrap:break-word;
  7710. text-transform:none;
  7711. }
  7712. #u28026_input {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:0px;
  7718. height:0px;
  7719. opacity:0;
  7720. }
  7721. #u28027 label {
  7722. left:0px;
  7723. width:100%;
  7724. }
  7725. #u28027_img {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:0px;
  7729. top:4px;
  7730. width:12px;
  7731. height:12px;
  7732. }
  7733. #u28027 {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:1863px;
  7737. top:929px;
  7738. width:100px;
  7739. height:20px;
  7740. display:flex;
  7741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:14px;
  7745. }
  7746. #u28027 .text {
  7747. position:absolute;
  7748. align-self:center;
  7749. padding:0px 2px 0px 2px;
  7750. box-sizing:border-box;
  7751. }
  7752. #u28027_img.selected {
  7753. }
  7754. #u28027.selected {
  7755. }
  7756. #u28027_img.disabled {
  7757. }
  7758. #u28027.disabled {
  7759. }
  7760. #u28027_img.selectedDisabled {
  7761. }
  7762. #u28027.selectedDisabled {
  7763. }
  7764. #u28027_text {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:14px;
  7768. top:0px;
  7769. width:84px;
  7770. word-wrap:break-word;
  7771. text-transform:none;
  7772. }
  7773. #u28027_input {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:0px;
  7777. top:0px;
  7778. width:0px;
  7779. height:0px;
  7780. opacity:0;
  7781. }
  7782. #u28028_div {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:57px;
  7788. height:22px;
  7789. background:inherit;
  7790. background-color:rgba(255, 255, 255, 0);
  7791. border:none;
  7792. border-radius:0px;
  7793. -moz-box-shadow:none;
  7794. -webkit-box-shadow:none;
  7795. box-shadow:none;
  7796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7797. font-weight:400;
  7798. font-style:normal;
  7799. font-size:14px;
  7800. color:#666666;
  7801. line-height:22px;
  7802. }
  7803. #u28028 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:1688px;
  7807. top:969px;
  7808. width:57px;
  7809. height:22px;
  7810. display:flex;
  7811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:14px;
  7815. color:#666666;
  7816. line-height:22px;
  7817. }
  7818. #u28028 .text {
  7819. position:absolute;
  7820. align-self:flex-start;
  7821. padding:0px 0px 0px 0px;
  7822. box-sizing:border-box;
  7823. width:100%;
  7824. }
  7825. #u28028_text {
  7826. border-width:0px;
  7827. white-space:nowrap;
  7828. text-transform:none;
  7829. }
  7830. #u28029 label {
  7831. left:0px;
  7832. width:100%;
  7833. }
  7834. #u28029_img {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:4px;
  7839. width:12px;
  7840. height:12px;
  7841. }
  7842. #u28029 {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:1763px;
  7846. top:970px;
  7847. width:100px;
  7848. height:20px;
  7849. display:flex;
  7850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7851. font-weight:400;
  7852. font-style:normal;
  7853. font-size:14px;
  7854. }
  7855. #u28029 .text {
  7856. position:absolute;
  7857. align-self:center;
  7858. padding:0px 2px 0px 2px;
  7859. box-sizing:border-box;
  7860. }
  7861. #u28029_img.selected {
  7862. }
  7863. #u28029.selected {
  7864. }
  7865. #u28029_img.disabled {
  7866. }
  7867. #u28029.disabled {
  7868. }
  7869. #u28029_img.selectedDisabled {
  7870. }
  7871. #u28029.selectedDisabled {
  7872. }
  7873. #u28029_text {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:14px;
  7877. top:0px;
  7878. width:84px;
  7879. word-wrap:break-word;
  7880. text-transform:none;
  7881. }
  7882. #u28029_input {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:0px;
  7886. top:0px;
  7887. width:0px;
  7888. height:0px;
  7889. opacity:0;
  7890. }
  7891. #u28030 label {
  7892. left:0px;
  7893. width:100%;
  7894. }
  7895. #u28030_img {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:4px;
  7900. width:12px;
  7901. height:12px;
  7902. }
  7903. #u28030 {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:1863px;
  7907. top:970px;
  7908. width:100px;
  7909. height:20px;
  7910. display:flex;
  7911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7912. font-weight:400;
  7913. font-style:normal;
  7914. font-size:14px;
  7915. }
  7916. #u28030 .text {
  7917. position:absolute;
  7918. align-self:center;
  7919. padding:0px 2px 0px 2px;
  7920. box-sizing:border-box;
  7921. }
  7922. #u28030_img.selected {
  7923. }
  7924. #u28030.selected {
  7925. }
  7926. #u28030_img.disabled {
  7927. }
  7928. #u28030.disabled {
  7929. }
  7930. #u28030_img.selectedDisabled {
  7931. }
  7932. #u28030.selectedDisabled {
  7933. }
  7934. #u28030_text {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:14px;
  7938. top:0px;
  7939. width:84px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. }
  7943. #u28030_input {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:0px;
  7947. top:0px;
  7948. width:0px;
  7949. height:0px;
  7950. opacity:0;
  7951. }
  7952. #u28031 label {
  7953. left:0px;
  7954. width:100%;
  7955. }
  7956. #u28031_img {
  7957. border-width:0px;
  7958. position:absolute;
  7959. left:0px;
  7960. top:4px;
  7961. width:12px;
  7962. height:12px;
  7963. }
  7964. #u28031 {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:1963px;
  7968. top:970px;
  7969. width:100px;
  7970. height:20px;
  7971. display:flex;
  7972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:14px;
  7976. }
  7977. #u28031 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:0px 2px 0px 2px;
  7981. box-sizing:border-box;
  7982. }
  7983. #u28031_img.selected {
  7984. }
  7985. #u28031.selected {
  7986. }
  7987. #u28031_img.disabled {
  7988. }
  7989. #u28031.disabled {
  7990. }
  7991. #u28031_img.selectedDisabled {
  7992. }
  7993. #u28031.selectedDisabled {
  7994. }
  7995. #u28031_text {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:14px;
  7999. top:0px;
  8000. width:84px;
  8001. word-wrap:break-word;
  8002. text-transform:none;
  8003. }
  8004. #u28031_input {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:0px;
  8008. top:0px;
  8009. width:0px;
  8010. height:0px;
  8011. opacity:0;
  8012. }
  8013. #u28032_div {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:57px;
  8019. height:22px;
  8020. background:inherit;
  8021. background-color:rgba(255, 255, 255, 0);
  8022. border:none;
  8023. border-radius:0px;
  8024. -moz-box-shadow:none;
  8025. -webkit-box-shadow:none;
  8026. box-shadow:none;
  8027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:14px;
  8031. color:#666666;
  8032. line-height:22px;
  8033. }
  8034. #u28032 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:1688px;
  8038. top:1010px;
  8039. width:57px;
  8040. height:22px;
  8041. display:flex;
  8042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8043. font-weight:400;
  8044. font-style:normal;
  8045. font-size:14px;
  8046. color:#666666;
  8047. line-height:22px;
  8048. }
  8049. #u28032 .text {
  8050. position:absolute;
  8051. align-self:flex-start;
  8052. padding:0px 0px 0px 0px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u28032_text {
  8057. border-width:0px;
  8058. white-space:nowrap;
  8059. text-transform:none;
  8060. }
  8061. #u28033 {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:0px;
  8067. height:0px;
  8068. }
  8069. #u28034_div {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:0px;
  8073. top:0px;
  8074. width:280px;
  8075. height:30px;
  8076. background:inherit;
  8077. background-color:rgba(255, 255, 255, 1);
  8078. box-sizing:border-box;
  8079. border-width:1px;
  8080. border-style:solid;
  8081. border-color:rgba(215, 215, 215, 1);
  8082. border-radius:4px;
  8083. -moz-box-shadow:none;
  8084. -webkit-box-shadow:none;
  8085. box-shadow:none;
  8086. font-size:14px;
  8087. }
  8088. #u28034 {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:1763px;
  8092. top:1006px;
  8093. width:280px;
  8094. height:30px;
  8095. display:flex;
  8096. font-size:14px;
  8097. }
  8098. #u28034 .text {
  8099. position:absolute;
  8100. align-self:center;
  8101. padding:2px 2px 2px 2px;
  8102. box-sizing:border-box;
  8103. width:100%;
  8104. }
  8105. #u28034_text {
  8106. border-width:0px;
  8107. word-wrap:break-word;
  8108. text-transform:none;
  8109. visibility:hidden;
  8110. }
  8111. #u28035_input {
  8112. position:absolute;
  8113. left:0px;
  8114. top:0px;
  8115. width:268px;
  8116. height:23px;
  8117. padding:2px 2px 2px 2px;
  8118. font-family:'ArialMT', 'Arial', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:14px;
  8122. letter-spacing:normal;
  8123. color:#AAAAAA;
  8124. vertical-align:none;
  8125. text-align:left;
  8126. text-transform:none;
  8127. background-color:transparent;
  8128. border-color:transparent;
  8129. }
  8130. #u28035_input.disabled {
  8131. position:absolute;
  8132. left:0px;
  8133. top:0px;
  8134. width:268px;
  8135. height:23px;
  8136. padding:2px 2px 2px 2px;
  8137. font-family:'ArialMT', 'Arial', sans-serif;
  8138. font-weight:400;
  8139. font-style:normal;
  8140. font-size:14px;
  8141. letter-spacing:normal;
  8142. color:#AAAAAA;
  8143. vertical-align:none;
  8144. text-align:left;
  8145. text-transform:none;
  8146. background-color:transparent;
  8147. border-color:transparent;
  8148. }
  8149. #u28035_div {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:0px;
  8153. top:0px;
  8154. width:268px;
  8155. height:23px;
  8156. background:inherit;
  8157. background-color:rgba(255, 255, 255, 1);
  8158. border:none;
  8159. border-radius:0px;
  8160. -moz-box-shadow:none;
  8161. -webkit-box-shadow:none;
  8162. box-shadow:none;
  8163. font-size:14px;
  8164. color:#AAAAAA;
  8165. }
  8166. #u28035 {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:1771px;
  8170. top:1008px;
  8171. width:268px;
  8172. height:23px;
  8173. display:flex;
  8174. font-size:14px;
  8175. color:#AAAAAA;
  8176. }
  8177. #u28035 .text {
  8178. position:absolute;
  8179. align-self:flex-start;
  8180. padding:2px 2px 2px 2px;
  8181. box-sizing:border-box;
  8182. width:100%;
  8183. }
  8184. #u28035_div.disabled {
  8185. border-width:0px;
  8186. position:absolute;
  8187. left:0px;
  8188. top:0px;
  8189. width:268px;
  8190. height:23px;
  8191. background:inherit;
  8192. background-color:rgba(240, 240, 240, 1);
  8193. border:none;
  8194. border-radius:0px;
  8195. -moz-box-shadow:none;
  8196. -webkit-box-shadow:none;
  8197. box-shadow:none;
  8198. font-size:14px;
  8199. color:#AAAAAA;
  8200. }
  8201. #u28035.disabled {
  8202. }
  8203. .u28035_input_option {
  8204. font-size:14px;
  8205. }
  8206. #u28036_div {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:0px;
  8210. top:0px;
  8211. width:385px;
  8212. height:51px;
  8213. background:inherit;
  8214. background-color:rgba(255, 255, 255, 0);
  8215. border:none;
  8216. border-radius:0px;
  8217. -moz-box-shadow:none;
  8218. -webkit-box-shadow:none;
  8219. box-shadow:none;
  8220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8221. font-weight:400;
  8222. font-style:normal;
  8223. font-size:12px;
  8224. color:#1890FF;
  8225. }
  8226. #u28036 {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:1688px;
  8230. top:1046px;
  8231. width:385px;
  8232. height:51px;
  8233. display:flex;
  8234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8235. font-weight:400;
  8236. font-style:normal;
  8237. font-size:12px;
  8238. color:#1890FF;
  8239. }
  8240. #u28036 .text {
  8241. position:absolute;
  8242. align-self:flex-start;
  8243. padding:0px 0px 0px 0px;
  8244. box-sizing:border-box;
  8245. width:100%;
  8246. }
  8247. #u28036_text {
  8248. border-width:0px;
  8249. word-wrap:break-word;
  8250. text-transform:none;
  8251. }
  8252. #u28037 {
  8253. border-width:0px;
  8254. position:absolute;
  8255. left:0px;
  8256. top:0px;
  8257. width:0px;
  8258. height:0px;
  8259. }
  8260. #u28038_div {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:200px;
  8266. height:1180px;
  8267. background:inherit;
  8268. background-color:rgba(255, 255, 255, 1);
  8269. border:none;
  8270. border-radius:0px;
  8271. -moz-box-shadow:none;
  8272. -webkit-box-shadow:none;
  8273. box-shadow:none;
  8274. }
  8275. #u28038 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:120px;
  8279. top:50px;
  8280. width:200px;
  8281. height:1180px;
  8282. display:flex;
  8283. }
  8284. #u28038 .text {
  8285. position:absolute;
  8286. align-self:center;
  8287. padding:2px 2px 2px 2px;
  8288. box-sizing:border-box;
  8289. width:100%;
  8290. }
  8291. #u28038_text {
  8292. border-width:0px;
  8293. word-wrap:break-word;
  8294. text-transform:none;
  8295. visibility:hidden;
  8296. }
  8297. #u28039_div {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:200px;
  8303. height:60px;
  8304. background:inherit;
  8305. background-color:rgba(224, 231, 247, 1);
  8306. border:none;
  8307. border-radius:0px;
  8308. -moz-box-shadow:none;
  8309. -webkit-box-shadow:none;
  8310. box-shadow:none;
  8311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8312. font-weight:500;
  8313. font-style:normal;
  8314. font-size:18px;
  8315. }
  8316. #u28039 {
  8317. border-width:0px;
  8318. position:absolute;
  8319. left:120px;
  8320. top:50px;
  8321. width:200px;
  8322. height:60px;
  8323. display:flex;
  8324. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8325. font-weight:500;
  8326. font-style:normal;
  8327. font-size:18px;
  8328. }
  8329. #u28039 .text {
  8330. position:absolute;
  8331. align-self:center;
  8332. padding:0px 0px 0px 20px;
  8333. box-sizing:border-box;
  8334. width:100%;
  8335. }
  8336. #u28039_text {
  8337. border-width:0px;
  8338. word-wrap:break-word;
  8339. text-transform:none;
  8340. }
  8341. #u28040_div {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:97px;
  8347. height:22px;
  8348. background:inherit;
  8349. background-color:rgba(255, 255, 255, 0);
  8350. border:none;
  8351. border-radius:0px;
  8352. -moz-box-shadow:none;
  8353. -webkit-box-shadow:none;
  8354. box-shadow:none;
  8355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8356. font-weight:400;
  8357. font-style:normal;
  8358. font-size:16px;
  8359. }
  8360. #u28040 {
  8361. border-width:0px;
  8362. position:absolute;
  8363. left:146px;
  8364. top:167px;
  8365. width:97px;
  8366. height:22px;
  8367. display:flex;
  8368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8369. font-weight:400;
  8370. font-style:normal;
  8371. font-size:16px;
  8372. }
  8373. #u28040 .text {
  8374. position:absolute;
  8375. align-self:flex-start;
  8376. padding:0px 0px 0px 0px;
  8377. box-sizing:border-box;
  8378. width:100%;
  8379. }
  8380. #u28040_text {
  8381. border-width:0px;
  8382. white-space:nowrap;
  8383. text-transform:none;
  8384. }
  8385. #u28041_div {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:0px;
  8389. top:0px;
  8390. width:97px;
  8391. height:22px;
  8392. background:inherit;
  8393. background-color:rgba(255, 255, 255, 0);
  8394. border:none;
  8395. border-radius:0px;
  8396. -moz-box-shadow:none;
  8397. -webkit-box-shadow:none;
  8398. box-shadow:none;
  8399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8400. font-weight:400;
  8401. font-style:normal;
  8402. font-size:16px;
  8403. }
  8404. #u28041 {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:146px;
  8408. top:209px;
  8409. width:97px;
  8410. height:22px;
  8411. display:flex;
  8412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8413. font-weight:400;
  8414. font-style:normal;
  8415. font-size:16px;
  8416. }
  8417. #u28041 .text {
  8418. position:absolute;
  8419. align-self:flex-start;
  8420. padding:0px 0px 0px 0px;
  8421. box-sizing:border-box;
  8422. width:100%;
  8423. }
  8424. #u28041_text {
  8425. border-width:0px;
  8426. white-space:nowrap;
  8427. text-transform:none;
  8428. }
  8429. #u28042_div {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:0px;
  8433. top:0px;
  8434. width:73px;
  8435. height:17px;
  8436. background:inherit;
  8437. background-color:rgba(255, 255, 255, 0);
  8438. border:none;
  8439. border-radius:0px;
  8440. -moz-box-shadow:none;
  8441. -webkit-box-shadow:none;
  8442. box-shadow:none;
  8443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8444. font-weight:400;
  8445. font-style:normal;
  8446. font-size:12px;
  8447. color:#AAAAAA;
  8448. }
  8449. #u28042 {
  8450. border-width:0px;
  8451. position:absolute;
  8452. left:146px;
  8453. top:130px;
  8454. width:73px;
  8455. height:17px;
  8456. display:flex;
  8457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:12px;
  8461. color:#AAAAAA;
  8462. }
  8463. #u28042 .text {
  8464. position:absolute;
  8465. align-self:flex-start;
  8466. padding:0px 0px 0px 0px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u28042_text {
  8471. border-width:0px;
  8472. white-space:nowrap;
  8473. text-transform:none;
  8474. }
  8475. #u28043_div {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:73px;
  8481. height:17px;
  8482. background:inherit;
  8483. background-color:rgba(255, 255, 255, 0);
  8484. border:none;
  8485. border-radius:0px;
  8486. -moz-box-shadow:none;
  8487. -webkit-box-shadow:none;
  8488. box-shadow:none;
  8489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. font-size:12px;
  8493. color:#AAAAAA;
  8494. }
  8495. #u28043 {
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:146px;
  8499. top:397px;
  8500. width:73px;
  8501. height:17px;
  8502. display:flex;
  8503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8504. font-weight:400;
  8505. font-style:normal;
  8506. font-size:12px;
  8507. color:#AAAAAA;
  8508. }
  8509. #u28043 .text {
  8510. position:absolute;
  8511. align-self:flex-start;
  8512. padding:0px 0px 0px 0px;
  8513. box-sizing:border-box;
  8514. width:100%;
  8515. }
  8516. #u28043_text {
  8517. border-width:0px;
  8518. white-space:nowrap;
  8519. text-transform:none;
  8520. }
  8521. #u28044_img {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:201px;
  8527. height:2px;
  8528. }
  8529. #u28044 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:120px;
  8533. top:375px;
  8534. width:200px;
  8535. height:1px;
  8536. display:flex;
  8537. }
  8538. #u28044 .text {
  8539. position:absolute;
  8540. align-self:center;
  8541. padding:2px 2px 2px 2px;
  8542. box-sizing:border-box;
  8543. width:100%;
  8544. }
  8545. #u28044_text {
  8546. border-width:0px;
  8547. word-wrap:break-word;
  8548. text-transform:none;
  8549. visibility:hidden;
  8550. }
  8551. #u28045_div {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:0px;
  8555. top:0px;
  8556. width:97px;
  8557. height:22px;
  8558. background:inherit;
  8559. background-color:rgba(255, 255, 255, 0);
  8560. border:none;
  8561. border-radius:0px;
  8562. -moz-box-shadow:none;
  8563. -webkit-box-shadow:none;
  8564. box-shadow:none;
  8565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8566. font-weight:400;
  8567. font-style:normal;
  8568. font-size:16px;
  8569. }
  8570. #u28045 {
  8571. border-width:0px;
  8572. position:absolute;
  8573. left:146px;
  8574. top:435px;
  8575. width:97px;
  8576. height:22px;
  8577. display:flex;
  8578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8579. font-weight:400;
  8580. font-style:normal;
  8581. font-size:16px;
  8582. }
  8583. #u28045 .text {
  8584. position:absolute;
  8585. align-self:flex-start;
  8586. padding:0px 0px 0px 0px;
  8587. box-sizing:border-box;
  8588. width:100%;
  8589. }
  8590. #u28045_text {
  8591. border-width:0px;
  8592. white-space:nowrap;
  8593. text-transform:none;
  8594. }
  8595. #u28046_div {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:97px;
  8601. height:22px;
  8602. background:inherit;
  8603. background-color:rgba(255, 255, 255, 0);
  8604. border:none;
  8605. border-radius:0px;
  8606. -moz-box-shadow:none;
  8607. -webkit-box-shadow:none;
  8608. box-shadow:none;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:16px;
  8613. }
  8614. #u28046 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:146px;
  8618. top:477px;
  8619. width:97px;
  8620. height:22px;
  8621. display:flex;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:16px;
  8626. }
  8627. #u28046 .text {
  8628. position:absolute;
  8629. align-self:flex-start;
  8630. padding:0px 0px 0px 0px;
  8631. box-sizing:border-box;
  8632. width:100%;
  8633. }
  8634. #u28046_text {
  8635. border-width:0px;
  8636. white-space:nowrap;
  8637. text-transform:none;
  8638. }
  8639. #u28047_div {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:0px;
  8643. top:0px;
  8644. width:97px;
  8645. height:22px;
  8646. background:inherit;
  8647. background-color:rgba(255, 255, 255, 0);
  8648. border:none;
  8649. border-radius:0px;
  8650. -moz-box-shadow:none;
  8651. -webkit-box-shadow:none;
  8652. box-shadow:none;
  8653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8654. font-weight:400;
  8655. font-style:normal;
  8656. font-size:16px;
  8657. }
  8658. #u28047 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:146px;
  8662. top:251px;
  8663. width:97px;
  8664. height:22px;
  8665. display:flex;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:16px;
  8670. }
  8671. #u28047 .text {
  8672. position:absolute;
  8673. align-self:flex-start;
  8674. padding:0px 0px 0px 0px;
  8675. box-sizing:border-box;
  8676. width:100%;
  8677. }
  8678. #u28047_text {
  8679. border-width:0px;
  8680. white-space:nowrap;
  8681. text-transform:none;
  8682. }
  8683. #u28048_div {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:0px;
  8688. width:97px;
  8689. height:22px;
  8690. background:inherit;
  8691. background-color:rgba(255, 255, 255, 0);
  8692. border:none;
  8693. border-radius:0px;
  8694. -moz-box-shadow:none;
  8695. -webkit-box-shadow:none;
  8696. box-shadow:none;
  8697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8698. font-weight:400;
  8699. font-style:normal;
  8700. font-size:16px;
  8701. }
  8702. #u28048 {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:146px;
  8706. top:293px;
  8707. width:97px;
  8708. height:22px;
  8709. display:flex;
  8710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8711. font-weight:400;
  8712. font-style:normal;
  8713. font-size:16px;
  8714. }
  8715. #u28048 .text {
  8716. position:absolute;
  8717. align-self:flex-start;
  8718. padding:0px 0px 0px 0px;
  8719. box-sizing:border-box;
  8720. width:100%;
  8721. }
  8722. #u28048_text {
  8723. border-width:0px;
  8724. white-space:nowrap;
  8725. text-transform:none;
  8726. }
  8727. #u28049_div {
  8728. border-width:0px;
  8729. position:absolute;
  8730. left:0px;
  8731. top:0px;
  8732. width:97px;
  8733. height:22px;
  8734. background:inherit;
  8735. background-color:rgba(255, 255, 255, 0);
  8736. border:none;
  8737. border-radius:0px;
  8738. -moz-box-shadow:none;
  8739. -webkit-box-shadow:none;
  8740. box-shadow:none;
  8741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8742. font-weight:400;
  8743. font-style:normal;
  8744. font-size:16px;
  8745. }
  8746. #u28049 {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:146px;
  8750. top:519px;
  8751. width:97px;
  8752. height:22px;
  8753. display:flex;
  8754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8755. font-weight:400;
  8756. font-style:normal;
  8757. font-size:16px;
  8758. }
  8759. #u28049 .text {
  8760. position:absolute;
  8761. align-self:flex-start;
  8762. padding:0px 0px 0px 0px;
  8763. box-sizing:border-box;
  8764. width:100%;
  8765. }
  8766. #u28049_text {
  8767. border-width:0px;
  8768. white-space:nowrap;
  8769. text-transform:none;
  8770. }
  8771. #u28050_div {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:97px;
  8777. height:22px;
  8778. background:inherit;
  8779. background-color:rgba(255, 255, 255, 0);
  8780. border:none;
  8781. border-radius:0px;
  8782. -moz-box-shadow:none;
  8783. -webkit-box-shadow:none;
  8784. box-shadow:none;
  8785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8786. font-weight:400;
  8787. font-style:normal;
  8788. font-size:16px;
  8789. }
  8790. #u28050 {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:146px;
  8794. top:561px;
  8795. width:97px;
  8796. height:22px;
  8797. display:flex;
  8798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8799. font-weight:400;
  8800. font-style:normal;
  8801. font-size:16px;
  8802. }
  8803. #u28050 .text {
  8804. position:absolute;
  8805. align-self:flex-start;
  8806. padding:0px 0px 0px 0px;
  8807. box-sizing:border-box;
  8808. width:100%;
  8809. }
  8810. #u28050_text {
  8811. border-width:0px;
  8812. white-space:nowrap;
  8813. text-transform:none;
  8814. }
  8815. #u28051_div {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:0px;
  8819. top:0px;
  8820. width:122px;
  8821. height:22px;
  8822. background:inherit;
  8823. background-color:rgba(255, 255, 255, 0);
  8824. border:none;
  8825. border-radius:0px;
  8826. -moz-box-shadow:none;
  8827. -webkit-box-shadow:none;
  8828. box-shadow:none;
  8829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8830. font-weight:400;
  8831. font-style:normal;
  8832. font-size:16px;
  8833. }
  8834. #u28051 {
  8835. border-width:0px;
  8836. position:absolute;
  8837. left:146px;
  8838. top:603px;
  8839. width:122px;
  8840. height:22px;
  8841. display:flex;
  8842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:16px;
  8846. }
  8847. #u28051 .text {
  8848. position:absolute;
  8849. align-self:flex-start;
  8850. padding:0px 0px 0px 0px;
  8851. box-sizing:border-box;
  8852. width:100%;
  8853. }
  8854. #u28051_text {
  8855. border-width:0px;
  8856. white-space:nowrap;
  8857. text-transform:none;
  8858. }
  8859. #u28052_div {
  8860. border-width:0px;
  8861. position:absolute;
  8862. left:0px;
  8863. top:0px;
  8864. width:49px;
  8865. height:17px;
  8866. background:inherit;
  8867. background-color:rgba(255, 255, 255, 0);
  8868. border:none;
  8869. border-radius:0px;
  8870. -moz-box-shadow:none;
  8871. -webkit-box-shadow:none;
  8872. box-shadow:none;
  8873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8874. font-weight:400;
  8875. font-style:normal;
  8876. font-size:12px;
  8877. color:#AAAAAA;
  8878. }
  8879. #u28052 {
  8880. border-width:0px;
  8881. position:absolute;
  8882. left:146px;
  8883. top:809px;
  8884. width:49px;
  8885. height:17px;
  8886. display:flex;
  8887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8888. font-weight:400;
  8889. font-style:normal;
  8890. font-size:12px;
  8891. color:#AAAAAA;
  8892. }
  8893. #u28052 .text {
  8894. position:absolute;
  8895. align-self:flex-start;
  8896. padding:0px 0px 0px 0px;
  8897. box-sizing:border-box;
  8898. width:100%;
  8899. }
  8900. #u28052_text {
  8901. border-width:0px;
  8902. white-space:nowrap;
  8903. text-transform:none;
  8904. }
  8905. #u28053_img {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:201px;
  8911. height:2px;
  8912. }
  8913. #u28053 {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:120px;
  8917. top:787px;
  8918. width:200px;
  8919. height:1px;
  8920. display:flex;
  8921. }
  8922. #u28053 .text {
  8923. position:absolute;
  8924. align-self:center;
  8925. padding:2px 2px 2px 2px;
  8926. box-sizing:border-box;
  8927. width:100%;
  8928. }
  8929. #u28053_text {
  8930. border-width:0px;
  8931. word-wrap:break-word;
  8932. text-transform:none;
  8933. visibility:hidden;
  8934. }
  8935. #u28054_div {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:97px;
  8941. height:22px;
  8942. background:inherit;
  8943. background-color:rgba(255, 255, 255, 0);
  8944. border:none;
  8945. border-radius:0px;
  8946. -moz-box-shadow:none;
  8947. -webkit-box-shadow:none;
  8948. box-shadow:none;
  8949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8950. font-weight:400;
  8951. font-style:normal;
  8952. font-size:16px;
  8953. }
  8954. #u28054 {
  8955. border-width:0px;
  8956. position:absolute;
  8957. left:146px;
  8958. top:847px;
  8959. width:97px;
  8960. height:22px;
  8961. display:flex;
  8962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8963. font-weight:400;
  8964. font-style:normal;
  8965. font-size:16px;
  8966. }
  8967. #u28054 .text {
  8968. position:absolute;
  8969. align-self:flex-start;
  8970. padding:0px 0px 0px 0px;
  8971. box-sizing:border-box;
  8972. width:100%;
  8973. }
  8974. #u28054_text {
  8975. border-width:0px;
  8976. white-space:nowrap;
  8977. text-transform:none;
  8978. }
  8979. #u28055_div {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:0px;
  8983. top:0px;
  8984. width:97px;
  8985. height:22px;
  8986. background:inherit;
  8987. background-color:rgba(255, 255, 255, 0);
  8988. border:none;
  8989. border-radius:0px;
  8990. -moz-box-shadow:none;
  8991. -webkit-box-shadow:none;
  8992. box-shadow:none;
  8993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8994. font-weight:400;
  8995. font-style:normal;
  8996. font-size:16px;
  8997. }
  8998. #u28055 {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:146px;
  9002. top:889px;
  9003. width:97px;
  9004. height:22px;
  9005. display:flex;
  9006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9007. font-weight:400;
  9008. font-style:normal;
  9009. font-size:16px;
  9010. }
  9011. #u28055 .text {
  9012. position:absolute;
  9013. align-self:flex-start;
  9014. padding:0px 0px 0px 0px;
  9015. box-sizing:border-box;
  9016. width:100%;
  9017. }
  9018. #u28055_text {
  9019. border-width:0px;
  9020. white-space:nowrap;
  9021. text-transform:none;
  9022. }
  9023. #u28056_div {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:0px;
  9027. top:0px;
  9028. width:97px;
  9029. height:22px;
  9030. background:inherit;
  9031. background-color:rgba(255, 255, 255, 0);
  9032. border:none;
  9033. border-radius:0px;
  9034. -moz-box-shadow:none;
  9035. -webkit-box-shadow:none;
  9036. box-shadow:none;
  9037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9038. font-weight:400;
  9039. font-style:normal;
  9040. font-size:16px;
  9041. }
  9042. #u28056 {
  9043. border-width:0px;
  9044. position:absolute;
  9045. left:146px;
  9046. top:335px;
  9047. width:97px;
  9048. height:22px;
  9049. display:flex;
  9050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9051. font-weight:400;
  9052. font-style:normal;
  9053. font-size:16px;
  9054. }
  9055. #u28056 .text {
  9056. position:absolute;
  9057. align-self:flex-start;
  9058. padding:0px 0px 0px 0px;
  9059. box-sizing:border-box;
  9060. width:100%;
  9061. }
  9062. #u28056_text {
  9063. border-width:0px;
  9064. white-space:nowrap;
  9065. text-transform:none;
  9066. }
  9067. #u28057_div {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:0px;
  9071. top:0px;
  9072. width:97px;
  9073. height:22px;
  9074. background:inherit;
  9075. background-color:rgba(255, 255, 255, 0);
  9076. border:none;
  9077. border-radius:0px;
  9078. -moz-box-shadow:none;
  9079. -webkit-box-shadow:none;
  9080. box-shadow:none;
  9081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9082. font-weight:400;
  9083. font-style:normal;
  9084. font-size:16px;
  9085. }
  9086. #u28057 {
  9087. border-width:0px;
  9088. position:absolute;
  9089. left:146px;
  9090. top:931px;
  9091. width:97px;
  9092. height:22px;
  9093. display:flex;
  9094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9095. font-weight:400;
  9096. font-style:normal;
  9097. font-size:16px;
  9098. }
  9099. #u28057 .text {
  9100. position:absolute;
  9101. align-self:flex-start;
  9102. padding:0px 0px 0px 0px;
  9103. box-sizing:border-box;
  9104. width:100%;
  9105. }
  9106. #u28057_text {
  9107. border-width:0px;
  9108. white-space:nowrap;
  9109. text-transform:none;
  9110. }
  9111. #u28058_div {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:0px;
  9115. top:0px;
  9116. width:49px;
  9117. height:17px;
  9118. background:inherit;
  9119. background-color:rgba(255, 255, 255, 0);
  9120. border:none;
  9121. border-radius:0px;
  9122. -moz-box-shadow:none;
  9123. -webkit-box-shadow:none;
  9124. box-shadow:none;
  9125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9126. font-weight:400;
  9127. font-style:normal;
  9128. font-size:12px;
  9129. color:#AAAAAA;
  9130. }
  9131. #u28058 {
  9132. border-width:0px;
  9133. position:absolute;
  9134. left:146px;
  9135. top:995px;
  9136. width:49px;
  9137. height:17px;
  9138. display:flex;
  9139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9140. font-weight:400;
  9141. font-style:normal;
  9142. font-size:12px;
  9143. color:#AAAAAA;
  9144. }
  9145. #u28058 .text {
  9146. position:absolute;
  9147. align-self:flex-start;
  9148. padding:0px 0px 0px 0px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u28058_text {
  9153. border-width:0px;
  9154. white-space:nowrap;
  9155. text-transform:none;
  9156. }
  9157. #u28059_img {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:201px;
  9163. height:2px;
  9164. }
  9165. #u28059 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:120px;
  9169. top:973px;
  9170. width:200px;
  9171. height:1px;
  9172. display:flex;
  9173. }
  9174. #u28059 .text {
  9175. position:absolute;
  9176. align-self:center;
  9177. padding:2px 2px 2px 2px;
  9178. box-sizing:border-box;
  9179. width:100%;
  9180. }
  9181. #u28059_text {
  9182. border-width:0px;
  9183. word-wrap:break-word;
  9184. text-transform:none;
  9185. visibility:hidden;
  9186. }
  9187. #u28060_div {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:97px;
  9193. height:22px;
  9194. background:inherit;
  9195. background-color:rgba(255, 255, 255, 0);
  9196. border:none;
  9197. border-radius:0px;
  9198. -moz-box-shadow:none;
  9199. -webkit-box-shadow:none;
  9200. box-shadow:none;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9202. font-weight:400;
  9203. font-style:normal;
  9204. font-size:16px;
  9205. }
  9206. #u28060 {
  9207. border-width:0px;
  9208. position:absolute;
  9209. left:146px;
  9210. top:1033px;
  9211. width:97px;
  9212. height:22px;
  9213. display:flex;
  9214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9215. font-weight:400;
  9216. font-style:normal;
  9217. font-size:16px;
  9218. }
  9219. #u28060 .text {
  9220. position:absolute;
  9221. align-self:flex-start;
  9222. padding:0px 0px 0px 0px;
  9223. box-sizing:border-box;
  9224. width:100%;
  9225. }
  9226. #u28060_text {
  9227. border-width:0px;
  9228. white-space:nowrap;
  9229. text-transform:none;
  9230. }
  9231. #u28061_div {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:0px;
  9235. top:0px;
  9236. width:73px;
  9237. height:17px;
  9238. background:inherit;
  9239. background-color:rgba(255, 255, 255, 0);
  9240. border:none;
  9241. border-radius:0px;
  9242. -moz-box-shadow:none;
  9243. -webkit-box-shadow:none;
  9244. box-shadow:none;
  9245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9246. font-weight:400;
  9247. font-style:normal;
  9248. font-size:12px;
  9249. color:#AAAAAA;
  9250. }
  9251. #u28061 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:146px;
  9255. top:667px;
  9256. width:73px;
  9257. height:17px;
  9258. display:flex;
  9259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9260. font-weight:400;
  9261. font-style:normal;
  9262. font-size:12px;
  9263. color:#AAAAAA;
  9264. }
  9265. #u28061 .text {
  9266. position:absolute;
  9267. align-self:flex-start;
  9268. padding:0px 0px 0px 0px;
  9269. box-sizing:border-box;
  9270. width:100%;
  9271. }
  9272. #u28061_text {
  9273. border-width:0px;
  9274. white-space:nowrap;
  9275. text-transform:none;
  9276. }
  9277. #u28062_img {
  9278. border-width:0px;
  9279. position:absolute;
  9280. left:0px;
  9281. top:0px;
  9282. width:201px;
  9283. height:2px;
  9284. }
  9285. #u28062 {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:120px;
  9289. top:645px;
  9290. width:200px;
  9291. height:1px;
  9292. display:flex;
  9293. }
  9294. #u28062 .text {
  9295. position:absolute;
  9296. align-self:center;
  9297. padding:2px 2px 2px 2px;
  9298. box-sizing:border-box;
  9299. width:100%;
  9300. }
  9301. #u28062_text {
  9302. border-width:0px;
  9303. word-wrap:break-word;
  9304. text-transform:none;
  9305. visibility:hidden;
  9306. }
  9307. #u28063_div {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:97px;
  9313. height:22px;
  9314. background:inherit;
  9315. background-color:rgba(255, 255, 255, 0);
  9316. border:none;
  9317. border-radius:0px;
  9318. -moz-box-shadow:none;
  9319. -webkit-box-shadow:none;
  9320. box-shadow:none;
  9321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9322. font-weight:400;
  9323. font-style:normal;
  9324. font-size:16px;
  9325. }
  9326. #u28063 {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:146px;
  9330. top:705px;
  9331. width:97px;
  9332. height:22px;
  9333. display:flex;
  9334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9335. font-weight:400;
  9336. font-style:normal;
  9337. font-size:16px;
  9338. }
  9339. #u28063 .text {
  9340. position:absolute;
  9341. align-self:flex-start;
  9342. padding:0px 0px 0px 0px;
  9343. box-sizing:border-box;
  9344. width:100%;
  9345. }
  9346. #u28063_text {
  9347. border-width:0px;
  9348. white-space:nowrap;
  9349. text-transform:none;
  9350. }
  9351. #u28064_div {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:0px;
  9355. top:0px;
  9356. width:97px;
  9357. height:22px;
  9358. background:inherit;
  9359. background-color:rgba(255, 255, 255, 0);
  9360. border:none;
  9361. border-radius:0px;
  9362. -moz-box-shadow:none;
  9363. -webkit-box-shadow:none;
  9364. box-shadow:none;
  9365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9366. font-weight:400;
  9367. font-style:normal;
  9368. font-size:16px;
  9369. }
  9370. #u28064 {
  9371. border-width:0px;
  9372. position:absolute;
  9373. left:146px;
  9374. top:747px;
  9375. width:97px;
  9376. height:22px;
  9377. display:flex;
  9378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9379. font-weight:400;
  9380. font-style:normal;
  9381. font-size:16px;
  9382. }
  9383. #u28064 .text {
  9384. position:absolute;
  9385. align-self:flex-start;
  9386. padding:0px 0px 0px 0px;
  9387. box-sizing:border-box;
  9388. width:100%;
  9389. }
  9390. #u28064_text {
  9391. border-width:0px;
  9392. white-space:nowrap;
  9393. text-transform:none;
  9394. }