styles.css 106 KB

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