styles.css 110 KB

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