styles.css 112 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3151px;
  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. #u97151_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. #u97151 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u97151 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u97151_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u97152_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. #u97152 {
  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. #u97152 .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. #u97152_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u97153_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. #u97153 {
  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. #u97153 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u97153_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u97154 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u97155_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u97155 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u97155 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u97155_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u97156_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. #u97156 {
  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. #u97156 .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. #u97156_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u97157_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. #u97157 {
  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. #u97157 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u97157_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u97158 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u97159_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. #u97159_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. #u97159_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. #u97159 {
  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. #u97159 .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. #u97159_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. #u97159.disabled {
  356. }
  357. .u97159_input_option {
  358. font-size:14px;
  359. }
  360. #u97160_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u97160 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u97160 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u97160_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u97161_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. #u97161 {
  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. #u97161 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u97161_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u97162_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. #u97162 {
  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. #u97162 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u97162_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u97163 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u97164_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. #u97164 {
  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. #u97164 .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. #u97164_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u97165_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u97165 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u97165 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u97165_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u97166 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u97167_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. #u97167 {
  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. #u97167 .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. #u97167_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u97168_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u97168 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u97168 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u97168_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u97169 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u97170_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. #u97170 {
  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. #u97170 .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. #u97170_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u97171_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u97171 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u97171 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u97171_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u97172 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u97173_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. #u97173 {
  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. #u97173 .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. #u97173_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u97174_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u97174 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u97174 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u97174_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u97175 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u97176_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. #u97176 {
  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. #u97176 .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. #u97176_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u97177_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u97177 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u97177 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u97177_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u97178 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u97179_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. #u97179 {
  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. #u97179 .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. #u97179_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u97180_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u97180 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u97180 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u97180_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u97181 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u97182_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. #u97182 {
  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. #u97182 .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. #u97182_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u97183_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u97183 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u97183 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u97183_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u97184 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u97185_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. #u97185 {
  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. #u97185 .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. #u97185_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u97186_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u97186 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u97186 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u97186_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u97187 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u97188_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. #u97188 {
  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. #u97188 .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. #u97188_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u97189_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u97189 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u97189 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u97189_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u97190 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u97191_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. #u97191 {
  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. #u97191 .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. #u97191_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u97192_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u97192 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u97192 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u97192_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u97193_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. #u97193 {
  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. #u97193 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u97193_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u97194_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u97194 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u97194 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u97194_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u97195_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. #u97195 {
  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. #u97195 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u97195_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u97196_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u97196 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u97196 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u97196_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u97197 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u97198_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. #u97198 {
  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. #u97198 .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. #u97198_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u97199_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u97199 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u97199 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u97199_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u97200 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u97201_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. #u97201 {
  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. #u97201 .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. #u97201_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u97202_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u97202 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u97202 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u97202_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u97203_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1381px;
  1644. height:1522px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(215, 215, 215, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:12px;
  1659. color:#FFFFFF;
  1660. text-align:left;
  1661. }
  1662. #u97203 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:330px;
  1666. top:50px;
  1667. width:1381px;
  1668. height:1522px;
  1669. display:flex;
  1670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1671. font-weight:400;
  1672. font-style:normal;
  1673. font-size:12px;
  1674. color:#FFFFFF;
  1675. text-align:left;
  1676. }
  1677. #u97203 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 50px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u97203_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u97204_div {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:1381px;
  1696. height:1154px;
  1697. background:inherit;
  1698. background-color:rgba(255, 255, 255, 1);
  1699. border:none;
  1700. border-radius:0px;
  1701. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1702. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1703. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1704. }
  1705. #u97204 {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:330px;
  1709. top:50px;
  1710. width:1381px;
  1711. height:1154px;
  1712. display:flex;
  1713. }
  1714. #u97204 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:2px 2px 2px 2px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u97204_text {
  1722. border-width:0px;
  1723. word-wrap:break-word;
  1724. text-transform:none;
  1725. visibility:hidden;
  1726. }
  1727. #u97205_img {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:11px;
  1733. height:11px;
  1734. }
  1735. #u97205 {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:1077px;
  1739. top:204px;
  1740. width:11px;
  1741. height:11px;
  1742. display:flex;
  1743. color:#FFFFFF;
  1744. }
  1745. #u97205 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:2px 2px 2px 2px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u97205_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. visibility:hidden;
  1757. }
  1758. #u97206_div {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:300px;
  1764. height:962px;
  1765. background:inherit;
  1766. background-color:rgba(242, 242, 242, 1);
  1767. border:none;
  1768. border-radius:4px;
  1769. -moz-box-shadow:none;
  1770. -webkit-box-shadow:none;
  1771. box-shadow:none;
  1772. }
  1773. #u97206 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:349px;
  1777. top:205px;
  1778. width:300px;
  1779. height:962px;
  1780. display:flex;
  1781. }
  1782. #u97206 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:2px 2px 2px 2px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u97206_text {
  1790. border-width:0px;
  1791. word-wrap:break-word;
  1792. text-transform:none;
  1793. visibility:hidden;
  1794. }
  1795. #u97207_div {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:109px;
  1801. height:50px;
  1802. background:inherit;
  1803. background-color:rgba(255, 255, 255, 0);
  1804. border:none;
  1805. border-left:0px;
  1806. border-top:0px;
  1807. border-right:0px;
  1808. border-radius:0px;
  1809. border-bottom-right-radius:0px;
  1810. border-bottom-left-radius:0px;
  1811. -moz-box-shadow:none;
  1812. -webkit-box-shadow:none;
  1813. box-shadow:none;
  1814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:18px;
  1818. }
  1819. #u97207 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:349px;
  1823. top:50px;
  1824. width:109px;
  1825. height:50px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:18px;
  1831. }
  1832. #u97207 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:0px 0px 0px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u97207_text {
  1840. border-width:0px;
  1841. white-space:nowrap;
  1842. text-transform:none;
  1843. }
  1844. #u97208_div {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:71px;
  1850. height:50px;
  1851. background:inherit;
  1852. background-color:rgba(255, 255, 255, 0);
  1853. border:none;
  1854. border-left:0px;
  1855. border-top:0px;
  1856. border-right:0px;
  1857. border-radius:0px;
  1858. border-bottom-right-radius:0px;
  1859. border-bottom-left-radius:0px;
  1860. -moz-box-shadow:none;
  1861. -webkit-box-shadow:none;
  1862. box-shadow:none;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:14px;
  1867. color:#000000;
  1868. line-height:40px;
  1869. }
  1870. #u97208 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:349px;
  1874. top:120px;
  1875. width:71px;
  1876. height:50px;
  1877. display:flex;
  1878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1879. font-weight:400;
  1880. font-style:normal;
  1881. font-size:14px;
  1882. color:#000000;
  1883. line-height:40px;
  1884. }
  1885. #u97208 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:0px 0px 0px 0px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u97208_text {
  1893. border-width:0px;
  1894. white-space:nowrap;
  1895. text-transform:none;
  1896. }
  1897. #u97209_div {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:670px;
  1903. height:60px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 0);
  1906. border:none;
  1907. border-left:0px;
  1908. border-top:0px;
  1909. border-right:0px;
  1910. border-radius:0px;
  1911. border-bottom-right-radius:0px;
  1912. border-bottom-left-radius:0px;
  1913. -moz-box-shadow:none;
  1914. -webkit-box-shadow:none;
  1915. box-shadow:none;
  1916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1917. font-weight:400;
  1918. font-style:normal;
  1919. font-size:14px;
  1920. color:#000000;
  1921. line-height:30px;
  1922. }
  1923. #u97209 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:420px;
  1927. top:130px;
  1928. width:670px;
  1929. height:60px;
  1930. display:flex;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:14px;
  1935. color:#000000;
  1936. line-height:30px;
  1937. }
  1938. #u97209 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:0px 0px 0px 0px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u97209_text {
  1946. border-width:0px;
  1947. white-space:nowrap;
  1948. text-transform:none;
  1949. }
  1950. #u97210_div {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:73px;
  1956. height:30px;
  1957. background:inherit;
  1958. background-color:rgba(255, 255, 255, 0);
  1959. border:none;
  1960. border-left:0px;
  1961. border-top:0px;
  1962. border-right:0px;
  1963. border-radius:0px;
  1964. border-bottom-right-radius:0px;
  1965. border-bottom-left-radius:0px;
  1966. -moz-box-shadow:none;
  1967. -webkit-box-shadow:none;
  1968. box-shadow:none;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:18px;
  1973. color:#000000;
  1974. line-height:30px;
  1975. }
  1976. #u97210 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:367px;
  1980. top:225px;
  1981. width:73px;
  1982. height:30px;
  1983. display:flex;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:18px;
  1988. color:#000000;
  1989. line-height:30px;
  1990. }
  1991. #u97210 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:0px 0px 0px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u97210_text {
  1999. border-width:0px;
  2000. white-space:nowrap;
  2001. text-transform:none;
  2002. }
  2003. #u97211_div {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:258px;
  2009. height:30px;
  2010. background:inherit;
  2011. background-color:rgba(255, 255, 255, 1);
  2012. box-sizing:border-box;
  2013. border-width:1px;
  2014. border-style:solid;
  2015. border-color:rgba(170, 170, 170, 1);
  2016. border-radius:4px;
  2017. -moz-box-shadow:none;
  2018. -webkit-box-shadow:none;
  2019. box-shadow:none;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. color:#555555;
  2025. }
  2026. #u97211 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:367px;
  2030. top:275px;
  2031. width:258px;
  2032. height:30px;
  2033. display:flex;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#555555;
  2039. }
  2040. #u97211 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:5px 15px 5px 15px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u97211_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u97212_div {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:258px;
  2058. height:30px;
  2059. background:inherit;
  2060. background-color:rgba(255, 255, 255, 1);
  2061. box-sizing:border-box;
  2062. border-width:1px;
  2063. border-style:solid;
  2064. border-color:rgba(170, 170, 170, 1);
  2065. border-radius:4px;
  2066. -moz-box-shadow:none;
  2067. -webkit-box-shadow:none;
  2068. box-shadow:none;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:12px;
  2073. color:#555555;
  2074. }
  2075. #u97212 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:367px;
  2079. top:475px;
  2080. width:258px;
  2081. height:30px;
  2082. display:flex;
  2083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:12px;
  2087. color:#555555;
  2088. }
  2089. #u97212 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:5px 15px 5px 15px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u97212_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. }
  2101. #u97213_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:258px;
  2107. height:30px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 1);
  2110. box-sizing:border-box;
  2111. border-width:1px;
  2112. border-style:solid;
  2113. border-color:rgba(170, 170, 170, 1);
  2114. border-radius:4px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:12px;
  2122. color:#555555;
  2123. }
  2124. #u97213 {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:367px;
  2128. top:325px;
  2129. width:258px;
  2130. height:30px;
  2131. display:flex;
  2132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2133. font-weight:400;
  2134. font-style:normal;
  2135. font-size:12px;
  2136. color:#555555;
  2137. }
  2138. #u97213 .text {
  2139. position:absolute;
  2140. align-self:center;
  2141. padding:5px 15px 5px 15px;
  2142. box-sizing:border-box;
  2143. width:100%;
  2144. }
  2145. #u97213_text {
  2146. border-width:0px;
  2147. word-wrap:break-word;
  2148. text-transform:none;
  2149. }
  2150. #u97214_div {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:258px;
  2156. height:30px;
  2157. background:inherit;
  2158. background-color:rgba(255, 255, 255, 1);
  2159. box-sizing:border-box;
  2160. border-width:1px;
  2161. border-style:solid;
  2162. border-color:rgba(170, 170, 170, 1);
  2163. border-radius:4px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. color:#555555;
  2172. }
  2173. #u97214 {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:367px;
  2177. top:375px;
  2178. width:258px;
  2179. height:30px;
  2180. display:flex;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:12px;
  2185. color:#555555;
  2186. }
  2187. #u97214 .text {
  2188. position:absolute;
  2189. align-self:center;
  2190. padding:5px 15px 5px 15px;
  2191. box-sizing:border-box;
  2192. width:100%;
  2193. }
  2194. #u97214_text {
  2195. border-width:0px;
  2196. word-wrap:break-word;
  2197. text-transform:none;
  2198. }
  2199. #u97215_div {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:0px;
  2203. top:0px;
  2204. width:258px;
  2205. height:30px;
  2206. background:inherit;
  2207. background-color:rgba(255, 255, 255, 1);
  2208. box-sizing:border-box;
  2209. border-width:1px;
  2210. border-style:solid;
  2211. border-color:rgba(170, 170, 170, 1);
  2212. border-radius:4px;
  2213. -moz-box-shadow:none;
  2214. -webkit-box-shadow:none;
  2215. box-shadow:none;
  2216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:12px;
  2220. color:#555555;
  2221. }
  2222. #u97215 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:367px;
  2226. top:525px;
  2227. width:258px;
  2228. height:30px;
  2229. display:flex;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:12px;
  2234. color:#555555;
  2235. }
  2236. #u97215 .text {
  2237. position:absolute;
  2238. align-self:center;
  2239. padding:5px 15px 5px 15px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u97215_text {
  2244. border-width:0px;
  2245. word-wrap:break-word;
  2246. text-transform:none;
  2247. }
  2248. #u97216_div {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:258px;
  2254. height:30px;
  2255. background:inherit;
  2256. background-color:rgba(255, 255, 255, 1);
  2257. box-sizing:border-box;
  2258. border-width:1px;
  2259. border-style:solid;
  2260. border-color:rgba(170, 170, 170, 1);
  2261. border-radius:4px;
  2262. -moz-box-shadow:none;
  2263. -webkit-box-shadow:none;
  2264. box-shadow:none;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:12px;
  2269. color:#555555;
  2270. }
  2271. #u97216 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:367px;
  2275. top:575px;
  2276. width:258px;
  2277. height:30px;
  2278. display:flex;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:12px;
  2283. color:#555555;
  2284. }
  2285. #u97216 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:5px 15px 5px 15px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u97216_text {
  2293. border-width:0px;
  2294. word-wrap:break-word;
  2295. text-transform:none;
  2296. }
  2297. #u97217_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:258px;
  2303. height:30px;
  2304. background:inherit;
  2305. background-color:rgba(255, 255, 255, 1);
  2306. box-sizing:border-box;
  2307. border-width:1px;
  2308. border-style:solid;
  2309. border-color:rgba(170, 170, 170, 1);
  2310. border-radius:4px;
  2311. -moz-box-shadow:none;
  2312. -webkit-box-shadow:none;
  2313. box-shadow:none;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:12px;
  2318. color:#555555;
  2319. }
  2320. #u97217 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:367px;
  2324. top:625px;
  2325. width:258px;
  2326. height:30px;
  2327. display:flex;
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:12px;
  2332. color:#555555;
  2333. }
  2334. #u97217 .text {
  2335. position:absolute;
  2336. align-self:center;
  2337. padding:5px 15px 5px 15px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u97217_text {
  2342. border-width:0px;
  2343. word-wrap:break-word;
  2344. text-transform:none;
  2345. }
  2346. #u97218_div {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:258px;
  2352. height:30px;
  2353. background:inherit;
  2354. background-color:rgba(255, 255, 255, 1);
  2355. box-sizing:border-box;
  2356. border-width:1px;
  2357. border-style:solid;
  2358. border-color:rgba(170, 170, 170, 1);
  2359. border-radius:4px;
  2360. -moz-box-shadow:none;
  2361. -webkit-box-shadow:none;
  2362. box-shadow:none;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:12px;
  2367. color:#555555;
  2368. }
  2369. #u97218 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:367px;
  2373. top:425px;
  2374. width:258px;
  2375. height:30px;
  2376. display:flex;
  2377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:12px;
  2381. color:#555555;
  2382. }
  2383. #u97218 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:5px 15px 5px 15px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u97218_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. }
  2395. #u97219_div {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:258px;
  2401. height:30px;
  2402. background:inherit;
  2403. background-color:rgba(255, 255, 255, 1);
  2404. box-sizing:border-box;
  2405. border-width:1px;
  2406. border-style:solid;
  2407. border-color:rgba(170, 170, 170, 1);
  2408. border-radius:4px;
  2409. -moz-box-shadow:none;
  2410. -webkit-box-shadow:none;
  2411. box-shadow:none;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:12px;
  2416. color:#555555;
  2417. }
  2418. #u97219 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:367px;
  2422. top:675px;
  2423. width:258px;
  2424. height:30px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. color:#555555;
  2431. }
  2432. #u97219 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:5px 15px 5px 15px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u97219_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. }
  2444. #u97220_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:964px;
  2450. height:962px;
  2451. background:inherit;
  2452. background-color:rgba(242, 242, 242, 1);
  2453. border:none;
  2454. border-radius:4px;
  2455. -moz-box-shadow:none;
  2456. -webkit-box-shadow:none;
  2457. box-shadow:none;
  2458. }
  2459. #u97220 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:721px;
  2463. top:205px;
  2464. width:964px;
  2465. height:962px;
  2466. display:flex;
  2467. }
  2468. #u97220 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 2px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u97220_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u97221_div {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:73px;
  2487. height:30px;
  2488. background:inherit;
  2489. background-color:rgba(255, 255, 255, 0);
  2490. border:none;
  2491. border-left:0px;
  2492. border-top:0px;
  2493. border-right:0px;
  2494. border-radius:0px;
  2495. border-bottom-right-radius:0px;
  2496. border-bottom-left-radius:0px;
  2497. -moz-box-shadow:none;
  2498. -webkit-box-shadow:none;
  2499. box-shadow:none;
  2500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2501. font-weight:400;
  2502. font-style:normal;
  2503. font-size:18px;
  2504. color:#000000;
  2505. line-height:30px;
  2506. }
  2507. #u97221 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:739px;
  2511. top:225px;
  2512. width:73px;
  2513. height:30px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:18px;
  2519. color:#000000;
  2520. line-height:30px;
  2521. }
  2522. #u97221 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:0px 0px 0px 0px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u97221_text {
  2530. border-width:0px;
  2531. white-space:nowrap;
  2532. text-transform:none;
  2533. }
  2534. #u97222 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:739px;
  2538. top:274px;
  2539. width:900px;
  2540. height:30px;
  2541. }
  2542. #u97223_img {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:300px;
  2548. height:30px;
  2549. }
  2550. #u97223 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:300px;
  2556. height:30px;
  2557. display:flex;
  2558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2559. font-weight:400;
  2560. font-style:normal;
  2561. color:#FFFFFF;
  2562. }
  2563. #u97223 .text {
  2564. position:absolute;
  2565. align-self:center;
  2566. padding:2px 2px 2px 2px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u97223_text {
  2571. border-width:0px;
  2572. word-wrap:break-word;
  2573. text-transform:none;
  2574. }
  2575. #u97224_img {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:600px;
  2581. height:30px;
  2582. }
  2583. #u97224 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:300px;
  2587. top:0px;
  2588. width:600px;
  2589. height:30px;
  2590. display:flex;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. color:#FFFFFF;
  2595. }
  2596. #u97224 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 2px 2px 2px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u97224_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. }
  2608. #u97225_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:260px;
  2614. height:50px;
  2615. background:inherit;
  2616. background-color:rgba(255, 255, 255, 0);
  2617. box-sizing:border-box;
  2618. border-width:1px;
  2619. border-style:solid;
  2620. border-color:rgba(215, 215, 215, 1);
  2621. border-radius:6px;
  2622. -moz-box-shadow:none;
  2623. -webkit-box-shadow:none;
  2624. box-shadow:none;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:14px;
  2629. color:#000000;
  2630. line-height:30px;
  2631. }
  2632. #u97225 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:755px;
  2636. top:315px;
  2637. width:260px;
  2638. height:50px;
  2639. display:flex;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:14px;
  2644. color:#000000;
  2645. line-height:30px;
  2646. }
  2647. #u97225 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:0px 0px 0px 40px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u97225_text {
  2655. border-width:0px;
  2656. word-wrap:break-word;
  2657. text-transform:none;
  2658. }
  2659. #u97226 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:0px;
  2665. height:0px;
  2666. }
  2667. #u97227_div {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:260px;
  2673. height:50px;
  2674. background:inherit;
  2675. background-color:rgba(255, 255, 255, 0);
  2676. border:none;
  2677. border-left:0px;
  2678. border-top:0px;
  2679. border-right:0px;
  2680. border-radius:0px;
  2681. border-bottom-right-radius:0px;
  2682. border-bottom-left-radius:0px;
  2683. -moz-box-shadow:none;
  2684. -webkit-box-shadow:none;
  2685. box-shadow:none;
  2686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2687. font-weight:400;
  2688. font-style:normal;
  2689. font-size:14px;
  2690. color:#000000;
  2691. line-height:30px;
  2692. }
  2693. #u97227 {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:755px;
  2697. top:375px;
  2698. width:260px;
  2699. height:50px;
  2700. display:flex;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:14px;
  2705. color:#000000;
  2706. line-height:30px;
  2707. }
  2708. #u97227 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:0px 0px 0px 40px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u97227_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. }
  2720. #u97228_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:9px;
  2726. height:9px;
  2727. }
  2728. #u97228 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:845px;
  2732. top:395px;
  2733. width:9px;
  2734. height:9px;
  2735. display:flex;
  2736. }
  2737. #u97228 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 2px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u97228_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u97229 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:0px;
  2756. height:0px;
  2757. }
  2758. #u97230_div {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:140px;
  2764. height:40px;
  2765. background:inherit;
  2766. background-color:rgba(255, 255, 255, 1);
  2767. box-sizing:border-box;
  2768. border-width:1px;
  2769. border-style:solid;
  2770. border-color:rgba(215, 215, 215, 1);
  2771. border-radius:4px;
  2772. -moz-box-shadow:none;
  2773. -webkit-box-shadow:none;
  2774. box-shadow:none;
  2775. font-size:11px;
  2776. }
  2777. #u97230 {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:1063px;
  2781. top:320px;
  2782. width:140px;
  2783. height:40px;
  2784. display:flex;
  2785. font-size:11px;
  2786. }
  2787. #u97230 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 2px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u97230_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u97231_input {
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:133px;
  2805. height:31px;
  2806. padding:2px 2px 2px 2px;
  2807. font-family:'ArialMT', 'Arial', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:11px;
  2811. letter-spacing:normal;
  2812. color:#AAAAAA;
  2813. vertical-align:none;
  2814. text-align:left;
  2815. text-transform:none;
  2816. background-color:transparent;
  2817. border-color:transparent;
  2818. }
  2819. #u97231_input.disabled {
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:133px;
  2824. height:31px;
  2825. padding:2px 2px 2px 2px;
  2826. font-family:'ArialMT', 'Arial', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:11px;
  2830. letter-spacing:normal;
  2831. color:#AAAAAA;
  2832. vertical-align:none;
  2833. text-align:left;
  2834. text-transform:none;
  2835. background-color:transparent;
  2836. border-color:transparent;
  2837. }
  2838. #u97231_div {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:133px;
  2844. height:31px;
  2845. background:inherit;
  2846. background-color:rgba(255, 255, 255, 1);
  2847. border:none;
  2848. border-radius:0px;
  2849. -moz-box-shadow:none;
  2850. -webkit-box-shadow:none;
  2851. box-shadow:none;
  2852. font-size:11px;
  2853. color:#AAAAAA;
  2854. }
  2855. #u97231 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:1067px;
  2859. top:323px;
  2860. width:133px;
  2861. height:31px;
  2862. display:flex;
  2863. font-size:11px;
  2864. color:#AAAAAA;
  2865. }
  2866. #u97231 .text {
  2867. position:absolute;
  2868. align-self:flex-start;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u97231_div.disabled {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:0px;
  2877. top:0px;
  2878. width:133px;
  2879. height:31px;
  2880. background:inherit;
  2881. background-color:rgba(240, 240, 240, 1);
  2882. border:none;
  2883. border-radius:0px;
  2884. -moz-box-shadow:none;
  2885. -webkit-box-shadow:none;
  2886. box-shadow:none;
  2887. font-size:11px;
  2888. color:#AAAAAA;
  2889. }
  2890. #u97231.disabled {
  2891. }
  2892. .u97231_input_option {
  2893. font-size:11px;
  2894. }
  2895. #u97232 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:0px;
  2901. height:0px;
  2902. }
  2903. #u97233_div {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:140px;
  2909. height:40px;
  2910. background:inherit;
  2911. background-color:rgba(255, 255, 255, 1);
  2912. box-sizing:border-box;
  2913. border-width:1px;
  2914. border-style:solid;
  2915. border-color:rgba(215, 215, 215, 1);
  2916. border-radius:4px;
  2917. -moz-box-shadow:none;
  2918. -webkit-box-shadow:none;
  2919. box-shadow:none;
  2920. font-size:11px;
  2921. }
  2922. #u97233 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:1063px;
  2926. top:375px;
  2927. width:140px;
  2928. height:40px;
  2929. display:flex;
  2930. font-size:11px;
  2931. }
  2932. #u97233 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:2px 2px 2px 2px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u97233_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. visibility:hidden;
  2944. }
  2945. #u97234_input {
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:133px;
  2950. height:31px;
  2951. padding:2px 2px 2px 2px;
  2952. font-family:'ArialMT', 'Arial', sans-serif;
  2953. font-weight:400;
  2954. font-style:normal;
  2955. font-size:11px;
  2956. letter-spacing:normal;
  2957. color:#AAAAAA;
  2958. vertical-align:none;
  2959. text-align:left;
  2960. text-transform:none;
  2961. background-color:transparent;
  2962. border-color:transparent;
  2963. }
  2964. #u97234_input.disabled {
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:133px;
  2969. height:31px;
  2970. padding:2px 2px 2px 2px;
  2971. font-family:'ArialMT', 'Arial', sans-serif;
  2972. font-weight:400;
  2973. font-style:normal;
  2974. font-size:11px;
  2975. letter-spacing:normal;
  2976. color:#AAAAAA;
  2977. vertical-align:none;
  2978. text-align:left;
  2979. text-transform:none;
  2980. background-color:transparent;
  2981. border-color:transparent;
  2982. }
  2983. #u97234_div {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:133px;
  2989. height:31px;
  2990. background:inherit;
  2991. background-color:rgba(255, 255, 255, 1);
  2992. border:none;
  2993. border-radius:0px;
  2994. -moz-box-shadow:none;
  2995. -webkit-box-shadow:none;
  2996. box-shadow:none;
  2997. font-size:11px;
  2998. color:#AAAAAA;
  2999. }
  3000. #u97234 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:1067px;
  3004. top:378px;
  3005. width:133px;
  3006. height:31px;
  3007. display:flex;
  3008. font-size:11px;
  3009. color:#AAAAAA;
  3010. }
  3011. #u97234 .text {
  3012. position:absolute;
  3013. align-self:flex-start;
  3014. padding:2px 2px 2px 2px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u97234_div.disabled {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:133px;
  3024. height:31px;
  3025. background:inherit;
  3026. background-color:rgba(240, 240, 240, 1);
  3027. border:none;
  3028. border-radius:0px;
  3029. -moz-box-shadow:none;
  3030. -webkit-box-shadow:none;
  3031. box-shadow:none;
  3032. font-size:11px;
  3033. color:#AAAAAA;
  3034. }
  3035. #u97234.disabled {
  3036. }
  3037. .u97234_input_option {
  3038. font-size:11px;
  3039. }
  3040. #u97235 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:0px;
  3046. height:0px;
  3047. }
  3048. #u97236_div {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:140px;
  3054. height:40px;
  3055. background:inherit;
  3056. background-color:rgba(255, 255, 255, 1);
  3057. box-sizing:border-box;
  3058. border-width:1px;
  3059. border-style:solid;
  3060. border-color:rgba(215, 215, 215, 1);
  3061. border-radius:4px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. font-size:11px;
  3066. }
  3067. #u97236 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:1223px;
  3071. top:375px;
  3072. width:140px;
  3073. height:40px;
  3074. display:flex;
  3075. font-size:11px;
  3076. }
  3077. #u97236 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u97236_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u97237_input {
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:133px;
  3095. height:31px;
  3096. padding:2px 2px 2px 2px;
  3097. font-family:'ArialMT', 'Arial', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:11px;
  3101. letter-spacing:normal;
  3102. color:#AAAAAA;
  3103. vertical-align:none;
  3104. text-align:left;
  3105. text-transform:none;
  3106. background-color:transparent;
  3107. border-color:transparent;
  3108. }
  3109. #u97237_input.disabled {
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:133px;
  3114. height:31px;
  3115. padding:2px 2px 2px 2px;
  3116. font-family:'ArialMT', 'Arial', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:11px;
  3120. letter-spacing:normal;
  3121. color:#AAAAAA;
  3122. vertical-align:none;
  3123. text-align:left;
  3124. text-transform:none;
  3125. background-color:transparent;
  3126. border-color:transparent;
  3127. }
  3128. #u97237_div {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:133px;
  3134. height:31px;
  3135. background:inherit;
  3136. background-color:rgba(255, 255, 255, 1);
  3137. border:none;
  3138. border-radius:0px;
  3139. -moz-box-shadow:none;
  3140. -webkit-box-shadow:none;
  3141. box-shadow:none;
  3142. font-size:11px;
  3143. color:#AAAAAA;
  3144. }
  3145. #u97237 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:1227px;
  3149. top:378px;
  3150. width:133px;
  3151. height:31px;
  3152. display:flex;
  3153. font-size:11px;
  3154. color:#AAAAAA;
  3155. }
  3156. #u97237 .text {
  3157. position:absolute;
  3158. align-self:flex-start;
  3159. padding:2px 2px 2px 2px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u97237_div.disabled {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:133px;
  3169. height:31px;
  3170. background:inherit;
  3171. background-color:rgba(240, 240, 240, 1);
  3172. border:none;
  3173. border-radius:0px;
  3174. -moz-box-shadow:none;
  3175. -webkit-box-shadow:none;
  3176. box-shadow:none;
  3177. font-size:11px;
  3178. color:#AAAAAA;
  3179. }
  3180. #u97237.disabled {
  3181. }
  3182. .u97237_input_option {
  3183. font-size:11px;
  3184. }
  3185. #u97238 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:0px;
  3191. height:0px;
  3192. }
  3193. #u97239_div {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:1340px;
  3199. height:60px;
  3200. background:inherit;
  3201. background-color:rgba(255, 255, 255, 1);
  3202. box-sizing:border-box;
  3203. border-width:1px;
  3204. border-style:solid;
  3205. border-color:rgba(215, 215, 215, 1);
  3206. border-radius:0px;
  3207. -moz-box-shadow:none;
  3208. -webkit-box-shadow:none;
  3209. box-shadow:none;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:14px;
  3214. color:#AAAAAA;
  3215. text-align:center;
  3216. line-height:30px;
  3217. }
  3218. #u97239 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:349px;
  3222. top:1107px;
  3223. width:1340px;
  3224. height:60px;
  3225. display:flex;
  3226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. font-size:14px;
  3230. color:#AAAAAA;
  3231. text-align:center;
  3232. line-height:30px;
  3233. }
  3234. #u97239 .text {
  3235. position:absolute;
  3236. align-self:center;
  3237. padding:5px 10px 5px 10px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u97239_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. visibility:hidden;
  3246. }
  3247. #u97240_div {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:60px;
  3253. height:30px;
  3254. background:inherit;
  3255. background-color:rgba(24, 144, 255, 1);
  3256. border:none;
  3257. border-radius:4px;
  3258. -moz-box-shadow:none;
  3259. -webkit-box-shadow:none;
  3260. box-shadow:none;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:14px;
  3265. color:#FFFFFF;
  3266. }
  3267. #u97240 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:1609px;
  3271. top:1122px;
  3272. width:60px;
  3273. height:30px;
  3274. display:flex;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:14px;
  3279. color:#FFFFFF;
  3280. }
  3281. #u97240 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 2px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u97240_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. }
  3293. #u97241_div {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:248px;
  3299. height:50px;
  3300. background:inherit;
  3301. background-color:rgba(255, 255, 255, 0);
  3302. border:none;
  3303. border-left:0px;
  3304. border-top:0px;
  3305. border-right:0px;
  3306. border-radius:0px;
  3307. border-bottom-right-radius:0px;
  3308. border-bottom-left-radius:0px;
  3309. -moz-box-shadow:none;
  3310. -webkit-box-shadow:none;
  3311. box-shadow:none;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:14px;
  3316. line-height:40px;
  3317. }
  3318. #u97241 {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:369px;
  3322. top:1112px;
  3323. width:248px;
  3324. height:50px;
  3325. display:flex;
  3326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3327. font-weight:400;
  3328. font-style:normal;
  3329. font-size:14px;
  3330. line-height:40px;
  3331. }
  3332. #u97241 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:0px 0px 0px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u97241_text {
  3340. border-width:0px;
  3341. white-space:nowrap;
  3342. text-transform:none;
  3343. }
  3344. #u97242 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:0px;
  3350. height:0px;
  3351. }
  3352. #u97243_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:455px;
  3358. height:160px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 1);
  3361. box-sizing:border-box;
  3362. border-width:1px;
  3363. border-style:solid;
  3364. border-color:rgba(204, 204, 204, 1);
  3365. border-radius:0px;
  3366. -moz-box-shadow:none;
  3367. -webkit-box-shadow:none;
  3368. box-shadow:none;
  3369. font-family:'Microsoft YaHei', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. }
  3373. #u97243 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:622px;
  3377. top:858px;
  3378. width:455px;
  3379. height:160px;
  3380. display:flex;
  3381. font-family:'Microsoft YaHei', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. }
  3385. #u97243 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 2px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u97243_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u97244_div {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:73px;
  3404. height:21px;
  3405. background:inherit;
  3406. background-color:rgba(255, 255, 255, 0);
  3407. border:none;
  3408. border-radius:0px;
  3409. -moz-box-shadow:none;
  3410. -webkit-box-shadow:none;
  3411. box-shadow:none;
  3412. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3413. font-weight:650;
  3414. font-style:normal;
  3415. font-size:18px;
  3416. color:#000000;
  3417. line-height:22px;
  3418. }
  3419. #u97244 {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:682px;
  3423. top:893px;
  3424. width:73px;
  3425. height:21px;
  3426. display:flex;
  3427. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3428. font-weight:650;
  3429. font-style:normal;
  3430. font-size:18px;
  3431. color:#000000;
  3432. line-height:22px;
  3433. }
  3434. #u97244 .text {
  3435. position:absolute;
  3436. align-self:flex-start;
  3437. padding:0px 0px 0px 0px;
  3438. box-sizing:border-box;
  3439. width:100%;
  3440. }
  3441. #u97244_text {
  3442. border-width:0px;
  3443. white-space:nowrap;
  3444. text-transform:none;
  3445. }
  3446. #u97245_div {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:61px;
  3452. height:32px;
  3453. background:inherit;
  3454. background-color:rgba(24, 144, 255, 1);
  3455. border:none;
  3456. border-radius:4px;
  3457. -moz-box-shadow:none;
  3458. -webkit-box-shadow:none;
  3459. box-shadow:none;
  3460. font-family:'Microsoft YaHei', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:14px;
  3464. color:#FFFFFF;
  3465. }
  3466. #u97245 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:983px;
  3470. top:963px;
  3471. width:61px;
  3472. height:32px;
  3473. display:flex;
  3474. font-family:'Microsoft YaHei', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:14px;
  3478. color:#FFFFFF;
  3479. }
  3480. #u97245 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 16px 2px 16px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u97245_text {
  3488. border-width:0px;
  3489. white-space:nowrap;
  3490. text-transform:none;
  3491. }
  3492. #u97246_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:66px;
  3498. height:32px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 1);
  3501. box-sizing:border-box;
  3502. border-width:1px;
  3503. border-style:solid;
  3504. border-color:rgba(217, 217, 217, 1);
  3505. border-radius:4px;
  3506. -moz-box-shadow:none;
  3507. -webkit-box-shadow:none;
  3508. box-shadow:none;
  3509. font-family:'Microsoft YaHei', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:14px;
  3513. color:rgba(0, 0, 0, 0.647058823529412);
  3514. line-height:21px;
  3515. }
  3516. #u97246 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:901px;
  3520. top:963px;
  3521. width:66px;
  3522. height:32px;
  3523. display:flex;
  3524. font-family:'Microsoft YaHei', sans-serif;
  3525. font-weight:400;
  3526. font-style:normal;
  3527. font-size:14px;
  3528. color:rgba(0, 0, 0, 0.647058823529412);
  3529. line-height:21px;
  3530. }
  3531. #u97246 .text {
  3532. position:absolute;
  3533. align-self:center;
  3534. padding:2px 16px 2px 16px;
  3535. box-sizing:border-box;
  3536. width:100%;
  3537. }
  3538. #u97246_text {
  3539. border-width:0px;
  3540. white-space:nowrap;
  3541. text-transform:none;
  3542. }
  3543. #u97247_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:24px;
  3549. height:24px;
  3550. }
  3551. #u97247 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:646px;
  3555. top:891px;
  3556. width:24px;
  3557. height:24px;
  3558. display:flex;
  3559. font-family:'Microsoft YaHei', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:52px;
  3563. color:#FAAD14;
  3564. }
  3565. #u97247 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 2px 2px 2px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u97247_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u97248_div {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:206px;
  3584. height:22px;
  3585. background:inherit;
  3586. background-color:rgba(255, 255, 255, 0);
  3587. border:none;
  3588. border-radius:0px;
  3589. -moz-box-shadow:none;
  3590. -webkit-box-shadow:none;
  3591. box-shadow:none;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:12px;
  3596. color:#7F7F7F;
  3597. line-height:22px;
  3598. }
  3599. #u97248 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:682px;
  3603. top:925px;
  3604. width:206px;
  3605. height:22px;
  3606. display:flex;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:12px;
  3611. color:#7F7F7F;
  3612. line-height:22px;
  3613. }
  3614. #u97248 .text {
  3615. position:absolute;
  3616. align-self:flex-start;
  3617. padding:0px 0px 0px 0px;
  3618. box-sizing:border-box;
  3619. width:100%;
  3620. }
  3621. #u97248_text {
  3622. border-width:0px;
  3623. white-space:nowrap;
  3624. text-transform:none;
  3625. }
  3626. #u97249_div {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:1381px;
  3632. height:1154px;
  3633. background:inherit;
  3634. background-color:rgba(255, 255, 255, 1);
  3635. border:none;
  3636. border-radius:0px;
  3637. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3638. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3639. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3640. }
  3641. #u97249 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:1770px;
  3645. top:50px;
  3646. width:1381px;
  3647. height:1154px;
  3648. display:flex;
  3649. }
  3650. #u97249 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 2px 2px 2px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u97249_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. visibility:hidden;
  3662. }
  3663. #u97250_div {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:109px;
  3669. height:50px;
  3670. background:inherit;
  3671. background-color:rgba(255, 255, 255, 0);
  3672. box-sizing:border-box;
  3673. border-width:3px;
  3674. border-style:solid;
  3675. border-color:rgba(24, 144, 255, 1);
  3676. border-left:0px;
  3677. border-top:0px;
  3678. border-right:0px;
  3679. border-radius:0px;
  3680. border-bottom-right-radius:0px;
  3681. border-bottom-left-radius:0px;
  3682. -moz-box-shadow:none;
  3683. -webkit-box-shadow:none;
  3684. box-shadow:none;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:18px;
  3689. color:#1890FF;
  3690. }
  3691. #u97250 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:1789px;
  3695. top:50px;
  3696. width:109px;
  3697. height:50px;
  3698. display:flex;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:18px;
  3703. color:#1890FF;
  3704. }
  3705. #u97250 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:0px 0px 0px 0px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u97250_text {
  3713. border-width:0px;
  3714. white-space:nowrap;
  3715. text-transform:none;
  3716. }
  3717. #u97251_div {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:91px;
  3723. height:50px;
  3724. background:inherit;
  3725. background-color:rgba(255, 255, 255, 0);
  3726. border:none;
  3727. border-left:0px;
  3728. border-top:0px;
  3729. border-right:0px;
  3730. border-radius:0px;
  3731. border-bottom-right-radius:0px;
  3732. border-bottom-left-radius:0px;
  3733. -moz-box-shadow:none;
  3734. -webkit-box-shadow:none;
  3735. box-shadow:none;
  3736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. font-size:18px;
  3740. }
  3741. #u97251 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:1938px;
  3745. top:50px;
  3746. width:91px;
  3747. height:50px;
  3748. display:flex;
  3749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:18px;
  3753. }
  3754. #u97251 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:0px 0px 0px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u97251_text {
  3762. border-width:0px;
  3763. white-space:nowrap;
  3764. text-transform:none;
  3765. }
  3766. #u97252_div {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:1150px;
  3772. height:269px;
  3773. background:inherit;
  3774. background-color:rgba(242, 242, 242, 1);
  3775. border:none;
  3776. border-radius:4px;
  3777. -moz-box-shadow:none;
  3778. -webkit-box-shadow:none;
  3779. box-shadow:none;
  3780. }
  3781. #u97252 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:1860px;
  3785. top:136px;
  3786. width:1150px;
  3787. height:269px;
  3788. display:flex;
  3789. }
  3790. #u97252 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 2px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u97252_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. visibility:hidden;
  3802. }
  3803. #u97253 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:0px;
  3809. height:0px;
  3810. }
  3811. #u97254_div {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:1150px;
  3817. height:60px;
  3818. background:inherit;
  3819. background-color:rgba(255, 255, 255, 1);
  3820. box-sizing:border-box;
  3821. border-width:1px;
  3822. border-style:solid;
  3823. border-color:rgba(215, 215, 215, 1);
  3824. border-radius:0px;
  3825. -moz-box-shadow:none;
  3826. -webkit-box-shadow:none;
  3827. box-shadow:none;
  3828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3829. font-weight:400;
  3830. font-style:normal;
  3831. font-size:14px;
  3832. color:#AAAAAA;
  3833. text-align:center;
  3834. line-height:30px;
  3835. }
  3836. #u97254 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:1860px;
  3840. top:345px;
  3841. width:1150px;
  3842. height:60px;
  3843. display:flex;
  3844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3845. font-weight:400;
  3846. font-style:normal;
  3847. font-size:14px;
  3848. color:#AAAAAA;
  3849. text-align:center;
  3850. line-height:30px;
  3851. }
  3852. #u97254 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:5px 10px 5px 10px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u97254_text {
  3860. border-width:0px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. visibility:hidden;
  3864. }
  3865. #u97255_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:60px;
  3871. height:30px;
  3872. background:inherit;
  3873. background-color:rgba(24, 144, 255, 1);
  3874. border:none;
  3875. border-radius:4px;
  3876. -moz-box-shadow:none;
  3877. -webkit-box-shadow:none;
  3878. box-shadow:none;
  3879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. font-size:14px;
  3883. color:#FFFFFF;
  3884. }
  3885. #u97255 {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:2930px;
  3889. top:360px;
  3890. width:60px;
  3891. height:30px;
  3892. display:flex;
  3893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:14px;
  3897. color:#FFFFFF;
  3898. }
  3899. #u97255 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 2px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u97255_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. }
  3911. #u97256_div {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:488px;
  3917. height:50px;
  3918. background:inherit;
  3919. background-color:rgba(255, 255, 255, 0);
  3920. border:none;
  3921. border-left:0px;
  3922. border-top:0px;
  3923. border-right:0px;
  3924. border-radius:0px;
  3925. border-bottom-right-radius:0px;
  3926. border-bottom-left-radius:0px;
  3927. -moz-box-shadow:none;
  3928. -webkit-box-shadow:none;
  3929. box-shadow:none;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:18px;
  3934. color:#000000;
  3935. line-height:40px;
  3936. }
  3937. #u97256 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:2245px;
  3941. top:225px;
  3942. width:488px;
  3943. height:50px;
  3944. display:flex;
  3945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:18px;
  3949. color:#000000;
  3950. line-height:40px;
  3951. }
  3952. #u97256 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:0px 0px 0px 0px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u97256_text {
  3960. border-width:0px;
  3961. white-space:nowrap;
  3962. text-transform:none;
  3963. }
  3964. #u97257 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:0px;
  3970. height:0px;
  3971. }
  3972. #u97258_div {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:455px;
  3978. height:160px;
  3979. background:inherit;
  3980. background-color:rgba(255, 255, 255, 1);
  3981. box-sizing:border-box;
  3982. border-width:1px;
  3983. border-style:solid;
  3984. border-color:rgba(204, 204, 204, 1);
  3985. border-radius:0px;
  3986. -moz-box-shadow:none;
  3987. -webkit-box-shadow:none;
  3988. box-shadow:none;
  3989. font-family:'Microsoft YaHei', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. }
  3993. #u97258 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:2208px;
  3997. top:954px;
  3998. width:455px;
  3999. height:160px;
  4000. display:flex;
  4001. font-family:'Microsoft YaHei', sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. }
  4005. #u97258 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 2px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u97258_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u97259_div {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:73px;
  4024. height:21px;
  4025. background:inherit;
  4026. background-color:rgba(255, 255, 255, 0);
  4027. border:none;
  4028. border-radius:0px;
  4029. -moz-box-shadow:none;
  4030. -webkit-box-shadow:none;
  4031. box-shadow:none;
  4032. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4033. font-weight:650;
  4034. font-style:normal;
  4035. font-size:18px;
  4036. color:#000000;
  4037. line-height:22px;
  4038. }
  4039. #u97259 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:2268px;
  4043. top:989px;
  4044. width:73px;
  4045. height:21px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4048. font-weight:650;
  4049. font-style:normal;
  4050. font-size:18px;
  4051. color:#000000;
  4052. line-height:22px;
  4053. }
  4054. #u97259 .text {
  4055. position:absolute;
  4056. align-self:flex-start;
  4057. padding:0px 0px 0px 0px;
  4058. box-sizing:border-box;
  4059. width:100%;
  4060. }
  4061. #u97259_text {
  4062. border-width:0px;
  4063. white-space:nowrap;
  4064. text-transform:none;
  4065. }
  4066. #u97260_div {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:61px;
  4072. height:32px;
  4073. background:inherit;
  4074. background-color:rgba(24, 144, 255, 1);
  4075. border:none;
  4076. border-radius:4px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. font-family:'Microsoft YaHei', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:14px;
  4084. color:#FFFFFF;
  4085. }
  4086. #u97260 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:2569px;
  4090. top:1059px;
  4091. width:61px;
  4092. height:32px;
  4093. display:flex;
  4094. font-family:'Microsoft YaHei', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:14px;
  4098. color:#FFFFFF;
  4099. }
  4100. #u97260 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 16px 2px 16px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u97260_text {
  4108. border-width:0px;
  4109. white-space:nowrap;
  4110. text-transform:none;
  4111. }
  4112. #u97261_div {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:0px;
  4116. top:0px;
  4117. width:66px;
  4118. height:32px;
  4119. background:inherit;
  4120. background-color:rgba(255, 255, 255, 1);
  4121. box-sizing:border-box;
  4122. border-width:1px;
  4123. border-style:solid;
  4124. border-color:rgba(217, 217, 217, 1);
  4125. border-radius:4px;
  4126. -moz-box-shadow:none;
  4127. -webkit-box-shadow:none;
  4128. box-shadow:none;
  4129. font-family:'Microsoft YaHei', sans-serif;
  4130. font-weight:400;
  4131. font-style:normal;
  4132. font-size:14px;
  4133. color:rgba(0, 0, 0, 0.647058823529412);
  4134. line-height:21px;
  4135. }
  4136. #u97261 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:2487px;
  4140. top:1059px;
  4141. width:66px;
  4142. height:32px;
  4143. display:flex;
  4144. font-family:'Microsoft YaHei', sans-serif;
  4145. font-weight:400;
  4146. font-style:normal;
  4147. font-size:14px;
  4148. color:rgba(0, 0, 0, 0.647058823529412);
  4149. line-height:21px;
  4150. }
  4151. #u97261 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 16px 2px 16px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u97261_text {
  4159. border-width:0px;
  4160. white-space:nowrap;
  4161. text-transform:none;
  4162. }
  4163. #u97262_img {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:24px;
  4169. height:24px;
  4170. }
  4171. #u97262 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:2232px;
  4175. top:987px;
  4176. width:24px;
  4177. height:24px;
  4178. display:flex;
  4179. font-family:'Microsoft YaHei', sans-serif;
  4180. font-weight:400;
  4181. font-style:normal;
  4182. font-size:52px;
  4183. color:#FAAD14;
  4184. }
  4185. #u97262 .text {
  4186. position:absolute;
  4187. align-self:center;
  4188. padding:2px 2px 2px 2px;
  4189. box-sizing:border-box;
  4190. width:100%;
  4191. }
  4192. #u97262_text {
  4193. border-width:0px;
  4194. word-wrap:break-word;
  4195. text-transform:none;
  4196. visibility:hidden;
  4197. }
  4198. #u97263_div {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:194px;
  4204. height:22px;
  4205. background:inherit;
  4206. background-color:rgba(255, 255, 255, 0);
  4207. border:none;
  4208. border-radius:0px;
  4209. -moz-box-shadow:none;
  4210. -webkit-box-shadow:none;
  4211. box-shadow:none;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:12px;
  4216. color:#7F7F7F;
  4217. line-height:22px;
  4218. }
  4219. #u97263 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:2268px;
  4223. top:1021px;
  4224. width:194px;
  4225. height:22px;
  4226. display:flex;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:12px;
  4231. color:#7F7F7F;
  4232. line-height:22px;
  4233. }
  4234. #u97263 .text {
  4235. position:absolute;
  4236. align-self:flex-start;
  4237. padding:0px 0px 0px 0px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u97263_text {
  4242. border-width:0px;
  4243. white-space:nowrap;
  4244. text-transform:none;
  4245. }
  4246. #u97264 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:0px;
  4252. height:0px;
  4253. }
  4254. #u97265_div {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:200px;
  4260. height:1702px;
  4261. background:inherit;
  4262. background-color:rgba(255, 255, 255, 1);
  4263. box-sizing:border-box;
  4264. border-width:1px;
  4265. border-style:solid;
  4266. border-color:rgba(215, 215, 215, 1);
  4267. border-radius:0px;
  4268. -moz-box-shadow:none;
  4269. -webkit-box-shadow:none;
  4270. box-shadow:none;
  4271. }
  4272. #u97265 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:120px;
  4276. top:50px;
  4277. width:200px;
  4278. height:1702px;
  4279. display:flex;
  4280. }
  4281. #u97265 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 2px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u97265_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u97266_div {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:200px;
  4300. height:60px;
  4301. background:inherit;
  4302. background-color:rgba(224, 231, 247, 1);
  4303. border:none;
  4304. border-radius:0px;
  4305. -moz-box-shadow:none;
  4306. -webkit-box-shadow:none;
  4307. box-shadow:none;
  4308. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4309. font-weight:500;
  4310. font-style:normal;
  4311. font-size:18px;
  4312. }
  4313. #u97266 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:120px;
  4317. top:50px;
  4318. width:200px;
  4319. height:60px;
  4320. display:flex;
  4321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4322. font-weight:500;
  4323. font-style:normal;
  4324. font-size:18px;
  4325. }
  4326. #u97266 .text {
  4327. position:absolute;
  4328. align-self:center;
  4329. padding:0px 0px 0px 20px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u97266_text {
  4334. border-width:0px;
  4335. word-wrap:break-word;
  4336. text-transform:none;
  4337. }
  4338. #u97267_img {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:201px;
  4344. height:2px;
  4345. }
  4346. #u97267 {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:120px;
  4350. top:1180px;
  4351. width:200px;
  4352. height:1px;
  4353. display:flex;
  4354. }
  4355. #u97267 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:2px 2px 2px 2px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u97267_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u97268_div {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:97px;
  4374. height:22px;
  4375. background:inherit;
  4376. background-color:rgba(255, 255, 255, 0);
  4377. border:none;
  4378. border-radius:0px;
  4379. -moz-box-shadow:none;
  4380. -webkit-box-shadow:none;
  4381. box-shadow:none;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:16px;
  4386. }
  4387. #u97268 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:147px;
  4391. top:1459px;
  4392. width:97px;
  4393. height:22px;
  4394. display:flex;
  4395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:16px;
  4399. }
  4400. #u97268 .text {
  4401. position:absolute;
  4402. align-self:flex-start;
  4403. padding:0px 0px 0px 0px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u97268_text {
  4408. border-width:0px;
  4409. word-wrap:break-word;
  4410. text-transform:none;
  4411. }
  4412. #u97269_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:49px;
  4418. height:17px;
  4419. background:inherit;
  4420. background-color:rgba(255, 255, 255, 0);
  4421. border:none;
  4422. border-radius:0px;
  4423. -moz-box-shadow:none;
  4424. -webkit-box-shadow:none;
  4425. box-shadow:none;
  4426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4427. font-weight:400;
  4428. font-style:normal;
  4429. font-size:12px;
  4430. color:#AAAAAA;
  4431. }
  4432. #u97269 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:147px;
  4436. top:1423px;
  4437. width:49px;
  4438. height:17px;
  4439. display:flex;
  4440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:12px;
  4444. color:#AAAAAA;
  4445. }
  4446. #u97269 .text {
  4447. position:absolute;
  4448. align-self:flex-start;
  4449. padding:0px 0px 0px 0px;
  4450. box-sizing:border-box;
  4451. width:100%;
  4452. }
  4453. #u97269_text {
  4454. border-width:0px;
  4455. white-space:nowrap;
  4456. text-transform:none;
  4457. }
  4458. #u97270_div {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:97px;
  4464. height:22px;
  4465. background:inherit;
  4466. background-color:rgba(255, 255, 255, 0);
  4467. border:none;
  4468. border-radius:0px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:16px;
  4476. }
  4477. #u97270 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:147px;
  4481. top:340px;
  4482. width:97px;
  4483. height:22px;
  4484. display:flex;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:16px;
  4489. }
  4490. #u97270 .text {
  4491. position:absolute;
  4492. align-self:flex-start;
  4493. padding:0px 0px 0px 0px;
  4494. box-sizing:border-box;
  4495. width:100%;
  4496. }
  4497. #u97270_text {
  4498. border-width:0px;
  4499. word-wrap:break-word;
  4500. text-transform:none;
  4501. }
  4502. #u97271_div {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:97px;
  4508. height:22px;
  4509. background:inherit;
  4510. background-color:rgba(255, 255, 255, 0);
  4511. border:none;
  4512. border-radius:0px;
  4513. -moz-box-shadow:none;
  4514. -webkit-box-shadow:none;
  4515. box-shadow:none;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:16px;
  4520. }
  4521. #u97271 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:147px;
  4525. top:424px;
  4526. width:97px;
  4527. height:22px;
  4528. display:flex;
  4529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:16px;
  4533. }
  4534. #u97271 .text {
  4535. position:absolute;
  4536. align-self:flex-start;
  4537. padding:0px 0px 0px 0px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u97271_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. }
  4546. #u97272_div {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:97px;
  4552. height:22px;
  4553. background:inherit;
  4554. background-color:rgba(255, 255, 255, 0);
  4555. border:none;
  4556. border-radius:0px;
  4557. -moz-box-shadow:none;
  4558. -webkit-box-shadow:none;
  4559. box-shadow:none;
  4560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:16px;
  4564. }
  4565. #u97272 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:147px;
  4569. top:1501px;
  4570. width:97px;
  4571. height:22px;
  4572. display:flex;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:16px;
  4577. }
  4578. #u97272 .text {
  4579. position:absolute;
  4580. align-self:flex-start;
  4581. padding:0px 0px 0px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u97272_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. }
  4590. #u97273_div {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:129px;
  4596. height:22px;
  4597. background:inherit;
  4598. background-color:rgba(255, 255, 255, 0);
  4599. border:none;
  4600. border-radius:0px;
  4601. -moz-box-shadow:none;
  4602. -webkit-box-shadow:none;
  4603. box-shadow:none;
  4604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:16px;
  4608. }
  4609. #u97273 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:147px;
  4613. top:1543px;
  4614. width:129px;
  4615. height:22px;
  4616. display:flex;
  4617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. font-size:16px;
  4621. }
  4622. #u97273 .text {
  4623. position:absolute;
  4624. align-self:flex-start;
  4625. padding:0px 0px 0px 0px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u97273_text {
  4630. border-width:0px;
  4631. white-space:nowrap;
  4632. text-transform:none;
  4633. }
  4634. #u97274_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:49px;
  4640. height:17px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 0);
  4643. border:none;
  4644. border-radius:0px;
  4645. -moz-box-shadow:none;
  4646. -webkit-box-shadow:none;
  4647. box-shadow:none;
  4648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:12px;
  4652. color:#AAAAAA;
  4653. }
  4654. #u97274 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:147px;
  4658. top:120px;
  4659. width:49px;
  4660. height:17px;
  4661. display:flex;
  4662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:12px;
  4666. color:#AAAAAA;
  4667. }
  4668. #u97274 .text {
  4669. position:absolute;
  4670. align-self:flex-start;
  4671. padding:0px 0px 0px 0px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u97274_text {
  4676. border-width:0px;
  4677. white-space:nowrap;
  4678. text-transform:none;
  4679. }
  4680. #u97275_div {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:97px;
  4686. height:22px;
  4687. background:inherit;
  4688. background-color:rgba(255, 255, 255, 0);
  4689. border:none;
  4690. border-radius:0px;
  4691. -moz-box-shadow:none;
  4692. -webkit-box-shadow:none;
  4693. box-shadow:none;
  4694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4695. font-weight:400;
  4696. font-style:normal;
  4697. font-size:16px;
  4698. }
  4699. #u97275 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:147px;
  4703. top:157px;
  4704. width:97px;
  4705. height:22px;
  4706. display:flex;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:16px;
  4711. }
  4712. #u97275 .text {
  4713. position:absolute;
  4714. align-self:flex-start;
  4715. padding:0px 0px 0px 0px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u97275_text {
  4720. border-width:0px;
  4721. word-wrap:break-word;
  4722. text-transform:none;
  4723. }
  4724. #u97276_img {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:201px;
  4730. height:2px;
  4731. }
  4732. #u97276 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:120px;
  4736. top:241px;
  4737. width:200px;
  4738. height:1px;
  4739. display:flex;
  4740. }
  4741. #u97276 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 2px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u97276_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u97277_div {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:49px;
  4760. height:17px;
  4761. background:inherit;
  4762. background-color:rgba(255, 255, 255, 0);
  4763. border:none;
  4764. border-radius:0px;
  4765. -moz-box-shadow:none;
  4766. -webkit-box-shadow:none;
  4767. box-shadow:none;
  4768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4769. font-weight:400;
  4770. font-style:normal;
  4771. font-size:12px;
  4772. color:#AAAAAA;
  4773. }
  4774. #u97277 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:147px;
  4778. top:261px;
  4779. width:49px;
  4780. height:17px;
  4781. display:flex;
  4782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:12px;
  4786. color:#AAAAAA;
  4787. }
  4788. #u97277 .text {
  4789. position:absolute;
  4790. align-self:flex-start;
  4791. padding:0px 0px 0px 0px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u97277_text {
  4796. border-width:0px;
  4797. white-space:nowrap;
  4798. text-transform:none;
  4799. }
  4800. #u97278_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:97px;
  4806. height:22px;
  4807. background:inherit;
  4808. background-color:rgba(255, 255, 255, 0);
  4809. border:none;
  4810. border-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:16px;
  4818. }
  4819. #u97278 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:147px;
  4823. top:298px;
  4824. width:97px;
  4825. height:22px;
  4826. display:flex;
  4827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4828. font-weight:400;
  4829. font-style:normal;
  4830. font-size:16px;
  4831. }
  4832. #u97278 .text {
  4833. position:absolute;
  4834. align-self:flex-start;
  4835. padding:0px 0px 0px 0px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u97278_text {
  4840. border-width:0px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. }
  4844. #u97279_div {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:97px;
  4850. height:22px;
  4851. background:inherit;
  4852. background-color:rgba(255, 255, 255, 0);
  4853. border:none;
  4854. border-radius:0px;
  4855. -moz-box-shadow:none;
  4856. -webkit-box-shadow:none;
  4857. box-shadow:none;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:16px;
  4862. }
  4863. #u97279 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:147px;
  4867. top:199px;
  4868. width:97px;
  4869. height:22px;
  4870. display:flex;
  4871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:16px;
  4875. }
  4876. #u97279 .text {
  4877. position:absolute;
  4878. align-self:flex-start;
  4879. padding:0px 0px 0px 0px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u97279_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. }
  4888. #u97280_div {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:97px;
  4894. height:22px;
  4895. background:inherit;
  4896. background-color:rgba(255, 255, 255, 0);
  4897. border:none;
  4898. border-radius:0px;
  4899. -moz-box-shadow:none;
  4900. -webkit-box-shadow:none;
  4901. box-shadow:none;
  4902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4903. font-weight:400;
  4904. font-style:normal;
  4905. font-size:16px;
  4906. }
  4907. #u97280 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:147px;
  4911. top:382px;
  4912. width:97px;
  4913. height:22px;
  4914. display:flex;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:16px;
  4919. }
  4920. #u97280 .text {
  4921. position:absolute;
  4922. align-self:flex-start;
  4923. padding:0px 0px 0px 0px;
  4924. box-sizing:border-box;
  4925. width:100%;
  4926. }
  4927. #u97280_text {
  4928. border-width:0px;
  4929. word-wrap:break-word;
  4930. text-transform:none;
  4931. }
  4932. #u97281_div {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:97px;
  4938. height:22px;
  4939. background:inherit;
  4940. background-color:rgba(255, 255, 255, 0);
  4941. border:none;
  4942. border-radius:0px;
  4943. -moz-box-shadow:none;
  4944. -webkit-box-shadow:none;
  4945. box-shadow:none;
  4946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:16px;
  4950. }
  4951. #u97281 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:147px;
  4955. top:466px;
  4956. width:97px;
  4957. height:22px;
  4958. display:flex;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. font-size:16px;
  4963. }
  4964. #u97281 .text {
  4965. position:absolute;
  4966. align-self:flex-start;
  4967. padding:0px 0px 0px 0px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u97281_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. }
  4976. #u97282_div {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:97px;
  4982. height:22px;
  4983. background:inherit;
  4984. background-color:rgba(255, 255, 255, 0);
  4985. border:none;
  4986. border-radius:0px;
  4987. -moz-box-shadow:none;
  4988. -webkit-box-shadow:none;
  4989. box-shadow:none;
  4990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:16px;
  4994. }
  4995. #u97282 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:147px;
  4999. top:508px;
  5000. width:97px;
  5001. height:22px;
  5002. display:flex;
  5003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:16px;
  5007. }
  5008. #u97282 .text {
  5009. position:absolute;
  5010. align-self:flex-start;
  5011. padding:0px 0px 0px 0px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u97282_text {
  5016. border-width:0px;
  5017. word-wrap:break-word;
  5018. text-transform:none;
  5019. }
  5020. #u97283_div {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:0px;
  5025. width:97px;
  5026. height:22px;
  5027. background:inherit;
  5028. background-color:rgba(255, 255, 255, 0);
  5029. border:none;
  5030. border-radius:0px;
  5031. -moz-box-shadow:none;
  5032. -webkit-box-shadow:none;
  5033. box-shadow:none;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:16px;
  5038. }
  5039. #u97283 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:147px;
  5043. top:550px;
  5044. width:97px;
  5045. height:22px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:16px;
  5051. }
  5052. #u97283 .text {
  5053. position:absolute;
  5054. align-self:flex-start;
  5055. padding:0px 0px 0px 0px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u97283_text {
  5060. border-width:0px;
  5061. word-wrap:break-word;
  5062. text-transform:none;
  5063. }
  5064. #u97284_div {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:97px;
  5070. height:22px;
  5071. background:inherit;
  5072. background-color:rgba(255, 255, 255, 0);
  5073. border:none;
  5074. border-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:16px;
  5082. }
  5083. #u97284 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:147px;
  5087. top:592px;
  5088. width:97px;
  5089. height:22px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:16px;
  5095. }
  5096. #u97284 .text {
  5097. position:absolute;
  5098. align-self:flex-start;
  5099. padding:0px 0px 0px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u97284_text {
  5104. border-width:0px;
  5105. word-wrap:break-word;
  5106. text-transform:none;
  5107. }
  5108. #u97285_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:97px;
  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. #u97285 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:147px;
  5131. top:634px;
  5132. width:97px;
  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. #u97285 .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. #u97285_text {
  5148. border-width:0px;
  5149. word-wrap:break-word;
  5150. text-transform:none;
  5151. }
  5152. #u97286_img {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:201px;
  5158. height:2px;
  5159. }
  5160. #u97286 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:120px;
  5164. top:680px;
  5165. width:200px;
  5166. height:1px;
  5167. display:flex;
  5168. }
  5169. #u97286 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 2px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u97286_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. visibility:hidden;
  5181. }
  5182. #u97287_div {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:49px;
  5188. height:17px;
  5189. background:inherit;
  5190. background-color:rgba(255, 255, 255, 0);
  5191. border:none;
  5192. border-radius:0px;
  5193. -moz-box-shadow:none;
  5194. -webkit-box-shadow:none;
  5195. box-shadow:none;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:12px;
  5200. color:#AAAAAA;
  5201. }
  5202. #u97287 {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:147px;
  5206. top:886px;
  5207. width:49px;
  5208. height:17px;
  5209. display:flex;
  5210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. font-size:12px;
  5214. color:#AAAAAA;
  5215. }
  5216. #u97287 .text {
  5217. position:absolute;
  5218. align-self:flex-start;
  5219. padding:0px 0px 0px 0px;
  5220. box-sizing:border-box;
  5221. width:100%;
  5222. }
  5223. #u97287_text {
  5224. border-width:0px;
  5225. white-space:nowrap;
  5226. text-transform:none;
  5227. }
  5228. #u97288_div {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:113px;
  5234. height:22px;
  5235. background:inherit;
  5236. background-color:rgba(255, 255, 255, 0);
  5237. border:none;
  5238. border-radius:0px;
  5239. -moz-box-shadow:none;
  5240. -webkit-box-shadow:none;
  5241. box-shadow:none;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:16px;
  5246. }
  5247. #u97288 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:147px;
  5251. top:923px;
  5252. width:113px;
  5253. height:22px;
  5254. display:flex;
  5255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:16px;
  5259. }
  5260. #u97288 .text {
  5261. position:absolute;
  5262. align-self:flex-start;
  5263. padding:0px 0px 0px 0px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u97288_text {
  5268. border-width:0px;
  5269. white-space:nowrap;
  5270. text-transform:none;
  5271. }
  5272. #u97289_div {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:145px;
  5278. height:22px;
  5279. background:inherit;
  5280. background-color:rgba(255, 255, 255, 0);
  5281. border:none;
  5282. border-radius:0px;
  5283. -moz-box-shadow:none;
  5284. -webkit-box-shadow:none;
  5285. box-shadow:none;
  5286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. font-size:16px;
  5290. }
  5291. #u97289 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:147px;
  5295. top:965px;
  5296. width:145px;
  5297. height:22px;
  5298. display:flex;
  5299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:16px;
  5303. }
  5304. #u97289 .text {
  5305. position:absolute;
  5306. align-self:flex-start;
  5307. padding:0px 0px 0px 0px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u97289_text {
  5312. border-width:0px;
  5313. white-space:nowrap;
  5314. text-transform:none;
  5315. }
  5316. #u97290_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:145px;
  5322. height:22px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 0);
  5325. border:none;
  5326. border-radius:0px;
  5327. -moz-box-shadow:none;
  5328. -webkit-box-shadow:none;
  5329. box-shadow:none;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:16px;
  5334. }
  5335. #u97290 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:147px;
  5339. top:1007px;
  5340. width:145px;
  5341. height:22px;
  5342. display:flex;
  5343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:16px;
  5347. }
  5348. #u97290 .text {
  5349. position:absolute;
  5350. align-self:flex-start;
  5351. padding:0px 0px 0px 0px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u97290_text {
  5356. border-width:0px;
  5357. white-space:nowrap;
  5358. text-transform:none;
  5359. }
  5360. #u97291_div {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:145px;
  5366. height:22px;
  5367. background:inherit;
  5368. background-color:rgba(255, 255, 255, 0);
  5369. border:none;
  5370. border-radius:0px;
  5371. -moz-box-shadow:none;
  5372. -webkit-box-shadow:none;
  5373. box-shadow:none;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:16px;
  5378. }
  5379. #u97291 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:147px;
  5383. top:1049px;
  5384. width:145px;
  5385. height:22px;
  5386. display:flex;
  5387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:16px;
  5391. }
  5392. #u97291 .text {
  5393. position:absolute;
  5394. align-self:flex-start;
  5395. padding:0px 0px 0px 0px;
  5396. box-sizing:border-box;
  5397. width:100%;
  5398. }
  5399. #u97291_text {
  5400. border-width:0px;
  5401. white-space:nowrap;
  5402. text-transform:none;
  5403. }
  5404. #u97292_div {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:145px;
  5410. height:22px;
  5411. background:inherit;
  5412. background-color:rgba(255, 255, 255, 0);
  5413. border:none;
  5414. border-radius:0px;
  5415. -moz-box-shadow:none;
  5416. -webkit-box-shadow:none;
  5417. box-shadow:none;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:16px;
  5422. }
  5423. #u97292 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:147px;
  5427. top:1091px;
  5428. width:145px;
  5429. height:22px;
  5430. display:flex;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:16px;
  5435. }
  5436. #u97292 .text {
  5437. position:absolute;
  5438. align-self:flex-start;
  5439. padding:0px 0px 0px 0px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u97292_text {
  5444. border-width:0px;
  5445. white-space:nowrap;
  5446. text-transform:none;
  5447. }
  5448. #u97293_div {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:113px;
  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. #u97293 {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:147px;
  5471. top:1133px;
  5472. width:113px;
  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. #u97293 .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. #u97293_text {
  5488. border-width:0px;
  5489. white-space:nowrap;
  5490. text-transform:none;
  5491. }
  5492. #u97294_div {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:97px;
  5498. height:22px;
  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:16px;
  5510. }
  5511. #u97294 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:147px;
  5515. top:1585px;
  5516. width:97px;
  5517. height:22px;
  5518. display:flex;
  5519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:16px;
  5523. }
  5524. #u97294 .text {
  5525. position:absolute;
  5526. align-self:flex-start;
  5527. padding:0px 0px 0px 0px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u97294_text {
  5532. border-width:0px;
  5533. white-space:nowrap;
  5534. text-transform:none;
  5535. }
  5536. #u97295_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:97px;
  5542. height:22px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 0);
  5545. border:none;
  5546. border-radius:0px;
  5547. -moz-box-shadow:none;
  5548. -webkit-box-shadow:none;
  5549. box-shadow:none;
  5550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:16px;
  5554. }
  5555. #u97295 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:147px;
  5559. top:1627px;
  5560. width:97px;
  5561. height:22px;
  5562. display:flex;
  5563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5564. font-weight:400;
  5565. font-style:normal;
  5566. font-size:16px;
  5567. }
  5568. #u97295 .text {
  5569. position:absolute;
  5570. align-self:flex-start;
  5571. padding:0px 0px 0px 0px;
  5572. box-sizing:border-box;
  5573. width:100%;
  5574. }
  5575. #u97295_text {
  5576. border-width:0px;
  5577. white-space:nowrap;
  5578. text-transform:none;
  5579. }
  5580. #u97296_div {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:97px;
  5586. height:22px;
  5587. background:inherit;
  5588. background-color:rgba(255, 255, 255, 0);
  5589. border:none;
  5590. border-radius:0px;
  5591. -moz-box-shadow:none;
  5592. -webkit-box-shadow:none;
  5593. box-shadow:none;
  5594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:16px;
  5598. }
  5599. #u97296 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:147px;
  5603. top:1669px;
  5604. width:97px;
  5605. height:22px;
  5606. display:flex;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. font-size:16px;
  5611. }
  5612. #u97296 .text {
  5613. position:absolute;
  5614. align-self:flex-start;
  5615. padding:0px 0px 0px 0px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u97296_text {
  5620. border-width:0px;
  5621. white-space:nowrap;
  5622. text-transform:none;
  5623. }
  5624. #u97297_div {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:97px;
  5630. height:22px;
  5631. background:inherit;
  5632. background-color:rgba(255, 255, 255, 0);
  5633. border:none;
  5634. border-radius:0px;
  5635. -moz-box-shadow:none;
  5636. -webkit-box-shadow:none;
  5637. box-shadow:none;
  5638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5639. font-weight:400;
  5640. font-style:normal;
  5641. font-size:16px;
  5642. }
  5643. #u97297 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:147px;
  5647. top:1711px;
  5648. width:97px;
  5649. height:22px;
  5650. display:flex;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:16px;
  5655. }
  5656. #u97297 .text {
  5657. position:absolute;
  5658. align-self:flex-start;
  5659. padding:0px 0px 0px 0px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u97297_text {
  5664. border-width:0px;
  5665. white-space:nowrap;
  5666. text-transform:none;
  5667. }
  5668. #u97298_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:97px;
  5674. height:22px;
  5675. background:inherit;
  5676. background-color:rgba(255, 255, 255, 0);
  5677. border:none;
  5678. border-radius:0px;
  5679. -moz-box-shadow:none;
  5680. -webkit-box-shadow:none;
  5681. box-shadow:none;
  5682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5683. font-weight:400;
  5684. font-style:normal;
  5685. font-size:16px;
  5686. }
  5687. #u97298 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:147px;
  5691. top:824px;
  5692. width:97px;
  5693. height:22px;
  5694. display:flex;
  5695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:16px;
  5699. }
  5700. #u97298 .text {
  5701. position:absolute;
  5702. align-self:flex-start;
  5703. padding:0px 0px 0px 0px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u97298_text {
  5708. border-width:0px;
  5709. word-wrap:break-word;
  5710. text-transform:none;
  5711. }
  5712. #u97299_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:97px;
  5718. height:22px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 0);
  5721. border:none;
  5722. border-radius:0px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:16px;
  5730. }
  5731. #u97299 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:147px;
  5735. top:738px;
  5736. width:97px;
  5737. height:22px;
  5738. display:flex;
  5739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5740. font-weight:400;
  5741. font-style:normal;
  5742. font-size:16px;
  5743. }
  5744. #u97299 .text {
  5745. position:absolute;
  5746. align-self:flex-start;
  5747. padding:0px 0px 0px 0px;
  5748. box-sizing:border-box;
  5749. width:100%;
  5750. }
  5751. #u97299_text {
  5752. border-width:0px;
  5753. word-wrap:break-word;
  5754. text-transform:none;
  5755. }
  5756. #u97300_div {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:49px;
  5762. height:17px;
  5763. background:inherit;
  5764. background-color:rgba(255, 255, 255, 0);
  5765. border:none;
  5766. border-radius:0px;
  5767. -moz-box-shadow:none;
  5768. -webkit-box-shadow:none;
  5769. box-shadow:none;
  5770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5771. font-weight:400;
  5772. font-style:normal;
  5773. font-size:12px;
  5774. color:#AAAAAA;
  5775. }
  5776. #u97300 {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:147px;
  5780. top:701px;
  5781. width:49px;
  5782. height:17px;
  5783. display:flex;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:12px;
  5788. color:#AAAAAA;
  5789. }
  5790. #u97300 .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. #u97300_text {
  5798. border-width:0px;
  5799. white-space:nowrap;
  5800. text-transform:none;
  5801. }
  5802. #u97301_div {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:97px;
  5808. height:22px;
  5809. background:inherit;
  5810. background-color:rgba(255, 255, 255, 0);
  5811. border:none;
  5812. border-radius:0px;
  5813. -moz-box-shadow:none;
  5814. -webkit-box-shadow:none;
  5815. box-shadow:none;
  5816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:16px;
  5820. }
  5821. #u97301 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:147px;
  5825. top:780px;
  5826. width:97px;
  5827. height:22px;
  5828. display:flex;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:16px;
  5833. }
  5834. #u97301 .text {
  5835. position:absolute;
  5836. align-self:flex-start;
  5837. padding:0px 0px 0px 0px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u97301_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. }
  5846. #u97302_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:201px;
  5852. height:2px;
  5853. }
  5854. #u97302 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:120px;
  5858. top:866px;
  5859. width:200px;
  5860. height:1px;
  5861. display:flex;
  5862. }
  5863. #u97302 .text {
  5864. position:absolute;
  5865. align-self:center;
  5866. padding:2px 2px 2px 2px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u97302_text {
  5871. border-width:0px;
  5872. word-wrap:break-word;
  5873. text-transform:none;
  5874. visibility:hidden;
  5875. }
  5876. #u97303_div {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:97px;
  5882. height:22px;
  5883. background:inherit;
  5884. background-color:rgba(255, 255, 255, 0);
  5885. border:none;
  5886. border-radius:0px;
  5887. -moz-box-shadow:none;
  5888. -webkit-box-shadow:none;
  5889. box-shadow:none;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:16px;
  5894. }
  5895. #u97303 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:147px;
  5899. top:1237px;
  5900. width:97px;
  5901. height:22px;
  5902. display:flex;
  5903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:16px;
  5907. }
  5908. #u97303 .text {
  5909. position:absolute;
  5910. align-self:flex-start;
  5911. padding:0px 0px 0px 0px;
  5912. box-sizing:border-box;
  5913. width:100%;
  5914. }
  5915. #u97303_text {
  5916. border-width:0px;
  5917. word-wrap:break-word;
  5918. text-transform:none;
  5919. }
  5920. #u97304_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:49px;
  5926. height:17px;
  5927. background:inherit;
  5928. background-color:rgba(255, 255, 255, 0);
  5929. border:none;
  5930. border-radius:0px;
  5931. -moz-box-shadow:none;
  5932. -webkit-box-shadow:none;
  5933. box-shadow:none;
  5934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5935. font-weight:400;
  5936. font-style:normal;
  5937. font-size:12px;
  5938. color:#AAAAAA;
  5939. }
  5940. #u97304 {
  5941. border-width:0px;
  5942. position:absolute;
  5943. left:147px;
  5944. top:1201px;
  5945. width:49px;
  5946. height:17px;
  5947. display:flex;
  5948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5949. font-weight:400;
  5950. font-style:normal;
  5951. font-size:12px;
  5952. color:#AAAAAA;
  5953. }
  5954. #u97304 .text {
  5955. position:absolute;
  5956. align-self:flex-start;
  5957. padding:0px 0px 0px 0px;
  5958. box-sizing:border-box;
  5959. width:100%;
  5960. }
  5961. #u97304_text {
  5962. border-width:0px;
  5963. white-space:nowrap;
  5964. text-transform:none;
  5965. }
  5966. #u97305_div {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:97px;
  5972. height:22px;
  5973. background:inherit;
  5974. background-color:rgba(255, 255, 255, 0);
  5975. border:none;
  5976. border-radius:0px;
  5977. -moz-box-shadow:none;
  5978. -webkit-box-shadow:none;
  5979. box-shadow:none;
  5980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:16px;
  5984. }
  5985. #u97305 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:147px;
  5989. top:1279px;
  5990. width:97px;
  5991. height:22px;
  5992. display:flex;
  5993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:16px;
  5997. }
  5998. #u97305 .text {
  5999. position:absolute;
  6000. align-self:flex-start;
  6001. padding:0px 0px 0px 0px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u97305_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. }
  6010. #u97306_div {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:97px;
  6016. height:22px;
  6017. background:inherit;
  6018. background-color:rgba(255, 255, 255, 0);
  6019. border:none;
  6020. border-radius:0px;
  6021. -moz-box-shadow:none;
  6022. -webkit-box-shadow:none;
  6023. box-shadow:none;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:16px;
  6028. }
  6029. #u97306 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:147px;
  6033. top:1321px;
  6034. width:97px;
  6035. height:22px;
  6036. display:flex;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:16px;
  6041. }
  6042. #u97306 .text {
  6043. position:absolute;
  6044. align-self:flex-start;
  6045. padding:0px 0px 0px 0px;
  6046. box-sizing:border-box;
  6047. width:100%;
  6048. }
  6049. #u97306_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. }
  6054. #u97307_div {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:97px;
  6060. height:22px;
  6061. background:inherit;
  6062. background-color:rgba(255, 255, 255, 0);
  6063. border:none;
  6064. border-radius:0px;
  6065. -moz-box-shadow:none;
  6066. -webkit-box-shadow:none;
  6067. box-shadow:none;
  6068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:16px;
  6072. }
  6073. #u97307 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:147px;
  6077. top:1363px;
  6078. width:97px;
  6079. height:22px;
  6080. display:flex;
  6081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. font-size:16px;
  6085. }
  6086. #u97307 .text {
  6087. position:absolute;
  6088. align-self:flex-start;
  6089. padding:0px 0px 0px 0px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u97307_text {
  6094. border-width:0px;
  6095. word-wrap:break-word;
  6096. text-transform:none;
  6097. }
  6098. #u97308_img {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:201px;
  6104. height:2px;
  6105. }
  6106. #u97308 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:120px;
  6110. top:1403px;
  6111. width:200px;
  6112. height:1px;
  6113. display:flex;
  6114. }
  6115. #u97308 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 2px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u97308_text {
  6123. border-width:0px;
  6124. word-wrap:break-word;
  6125. text-transform:none;
  6126. visibility:hidden;
  6127. }