styles.css 107 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u28620_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. #u28620 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u28620 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u28620_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u28621_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. #u28621 {
  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. #u28621 .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. #u28621_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u28622_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. #u28622 {
  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. #u28622 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u28622_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u28623 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u28624_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u28624 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u28624 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u28624_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u28625_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. #u28625 {
  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. #u28625 .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. #u28625_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u28626_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. #u28626 {
  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. #u28626 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u28626_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u28627 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u28628_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u28628_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u28628_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u28628 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u28628 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u28628_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u28628.disabled {
  356. }
  357. .u28628_input_option {
  358. font-size:14px;
  359. }
  360. #u28629_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u28629 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u28629 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u28629_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u28630_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u28630 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u28630 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u28630_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u28631_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u28631 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u28631 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u28631_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u28632 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u28633_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u28633 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u28633 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u28633_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u28634_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u28634 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u28634 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u28634_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u28635 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u28636_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u28636 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u28636 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u28636_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u28637_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u28637 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u28637 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u28637_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u28638 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u28639_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u28639 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u28639 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u28639_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u28640_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u28640 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u28640 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u28640_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u28641 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u28642_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u28642 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u28642 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u28642_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u28643_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u28643 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u28643 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u28643_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u28644 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u28645_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u28645 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u28645 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u28645_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u28646_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u28646 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u28646 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u28646_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u28647 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u28648_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u28648 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u28648 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u28648_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u28649_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u28649 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u28649 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u28649_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u28650 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u28651_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u28651 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u28651 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u28651_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u28652_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u28652 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u28652 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u28652_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u28653 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u28654_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u28654 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u28654 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u28654_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u28655_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u28655 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u28655 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u28655_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u28656 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u28657_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u28657 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u28657 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u28657_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u28658_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u28658 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u28658 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u28658_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u28659 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u28660_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u28660 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u28660 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u28660_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u28661_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u28661 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u28661 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u28661_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u28662_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u28662 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u28662 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u28662_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u28663_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u28663 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u28663 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u28663_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u28664_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u28664 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u28664 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u28664_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u28665_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u28665 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u28665 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u28665_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u28666 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u28667_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u28667 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u28667 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u28667_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u28668_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u28668 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u28668 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u28668_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u28669 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u28670_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u28670 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u28670 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u28670_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u28671_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u28671 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u28671 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u28671_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u28672_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:910px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u28672 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:320px;
  1658. width:1260px;
  1659. height:910px;
  1660. display:flex;
  1661. }
  1662. #u28672 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u28672_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u28673_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:1260px;
  1681. height:260px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 1);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. }
  1690. #u28673 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:330px;
  1694. top:50px;
  1695. width:1260px;
  1696. height:260px;
  1697. display:flex;
  1698. }
  1699. #u28673 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:2px 2px 2px 2px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u28673_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u28674_div {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:109px;
  1718. height:50px;
  1719. background:inherit;
  1720. background-color:rgba(224, 231, 247, 0);
  1721. border:none;
  1722. border-radius:0px;
  1723. -moz-box-shadow:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1727. font-weight:500;
  1728. font-style:normal;
  1729. font-size:18px;
  1730. }
  1731. #u28674 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:350px;
  1735. top:50px;
  1736. width:109px;
  1737. height:50px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1740. font-weight:500;
  1741. font-style:normal;
  1742. font-size:18px;
  1743. }
  1744. #u28674 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:0px 0px 0px 0px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u28674_text {
  1752. border-width:0px;
  1753. white-space:nowrap;
  1754. text-transform:none;
  1755. }
  1756. #u28675 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:352px;
  1760. top:391px;
  1761. width:1218px;
  1762. height:190px;
  1763. }
  1764. #u28676_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:152px;
  1770. height:38px;
  1771. }
  1772. #u28676 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:152px;
  1778. height:38px;
  1779. display:flex;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:14px;
  1784. color:#FFFFFF;
  1785. line-height:30px;
  1786. }
  1787. #u28676 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 0px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u28676_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u28677_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:152px;
  1805. height:38px;
  1806. }
  1807. #u28677 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:152px;
  1811. top:0px;
  1812. width:152px;
  1813. height:38px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:14px;
  1819. color:#FFFFFF;
  1820. line-height:30px;
  1821. }
  1822. #u28677 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 0px 2px 0px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u28677_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. }
  1834. #u28678_img {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:152px;
  1840. height:38px;
  1841. }
  1842. #u28678 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:304px;
  1846. top:0px;
  1847. width:152px;
  1848. height:38px;
  1849. display:flex;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:14px;
  1854. color:#FFFFFF;
  1855. line-height:30px;
  1856. }
  1857. #u28678 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 0px 2px 0px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u28678_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u28679_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:152px;
  1875. height:38px;
  1876. }
  1877. #u28679 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:456px;
  1881. top:0px;
  1882. width:152px;
  1883. height:38px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:14px;
  1889. color:#FFFFFF;
  1890. line-height:30px;
  1891. }
  1892. #u28679 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 0px 2px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u28679_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. }
  1904. #u28680_img {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:152px;
  1910. height:38px;
  1911. }
  1912. #u28680 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:608px;
  1916. top:0px;
  1917. width:152px;
  1918. height:38px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:14px;
  1924. color:#FFFFFF;
  1925. line-height:30px;
  1926. }
  1927. #u28680 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:2px 0px 2px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u28680_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. }
  1939. #u28681_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:152px;
  1945. height:38px;
  1946. }
  1947. #u28681 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:760px;
  1951. top:0px;
  1952. width:152px;
  1953. height:38px;
  1954. display:flex;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:14px;
  1959. color:#FFFFFF;
  1960. line-height:30px;
  1961. }
  1962. #u28681 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 0px 2px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u28681_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u28682_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:152px;
  1980. height:38px;
  1981. }
  1982. #u28682 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:912px;
  1986. top:0px;
  1987. width:152px;
  1988. height:38px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:14px;
  1994. color:#FFFFFF;
  1995. line-height:30px;
  1996. }
  1997. #u28682 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 0px 2px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u28682_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u28683_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:154px;
  2015. height:38px;
  2016. }
  2017. #u28683 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:1064px;
  2021. top:0px;
  2022. width:154px;
  2023. height:38px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:14px;
  2029. color:#FFFFFF;
  2030. line-height:30px;
  2031. }
  2032. #u28683 .text {
  2033. position:absolute;
  2034. align-self:center;
  2035. padding:2px 0px 2px 0px;
  2036. box-sizing:border-box;
  2037. width:100%;
  2038. }
  2039. #u28683_text {
  2040. border-width:0px;
  2041. word-wrap:break-word;
  2042. text-transform:none;
  2043. }
  2044. #u28684_img {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:152px;
  2050. height:38px;
  2051. }
  2052. #u28684 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:38px;
  2057. width:152px;
  2058. height:38px;
  2059. display:flex;
  2060. font-size:14px;
  2061. line-height:30px;
  2062. }
  2063. #u28684 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 0px 2px 0px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u28684_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u28685_img {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:152px;
  2082. height:38px;
  2083. }
  2084. #u28685 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:152px;
  2088. top:38px;
  2089. width:152px;
  2090. height:38px;
  2091. display:flex;
  2092. font-size:14px;
  2093. line-height:30px;
  2094. }
  2095. #u28685 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 0px 2px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u28685_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. visibility:hidden;
  2107. }
  2108. #u28686_img {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:152px;
  2114. height:38px;
  2115. }
  2116. #u28686 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:304px;
  2120. top:38px;
  2121. width:152px;
  2122. height:38px;
  2123. display:flex;
  2124. font-size:14px;
  2125. line-height:30px;
  2126. }
  2127. #u28686 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 0px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u28686_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u28687_img {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:152px;
  2146. height:38px;
  2147. }
  2148. #u28687 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:456px;
  2152. top:38px;
  2153. width:152px;
  2154. height:38px;
  2155. display:flex;
  2156. font-size:14px;
  2157. line-height:30px;
  2158. }
  2159. #u28687 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 0px 2px 0px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u28687_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. visibility:hidden;
  2171. }
  2172. #u28688_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:152px;
  2178. height:38px;
  2179. }
  2180. #u28688 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:608px;
  2184. top:38px;
  2185. width:152px;
  2186. height:38px;
  2187. display:flex;
  2188. font-size:14px;
  2189. line-height:30px;
  2190. }
  2191. #u28688 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 0px 2px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u28688_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. visibility:hidden;
  2203. }
  2204. #u28689_img {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:152px;
  2210. height:38px;
  2211. }
  2212. #u28689 {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:760px;
  2216. top:38px;
  2217. width:152px;
  2218. height:38px;
  2219. display:flex;
  2220. font-size:14px;
  2221. line-height:30px;
  2222. }
  2223. #u28689 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 0px 2px 0px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u28689_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. visibility:hidden;
  2235. }
  2236. #u28690_img {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:152px;
  2242. height:38px;
  2243. }
  2244. #u28690 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:912px;
  2248. top:38px;
  2249. width:152px;
  2250. height:38px;
  2251. display:flex;
  2252. font-size:14px;
  2253. line-height:30px;
  2254. }
  2255. #u28690 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:2px 0px 2px 0px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u28690_text {
  2263. border-width:0px;
  2264. word-wrap:break-word;
  2265. text-transform:none;
  2266. visibility:hidden;
  2267. }
  2268. #u28691_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:154px;
  2274. height:38px;
  2275. }
  2276. #u28691 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:1064px;
  2280. top:38px;
  2281. width:154px;
  2282. height:38px;
  2283. display:flex;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:14px;
  2288. color:#1890FF;
  2289. line-height:30px;
  2290. }
  2291. #u28691 .text {
  2292. position:absolute;
  2293. align-self:center;
  2294. padding:2px 0px 2px 0px;
  2295. box-sizing:border-box;
  2296. width:100%;
  2297. }
  2298. #u28691_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. }
  2303. #u28692_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:152px;
  2309. height:38px;
  2310. }
  2311. #u28692 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:76px;
  2316. width:152px;
  2317. height:38px;
  2318. display:flex;
  2319. font-size:14px;
  2320. line-height:30px;
  2321. }
  2322. #u28692 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 0px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u28692_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. visibility:hidden;
  2334. }
  2335. #u28693_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:152px;
  2341. height:38px;
  2342. }
  2343. #u28693 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:152px;
  2347. top:76px;
  2348. width:152px;
  2349. height:38px;
  2350. display:flex;
  2351. font-size:14px;
  2352. line-height:30px;
  2353. }
  2354. #u28693 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 0px 2px 0px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u28693_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. visibility:hidden;
  2366. }
  2367. #u28694_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:152px;
  2373. height:38px;
  2374. }
  2375. #u28694 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:304px;
  2379. top:76px;
  2380. width:152px;
  2381. height:38px;
  2382. display:flex;
  2383. font-size:14px;
  2384. line-height:30px;
  2385. }
  2386. #u28694 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 0px 2px 0px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u28694_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. visibility:hidden;
  2398. }
  2399. #u28695_img {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:152px;
  2405. height:38px;
  2406. }
  2407. #u28695 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:456px;
  2411. top:76px;
  2412. width:152px;
  2413. height:38px;
  2414. display:flex;
  2415. font-size:14px;
  2416. line-height:30px;
  2417. }
  2418. #u28695 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 0px 2px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u28695_text {
  2426. border-width:0px;
  2427. word-wrap:break-word;
  2428. text-transform:none;
  2429. visibility:hidden;
  2430. }
  2431. #u28696_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:152px;
  2437. height:38px;
  2438. }
  2439. #u28696 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:608px;
  2443. top:76px;
  2444. width:152px;
  2445. height:38px;
  2446. display:flex;
  2447. font-size:14px;
  2448. line-height:30px;
  2449. }
  2450. #u28696 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 0px 2px 0px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u28696_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. visibility:hidden;
  2462. }
  2463. #u28697_img {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:152px;
  2469. height:38px;
  2470. }
  2471. #u28697 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:760px;
  2475. top:76px;
  2476. width:152px;
  2477. height:38px;
  2478. display:flex;
  2479. font-size:14px;
  2480. line-height:30px;
  2481. }
  2482. #u28697 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 0px 2px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u28697_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u28698_img {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:152px;
  2501. height:38px;
  2502. }
  2503. #u28698 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:912px;
  2507. top:76px;
  2508. width:152px;
  2509. height:38px;
  2510. display:flex;
  2511. font-size:14px;
  2512. line-height:30px;
  2513. }
  2514. #u28698 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 0px 2px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u28698_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u28699_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:154px;
  2533. height:38px;
  2534. }
  2535. #u28699 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:1064px;
  2539. top:76px;
  2540. width:154px;
  2541. height:38px;
  2542. display:flex;
  2543. font-size:14px;
  2544. line-height:30px;
  2545. }
  2546. #u28699 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 0px 2px 0px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u28699_text {
  2554. border-width:0px;
  2555. word-wrap:break-word;
  2556. text-transform:none;
  2557. visibility:hidden;
  2558. }
  2559. #u28700_img {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:152px;
  2565. height:38px;
  2566. }
  2567. #u28700 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:114px;
  2572. width:152px;
  2573. height:38px;
  2574. display:flex;
  2575. font-size:14px;
  2576. line-height:30px;
  2577. }
  2578. #u28700 .text {
  2579. position:absolute;
  2580. align-self:center;
  2581. padding:2px 0px 2px 0px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u28700_text {
  2586. border-width:0px;
  2587. word-wrap:break-word;
  2588. text-transform:none;
  2589. visibility:hidden;
  2590. }
  2591. #u28701_img {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:152px;
  2597. height:38px;
  2598. }
  2599. #u28701 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:152px;
  2603. top:114px;
  2604. width:152px;
  2605. height:38px;
  2606. display:flex;
  2607. font-size:14px;
  2608. line-height:30px;
  2609. }
  2610. #u28701 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 0px 2px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u28701_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u28702_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:152px;
  2629. height:38px;
  2630. }
  2631. #u28702 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:304px;
  2635. top:114px;
  2636. width:152px;
  2637. height:38px;
  2638. display:flex;
  2639. font-size:14px;
  2640. line-height:30px;
  2641. }
  2642. #u28702 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 0px 2px 0px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u28702_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. visibility:hidden;
  2654. }
  2655. #u28703_img {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:152px;
  2661. height:38px;
  2662. }
  2663. #u28703 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:456px;
  2667. top:114px;
  2668. width:152px;
  2669. height:38px;
  2670. display:flex;
  2671. font-size:14px;
  2672. line-height:30px;
  2673. }
  2674. #u28703 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 0px 2px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u28703_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u28704_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:152px;
  2693. height:38px;
  2694. }
  2695. #u28704 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:608px;
  2699. top:114px;
  2700. width:152px;
  2701. height:38px;
  2702. display:flex;
  2703. font-size:14px;
  2704. line-height:30px;
  2705. }
  2706. #u28704 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 0px 2px 0px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u28704_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. visibility:hidden;
  2718. }
  2719. #u28705_img {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:152px;
  2725. height:38px;
  2726. }
  2727. #u28705 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:760px;
  2731. top:114px;
  2732. width:152px;
  2733. height:38px;
  2734. display:flex;
  2735. font-size:14px;
  2736. line-height:30px;
  2737. }
  2738. #u28705 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 0px 2px 0px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u28705_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u28706_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:152px;
  2757. height:38px;
  2758. }
  2759. #u28706 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:912px;
  2763. top:114px;
  2764. width:152px;
  2765. height:38px;
  2766. display:flex;
  2767. font-size:14px;
  2768. line-height:30px;
  2769. }
  2770. #u28706 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 0px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u28706_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u28707_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:154px;
  2789. height:38px;
  2790. }
  2791. #u28707 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:1064px;
  2795. top:114px;
  2796. width:154px;
  2797. height:38px;
  2798. display:flex;
  2799. font-size:14px;
  2800. line-height:30px;
  2801. }
  2802. #u28707 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 0px 2px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u28707_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. visibility:hidden;
  2814. }
  2815. #u28708_img {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:152px;
  2821. height:38px;
  2822. }
  2823. #u28708 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:152px;
  2828. width:152px;
  2829. height:38px;
  2830. display:flex;
  2831. font-size:14px;
  2832. line-height:30px;
  2833. }
  2834. #u28708 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 0px 2px 0px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u28708_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u28709_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:152px;
  2853. height:38px;
  2854. }
  2855. #u28709 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:152px;
  2859. top:152px;
  2860. width:152px;
  2861. height:38px;
  2862. display:flex;
  2863. font-size:14px;
  2864. line-height:30px;
  2865. }
  2866. #u28709 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 0px 2px 0px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u28709_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u28710_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:152px;
  2885. height:38px;
  2886. }
  2887. #u28710 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:304px;
  2891. top:152px;
  2892. width:152px;
  2893. height:38px;
  2894. display:flex;
  2895. font-size:14px;
  2896. line-height:30px;
  2897. }
  2898. #u28710 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 0px 2px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u28710_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u28711_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:152px;
  2917. height:38px;
  2918. }
  2919. #u28711 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:456px;
  2923. top:152px;
  2924. width:152px;
  2925. height:38px;
  2926. display:flex;
  2927. font-size:14px;
  2928. line-height:30px;
  2929. }
  2930. #u28711 .text {
  2931. position:absolute;
  2932. align-self:center;
  2933. padding:2px 0px 2px 0px;
  2934. box-sizing:border-box;
  2935. width:100%;
  2936. }
  2937. #u28711_text {
  2938. border-width:0px;
  2939. word-wrap:break-word;
  2940. text-transform:none;
  2941. visibility:hidden;
  2942. }
  2943. #u28712_img {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:152px;
  2949. height:38px;
  2950. }
  2951. #u28712 {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:608px;
  2955. top:152px;
  2956. width:152px;
  2957. height:38px;
  2958. display:flex;
  2959. font-size:14px;
  2960. line-height:30px;
  2961. }
  2962. #u28712 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:2px 0px 2px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u28712_text {
  2970. border-width:0px;
  2971. word-wrap:break-word;
  2972. text-transform:none;
  2973. visibility:hidden;
  2974. }
  2975. #u28713_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:152px;
  2981. height:38px;
  2982. }
  2983. #u28713 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:760px;
  2987. top:152px;
  2988. width:152px;
  2989. height:38px;
  2990. display:flex;
  2991. font-size:14px;
  2992. line-height:30px;
  2993. }
  2994. #u28713 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 0px 2px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u28713_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. visibility:hidden;
  3006. }
  3007. #u28714_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:152px;
  3013. height:38px;
  3014. }
  3015. #u28714 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:912px;
  3019. top:152px;
  3020. width:152px;
  3021. height:38px;
  3022. display:flex;
  3023. font-size:14px;
  3024. line-height:30px;
  3025. }
  3026. #u28714 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 0px 2px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u28714_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u28715_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:154px;
  3045. height:38px;
  3046. }
  3047. #u28715 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:1064px;
  3051. top:152px;
  3052. width:154px;
  3053. height:38px;
  3054. display:flex;
  3055. font-size:14px;
  3056. line-height:30px;
  3057. }
  3058. #u28715 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 0px 2px 0px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u28715_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u28716 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:0px;
  3077. height:0px;
  3078. }
  3079. #u28717_div {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:61px;
  3085. height:32px;
  3086. background:inherit;
  3087. background-color:rgba(24, 144, 255, 1);
  3088. border:none;
  3089. border-radius:4px;
  3090. -moz-box-shadow:none;
  3091. -webkit-box-shadow:none;
  3092. box-shadow:none;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:14px;
  3097. color:#FFFFFF;
  3098. }
  3099. #u28717 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:802px;
  3103. top:340px;
  3104. width:61px;
  3105. height:32px;
  3106. display:flex;
  3107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3108. font-weight:400;
  3109. font-style:normal;
  3110. font-size:14px;
  3111. color:#FFFFFF;
  3112. }
  3113. #u28717 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 16px 2px 16px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u28717_text {
  3121. border-width:0px;
  3122. white-space:nowrap;
  3123. text-transform:none;
  3124. }
  3125. #u28718_div {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:0px;
  3129. top:0px;
  3130. width:61px;
  3131. height:32px;
  3132. background:inherit;
  3133. background-color:rgba(255, 255, 255, 1);
  3134. box-sizing:border-box;
  3135. border-width:1px;
  3136. border-style:solid;
  3137. border-color:rgba(217, 217, 217, 1);
  3138. border-radius:4px;
  3139. -moz-box-shadow:none;
  3140. -webkit-box-shadow:none;
  3141. box-shadow:none;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:14px;
  3146. color:rgba(0, 0, 0, 0.647058823529412);
  3147. line-height:21px;
  3148. }
  3149. #u28718 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:877px;
  3153. top:340px;
  3154. width:61px;
  3155. height:32px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:14px;
  3161. color:rgba(0, 0, 0, 0.647058823529412);
  3162. line-height:21px;
  3163. }
  3164. #u28718 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 16px 2px 16px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u28718_text {
  3172. border-width:0px;
  3173. white-space:nowrap;
  3174. text-transform:none;
  3175. }
  3176. #u28719_div {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:61px;
  3182. height:32px;
  3183. background:inherit;
  3184. background-color:rgba(255, 255, 255, 1);
  3185. box-sizing:border-box;
  3186. border-width:1px;
  3187. border-style:solid;
  3188. border-color:rgba(217, 217, 217, 1);
  3189. border-radius:4px;
  3190. -moz-box-shadow:none;
  3191. -webkit-box-shadow:none;
  3192. box-shadow:none;
  3193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:14px;
  3197. color:rgba(0, 0, 0, 0.647058823529412);
  3198. line-height:21px;
  3199. }
  3200. #u28719 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:1509px;
  3204. top:59px;
  3205. width:61px;
  3206. height:32px;
  3207. display:flex;
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:14px;
  3212. color:rgba(0, 0, 0, 0.647058823529412);
  3213. line-height:21px;
  3214. }
  3215. #u28719 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:2px 16px 2px 16px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u28719_text {
  3223. border-width:0px;
  3224. white-space:nowrap;
  3225. text-transform:none;
  3226. }
  3227. #u28720 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:0px;
  3233. height:0px;
  3234. }
  3235. #u28721_div {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:140px;
  3241. height:30px;
  3242. background:inherit;
  3243. background-color:rgba(255, 255, 255, 1);
  3244. box-sizing:border-box;
  3245. border-width:1px;
  3246. border-style:solid;
  3247. border-color:rgba(201, 201, 201, 1);
  3248. border-radius:4px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'Microsoft YaHei', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:14px;
  3256. color:#CCCCCC;
  3257. text-align:left;
  3258. }
  3259. #u28721 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:502px;
  3263. top:341px;
  3264. width:140px;
  3265. height:30px;
  3266. display:flex;
  3267. font-family:'Microsoft YaHei', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:14px;
  3271. color:#CCCCCC;
  3272. text-align:left;
  3273. }
  3274. #u28721 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 8px 2px 8px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u28721_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u28722_input {
  3288. position:absolute;
  3289. left:0px;
  3290. top:0px;
  3291. width:130px;
  3292. height:25px;
  3293. padding:2px 2px 2px 2px;
  3294. font-family:'Microsoft YaHei', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:13px;
  3298. letter-spacing:normal;
  3299. color:#000000;
  3300. vertical-align:none;
  3301. text-align:left;
  3302. text-transform:none;
  3303. background-color:transparent;
  3304. border-color:transparent;
  3305. }
  3306. #u28722_input.disabled {
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:130px;
  3311. height:25px;
  3312. padding:2px 2px 2px 2px;
  3313. font-family:'Microsoft YaHei', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:13px;
  3317. letter-spacing:normal;
  3318. color:#000000;
  3319. vertical-align:none;
  3320. text-align:left;
  3321. text-transform:none;
  3322. background-color:transparent;
  3323. border-color:transparent;
  3324. }
  3325. #u28722_div {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:130px;
  3331. height:25px;
  3332. background:inherit;
  3333. background-color:rgba(255, 255, 255, 1);
  3334. border:none;
  3335. border-radius:0px;
  3336. -moz-box-shadow:none;
  3337. -webkit-box-shadow:none;
  3338. box-shadow:none;
  3339. font-family:'Microsoft YaHei', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. }
  3343. #u28722 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:507px;
  3347. top:342px;
  3348. width:130px;
  3349. height:25px;
  3350. display:flex;
  3351. font-family:'Microsoft YaHei', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. }
  3355. #u28722 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u28722_div.disabled {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:130px;
  3368. height:25px;
  3369. background:inherit;
  3370. background-color:rgba(240, 240, 240, 1);
  3371. border:none;
  3372. border-radius:0px;
  3373. -moz-box-shadow:none;
  3374. -webkit-box-shadow:none;
  3375. box-shadow:none;
  3376. font-family:'Microsoft YaHei', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. }
  3380. #u28722.disabled {
  3381. }
  3382. #u28723 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:0px;
  3388. height:0px;
  3389. }
  3390. #u28724_div {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:140px;
  3396. height:30px;
  3397. background:inherit;
  3398. background-color:rgba(255, 255, 255, 1);
  3399. box-sizing:border-box;
  3400. border-width:1px;
  3401. border-style:solid;
  3402. border-color:rgba(201, 201, 201, 1);
  3403. border-radius:4px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. font-family:'Microsoft YaHei', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:14px;
  3411. color:#CCCCCC;
  3412. text-align:left;
  3413. }
  3414. #u28724 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:652px;
  3418. top:341px;
  3419. width:140px;
  3420. height:30px;
  3421. display:flex;
  3422. font-family:'Microsoft YaHei', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:14px;
  3426. color:#CCCCCC;
  3427. text-align:left;
  3428. }
  3429. #u28724 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 8px 2px 8px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u28724_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. visibility:hidden;
  3441. }
  3442. #u28725_input {
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:130px;
  3447. height:25px;
  3448. padding:2px 2px 2px 2px;
  3449. font-family:'Microsoft YaHei', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:13px;
  3453. letter-spacing:normal;
  3454. color:#000000;
  3455. vertical-align:none;
  3456. text-align:left;
  3457. text-transform:none;
  3458. background-color:transparent;
  3459. border-color:transparent;
  3460. }
  3461. #u28725_input.disabled {
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:130px;
  3466. height:25px;
  3467. padding:2px 2px 2px 2px;
  3468. font-family:'Microsoft YaHei', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:13px;
  3472. letter-spacing:normal;
  3473. color:#000000;
  3474. vertical-align:none;
  3475. text-align:left;
  3476. text-transform:none;
  3477. background-color:transparent;
  3478. border-color:transparent;
  3479. }
  3480. #u28725_div {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:130px;
  3486. height:25px;
  3487. background:inherit;
  3488. background-color:rgba(255, 255, 255, 1);
  3489. border:none;
  3490. border-radius:0px;
  3491. -moz-box-shadow:none;
  3492. -webkit-box-shadow:none;
  3493. box-shadow:none;
  3494. font-family:'Microsoft YaHei', sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. }
  3498. #u28725 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:657px;
  3502. top:342px;
  3503. width:130px;
  3504. height:25px;
  3505. display:flex;
  3506. font-family:'Microsoft YaHei', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. }
  3510. #u28725 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 2px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u28725_div.disabled {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:130px;
  3523. height:25px;
  3524. background:inherit;
  3525. background-color:rgba(240, 240, 240, 1);
  3526. border:none;
  3527. border-radius:0px;
  3528. -moz-box-shadow:none;
  3529. -webkit-box-shadow:none;
  3530. box-shadow:none;
  3531. font-family:'Microsoft YaHei', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. }
  3535. #u28725.disabled {
  3536. }
  3537. #u28726 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:0px;
  3543. height:0px;
  3544. }
  3545. #u28727_div {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:140px;
  3551. height:30px;
  3552. background:inherit;
  3553. background-color:rgba(255, 255, 255, 1);
  3554. box-sizing:border-box;
  3555. border-width:1px;
  3556. border-style:solid;
  3557. border-color:rgba(215, 215, 215, 1);
  3558. border-radius:4px;
  3559. -moz-box-shadow:none;
  3560. -webkit-box-shadow:none;
  3561. box-shadow:none;
  3562. font-size:14px;
  3563. }
  3564. #u28727 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:352px;
  3568. top:341px;
  3569. width:140px;
  3570. height:30px;
  3571. display:flex;
  3572. font-size:14px;
  3573. }
  3574. #u28727 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 2px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u28727_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. visibility:hidden;
  3586. }
  3587. #u28728_input {
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:134px;
  3592. height:23px;
  3593. padding:2px 2px 2px 2px;
  3594. font-family:'ArialMT', 'Arial', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:14px;
  3598. letter-spacing:normal;
  3599. color:#AAAAAA;
  3600. vertical-align:none;
  3601. text-align:left;
  3602. text-transform:none;
  3603. background-color:transparent;
  3604. border-color:transparent;
  3605. }
  3606. #u28728_input.disabled {
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:134px;
  3611. height:23px;
  3612. padding:2px 2px 2px 2px;
  3613. font-family:'ArialMT', 'Arial', sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:14px;
  3617. letter-spacing:normal;
  3618. color:#AAAAAA;
  3619. vertical-align:none;
  3620. text-align:left;
  3621. text-transform:none;
  3622. background-color:transparent;
  3623. border-color:transparent;
  3624. }
  3625. #u28728_div {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:134px;
  3631. height:23px;
  3632. background:inherit;
  3633. background-color:rgba(255, 255, 255, 1);
  3634. border:none;
  3635. border-radius:0px;
  3636. -moz-box-shadow:none;
  3637. -webkit-box-shadow:none;
  3638. box-shadow:none;
  3639. font-size:14px;
  3640. color:#AAAAAA;
  3641. }
  3642. #u28728 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:356px;
  3646. top:343px;
  3647. width:134px;
  3648. height:23px;
  3649. display:flex;
  3650. font-size:14px;
  3651. color:#AAAAAA;
  3652. }
  3653. #u28728 .text {
  3654. position:absolute;
  3655. align-self:flex-start;
  3656. padding:2px 2px 2px 2px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u28728_div.disabled {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:134px;
  3666. height:23px;
  3667. background:inherit;
  3668. background-color:rgba(240, 240, 240, 1);
  3669. border:none;
  3670. border-radius:0px;
  3671. -moz-box-shadow:none;
  3672. -webkit-box-shadow:none;
  3673. box-shadow:none;
  3674. font-size:14px;
  3675. color:#AAAAAA;
  3676. }
  3677. #u28728.disabled {
  3678. }
  3679. .u28728_input_option {
  3680. font-size:14px;
  3681. }
  3682. #u28729_div {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:1220px;
  3688. height:180px;
  3689. background:inherit;
  3690. background-color:rgba(255, 255, 255, 1);
  3691. box-sizing:border-box;
  3692. border-width:1px;
  3693. border-style:solid;
  3694. border-color:rgba(217, 217, 217, 1);
  3695. border-radius:4px;
  3696. -moz-box-shadow:none;
  3697. -webkit-box-shadow:none;
  3698. box-shadow:none;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:14px;
  3703. color:rgba(0, 0, 0, 0.647058823529412);
  3704. line-height:21px;
  3705. }
  3706. #u28729 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:350px;
  3710. top:110px;
  3711. width:1220px;
  3712. height:180px;
  3713. display:flex;
  3714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:14px;
  3718. color:rgba(0, 0, 0, 0.647058823529412);
  3719. line-height:21px;
  3720. }
  3721. #u28729 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 16px 2px 16px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u28729_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u28730_div {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:594px;
  3740. height:30px;
  3741. background:inherit;
  3742. background-color:rgba(224, 231, 247, 0);
  3743. border:none;
  3744. border-radius:0px;
  3745. -moz-box-shadow:none;
  3746. -webkit-box-shadow:none;
  3747. box-shadow:none;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. line-height:30px;
  3752. }
  3753. #u28730 {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:370px;
  3757. top:120px;
  3758. width:594px;
  3759. height:30px;
  3760. display:flex;
  3761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3762. font-weight:400;
  3763. font-style:normal;
  3764. line-height:30px;
  3765. }
  3766. #u28730 .text {
  3767. position:absolute;
  3768. align-self:center;
  3769. padding:0px 0px 0px 0px;
  3770. box-sizing:border-box;
  3771. width:100%;
  3772. }
  3773. #u28730_text {
  3774. border-width:0px;
  3775. white-space:nowrap;
  3776. text-transform:none;
  3777. }
  3778. #u28731 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:0px;
  3782. top:0px;
  3783. width:0px;
  3784. height:0px;
  3785. }
  3786. #u28732_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:24px;
  3792. height:24px;
  3793. }
  3794. #u28732 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:370px;
  3798. top:158px;
  3799. width:24px;
  3800. height:24px;
  3801. display:flex;
  3802. font-size:14px;
  3803. color:#FFFFFF;
  3804. }
  3805. #u28732 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 2px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u28732_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. }
  3817. #u28733_div {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:92px;
  3823. height:20px;
  3824. background:inherit;
  3825. background-color:rgba(224, 231, 247, 0);
  3826. border:none;
  3827. border-radius:0px;
  3828. -moz-box-shadow:none;
  3829. -webkit-box-shadow:none;
  3830. box-shadow:none;
  3831. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3832. font-weight:500;
  3833. font-style:normal;
  3834. }
  3835. #u28733 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:404px;
  3839. top:160px;
  3840. width:92px;
  3841. height:20px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3844. font-weight:500;
  3845. font-style:normal;
  3846. }
  3847. #u28733 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:0px 0px 0px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u28733_text {
  3855. border-width:0px;
  3856. white-space:nowrap;
  3857. text-transform:none;
  3858. }
  3859. #u28734 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:0px;
  3865. height:0px;
  3866. }
  3867. #u28735_img {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:0px;
  3871. top:0px;
  3872. width:24px;
  3873. height:24px;
  3874. }
  3875. #u28735 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:554px;
  3879. top:158px;
  3880. width:24px;
  3881. height:24px;
  3882. display:flex;
  3883. font-size:14px;
  3884. color:#FFFFFF;
  3885. }
  3886. #u28735 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:2px 2px 2px 2px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u28735_text {
  3894. border-width:0px;
  3895. word-wrap:break-word;
  3896. text-transform:none;
  3897. }
  3898. #u28736_div {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:120px;
  3904. height:20px;
  3905. background:inherit;
  3906. background-color:rgba(224, 231, 247, 0);
  3907. border:none;
  3908. border-radius:0px;
  3909. -moz-box-shadow:none;
  3910. -webkit-box-shadow:none;
  3911. box-shadow:none;
  3912. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3913. font-weight:500;
  3914. font-style:normal;
  3915. }
  3916. #u28736 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:588px;
  3920. top:160px;
  3921. width:120px;
  3922. height:20px;
  3923. display:flex;
  3924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3925. font-weight:500;
  3926. font-style:normal;
  3927. }
  3928. #u28736 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:0px 0px 0px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u28736_text {
  3936. border-width:0px;
  3937. white-space:nowrap;
  3938. text-transform:none;
  3939. }
  3940. #u28737 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:0px;
  3946. height:0px;
  3947. }
  3948. #u28738_img {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:24px;
  3954. height:24px;
  3955. }
  3956. #u28738 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:922px;
  3960. top:158px;
  3961. width:24px;
  3962. height:24px;
  3963. display:flex;
  3964. font-size:14px;
  3965. color:#FFFFFF;
  3966. }
  3967. #u28738 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 2px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u28738_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. }
  3979. #u28739_div {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:85px;
  3985. height:20px;
  3986. background:inherit;
  3987. background-color:rgba(224, 231, 247, 0);
  3988. border:none;
  3989. border-radius:0px;
  3990. -moz-box-shadow:none;
  3991. -webkit-box-shadow:none;
  3992. box-shadow:none;
  3993. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3994. font-weight:500;
  3995. font-style:normal;
  3996. }
  3997. #u28739 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:956px;
  4001. top:160px;
  4002. width:85px;
  4003. height:20px;
  4004. display:flex;
  4005. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4006. font-weight:500;
  4007. font-style:normal;
  4008. }
  4009. #u28739 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:0px 0px 0px 0px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u28739_text {
  4017. border-width:0px;
  4018. white-space:nowrap;
  4019. text-transform:none;
  4020. }
  4021. #u28740 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:0px;
  4027. height:0px;
  4028. }
  4029. #u28741_img {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:24px;
  4035. height:24px;
  4036. }
  4037. #u28741 {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:1088px;
  4041. top:158px;
  4042. width:24px;
  4043. height:24px;
  4044. display:flex;
  4045. font-size:14px;
  4046. color:#FFFFFF;
  4047. }
  4048. #u28741 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 2px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u28741_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. }
  4060. #u28742_div {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:85px;
  4066. height:20px;
  4067. background:inherit;
  4068. background-color:rgba(224, 231, 247, 0);
  4069. border:none;
  4070. border-radius:0px;
  4071. -moz-box-shadow:none;
  4072. -webkit-box-shadow:none;
  4073. box-shadow:none;
  4074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4075. font-weight:500;
  4076. font-style:normal;
  4077. }
  4078. #u28742 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:1122px;
  4082. top:160px;
  4083. width:85px;
  4084. height:20px;
  4085. display:flex;
  4086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4087. font-weight:500;
  4088. font-style:normal;
  4089. }
  4090. #u28742 .text {
  4091. position:absolute;
  4092. align-self:center;
  4093. padding:0px 0px 0px 0px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u28742_text {
  4098. border-width:0px;
  4099. white-space:nowrap;
  4100. text-transform:none;
  4101. }
  4102. #u28743_div {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:140px;
  4108. height:14px;
  4109. background:inherit;
  4110. background-color:rgba(255, 255, 255, 0);
  4111. border:none;
  4112. border-radius:0px;
  4113. -moz-box-shadow:none;
  4114. -webkit-box-shadow:none;
  4115. box-shadow:none;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:10px;
  4120. color:#1890FF;
  4121. }
  4122. #u28743 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:370px;
  4126. top:192px;
  4127. width:140px;
  4128. height:14px;
  4129. display:flex;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:10px;
  4134. color:#1890FF;
  4135. }
  4136. #u28743 .text {
  4137. position:absolute;
  4138. align-self:flex-start;
  4139. padding:0px 0px 0px 0px;
  4140. box-sizing:border-box;
  4141. width:100%;
  4142. }
  4143. #u28743_text {
  4144. border-width:0px;
  4145. word-wrap:break-word;
  4146. text-transform:none;
  4147. }
  4148. #u28744_div {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:140px;
  4154. height:28px;
  4155. background:inherit;
  4156. background-color:rgba(255, 255, 255, 0);
  4157. border:none;
  4158. border-radius:0px;
  4159. -moz-box-shadow:none;
  4160. -webkit-box-shadow:none;
  4161. box-shadow:none;
  4162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:10px;
  4166. color:#1890FF;
  4167. }
  4168. #u28744 {
  4169. border-width:0px;
  4170. position:absolute;
  4171. left:561px;
  4172. top:195px;
  4173. width:140px;
  4174. height:28px;
  4175. display:flex;
  4176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:10px;
  4180. color:#1890FF;
  4181. }
  4182. #u28744 .text {
  4183. position:absolute;
  4184. align-self:flex-start;
  4185. padding:0px 0px 0px 0px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u28744_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. }
  4194. #u28745_div {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:140px;
  4200. height:28px;
  4201. background:inherit;
  4202. background-color:rgba(255, 255, 255, 0);
  4203. border:none;
  4204. border-radius:0px;
  4205. -moz-box-shadow:none;
  4206. -webkit-box-shadow:none;
  4207. box-shadow:none;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:10px;
  4212. color:#1890FF;
  4213. }
  4214. #u28745 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:755px;
  4218. top:195px;
  4219. width:140px;
  4220. height:28px;
  4221. display:flex;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:10px;
  4226. color:#1890FF;
  4227. }
  4228. #u28745 .text {
  4229. position:absolute;
  4230. align-self:flex-start;
  4231. padding:0px 0px 0px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u28745_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. }
  4240. #u28746_div {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:140px;
  4246. height:28px;
  4247. background:inherit;
  4248. background-color:rgba(255, 255, 255, 0);
  4249. border:none;
  4250. border-radius:0px;
  4251. -moz-box-shadow:none;
  4252. -webkit-box-shadow:none;
  4253. box-shadow:none;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:10px;
  4258. color:#D9001B;
  4259. }
  4260. #u28746 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:755px;
  4264. top:230px;
  4265. width:140px;
  4266. height:28px;
  4267. display:flex;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:10px;
  4272. color:#D9001B;
  4273. }
  4274. #u28746 .text {
  4275. position:absolute;
  4276. align-self:flex-start;
  4277. padding:0px 0px 0px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u28746_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. }
  4286. #u28747 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:0px;
  4292. height:0px;
  4293. }
  4294. #u28748_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:24px;
  4300. height:24px;
  4301. }
  4302. #u28748 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:755px;
  4306. top:158px;
  4307. width:24px;
  4308. height:24px;
  4309. display:flex;
  4310. font-size:14px;
  4311. color:#FFFFFF;
  4312. }
  4313. #u28748 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:2px 2px 2px 2px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u28748_text {
  4321. border-width:0px;
  4322. word-wrap:break-word;
  4323. text-transform:none;
  4324. }
  4325. #u28749_div {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:85px;
  4331. height:20px;
  4332. background:inherit;
  4333. background-color:rgba(224, 231, 247, 0);
  4334. border:none;
  4335. border-radius:0px;
  4336. -moz-box-shadow:none;
  4337. -webkit-box-shadow:none;
  4338. box-shadow:none;
  4339. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4340. font-weight:500;
  4341. font-style:normal;
  4342. }
  4343. #u28749 {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:789px;
  4347. top:160px;
  4348. width:85px;
  4349. height:20px;
  4350. display:flex;
  4351. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4352. font-weight:500;
  4353. font-style:normal;
  4354. }
  4355. #u28749 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:0px 0px 0px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u28749_text {
  4363. border-width:0px;
  4364. white-space:nowrap;
  4365. text-transform:none;
  4366. }
  4367. #u28750 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:0px;
  4373. height:0px;
  4374. }
  4375. #u28751_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:24px;
  4381. height:24px;
  4382. }
  4383. #u28751 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:1255px;
  4387. top:158px;
  4388. width:24px;
  4389. height:24px;
  4390. display:flex;
  4391. font-size:14px;
  4392. color:#FFFFFF;
  4393. }
  4394. #u28751 .text {
  4395. position:absolute;
  4396. align-self:center;
  4397. padding:2px 2px 2px 2px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u28751_text {
  4402. border-width:0px;
  4403. word-wrap:break-word;
  4404. text-transform:none;
  4405. }
  4406. #u28752_div {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:85px;
  4412. height:20px;
  4413. background:inherit;
  4414. background-color:rgba(224, 231, 247, 0);
  4415. border:none;
  4416. border-radius:0px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4421. font-weight:500;
  4422. font-style:normal;
  4423. }
  4424. #u28752 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:1289px;
  4428. top:160px;
  4429. width:85px;
  4430. height:20px;
  4431. display:flex;
  4432. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4433. font-weight:500;
  4434. font-style:normal;
  4435. }
  4436. #u28752 .text {
  4437. position:absolute;
  4438. align-self:center;
  4439. padding:0px 0px 0px 0px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u28752_text {
  4444. border-width:0px;
  4445. white-space:nowrap;
  4446. text-transform:none;
  4447. }
  4448. #u28753 {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:0px;
  4454. height:0px;
  4455. }
  4456. #u28754_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:24px;
  4462. height:24px;
  4463. }
  4464. #u28754 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:1421px;
  4468. top:158px;
  4469. width:24px;
  4470. height:24px;
  4471. display:flex;
  4472. font-size:14px;
  4473. color:#FFFFFF;
  4474. }
  4475. #u28754 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 2px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u28754_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. }
  4487. #u28755_div {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:85px;
  4493. height:20px;
  4494. background:inherit;
  4495. background-color:rgba(224, 231, 247, 0);
  4496. border:none;
  4497. border-radius:0px;
  4498. -moz-box-shadow:none;
  4499. -webkit-box-shadow:none;
  4500. box-shadow:none;
  4501. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4502. font-weight:500;
  4503. font-style:normal;
  4504. }
  4505. #u28755 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:1455px;
  4509. top:160px;
  4510. width:85px;
  4511. height:20px;
  4512. display:flex;
  4513. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4514. font-weight:500;
  4515. font-style:normal;
  4516. }
  4517. #u28755 .text {
  4518. position:absolute;
  4519. align-self:center;
  4520. padding:0px 0px 0px 0px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u28755_text {
  4525. border-width:0px;
  4526. white-space:nowrap;
  4527. text-transform:none;
  4528. }
  4529. #u28756_div {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:140px;
  4535. height:28px;
  4536. background:inherit;
  4537. background-color:rgba(255, 255, 255, 0);
  4538. border:none;
  4539. border-radius:0px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:10px;
  4547. color:#D9001B;
  4548. }
  4549. #u28756 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:561px;
  4553. top:230px;
  4554. width:140px;
  4555. height:28px;
  4556. display:flex;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:10px;
  4561. color:#D9001B;
  4562. }
  4563. #u28756 .text {
  4564. position:absolute;
  4565. align-self:flex-start;
  4566. padding:0px 0px 0px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u28756_text {
  4571. border-width:0px;
  4572. word-wrap:break-word;
  4573. text-transform:none;
  4574. }
  4575. #u28757_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:140px;
  4581. height:28px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 0);
  4584. border:none;
  4585. border-radius:0px;
  4586. -moz-box-shadow:none;
  4587. -webkit-box-shadow:none;
  4588. box-shadow:none;
  4589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:10px;
  4593. color:#1890FF;
  4594. }
  4595. #u28757 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:922px;
  4599. top:195px;
  4600. width:140px;
  4601. height:28px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:10px;
  4607. color:#1890FF;
  4608. }
  4609. #u28757 .text {
  4610. position:absolute;
  4611. align-self:flex-start;
  4612. padding:0px 0px 0px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u28757_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. }
  4621. #u28758_div {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:140px;
  4627. height:28px;
  4628. background:inherit;
  4629. background-color:rgba(255, 255, 255, 0);
  4630. border:none;
  4631. border-radius:0px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4636. font-weight:400;
  4637. font-style:normal;
  4638. font-size:10px;
  4639. color:#D9001B;
  4640. }
  4641. #u28758 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:922px;
  4645. top:230px;
  4646. width:140px;
  4647. height:28px;
  4648. display:flex;
  4649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4650. font-weight:400;
  4651. font-style:normal;
  4652. font-size:10px;
  4653. color:#D9001B;
  4654. }
  4655. #u28758 .text {
  4656. position:absolute;
  4657. align-self:flex-start;
  4658. padding:0px 0px 0px 0px;
  4659. box-sizing:border-box;
  4660. width:100%;
  4661. }
  4662. #u28758_text {
  4663. border-width:0px;
  4664. word-wrap:break-word;
  4665. text-transform:none;
  4666. }
  4667. #u28759_div {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:140px;
  4673. height:14px;
  4674. background:inherit;
  4675. background-color:rgba(255, 255, 255, 0);
  4676. border:none;
  4677. border-radius:0px;
  4678. -moz-box-shadow:none;
  4679. -webkit-box-shadow:none;
  4680. box-shadow:none;
  4681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:10px;
  4685. color:#1890FF;
  4686. }
  4687. #u28759 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:1088px;
  4691. top:195px;
  4692. width:140px;
  4693. height:14px;
  4694. display:flex;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:10px;
  4699. color:#1890FF;
  4700. }
  4701. #u28759 .text {
  4702. position:absolute;
  4703. align-self:flex-start;
  4704. padding:0px 0px 0px 0px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u28759_text {
  4709. border-width:0px;
  4710. word-wrap:break-word;
  4711. text-transform:none;
  4712. }
  4713. #u28760_div {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:140px;
  4719. height:28px;
  4720. background:inherit;
  4721. background-color:rgba(255, 255, 255, 0);
  4722. border:none;
  4723. border-radius:0px;
  4724. -moz-box-shadow:none;
  4725. -webkit-box-shadow:none;
  4726. box-shadow:none;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:10px;
  4731. color:#D9001B;
  4732. }
  4733. #u28760 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:1090px;
  4737. top:216px;
  4738. width:140px;
  4739. height:28px;
  4740. display:flex;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:10px;
  4745. color:#D9001B;
  4746. }
  4747. #u28760 .text {
  4748. position:absolute;
  4749. align-self:flex-start;
  4750. padding:0px 0px 0px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u28760_text {
  4755. border-width:0px;
  4756. word-wrap:break-word;
  4757. text-transform:none;
  4758. }
  4759. #u28761_div {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:140px;
  4765. height:42px;
  4766. background:inherit;
  4767. background-color:rgba(255, 255, 255, 0);
  4768. border:none;
  4769. border-radius:0px;
  4770. -moz-box-shadow:none;
  4771. -webkit-box-shadow:none;
  4772. box-shadow:none;
  4773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:10px;
  4777. color:#1890FF;
  4778. }
  4779. #u28761 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:1255px;
  4783. top:188px;
  4784. width:140px;
  4785. height:42px;
  4786. display:flex;
  4787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4788. font-weight:400;
  4789. font-style:normal;
  4790. font-size:10px;
  4791. color:#1890FF;
  4792. }
  4793. #u28761 .text {
  4794. position:absolute;
  4795. align-self:flex-start;
  4796. padding:0px 0px 0px 0px;
  4797. box-sizing:border-box;
  4798. width:100%;
  4799. }
  4800. #u28761_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. }
  4805. #u28762_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:140px;
  4811. height:42px;
  4812. background:inherit;
  4813. background-color:rgba(255, 255, 255, 0);
  4814. border:none;
  4815. border-radius:0px;
  4816. -moz-box-shadow:none;
  4817. -webkit-box-shadow:none;
  4818. box-shadow:none;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:10px;
  4823. color:#1890FF;
  4824. }
  4825. #u28762 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:1421px;
  4829. top:188px;
  4830. width:140px;
  4831. height:42px;
  4832. display:flex;
  4833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4834. font-weight:400;
  4835. font-style:normal;
  4836. font-size:10px;
  4837. color:#1890FF;
  4838. }
  4839. #u28762 .text {
  4840. position:absolute;
  4841. align-self:flex-start;
  4842. padding:0px 0px 0px 0px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u28762_text {
  4847. border-width:0px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. }
  4851. #u28763_div {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:140px;
  4857. height:28px;
  4858. background:inherit;
  4859. background-color:rgba(255, 255, 255, 0);
  4860. border:none;
  4861. border-radius:0px;
  4862. -moz-box-shadow:none;
  4863. -webkit-box-shadow:none;
  4864. box-shadow:none;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:10px;
  4869. color:#D9001B;
  4870. }
  4871. #u28763 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:1421px;
  4875. top:240px;
  4876. width:140px;
  4877. height:28px;
  4878. display:flex;
  4879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4880. font-weight:400;
  4881. font-style:normal;
  4882. font-size:10px;
  4883. color:#D9001B;
  4884. }
  4885. #u28763 .text {
  4886. position:absolute;
  4887. align-self:flex-start;
  4888. padding:0px 0px 0px 0px;
  4889. box-sizing:border-box;
  4890. width:100%;
  4891. }
  4892. #u28763_text {
  4893. border-width:0px;
  4894. word-wrap:break-word;
  4895. text-transform:none;
  4896. }
  4897. #u28764_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:29px;
  4903. height:50px;
  4904. background:inherit;
  4905. background-color:rgba(224, 231, 247, 0);
  4906. border:none;
  4907. border-radius:0px;
  4908. -moz-box-shadow:none;
  4909. -webkit-box-shadow:none;
  4910. box-shadow:none;
  4911. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4912. font-weight:500;
  4913. font-style:normal;
  4914. color:#1890FF;
  4915. text-align:right;
  4916. }
  4917. #u28764 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:1531px;
  4921. top:110px;
  4922. width:29px;
  4923. height:50px;
  4924. display:flex;
  4925. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4926. font-weight:500;
  4927. font-style:normal;
  4928. color:#1890FF;
  4929. text-align:right;
  4930. }
  4931. #u28764 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:0px 0px 0px 0px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u28764_text {
  4939. border-width:0px;
  4940. white-space:nowrap;
  4941. text-transform:none;
  4942. }
  4943. #u28765 {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:0px;
  4949. height:0px;
  4950. }
  4951. #u28766_div {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:200px;
  4957. height:1180px;
  4958. background:inherit;
  4959. background-color:rgba(255, 255, 255, 1);
  4960. border:none;
  4961. border-radius:0px;
  4962. -moz-box-shadow:none;
  4963. -webkit-box-shadow:none;
  4964. box-shadow:none;
  4965. }
  4966. #u28766 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:120px;
  4970. top:50px;
  4971. width:200px;
  4972. height:1180px;
  4973. display:flex;
  4974. }
  4975. #u28766 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:2px 2px 2px 2px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u28766_text {
  4983. border-width:0px;
  4984. word-wrap:break-word;
  4985. text-transform:none;
  4986. visibility:hidden;
  4987. }
  4988. #u28767_div {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:200px;
  4994. height:60px;
  4995. background:inherit;
  4996. background-color:rgba(224, 231, 247, 1);
  4997. border:none;
  4998. border-radius:0px;
  4999. -moz-box-shadow:none;
  5000. -webkit-box-shadow:none;
  5001. box-shadow:none;
  5002. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5003. font-weight:500;
  5004. font-style:normal;
  5005. font-size:18px;
  5006. }
  5007. #u28767 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:120px;
  5011. top:50px;
  5012. width:200px;
  5013. height:60px;
  5014. display:flex;
  5015. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5016. font-weight:500;
  5017. font-style:normal;
  5018. font-size:18px;
  5019. }
  5020. #u28767 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:0px 0px 0px 20px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u28767_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. }
  5032. #u28768_div {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:97px;
  5038. height:22px;
  5039. background:inherit;
  5040. background-color:rgba(255, 255, 255, 0);
  5041. border:none;
  5042. border-radius:0px;
  5043. -moz-box-shadow:none;
  5044. -webkit-box-shadow:none;
  5045. box-shadow:none;
  5046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:16px;
  5050. }
  5051. #u28768 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:146px;
  5055. top:167px;
  5056. width:97px;
  5057. height:22px;
  5058. display:flex;
  5059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5060. font-weight:400;
  5061. font-style:normal;
  5062. font-size:16px;
  5063. }
  5064. #u28768 .text {
  5065. position:absolute;
  5066. align-self:flex-start;
  5067. padding:0px 0px 0px 0px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u28768_text {
  5072. border-width:0px;
  5073. white-space:nowrap;
  5074. text-transform:none;
  5075. }
  5076. #u28769_div {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:97px;
  5082. height:22px;
  5083. background:inherit;
  5084. background-color:rgba(255, 255, 255, 0);
  5085. border:none;
  5086. border-radius:0px;
  5087. -moz-box-shadow:none;
  5088. -webkit-box-shadow:none;
  5089. box-shadow:none;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:16px;
  5094. }
  5095. #u28769 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:146px;
  5099. top:209px;
  5100. width:97px;
  5101. height:22px;
  5102. display:flex;
  5103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:16px;
  5107. }
  5108. #u28769 .text {
  5109. position:absolute;
  5110. align-self:flex-start;
  5111. padding:0px 0px 0px 0px;
  5112. box-sizing:border-box;
  5113. width:100%;
  5114. }
  5115. #u28769_text {
  5116. border-width:0px;
  5117. white-space:nowrap;
  5118. text-transform:none;
  5119. }
  5120. #u28770_div {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:0px;
  5124. top:0px;
  5125. width:73px;
  5126. height:17px;
  5127. background:inherit;
  5128. background-color:rgba(255, 255, 255, 0);
  5129. border:none;
  5130. border-radius:0px;
  5131. -moz-box-shadow:none;
  5132. -webkit-box-shadow:none;
  5133. box-shadow:none;
  5134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5135. font-weight:400;
  5136. font-style:normal;
  5137. font-size:12px;
  5138. color:#AAAAAA;
  5139. }
  5140. #u28770 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:146px;
  5144. top:130px;
  5145. width:73px;
  5146. height:17px;
  5147. display:flex;
  5148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:12px;
  5152. color:#AAAAAA;
  5153. }
  5154. #u28770 .text {
  5155. position:absolute;
  5156. align-self:flex-start;
  5157. padding:0px 0px 0px 0px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u28770_text {
  5162. border-width:0px;
  5163. white-space:nowrap;
  5164. text-transform:none;
  5165. }
  5166. #u28771_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:73px;
  5172. height:17px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. border:none;
  5176. border-radius:0px;
  5177. -moz-box-shadow:none;
  5178. -webkit-box-shadow:none;
  5179. box-shadow:none;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:12px;
  5184. color:#AAAAAA;
  5185. }
  5186. #u28771 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:146px;
  5190. top:397px;
  5191. width:73px;
  5192. height:17px;
  5193. display:flex;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:12px;
  5198. color:#AAAAAA;
  5199. }
  5200. #u28771 .text {
  5201. position:absolute;
  5202. align-self:flex-start;
  5203. padding:0px 0px 0px 0px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u28771_text {
  5208. border-width:0px;
  5209. white-space:nowrap;
  5210. text-transform:none;
  5211. }
  5212. #u28772_img {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:201px;
  5218. height:2px;
  5219. }
  5220. #u28772 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:120px;
  5224. top:375px;
  5225. width:200px;
  5226. height:1px;
  5227. display:flex;
  5228. }
  5229. #u28772 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 2px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u28772_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. visibility:hidden;
  5241. }
  5242. #u28773_div {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:97px;
  5248. height:22px;
  5249. background:inherit;
  5250. background-color:rgba(255, 255, 255, 0);
  5251. border:none;
  5252. border-radius:0px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:16px;
  5260. }
  5261. #u28773 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:146px;
  5265. top:435px;
  5266. width:97px;
  5267. height:22px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:16px;
  5273. }
  5274. #u28773 .text {
  5275. position:absolute;
  5276. align-self:flex-start;
  5277. padding:0px 0px 0px 0px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u28773_text {
  5282. border-width:0px;
  5283. white-space:nowrap;
  5284. text-transform:none;
  5285. }
  5286. #u28774_div {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:97px;
  5292. height:22px;
  5293. background:inherit;
  5294. background-color:rgba(255, 255, 255, 0);
  5295. border:none;
  5296. border-radius:0px;
  5297. -moz-box-shadow:none;
  5298. -webkit-box-shadow:none;
  5299. box-shadow:none;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:16px;
  5304. }
  5305. #u28774 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:146px;
  5309. top:477px;
  5310. width:97px;
  5311. height:22px;
  5312. display:flex;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:16px;
  5317. }
  5318. #u28774 .text {
  5319. position:absolute;
  5320. align-self:flex-start;
  5321. padding:0px 0px 0px 0px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u28774_text {
  5326. border-width:0px;
  5327. white-space:nowrap;
  5328. text-transform:none;
  5329. }
  5330. #u28775_div {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:97px;
  5336. height:22px;
  5337. background:inherit;
  5338. background-color:rgba(255, 255, 255, 0);
  5339. border:none;
  5340. border-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:16px;
  5348. }
  5349. #u28775 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:146px;
  5353. top:251px;
  5354. width:97px;
  5355. height:22px;
  5356. display:flex;
  5357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5358. font-weight:400;
  5359. font-style:normal;
  5360. font-size:16px;
  5361. }
  5362. #u28775 .text {
  5363. position:absolute;
  5364. align-self:flex-start;
  5365. padding:0px 0px 0px 0px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u28775_text {
  5370. border-width:0px;
  5371. white-space:nowrap;
  5372. text-transform:none;
  5373. }
  5374. #u28776_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:97px;
  5380. height:22px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 0);
  5383. border:none;
  5384. border-radius:0px;
  5385. -moz-box-shadow:none;
  5386. -webkit-box-shadow:none;
  5387. box-shadow:none;
  5388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:16px;
  5392. }
  5393. #u28776 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:146px;
  5397. top:293px;
  5398. width:97px;
  5399. height:22px;
  5400. display:flex;
  5401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5402. font-weight:400;
  5403. font-style:normal;
  5404. font-size:16px;
  5405. }
  5406. #u28776 .text {
  5407. position:absolute;
  5408. align-self:flex-start;
  5409. padding:0px 0px 0px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u28776_text {
  5414. border-width:0px;
  5415. white-space:nowrap;
  5416. text-transform:none;
  5417. }
  5418. #u28777_div {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:97px;
  5424. height:22px;
  5425. background:inherit;
  5426. background-color:rgba(255, 255, 255, 0);
  5427. border:none;
  5428. border-radius:0px;
  5429. -moz-box-shadow:none;
  5430. -webkit-box-shadow:none;
  5431. box-shadow:none;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:16px;
  5436. }
  5437. #u28777 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:146px;
  5441. top:519px;
  5442. width:97px;
  5443. height:22px;
  5444. display:flex;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:16px;
  5449. }
  5450. #u28777 .text {
  5451. position:absolute;
  5452. align-self:flex-start;
  5453. padding:0px 0px 0px 0px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u28777_text {
  5458. border-width:0px;
  5459. white-space:nowrap;
  5460. text-transform:none;
  5461. }
  5462. #u28778_div {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:97px;
  5468. height:22px;
  5469. background:inherit;
  5470. background-color:rgba(255, 255, 255, 0);
  5471. border:none;
  5472. border-radius:0px;
  5473. -moz-box-shadow:none;
  5474. -webkit-box-shadow:none;
  5475. box-shadow:none;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:16px;
  5480. }
  5481. #u28778 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:146px;
  5485. top:561px;
  5486. width:97px;
  5487. height:22px;
  5488. display:flex;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:16px;
  5493. }
  5494. #u28778 .text {
  5495. position:absolute;
  5496. align-self:flex-start;
  5497. padding:0px 0px 0px 0px;
  5498. box-sizing:border-box;
  5499. width:100%;
  5500. }
  5501. #u28778_text {
  5502. border-width:0px;
  5503. white-space:nowrap;
  5504. text-transform:none;
  5505. }
  5506. #u28779_div {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:122px;
  5512. height:22px;
  5513. background:inherit;
  5514. background-color:rgba(255, 255, 255, 0);
  5515. border:none;
  5516. border-radius:0px;
  5517. -moz-box-shadow:none;
  5518. -webkit-box-shadow:none;
  5519. box-shadow:none;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:16px;
  5524. }
  5525. #u28779 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:146px;
  5529. top:603px;
  5530. width:122px;
  5531. height:22px;
  5532. display:flex;
  5533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:16px;
  5537. }
  5538. #u28779 .text {
  5539. position:absolute;
  5540. align-self:flex-start;
  5541. padding:0px 0px 0px 0px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u28779_text {
  5546. border-width:0px;
  5547. white-space:nowrap;
  5548. text-transform:none;
  5549. }
  5550. #u28780_div {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:49px;
  5556. height:17px;
  5557. background:inherit;
  5558. background-color:rgba(255, 255, 255, 0);
  5559. border:none;
  5560. border-radius:0px;
  5561. -moz-box-shadow:none;
  5562. -webkit-box-shadow:none;
  5563. box-shadow:none;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:12px;
  5568. color:#AAAAAA;
  5569. }
  5570. #u28780 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:146px;
  5574. top:809px;
  5575. width:49px;
  5576. height:17px;
  5577. display:flex;
  5578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:12px;
  5582. color:#AAAAAA;
  5583. }
  5584. #u28780 .text {
  5585. position:absolute;
  5586. align-self:flex-start;
  5587. padding:0px 0px 0px 0px;
  5588. box-sizing:border-box;
  5589. width:100%;
  5590. }
  5591. #u28780_text {
  5592. border-width:0px;
  5593. white-space:nowrap;
  5594. text-transform:none;
  5595. }
  5596. #u28781_img {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:0px;
  5600. top:0px;
  5601. width:201px;
  5602. height:2px;
  5603. }
  5604. #u28781 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:120px;
  5608. top:787px;
  5609. width:200px;
  5610. height:1px;
  5611. display:flex;
  5612. }
  5613. #u28781 .text {
  5614. position:absolute;
  5615. align-self:center;
  5616. padding:2px 2px 2px 2px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u28781_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u28782_div {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:97px;
  5632. height:22px;
  5633. background:inherit;
  5634. background-color:rgba(255, 255, 255, 0);
  5635. border:none;
  5636. border-radius:0px;
  5637. -moz-box-shadow:none;
  5638. -webkit-box-shadow:none;
  5639. box-shadow:none;
  5640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:16px;
  5644. }
  5645. #u28782 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:146px;
  5649. top:847px;
  5650. width:97px;
  5651. height:22px;
  5652. display:flex;
  5653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:16px;
  5657. }
  5658. #u28782 .text {
  5659. position:absolute;
  5660. align-self:flex-start;
  5661. padding:0px 0px 0px 0px;
  5662. box-sizing:border-box;
  5663. width:100%;
  5664. }
  5665. #u28782_text {
  5666. border-width:0px;
  5667. white-space:nowrap;
  5668. text-transform:none;
  5669. }
  5670. #u28783_div {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:97px;
  5676. height:22px;
  5677. background:inherit;
  5678. background-color:rgba(255, 255, 255, 0);
  5679. border:none;
  5680. border-radius:0px;
  5681. -moz-box-shadow:none;
  5682. -webkit-box-shadow:none;
  5683. box-shadow:none;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:16px;
  5688. }
  5689. #u28783 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:146px;
  5693. top:889px;
  5694. width:97px;
  5695. height:22px;
  5696. display:flex;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:16px;
  5701. }
  5702. #u28783 .text {
  5703. position:absolute;
  5704. align-self:flex-start;
  5705. padding:0px 0px 0px 0px;
  5706. box-sizing:border-box;
  5707. width:100%;
  5708. }
  5709. #u28783_text {
  5710. border-width:0px;
  5711. white-space:nowrap;
  5712. text-transform:none;
  5713. }
  5714. #u28784_div {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:97px;
  5720. height:22px;
  5721. background:inherit;
  5722. background-color:rgba(255, 255, 255, 0);
  5723. border:none;
  5724. border-radius:0px;
  5725. -moz-box-shadow:none;
  5726. -webkit-box-shadow:none;
  5727. box-shadow:none;
  5728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. font-size:16px;
  5732. }
  5733. #u28784 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:146px;
  5737. top:335px;
  5738. width:97px;
  5739. height:22px;
  5740. display:flex;
  5741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. font-size:16px;
  5745. }
  5746. #u28784 .text {
  5747. position:absolute;
  5748. align-self:flex-start;
  5749. padding:0px 0px 0px 0px;
  5750. box-sizing:border-box;
  5751. width:100%;
  5752. }
  5753. #u28784_text {
  5754. border-width:0px;
  5755. white-space:nowrap;
  5756. text-transform:none;
  5757. }
  5758. #u28785_div {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:97px;
  5764. height:22px;
  5765. background:inherit;
  5766. background-color:rgba(255, 255, 255, 0);
  5767. border:none;
  5768. border-radius:0px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:16px;
  5776. }
  5777. #u28785 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:146px;
  5781. top:931px;
  5782. width:97px;
  5783. height:22px;
  5784. display:flex;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:16px;
  5789. }
  5790. #u28785 .text {
  5791. position:absolute;
  5792. align-self:flex-start;
  5793. padding:0px 0px 0px 0px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u28785_text {
  5798. border-width:0px;
  5799. white-space:nowrap;
  5800. text-transform:none;
  5801. }
  5802. #u28786_div {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:49px;
  5808. height:17px;
  5809. background:inherit;
  5810. background-color:rgba(255, 255, 255, 0);
  5811. border:none;
  5812. border-radius:0px;
  5813. -moz-box-shadow:none;
  5814. -webkit-box-shadow:none;
  5815. box-shadow:none;
  5816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:12px;
  5820. color:#AAAAAA;
  5821. }
  5822. #u28786 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:146px;
  5826. top:995px;
  5827. width:49px;
  5828. height:17px;
  5829. display:flex;
  5830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5831. font-weight:400;
  5832. font-style:normal;
  5833. font-size:12px;
  5834. color:#AAAAAA;
  5835. }
  5836. #u28786 .text {
  5837. position:absolute;
  5838. align-self:flex-start;
  5839. padding:0px 0px 0px 0px;
  5840. box-sizing:border-box;
  5841. width:100%;
  5842. }
  5843. #u28786_text {
  5844. border-width:0px;
  5845. white-space:nowrap;
  5846. text-transform:none;
  5847. }
  5848. #u28787_img {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:201px;
  5854. height:2px;
  5855. }
  5856. #u28787 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:120px;
  5860. top:973px;
  5861. width:200px;
  5862. height:1px;
  5863. display:flex;
  5864. }
  5865. #u28787 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 2px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u28787_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u28788_div {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:97px;
  5884. height:22px;
  5885. background:inherit;
  5886. background-color:rgba(255, 255, 255, 0);
  5887. border:none;
  5888. border-radius:0px;
  5889. -moz-box-shadow:none;
  5890. -webkit-box-shadow:none;
  5891. box-shadow:none;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:16px;
  5896. }
  5897. #u28788 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:146px;
  5901. top:1033px;
  5902. width:97px;
  5903. height:22px;
  5904. display:flex;
  5905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. font-size:16px;
  5909. }
  5910. #u28788 .text {
  5911. position:absolute;
  5912. align-self:flex-start;
  5913. padding:0px 0px 0px 0px;
  5914. box-sizing:border-box;
  5915. width:100%;
  5916. }
  5917. #u28788_text {
  5918. border-width:0px;
  5919. white-space:nowrap;
  5920. text-transform:none;
  5921. }
  5922. #u28789_div {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:73px;
  5928. height:17px;
  5929. background:inherit;
  5930. background-color:rgba(255, 255, 255, 0);
  5931. border:none;
  5932. border-radius:0px;
  5933. -moz-box-shadow:none;
  5934. -webkit-box-shadow:none;
  5935. box-shadow:none;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:12px;
  5940. color:#AAAAAA;
  5941. }
  5942. #u28789 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:146px;
  5946. top:667px;
  5947. width:73px;
  5948. height:17px;
  5949. display:flex;
  5950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5951. font-weight:400;
  5952. font-style:normal;
  5953. font-size:12px;
  5954. color:#AAAAAA;
  5955. }
  5956. #u28789 .text {
  5957. position:absolute;
  5958. align-self:flex-start;
  5959. padding:0px 0px 0px 0px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u28789_text {
  5964. border-width:0px;
  5965. white-space:nowrap;
  5966. text-transform:none;
  5967. }
  5968. #u28790_img {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:201px;
  5974. height:2px;
  5975. }
  5976. #u28790 {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:120px;
  5980. top:645px;
  5981. width:200px;
  5982. height:1px;
  5983. display:flex;
  5984. }
  5985. #u28790 .text {
  5986. position:absolute;
  5987. align-self:center;
  5988. padding:2px 2px 2px 2px;
  5989. box-sizing:border-box;
  5990. width:100%;
  5991. }
  5992. #u28790_text {
  5993. border-width:0px;
  5994. word-wrap:break-word;
  5995. text-transform:none;
  5996. visibility:hidden;
  5997. }
  5998. #u28791_div {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:97px;
  6004. height:22px;
  6005. background:inherit;
  6006. background-color:rgba(255, 255, 255, 0);
  6007. border:none;
  6008. border-radius:0px;
  6009. -moz-box-shadow:none;
  6010. -webkit-box-shadow:none;
  6011. box-shadow:none;
  6012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:16px;
  6016. }
  6017. #u28791 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:146px;
  6021. top:705px;
  6022. width:97px;
  6023. height:22px;
  6024. display:flex;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. font-size:16px;
  6029. }
  6030. #u28791 .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. #u28791_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u28792_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:97px;
  6048. height:22px;
  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-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:16px;
  6060. }
  6061. #u28792 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:146px;
  6065. top:747px;
  6066. width:97px;
  6067. height:22px;
  6068. display:flex;
  6069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:16px;
  6073. }
  6074. #u28792 .text {
  6075. position:absolute;
  6076. align-self:flex-start;
  6077. padding:0px 0px 0px 0px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u28792_text {
  6082. border-width:0px;
  6083. white-space:nowrap;
  6084. text-transform:none;
  6085. }