styles.css 123 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-208px;
  6. width:1381px;
  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. #u20647 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u20648_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1381px;
  33. height:1426px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  42. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  43. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  44. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  45. font-weight:700;
  46. font-style:normal;
  47. }
  48. #u20648 {
  49. border-width:0px;
  50. position:absolute;
  51. left:208px;
  52. top:83px;
  53. width:1381px;
  54. height:1426px;
  55. display:flex;
  56. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  57. font-weight:700;
  58. font-style:normal;
  59. }
  60. #u20648 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:2px 2px 2px 2px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u20648_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u20649_img {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:1380px;
  79. height:2px;
  80. }
  81. #u20649 {
  82. border-width:0px;
  83. position:absolute;
  84. left:208px;
  85. top:146px;
  86. width:1379px;
  87. height:1px;
  88. display:flex;
  89. }
  90. #u20649 .text {
  91. position:absolute;
  92. align-self:center;
  93. padding:2px 2px 2px 2px;
  94. box-sizing:border-box;
  95. width:100%;
  96. }
  97. #u20649_text {
  98. border-width:0px;
  99. word-wrap:break-word;
  100. text-transform:none;
  101. visibility:hidden;
  102. }
  103. #u20650_div {
  104. border-width:0px;
  105. position:absolute;
  106. left:0px;
  107. top:0px;
  108. width:73px;
  109. height:25px;
  110. background:inherit;
  111. background-color:rgba(255, 255, 255, 0);
  112. border:none;
  113. border-radius:0px;
  114. -moz-box-shadow:none;
  115. -webkit-box-shadow:none;
  116. box-shadow:none;
  117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  118. font-weight:400;
  119. font-style:normal;
  120. font-size:18px;
  121. }
  122. #u20650 {
  123. border-width:0px;
  124. position:absolute;
  125. left:259px;
  126. top:99px;
  127. width:73px;
  128. height:25px;
  129. display:flex;
  130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  131. font-weight:400;
  132. font-style:normal;
  133. font-size:18px;
  134. }
  135. #u20650 .text {
  136. position:absolute;
  137. align-self:flex-start;
  138. padding:0px 0px 0px 0px;
  139. box-sizing:border-box;
  140. width:100%;
  141. }
  142. #u20650_text {
  143. border-width:0px;
  144. white-space:nowrap;
  145. text-transform:none;
  146. }
  147. #u20651_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:8px;
  153. height:14px;
  154. }
  155. #u20651 {
  156. border-width:0px;
  157. position:absolute;
  158. left:229px;
  159. top:104px;
  160. width:8px;
  161. height:14px;
  162. display:flex;
  163. }
  164. #u20651 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u20651_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u20652_div {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:280px;
  183. height:30px;
  184. background:inherit;
  185. background-color:rgba(255, 255, 255, 0);
  186. border:none;
  187. border-radius:0px;
  188. -moz-box-shadow:none;
  189. -webkit-box-shadow:none;
  190. box-shadow:none;
  191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  192. font-weight:400;
  193. font-style:normal;
  194. line-height:30px;
  195. }
  196. #u20652 {
  197. border-width:0px;
  198. position:absolute;
  199. left:259px;
  200. top:221px;
  201. width:280px;
  202. height:30px;
  203. display:flex;
  204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  205. font-weight:400;
  206. font-style:normal;
  207. line-height:30px;
  208. }
  209. #u20652 .text {
  210. position:absolute;
  211. align-self:flex-start;
  212. padding:0px 0px 0px 0px;
  213. box-sizing:border-box;
  214. width:100%;
  215. }
  216. #u20652_text {
  217. border-width:0px;
  218. word-wrap:break-word;
  219. text-transform:none;
  220. }
  221. #u20653_div {
  222. border-width:0px;
  223. position:absolute;
  224. left:0px;
  225. top:0px;
  226. width:280px;
  227. height:30px;
  228. background:inherit;
  229. background-color:rgba(255, 255, 255, 0);
  230. border:none;
  231. border-radius:0px;
  232. -moz-box-shadow:none;
  233. -webkit-box-shadow:none;
  234. box-shadow:none;
  235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  236. font-weight:400;
  237. font-style:normal;
  238. line-height:30px;
  239. }
  240. #u20653 {
  241. border-width:0px;
  242. position:absolute;
  243. left:914px;
  244. top:221px;
  245. width:280px;
  246. height:30px;
  247. display:flex;
  248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  249. font-weight:400;
  250. font-style:normal;
  251. line-height:30px;
  252. }
  253. #u20653 .text {
  254. position:absolute;
  255. align-self:flex-start;
  256. padding:0px 0px 0px 0px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u20653_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. }
  265. #u20654_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:280px;
  271. height:30px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. line-height:30px;
  283. }
  284. #u20654 {
  285. border-width:0px;
  286. position:absolute;
  287. left:586px;
  288. top:221px;
  289. width:280px;
  290. height:30px;
  291. display:flex;
  292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  293. font-weight:400;
  294. font-style:normal;
  295. line-height:30px;
  296. }
  297. #u20654 .text {
  298. position:absolute;
  299. align-self:flex-start;
  300. padding:0px 0px 0px 0px;
  301. box-sizing:border-box;
  302. width:100%;
  303. }
  304. #u20654_text {
  305. border-width:0px;
  306. word-wrap:break-word;
  307. text-transform:none;
  308. }
  309. #u20655_div {
  310. border-width:0px;
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:280px;
  315. height:30px;
  316. background:inherit;
  317. background-color:rgba(255, 255, 255, 0);
  318. border:none;
  319. border-radius:0px;
  320. -moz-box-shadow:none;
  321. -webkit-box-shadow:none;
  322. box-shadow:none;
  323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  324. font-weight:400;
  325. font-style:normal;
  326. line-height:30px;
  327. }
  328. #u20655 {
  329. border-width:0px;
  330. position:absolute;
  331. left:1241px;
  332. top:221px;
  333. width:280px;
  334. height:30px;
  335. display:flex;
  336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  337. font-weight:400;
  338. font-style:normal;
  339. line-height:30px;
  340. }
  341. #u20655 .text {
  342. position:absolute;
  343. align-self:flex-start;
  344. padding:0px 0px 0px 0px;
  345. box-sizing:border-box;
  346. width:100%;
  347. }
  348. #u20655_text {
  349. border-width:0px;
  350. word-wrap:break-word;
  351. text-transform:none;
  352. }
  353. #u20656_div {
  354. border-width:0px;
  355. position:absolute;
  356. left:0px;
  357. top:0px;
  358. width:280px;
  359. height:25px;
  360. background:inherit;
  361. background-color:rgba(255, 255, 255, 0);
  362. box-sizing:border-box;
  363. border-width:2px;
  364. border-style:solid;
  365. border-color:rgba(0, 0, 0, 1);
  366. border-top:0px;
  367. border-right:0px;
  368. border-bottom:0px;
  369. border-radius:0px;
  370. border-top-left-radius:0px;
  371. border-bottom-left-radius:0px;
  372. -moz-box-shadow:none;
  373. -webkit-box-shadow:none;
  374. box-shadow:none;
  375. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  376. font-weight:500;
  377. font-style:normal;
  378. font-size:18px;
  379. color:#000000;
  380. }
  381. #u20656 {
  382. border-width:0px;
  383. position:absolute;
  384. left:259px;
  385. top:171px;
  386. width:280px;
  387. height:25px;
  388. display:flex;
  389. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  390. font-weight:500;
  391. font-style:normal;
  392. font-size:18px;
  393. color:#000000;
  394. }
  395. #u20656 .text {
  396. position:absolute;
  397. align-self:flex-start;
  398. padding:0px 0px 0px 10px;
  399. box-sizing:border-box;
  400. width:100%;
  401. }
  402. #u20656_text {
  403. border-width:0px;
  404. word-wrap:break-word;
  405. text-transform:none;
  406. }
  407. #u20657_div {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:280px;
  413. height:30px;
  414. background:inherit;
  415. background-color:rgba(255, 255, 255, 0);
  416. border:none;
  417. border-radius:0px;
  418. -moz-box-shadow:none;
  419. -webkit-box-shadow:none;
  420. box-shadow:none;
  421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  422. font-weight:400;
  423. font-style:normal;
  424. line-height:30px;
  425. }
  426. #u20657 {
  427. border-width:0px;
  428. position:absolute;
  429. left:914px;
  430. top:1209px;
  431. width:280px;
  432. height:30px;
  433. display:flex;
  434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  435. font-weight:400;
  436. font-style:normal;
  437. line-height:30px;
  438. }
  439. #u20657 .text {
  440. position:absolute;
  441. align-self:flex-start;
  442. padding:0px 0px 0px 0px;
  443. box-sizing:border-box;
  444. width:100%;
  445. }
  446. #u20657_text {
  447. border-width:0px;
  448. word-wrap:break-word;
  449. text-transform:none;
  450. }
  451. #u20658_div {
  452. border-width:0px;
  453. position:absolute;
  454. left:0px;
  455. top:0px;
  456. width:280px;
  457. height:30px;
  458. background:inherit;
  459. background-color:rgba(255, 255, 255, 0);
  460. border:none;
  461. border-radius:0px;
  462. -moz-box-shadow:none;
  463. -webkit-box-shadow:none;
  464. box-shadow:none;
  465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  466. font-weight:400;
  467. font-style:normal;
  468. line-height:30px;
  469. }
  470. #u20658 {
  471. border-width:0px;
  472. position:absolute;
  473. left:259px;
  474. top:1319px;
  475. width:280px;
  476. height:30px;
  477. display:flex;
  478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  479. font-weight:400;
  480. font-style:normal;
  481. line-height:30px;
  482. }
  483. #u20658 .text {
  484. position:absolute;
  485. align-self:flex-start;
  486. padding:0px 0px 0px 0px;
  487. box-sizing:border-box;
  488. width:100%;
  489. }
  490. #u20658_text {
  491. border-width:0px;
  492. word-wrap:break-word;
  493. text-transform:none;
  494. }
  495. #u20659_div {
  496. border-width:0px;
  497. position:absolute;
  498. left:0px;
  499. top:0px;
  500. width:280px;
  501. height:30px;
  502. background:inherit;
  503. background-color:rgba(255, 255, 255, 0);
  504. border:none;
  505. border-radius:0px;
  506. -moz-box-shadow:none;
  507. -webkit-box-shadow:none;
  508. box-shadow:none;
  509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  510. font-weight:400;
  511. font-style:normal;
  512. line-height:30px;
  513. }
  514. #u20659 {
  515. border-width:0px;
  516. position:absolute;
  517. left:586px;
  518. top:1209px;
  519. width:280px;
  520. height:30px;
  521. display:flex;
  522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  523. font-weight:400;
  524. font-style:normal;
  525. line-height:30px;
  526. }
  527. #u20659 .text {
  528. position:absolute;
  529. align-self:flex-start;
  530. padding:0px 0px 0px 0px;
  531. box-sizing:border-box;
  532. width:100%;
  533. }
  534. #u20659_text {
  535. border-width:0px;
  536. word-wrap:break-word;
  537. text-transform:none;
  538. }
  539. #u20660_div {
  540. border-width:0px;
  541. position:absolute;
  542. left:0px;
  543. top:0px;
  544. width:280px;
  545. height:30px;
  546. background:inherit;
  547. background-color:rgba(255, 255, 255, 0);
  548. border:none;
  549. border-radius:0px;
  550. -moz-box-shadow:none;
  551. -webkit-box-shadow:none;
  552. box-shadow:none;
  553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  554. font-weight:400;
  555. font-style:normal;
  556. line-height:30px;
  557. }
  558. #u20660 {
  559. border-width:0px;
  560. position:absolute;
  561. left:586px;
  562. top:1319px;
  563. width:280px;
  564. height:30px;
  565. display:flex;
  566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  567. font-weight:400;
  568. font-style:normal;
  569. line-height:30px;
  570. }
  571. #u20660 .text {
  572. position:absolute;
  573. align-self:flex-start;
  574. padding:0px 0px 0px 0px;
  575. box-sizing:border-box;
  576. width:100%;
  577. }
  578. #u20660_text {
  579. border-width:0px;
  580. word-wrap:break-word;
  581. text-transform:none;
  582. }
  583. #u20661_div {
  584. border-width:0px;
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:280px;
  589. height:25px;
  590. background:inherit;
  591. background-color:rgba(255, 255, 255, 0);
  592. box-sizing:border-box;
  593. border-width:2px;
  594. border-style:solid;
  595. border-color:rgba(0, 0, 0, 1);
  596. border-top:0px;
  597. border-right:0px;
  598. border-bottom:0px;
  599. border-radius:0px;
  600. border-top-left-radius:0px;
  601. border-bottom-left-radius:0px;
  602. -moz-box-shadow:none;
  603. -webkit-box-shadow:none;
  604. box-shadow:none;
  605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  606. font-weight:500;
  607. font-style:normal;
  608. font-size:18px;
  609. color:#000000;
  610. }
  611. #u20661 {
  612. border-width:0px;
  613. position:absolute;
  614. left:259px;
  615. top:1120px;
  616. width:280px;
  617. height:25px;
  618. display:flex;
  619. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  620. font-weight:500;
  621. font-style:normal;
  622. font-size:18px;
  623. color:#000000;
  624. }
  625. #u20661 .text {
  626. position:absolute;
  627. align-self:flex-start;
  628. padding:0px 0px 0px 10px;
  629. box-sizing:border-box;
  630. width:100%;
  631. }
  632. #u20661_text {
  633. border-width:0px;
  634. word-wrap:break-word;
  635. text-transform:none;
  636. }
  637. #u20662_div {
  638. border-width:0px;
  639. position:absolute;
  640. left:0px;
  641. top:0px;
  642. width:280px;
  643. height:30px;
  644. background:inherit;
  645. background-color:rgba(255, 255, 255, 0);
  646. border:none;
  647. border-radius:0px;
  648. -moz-box-shadow:none;
  649. -webkit-box-shadow:none;
  650. box-shadow:none;
  651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  652. font-weight:400;
  653. font-style:normal;
  654. line-height:30px;
  655. }
  656. #u20662 {
  657. border-width:0px;
  658. position:absolute;
  659. left:1241px;
  660. top:1169px;
  661. width:280px;
  662. height:30px;
  663. display:flex;
  664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  665. font-weight:400;
  666. font-style:normal;
  667. line-height:30px;
  668. }
  669. #u20662 .text {
  670. position:absolute;
  671. align-self:flex-start;
  672. padding:0px 0px 0px 0px;
  673. box-sizing:border-box;
  674. width:100%;
  675. }
  676. #u20662_text {
  677. border-width:0px;
  678. word-wrap:break-word;
  679. text-transform:none;
  680. }
  681. #u20663_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:280px;
  687. height:30px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. line-height:30px;
  699. }
  700. #u20663 {
  701. border-width:0px;
  702. position:absolute;
  703. left:259px;
  704. top:1169px;
  705. width:280px;
  706. height:30px;
  707. display:flex;
  708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  709. font-weight:400;
  710. font-style:normal;
  711. line-height:30px;
  712. }
  713. #u20663 .text {
  714. position:absolute;
  715. align-self:flex-start;
  716. padding:0px 0px 0px 0px;
  717. box-sizing:border-box;
  718. width:100%;
  719. }
  720. #u20663_text {
  721. border-width:0px;
  722. word-wrap:break-word;
  723. text-transform:none;
  724. }
  725. #u20664_div {
  726. border-width:0px;
  727. position:absolute;
  728. left:0px;
  729. top:0px;
  730. width:280px;
  731. height:30px;
  732. background:inherit;
  733. background-color:rgba(255, 255, 255, 0);
  734. border:none;
  735. border-radius:0px;
  736. -moz-box-shadow:none;
  737. -webkit-box-shadow:none;
  738. box-shadow:none;
  739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  740. font-weight:400;
  741. font-style:normal;
  742. line-height:30px;
  743. }
  744. #u20664 {
  745. border-width:0px;
  746. position:absolute;
  747. left:586px;
  748. top:1169px;
  749. width:280px;
  750. height:30px;
  751. display:flex;
  752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  753. font-weight:400;
  754. font-style:normal;
  755. line-height:30px;
  756. }
  757. #u20664 .text {
  758. position:absolute;
  759. align-self:flex-start;
  760. padding:0px 0px 0px 0px;
  761. box-sizing:border-box;
  762. width:100%;
  763. }
  764. #u20664_text {
  765. border-width:0px;
  766. word-wrap:break-word;
  767. text-transform:none;
  768. }
  769. #u20665_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:280px;
  775. height:25px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. box-sizing:border-box;
  779. border-width:2px;
  780. border-style:solid;
  781. border-color:rgba(0, 0, 0, 1);
  782. border-top:0px;
  783. border-right:0px;
  784. border-bottom:0px;
  785. border-radius:0px;
  786. border-top-left-radius:0px;
  787. border-bottom-left-radius:0px;
  788. -moz-box-shadow:none;
  789. -webkit-box-shadow:none;
  790. box-shadow:none;
  791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  792. font-weight:500;
  793. font-style:normal;
  794. font-size:18px;
  795. color:#000000;
  796. }
  797. #u20665 {
  798. border-width:0px;
  799. position:absolute;
  800. left:259px;
  801. top:1269px;
  802. width:280px;
  803. height:25px;
  804. display:flex;
  805. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  806. font-weight:500;
  807. font-style:normal;
  808. font-size:18px;
  809. color:#000000;
  810. }
  811. #u20665 .text {
  812. position:absolute;
  813. align-self:flex-start;
  814. padding:0px 0px 0px 10px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u20665_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. }
  823. #u20666_div {
  824. border-width:0px;
  825. position:absolute;
  826. left:0px;
  827. top:0px;
  828. width:280px;
  829. height:30px;
  830. background:inherit;
  831. background-color:rgba(255, 255, 255, 0);
  832. border:none;
  833. border-radius:0px;
  834. -moz-box-shadow:none;
  835. -webkit-box-shadow:none;
  836. box-shadow:none;
  837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  838. font-weight:400;
  839. font-style:normal;
  840. line-height:30px;
  841. }
  842. #u20666 {
  843. border-width:0px;
  844. position:absolute;
  845. left:259px;
  846. top:1429px;
  847. width:280px;
  848. height:30px;
  849. display:flex;
  850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  851. font-weight:400;
  852. font-style:normal;
  853. line-height:30px;
  854. }
  855. #u20666 .text {
  856. position:absolute;
  857. align-self:flex-start;
  858. padding:0px 0px 0px 0px;
  859. box-sizing:border-box;
  860. width:100%;
  861. }
  862. #u20666_text {
  863. border-width:0px;
  864. word-wrap:break-word;
  865. text-transform:none;
  866. }
  867. #u20667_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:280px;
  873. height:25px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 0);
  876. box-sizing:border-box;
  877. border-width:2px;
  878. border-style:solid;
  879. border-color:rgba(0, 0, 0, 1);
  880. border-top:0px;
  881. border-right:0px;
  882. border-bottom:0px;
  883. border-radius:0px;
  884. border-top-left-radius:0px;
  885. border-bottom-left-radius:0px;
  886. -moz-box-shadow:none;
  887. -webkit-box-shadow:none;
  888. box-shadow:none;
  889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  890. font-weight:500;
  891. font-style:normal;
  892. font-size:18px;
  893. color:#000000;
  894. }
  895. #u20667 {
  896. border-width:0px;
  897. position:absolute;
  898. left:259px;
  899. top:1379px;
  900. width:280px;
  901. height:25px;
  902. display:flex;
  903. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  904. font-weight:500;
  905. font-style:normal;
  906. font-size:18px;
  907. color:#000000;
  908. }
  909. #u20667 .text {
  910. position:absolute;
  911. align-self:flex-start;
  912. padding:0px 0px 0px 10px;
  913. box-sizing:border-box;
  914. width:100%;
  915. }
  916. #u20667_text {
  917. border-width:0px;
  918. word-wrap:break-word;
  919. text-transform:none;
  920. }
  921. #u20668_div {
  922. border-width:0px;
  923. position:absolute;
  924. left:0px;
  925. top:0px;
  926. width:280px;
  927. height:30px;
  928. background:inherit;
  929. background-color:rgba(255, 255, 255, 0);
  930. border:none;
  931. border-radius:0px;
  932. -moz-box-shadow:none;
  933. -webkit-box-shadow:none;
  934. box-shadow:none;
  935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  936. font-weight:400;
  937. font-style:normal;
  938. line-height:30px;
  939. }
  940. #u20668 {
  941. border-width:0px;
  942. position:absolute;
  943. left:914px;
  944. top:1169px;
  945. width:280px;
  946. height:30px;
  947. display:flex;
  948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  949. font-weight:400;
  950. font-style:normal;
  951. line-height:30px;
  952. }
  953. #u20668 .text {
  954. position:absolute;
  955. align-self:flex-start;
  956. padding:0px 0px 0px 0px;
  957. box-sizing:border-box;
  958. width:100%;
  959. }
  960. #u20668_text {
  961. border-width:0px;
  962. word-wrap:break-word;
  963. text-transform:none;
  964. }
  965. #u20669_div {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:280px;
  971. height:30px;
  972. background:inherit;
  973. background-color:rgba(255, 255, 255, 0);
  974. border:none;
  975. border-radius:0px;
  976. -moz-box-shadow:none;
  977. -webkit-box-shadow:none;
  978. box-shadow:none;
  979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  980. font-weight:400;
  981. font-style:normal;
  982. line-height:30px;
  983. }
  984. #u20669 {
  985. border-width:0px;
  986. position:absolute;
  987. left:259px;
  988. top:261px;
  989. width:280px;
  990. height:30px;
  991. display:flex;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. line-height:30px;
  996. }
  997. #u20669 .text {
  998. position:absolute;
  999. align-self:flex-start;
  1000. padding:0px 0px 0px 0px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u20669_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. }
  1009. #u20670_div {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:280px;
  1015. height:30px;
  1016. background:inherit;
  1017. background-color:rgba(255, 255, 255, 0);
  1018. border:none;
  1019. border-radius:0px;
  1020. -moz-box-shadow:none;
  1021. -webkit-box-shadow:none;
  1022. box-shadow:none;
  1023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1024. font-weight:400;
  1025. font-style:normal;
  1026. line-height:30px;
  1027. }
  1028. #u20670 {
  1029. border-width:0px;
  1030. position:absolute;
  1031. left:586px;
  1032. top:261px;
  1033. width:280px;
  1034. height:30px;
  1035. display:flex;
  1036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1037. font-weight:400;
  1038. font-style:normal;
  1039. line-height:30px;
  1040. }
  1041. #u20670 .text {
  1042. position:absolute;
  1043. align-self:flex-start;
  1044. padding:0px 0px 0px 0px;
  1045. box-sizing:border-box;
  1046. width:100%;
  1047. }
  1048. #u20670_text {
  1049. border-width:0px;
  1050. word-wrap:break-word;
  1051. text-transform:none;
  1052. }
  1053. #u20671_div {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:0px;
  1057. top:0px;
  1058. width:57px;
  1059. height:30px;
  1060. background:inherit;
  1061. background-color:rgba(255, 255, 255, 0);
  1062. border:none;
  1063. border-radius:0px;
  1064. -moz-box-shadow:none;
  1065. -webkit-box-shadow:none;
  1066. box-shadow:none;
  1067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1068. font-weight:500;
  1069. font-style:normal;
  1070. color:#000000;
  1071. line-height:30px;
  1072. }
  1073. #u20671 {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:259px;
  1077. top:366px;
  1078. width:57px;
  1079. height:30px;
  1080. display:flex;
  1081. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1082. font-weight:500;
  1083. font-style:normal;
  1084. color:#000000;
  1085. line-height:30px;
  1086. }
  1087. #u20671 .text {
  1088. position:absolute;
  1089. align-self:flex-start;
  1090. padding:0px 0px 0px 0px;
  1091. box-sizing:border-box;
  1092. width:100%;
  1093. }
  1094. #u20671_text {
  1095. border-width:0px;
  1096. white-space:nowrap;
  1097. text-transform:none;
  1098. }
  1099. #u20672 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:0px;
  1105. height:0px;
  1106. }
  1107. #u20673_img {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:1244px;
  1113. height:2px;
  1114. }
  1115. #u20673 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:259px;
  1119. top:455px;
  1120. width:1243px;
  1121. height:1px;
  1122. display:flex;
  1123. }
  1124. #u20673 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:2px 2px 2px 2px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u20673_text {
  1132. border-width:0px;
  1133. word-wrap:break-word;
  1134. text-transform:none;
  1135. visibility:hidden;
  1136. }
  1137. #u20674 {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:0px;
  1143. height:0px;
  1144. }
  1145. #u20675_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:10px;
  1151. height:10px;
  1152. }
  1153. #u20675 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:326px;
  1157. top:451px;
  1158. width:10px;
  1159. height:10px;
  1160. display:flex;
  1161. font-size:12px;
  1162. }
  1163. #u20675 .text {
  1164. position:absolute;
  1165. align-self:center;
  1166. padding:2px 2px 2px 2px;
  1167. box-sizing:border-box;
  1168. width:100%;
  1169. }
  1170. #u20675_text {
  1171. border-width:0px;
  1172. word-wrap:break-word;
  1173. text-transform:none;
  1174. visibility:hidden;
  1175. }
  1176. #u20676_div {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:49px;
  1182. height:30px;
  1183. background:inherit;
  1184. background-color:rgba(255, 255, 255, 0);
  1185. border:none;
  1186. border-radius:0px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:12px;
  1194. line-height:30px;
  1195. }
  1196. #u20676 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:307px;
  1200. top:412px;
  1201. width:49px;
  1202. height:30px;
  1203. display:flex;
  1204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1205. font-weight:400;
  1206. font-style:normal;
  1207. font-size:12px;
  1208. line-height:30px;
  1209. }
  1210. #u20676 .text {
  1211. position:absolute;
  1212. align-self:flex-start;
  1213. padding:0px 0px 0px 0px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u20676_text {
  1218. border-width:0px;
  1219. white-space:nowrap;
  1220. text-transform:none;
  1221. }
  1222. #u20677_div {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:104px;
  1228. height:17px;
  1229. background:inherit;
  1230. background-color:rgba(255, 255, 255, 0);
  1231. border:none;
  1232. border-radius:0px;
  1233. -moz-box-shadow:none;
  1234. -webkit-box-shadow:none;
  1235. box-shadow:none;
  1236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1237. font-weight:400;
  1238. font-style:normal;
  1239. font-size:12px;
  1240. text-align:center;
  1241. }
  1242. #u20677 {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:279px;
  1246. top:471px;
  1247. width:104px;
  1248. height:17px;
  1249. display:flex;
  1250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1251. font-weight:400;
  1252. font-style:normal;
  1253. font-size:12px;
  1254. text-align:center;
  1255. }
  1256. #u20677 .text {
  1257. position:absolute;
  1258. align-self:flex-start;
  1259. padding:0px 0px 0px 0px;
  1260. box-sizing:border-box;
  1261. width:100%;
  1262. }
  1263. #u20677_text {
  1264. border-width:0px;
  1265. white-space:nowrap;
  1266. text-transform:none;
  1267. }
  1268. #u20678 {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:0px;
  1272. top:0px;
  1273. width:0px;
  1274. height:0px;
  1275. }
  1276. #u20679_img {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:10px;
  1282. height:10px;
  1283. }
  1284. #u20679 {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:1406px;
  1288. top:451px;
  1289. width:10px;
  1290. height:10px;
  1291. display:flex;
  1292. font-size:12px;
  1293. }
  1294. #u20679 .text {
  1295. position:absolute;
  1296. align-self:center;
  1297. padding:2px 2px 2px 2px;
  1298. box-sizing:border-box;
  1299. width:100%;
  1300. }
  1301. #u20679_text {
  1302. border-width:0px;
  1303. word-wrap:break-word;
  1304. text-transform:none;
  1305. visibility:hidden;
  1306. }
  1307. #u20680_div {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:0px;
  1311. top:0px;
  1312. width:49px;
  1313. height:30px;
  1314. background:inherit;
  1315. background-color:rgba(255, 255, 255, 0);
  1316. border:none;
  1317. border-radius:0px;
  1318. -moz-box-shadow:none;
  1319. -webkit-box-shadow:none;
  1320. box-shadow:none;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:12px;
  1325. line-height:30px;
  1326. }
  1327. #u20680 {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:1387px;
  1331. top:417px;
  1332. width:49px;
  1333. height:30px;
  1334. display:flex;
  1335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1336. font-weight:400;
  1337. font-style:normal;
  1338. font-size:12px;
  1339. line-height:30px;
  1340. }
  1341. #u20680 .text {
  1342. position:absolute;
  1343. align-self:flex-start;
  1344. padding:0px 0px 0px 0px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u20680_text {
  1349. border-width:0px;
  1350. white-space:nowrap;
  1351. text-transform:none;
  1352. }
  1353. #u20681_div {
  1354. border-width:0px;
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:102px;
  1359. height:17px;
  1360. background:inherit;
  1361. background-color:rgba(255, 255, 255, 0);
  1362. border:none;
  1363. border-radius:0px;
  1364. -moz-box-shadow:none;
  1365. -webkit-box-shadow:none;
  1366. box-shadow:none;
  1367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1368. font-weight:400;
  1369. font-style:normal;
  1370. font-size:12px;
  1371. text-align:center;
  1372. }
  1373. #u20681 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:1360px;
  1377. top:466px;
  1378. width:102px;
  1379. height:17px;
  1380. display:flex;
  1381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:12px;
  1385. text-align:center;
  1386. }
  1387. #u20681 .text {
  1388. position:absolute;
  1389. align-self:flex-start;
  1390. padding:0px 0px 0px 0px;
  1391. box-sizing:border-box;
  1392. width:100%;
  1393. }
  1394. #u20681_text {
  1395. border-width:0px;
  1396. white-space:nowrap;
  1397. text-transform:none;
  1398. }
  1399. #u20682 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:0px;
  1403. top:0px;
  1404. width:0px;
  1405. height:0px;
  1406. }
  1407. #u20683_img {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:10px;
  1413. height:10px;
  1414. }
  1415. #u20683 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:1223px;
  1419. top:451px;
  1420. width:10px;
  1421. height:10px;
  1422. display:flex;
  1423. font-size:12px;
  1424. }
  1425. #u20683 .text {
  1426. position:absolute;
  1427. align-self:center;
  1428. padding:2px 2px 2px 2px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u20683_text {
  1433. border-width:0px;
  1434. word-wrap:break-word;
  1435. text-transform:none;
  1436. visibility:hidden;
  1437. }
  1438. #u20684_div {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:49px;
  1444. height:30px;
  1445. background:inherit;
  1446. background-color:rgba(255, 255, 255, 0);
  1447. border:none;
  1448. border-radius:0px;
  1449. -moz-box-shadow:none;
  1450. -webkit-box-shadow:none;
  1451. box-shadow:none;
  1452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1453. font-weight:400;
  1454. font-style:normal;
  1455. font-size:12px;
  1456. line-height:30px;
  1457. }
  1458. #u20684 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:1204px;
  1462. top:417px;
  1463. width:49px;
  1464. height:30px;
  1465. display:flex;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:12px;
  1470. line-height:30px;
  1471. }
  1472. #u20684 .text {
  1473. position:absolute;
  1474. align-self:flex-start;
  1475. padding:0px 0px 0px 0px;
  1476. box-sizing:border-box;
  1477. width:100%;
  1478. }
  1479. #u20684_text {
  1480. border-width:0px;
  1481. white-space:nowrap;
  1482. text-transform:none;
  1483. }
  1484. #u20685_div {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:102px;
  1490. height:17px;
  1491. background:inherit;
  1492. background-color:rgba(255, 255, 255, 0);
  1493. border:none;
  1494. border-radius:0px;
  1495. -moz-box-shadow:none;
  1496. -webkit-box-shadow:none;
  1497. box-shadow:none;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:12px;
  1502. text-align:center;
  1503. }
  1504. #u20685 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:1177px;
  1508. top:471px;
  1509. width:102px;
  1510. height:17px;
  1511. display:flex;
  1512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1513. font-weight:400;
  1514. font-style:normal;
  1515. font-size:12px;
  1516. text-align:center;
  1517. }
  1518. #u20685 .text {
  1519. position:absolute;
  1520. align-self:flex-start;
  1521. padding:0px 0px 0px 0px;
  1522. box-sizing:border-box;
  1523. width:100%;
  1524. }
  1525. #u20685_text {
  1526. border-width:0px;
  1527. white-space:nowrap;
  1528. text-transform:none;
  1529. }
  1530. #u20686_div {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:117px;
  1536. height:30px;
  1537. background:inherit;
  1538. background-color:rgba(255, 255, 255, 0);
  1539. border:none;
  1540. border-radius:0px;
  1541. -moz-box-shadow:none;
  1542. -webkit-box-shadow:none;
  1543. box-shadow:none;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. font-size:12px;
  1548. color:#0089FE;
  1549. text-align:center;
  1550. line-height:30px;
  1551. }
  1552. #u20686 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:273px;
  1556. top:488px;
  1557. width:117px;
  1558. height:30px;
  1559. display:flex;
  1560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1561. font-weight:400;
  1562. font-style:normal;
  1563. font-size:12px;
  1564. color:#0089FE;
  1565. text-align:center;
  1566. line-height:30px;
  1567. }
  1568. #u20686 .text {
  1569. position:absolute;
  1570. align-self:flex-start;
  1571. padding:0px 0px 0px 0px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u20686_text {
  1576. border-width:0px;
  1577. white-space:nowrap;
  1578. text-transform:none;
  1579. }
  1580. #u20687_div {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:49px;
  1586. height:30px;
  1587. background:inherit;
  1588. background-color:rgba(255, 255, 255, 0);
  1589. border:none;
  1590. border-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:12px;
  1598. color:#0089FE;
  1599. text-align:center;
  1600. line-height:30px;
  1601. }
  1602. #u20687 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:1200px;
  1606. top:488px;
  1607. width:49px;
  1608. height:30px;
  1609. display:flex;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:12px;
  1614. color:#0089FE;
  1615. text-align:center;
  1616. line-height:30px;
  1617. }
  1618. #u20687 .text {
  1619. position:absolute;
  1620. align-self:flex-start;
  1621. padding:0px 0px 0px 0px;
  1622. box-sizing:border-box;
  1623. width:100%;
  1624. }
  1625. #u20687_text {
  1626. border-width:0px;
  1627. white-space:nowrap;
  1628. text-transform:none;
  1629. }
  1630. #u20688_div {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:117px;
  1636. height:30px;
  1637. background:inherit;
  1638. background-color:rgba(255, 255, 255, 0);
  1639. border:none;
  1640. border-radius:0px;
  1641. -moz-box-shadow:none;
  1642. -webkit-box-shadow:none;
  1643. box-shadow:none;
  1644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1645. font-weight:400;
  1646. font-style:normal;
  1647. font-size:12px;
  1648. color:#0089FE;
  1649. text-align:center;
  1650. line-height:30px;
  1651. }
  1652. #u20688 {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:1353px;
  1656. top:487px;
  1657. width:117px;
  1658. height:30px;
  1659. display:flex;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:12px;
  1664. color:#0089FE;
  1665. text-align:center;
  1666. line-height:30px;
  1667. }
  1668. #u20688 .text {
  1669. position:absolute;
  1670. align-self:flex-start;
  1671. padding:0px 0px 0px 0px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u20688_text {
  1676. border-width:0px;
  1677. white-space:nowrap;
  1678. text-transform:none;
  1679. }
  1680. #u20689 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:0px;
  1684. top:0px;
  1685. width:0px;
  1686. height:0px;
  1687. }
  1688. #u20690_img {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:10px;
  1694. height:10px;
  1695. }
  1696. #u20690 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:506px;
  1700. top:451px;
  1701. width:10px;
  1702. height:10px;
  1703. display:flex;
  1704. font-size:12px;
  1705. }
  1706. #u20690 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:2px 2px 2px 2px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u20690_text {
  1714. border-width:0px;
  1715. word-wrap:break-word;
  1716. text-transform:none;
  1717. visibility:hidden;
  1718. }
  1719. #u20691_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:49px;
  1725. height:30px;
  1726. background:inherit;
  1727. background-color:rgba(255, 255, 255, 0);
  1728. border:none;
  1729. border-radius:0px;
  1730. -moz-box-shadow:none;
  1731. -webkit-box-shadow:none;
  1732. box-shadow:none;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:12px;
  1737. line-height:30px;
  1738. }
  1739. #u20691 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:487px;
  1743. top:412px;
  1744. width:49px;
  1745. height:30px;
  1746. display:flex;
  1747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:12px;
  1751. line-height:30px;
  1752. }
  1753. #u20691 .text {
  1754. position:absolute;
  1755. align-self:flex-start;
  1756. padding:0px 0px 0px 0px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u20691_text {
  1761. border-width:0px;
  1762. white-space:nowrap;
  1763. text-transform:none;
  1764. }
  1765. #u20692_div {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:0px;
  1769. top:0px;
  1770. width:104px;
  1771. height:17px;
  1772. background:inherit;
  1773. background-color:rgba(255, 255, 255, 0);
  1774. border:none;
  1775. border-radius:0px;
  1776. -moz-box-shadow:none;
  1777. -webkit-box-shadow:none;
  1778. box-shadow:none;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:12px;
  1783. text-align:center;
  1784. }
  1785. #u20692 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:459px;
  1789. top:471px;
  1790. width:104px;
  1791. height:17px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:12px;
  1797. text-align:center;
  1798. }
  1799. #u20692 .text {
  1800. position:absolute;
  1801. align-self:flex-start;
  1802. padding:0px 0px 0px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u20692_text {
  1807. border-width:0px;
  1808. white-space:nowrap;
  1809. text-transform:none;
  1810. }
  1811. #u20693_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:144px;
  1817. height:30px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 0);
  1820. border:none;
  1821. border-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:12px;
  1829. color:#0089FE;
  1830. text-align:center;
  1831. line-height:30px;
  1832. }
  1833. #u20693 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:439px;
  1837. top:488px;
  1838. width:144px;
  1839. height:30px;
  1840. display:flex;
  1841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:12px;
  1845. color:#0089FE;
  1846. text-align:center;
  1847. line-height:30px;
  1848. }
  1849. #u20693 .text {
  1850. position:absolute;
  1851. align-self:flex-start;
  1852. padding:0px 0px 0px 0px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u20693_text {
  1857. border-width:0px;
  1858. white-space:nowrap;
  1859. text-transform:none;
  1860. }
  1861. #u20694 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:0px;
  1867. height:0px;
  1868. }
  1869. #u20695_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:10px;
  1875. height:10px;
  1876. }
  1877. #u20695 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:686px;
  1881. top:451px;
  1882. width:10px;
  1883. height:10px;
  1884. display:flex;
  1885. font-size:12px;
  1886. }
  1887. #u20695 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 2px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u20695_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. visibility:hidden;
  1899. }
  1900. #u20696_div {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:73px;
  1906. height:30px;
  1907. background:inherit;
  1908. background-color:rgba(255, 255, 255, 0);
  1909. border:none;
  1910. border-radius:0px;
  1911. -moz-box-shadow:none;
  1912. -webkit-box-shadow:none;
  1913. box-shadow:none;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:12px;
  1918. line-height:30px;
  1919. }
  1920. #u20696 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:655px;
  1924. top:412px;
  1925. width:73px;
  1926. height:30px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. line-height:30px;
  1933. }
  1934. #u20696 .text {
  1935. position:absolute;
  1936. align-self:flex-start;
  1937. padding:0px 0px 0px 0px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u20696_text {
  1942. border-width:0px;
  1943. white-space:nowrap;
  1944. text-transform:none;
  1945. }
  1946. #u20697_div {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:107px;
  1952. height:17px;
  1953. background:inherit;
  1954. background-color:rgba(255, 255, 255, 0);
  1955. border:none;
  1956. border-radius:0px;
  1957. -moz-box-shadow:none;
  1958. -webkit-box-shadow:none;
  1959. box-shadow:none;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:12px;
  1964. text-align:center;
  1965. }
  1966. #u20697 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:638px;
  1970. top:471px;
  1971. width:107px;
  1972. height:17px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:12px;
  1978. text-align:center;
  1979. }
  1980. #u20697 .text {
  1981. position:absolute;
  1982. align-self:flex-start;
  1983. padding:0px 0px 0px 0px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u20697_text {
  1988. border-width:0px;
  1989. white-space:nowrap;
  1990. text-transform:none;
  1991. }
  1992. #u20698_div {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:80px;
  1998. height:30px;
  1999. background:inherit;
  2000. background-color:rgba(255, 255, 255, 0);
  2001. border:none;
  2002. border-radius:0px;
  2003. -moz-box-shadow:none;
  2004. -webkit-box-shadow:none;
  2005. box-shadow:none;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:12px;
  2010. color:#0089FE;
  2011. text-align:center;
  2012. line-height:30px;
  2013. }
  2014. #u20698 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:655px;
  2018. top:488px;
  2019. width:80px;
  2020. height:30px;
  2021. display:flex;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:12px;
  2026. color:#0089FE;
  2027. text-align:center;
  2028. line-height:30px;
  2029. }
  2030. #u20698 .text {
  2031. position:absolute;
  2032. align-self:flex-start;
  2033. padding:0px 0px 0px 0px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u20698_text {
  2038. border-width:0px;
  2039. white-space:nowrap;
  2040. text-transform:none;
  2041. }
  2042. #u20699 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:0px;
  2048. height:0px;
  2049. }
  2050. #u20700_img {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:0px;
  2054. top:0px;
  2055. width:10px;
  2056. height:10px;
  2057. }
  2058. #u20700 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:866px;
  2062. top:451px;
  2063. width:10px;
  2064. height:10px;
  2065. display:flex;
  2066. font-size:12px;
  2067. }
  2068. #u20700 .text {
  2069. position:absolute;
  2070. align-self:center;
  2071. padding:2px 2px 2px 2px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u20700_text {
  2076. border-width:0px;
  2077. word-wrap:break-word;
  2078. text-transform:none;
  2079. visibility:hidden;
  2080. }
  2081. #u20701_div {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:73px;
  2087. height:30px;
  2088. background:inherit;
  2089. background-color:rgba(255, 255, 255, 0);
  2090. border:none;
  2091. border-radius:0px;
  2092. -moz-box-shadow:none;
  2093. -webkit-box-shadow:none;
  2094. box-shadow:none;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:12px;
  2099. line-height:30px;
  2100. }
  2101. #u20701 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:835px;
  2105. top:412px;
  2106. width:73px;
  2107. height:30px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:12px;
  2113. line-height:30px;
  2114. }
  2115. #u20701 .text {
  2116. position:absolute;
  2117. align-self:flex-start;
  2118. padding:0px 0px 0px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u20701_text {
  2123. border-width:0px;
  2124. white-space:nowrap;
  2125. text-transform:none;
  2126. }
  2127. #u20702_div {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:99px;
  2133. height:17px;
  2134. background:inherit;
  2135. background-color:rgba(255, 255, 255, 0);
  2136. border:none;
  2137. border-radius:0px;
  2138. -moz-box-shadow:none;
  2139. -webkit-box-shadow:none;
  2140. box-shadow:none;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. text-align:center;
  2146. }
  2147. #u20702 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:822px;
  2151. top:471px;
  2152. width:99px;
  2153. height:17px;
  2154. display:flex;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. text-align:center;
  2160. }
  2161. #u20702 .text {
  2162. position:absolute;
  2163. align-self:flex-start;
  2164. padding:0px 0px 0px 0px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u20702_text {
  2169. border-width:0px;
  2170. white-space:nowrap;
  2171. text-transform:none;
  2172. }
  2173. #u20703_div {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:80px;
  2179. height:30px;
  2180. background:inherit;
  2181. background-color:rgba(255, 255, 255, 0);
  2182. border:none;
  2183. border-radius:0px;
  2184. -moz-box-shadow:none;
  2185. -webkit-box-shadow:none;
  2186. box-shadow:none;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:12px;
  2191. color:#0089FE;
  2192. text-align:center;
  2193. line-height:30px;
  2194. }
  2195. #u20703 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:831px;
  2199. top:488px;
  2200. width:80px;
  2201. height:30px;
  2202. display:flex;
  2203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2204. font-weight:400;
  2205. font-style:normal;
  2206. font-size:12px;
  2207. color:#0089FE;
  2208. text-align:center;
  2209. line-height:30px;
  2210. }
  2211. #u20703 .text {
  2212. position:absolute;
  2213. align-self:flex-start;
  2214. padding:0px 0px 0px 0px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u20703_text {
  2219. border-width:0px;
  2220. white-space:nowrap;
  2221. text-transform:none;
  2222. }
  2223. #u20704 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:0px;
  2229. height:0px;
  2230. }
  2231. #u20705_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:10px;
  2237. height:10px;
  2238. }
  2239. #u20705 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:1032px;
  2243. top:451px;
  2244. width:10px;
  2245. height:10px;
  2246. display:flex;
  2247. font-size:12px;
  2248. }
  2249. #u20705 .text {
  2250. position:absolute;
  2251. align-self:center;
  2252. padding:2px 2px 2px 2px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u20705_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. visibility:hidden;
  2261. }
  2262. #u20706_div {
  2263. border-width:0px;
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:49px;
  2268. height:30px;
  2269. background:inherit;
  2270. background-color:rgba(255, 255, 255, 0);
  2271. border:none;
  2272. border-radius:0px;
  2273. -moz-box-shadow:none;
  2274. -webkit-box-shadow:none;
  2275. box-shadow:none;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:12px;
  2280. line-height:30px;
  2281. }
  2282. #u20706 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:1013px;
  2286. top:417px;
  2287. width:49px;
  2288. height:30px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. line-height:30px;
  2295. }
  2296. #u20706 .text {
  2297. position:absolute;
  2298. align-self:flex-start;
  2299. padding:0px 0px 0px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u20706_text {
  2304. border-width:0px;
  2305. white-space:nowrap;
  2306. text-transform:none;
  2307. }
  2308. #u20707_div {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:102px;
  2314. height:17px;
  2315. background:inherit;
  2316. background-color:rgba(255, 255, 255, 0);
  2317. border:none;
  2318. border-radius:0px;
  2319. -moz-box-shadow:none;
  2320. -webkit-box-shadow:none;
  2321. box-shadow:none;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. text-align:center;
  2327. }
  2328. #u20707 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:986px;
  2332. top:466px;
  2333. width:102px;
  2334. height:17px;
  2335. display:flex;
  2336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2337. font-weight:400;
  2338. font-style:normal;
  2339. font-size:12px;
  2340. text-align:center;
  2341. }
  2342. #u20707 .text {
  2343. position:absolute;
  2344. align-self:flex-start;
  2345. padding:0px 0px 0px 0px;
  2346. box-sizing:border-box;
  2347. width:100%;
  2348. }
  2349. #u20707_text {
  2350. border-width:0px;
  2351. white-space:nowrap;
  2352. text-transform:none;
  2353. }
  2354. #u20708_div {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:144px;
  2360. height:30px;
  2361. background:inherit;
  2362. background-color:rgba(255, 255, 255, 0);
  2363. border:none;
  2364. border-radius:0px;
  2365. -moz-box-shadow:none;
  2366. -webkit-box-shadow:none;
  2367. box-shadow:none;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:12px;
  2372. color:#0089FE;
  2373. text-align:center;
  2374. line-height:30px;
  2375. }
  2376. #u20708 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:965px;
  2380. top:487px;
  2381. width:144px;
  2382. height:30px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:12px;
  2388. color:#0089FE;
  2389. text-align:center;
  2390. line-height:30px;
  2391. }
  2392. #u20708 .text {
  2393. position:absolute;
  2394. align-self:flex-start;
  2395. padding:0px 0px 0px 0px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u20708_text {
  2400. border-width:0px;
  2401. white-space:nowrap;
  2402. text-transform:none;
  2403. }
  2404. #u20709_div {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:280px;
  2410. height:25px;
  2411. background:inherit;
  2412. background-color:rgba(255, 255, 255, 0);
  2413. box-sizing:border-box;
  2414. border-width:2px;
  2415. border-style:solid;
  2416. border-color:rgba(0, 0, 0, 1);
  2417. border-top:0px;
  2418. border-right:0px;
  2419. border-bottom:0px;
  2420. border-radius:0px;
  2421. border-top-left-radius:0px;
  2422. border-bottom-left-radius:0px;
  2423. -moz-box-shadow:none;
  2424. -webkit-box-shadow:none;
  2425. box-shadow:none;
  2426. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2427. font-weight:500;
  2428. font-style:normal;
  2429. font-size:18px;
  2430. color:#000000;
  2431. }
  2432. #u20709 {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:259px;
  2436. top:321px;
  2437. width:280px;
  2438. height:25px;
  2439. display:flex;
  2440. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2441. font-weight:500;
  2442. font-style:normal;
  2443. font-size:18px;
  2444. color:#000000;
  2445. }
  2446. #u20709 .text {
  2447. position:absolute;
  2448. align-self:flex-start;
  2449. padding:0px 0px 0px 10px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u20709_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. }
  2458. #u20710 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:0px;
  2464. height:0px;
  2465. }
  2466. #u20711_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:1243px;
  2472. height:140px;
  2473. background:inherit;
  2474. background-color:rgba(242, 242, 242, 0.450980392156863);
  2475. border:none;
  2476. border-radius:0px;
  2477. -moz-box-shadow:none;
  2478. -webkit-box-shadow:none;
  2479. box-shadow:none;
  2480. }
  2481. #u20711 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:259px;
  2485. top:528px;
  2486. width:1243px;
  2487. height:140px;
  2488. display:flex;
  2489. }
  2490. #u20711 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u20711_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u20712_div {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:57px;
  2509. height:30px;
  2510. background:inherit;
  2511. background-color:rgba(255, 255, 255, 0);
  2512. border:none;
  2513. border-radius:0px;
  2514. -moz-box-shadow:none;
  2515. -webkit-box-shadow:none;
  2516. box-shadow:none;
  2517. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2518. font-weight:500;
  2519. font-style:normal;
  2520. line-height:30px;
  2521. }
  2522. #u20712 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:273px;
  2526. top:543px;
  2527. width:57px;
  2528. height:30px;
  2529. display:flex;
  2530. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2531. font-weight:500;
  2532. font-style:normal;
  2533. line-height:30px;
  2534. }
  2535. #u20712 .text {
  2536. position:absolute;
  2537. align-self:flex-start;
  2538. padding:0px 0px 0px 0px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u20712_text {
  2543. border-width:0px;
  2544. white-space:nowrap;
  2545. text-transform:none;
  2546. }
  2547. #u20713_div {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:280px;
  2553. height:30px;
  2554. background:inherit;
  2555. background-color:rgba(255, 255, 255, 0);
  2556. border:none;
  2557. border-radius:0px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. line-height:30px;
  2565. }
  2566. #u20713 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:279px;
  2570. top:578px;
  2571. width:280px;
  2572. height:30px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. line-height:30px;
  2578. }
  2579. #u20713 .text {
  2580. position:absolute;
  2581. align-self:flex-start;
  2582. padding:0px 0px 0px 0px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u20713_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. }
  2591. #u20714_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:280px;
  2597. height:30px;
  2598. background:inherit;
  2599. background-color:rgba(255, 255, 255, 0);
  2600. border:none;
  2601. border-radius:0px;
  2602. -moz-box-shadow:none;
  2603. -webkit-box-shadow:none;
  2604. box-shadow:none;
  2605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. line-height:30px;
  2609. }
  2610. #u20714 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:908px;
  2614. top:578px;
  2615. width:280px;
  2616. height:30px;
  2617. display:flex;
  2618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2619. font-weight:400;
  2620. font-style:normal;
  2621. line-height:30px;
  2622. }
  2623. #u20714 .text {
  2624. position:absolute;
  2625. align-self:flex-start;
  2626. padding:0px 0px 0px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u20714_text {
  2631. border-width:0px;
  2632. word-wrap:break-word;
  2633. text-transform:none;
  2634. }
  2635. #u20715_div {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:280px;
  2641. height:30px;
  2642. background:inherit;
  2643. background-color:rgba(255, 255, 255, 0);
  2644. border:none;
  2645. border-radius:0px;
  2646. -moz-box-shadow:none;
  2647. -webkit-box-shadow:none;
  2648. box-shadow:none;
  2649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2650. font-weight:400;
  2651. font-style:normal;
  2652. line-height:30px;
  2653. }
  2654. #u20715 {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:1222px;
  2658. top:578px;
  2659. width:280px;
  2660. height:30px;
  2661. display:flex;
  2662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2663. font-weight:400;
  2664. font-style:normal;
  2665. line-height:30px;
  2666. }
  2667. #u20715 .text {
  2668. position:absolute;
  2669. align-self:flex-start;
  2670. padding:0px 0px 0px 0px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u20715_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. }
  2679. #u20716_div {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:280px;
  2685. height:30px;
  2686. background:inherit;
  2687. background-color:rgba(255, 255, 255, 0);
  2688. border:none;
  2689. border-radius:0px;
  2690. -moz-box-shadow:none;
  2691. -webkit-box-shadow:none;
  2692. box-shadow:none;
  2693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. line-height:30px;
  2697. }
  2698. #u20716 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:593px;
  2702. top:578px;
  2703. width:280px;
  2704. height:30px;
  2705. display:flex;
  2706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. line-height:30px;
  2710. }
  2711. #u20716 .text {
  2712. position:absolute;
  2713. align-self:flex-start;
  2714. padding:0px 0px 0px 0px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u20716_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. }
  2723. #u20717_div {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:280px;
  2729. height:30px;
  2730. background:inherit;
  2731. background-color:rgba(255, 255, 255, 0);
  2732. border:none;
  2733. border-radius:0px;
  2734. -moz-box-shadow:none;
  2735. -webkit-box-shadow:none;
  2736. box-shadow:none;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. line-height:30px;
  2741. }
  2742. #u20717 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:279px;
  2746. top:618px;
  2747. width:280px;
  2748. height:30px;
  2749. display:flex;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. line-height:30px;
  2754. }
  2755. #u20717 .text {
  2756. position:absolute;
  2757. align-self:flex-start;
  2758. padding:0px 0px 0px 0px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u20717_text {
  2763. border-width:0px;
  2764. word-wrap:break-word;
  2765. text-transform:none;
  2766. }
  2767. #u20718_div {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:280px;
  2773. height:30px;
  2774. background:inherit;
  2775. background-color:rgba(255, 255, 255, 0);
  2776. border:none;
  2777. border-radius:0px;
  2778. -moz-box-shadow:none;
  2779. -webkit-box-shadow:none;
  2780. box-shadow:none;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. line-height:30px;
  2785. }
  2786. #u20718 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:593px;
  2790. top:618px;
  2791. width:280px;
  2792. height:30px;
  2793. display:flex;
  2794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. line-height:30px;
  2798. }
  2799. #u20718 .text {
  2800. position:absolute;
  2801. align-self:flex-start;
  2802. padding:0px 0px 0px 0px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u20718_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. }
  2811. #u20719_div {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:280px;
  2817. height:30px;
  2818. background:inherit;
  2819. background-color:rgba(255, 255, 255, 0);
  2820. border:none;
  2821. border-radius:0px;
  2822. -moz-box-shadow:none;
  2823. -webkit-box-shadow:none;
  2824. box-shadow:none;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. line-height:30px;
  2829. }
  2830. #u20719 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:908px;
  2834. top:618px;
  2835. width:280px;
  2836. height:30px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. line-height:30px;
  2842. }
  2843. #u20719 .text {
  2844. position:absolute;
  2845. align-self:flex-start;
  2846. padding:0px 0px 0px 0px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u20719_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. }
  2855. #u20720_div {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:280px;
  2861. height:30px;
  2862. background:inherit;
  2863. background-color:rgba(255, 255, 255, 0);
  2864. border:none;
  2865. border-radius:0px;
  2866. -moz-box-shadow:none;
  2867. -webkit-box-shadow:none;
  2868. box-shadow:none;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-style:normal;
  2871. line-height:30px;
  2872. }
  2873. #u20720 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:1222px;
  2877. top:618px;
  2878. width:280px;
  2879. height:30px;
  2880. display:flex;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-style:normal;
  2883. line-height:30px;
  2884. }
  2885. #u20720 .text {
  2886. position:absolute;
  2887. align-self:flex-start;
  2888. padding:0px 0px 0px 0px;
  2889. box-sizing:border-box;
  2890. width:100%;
  2891. }
  2892. #u20720_text {
  2893. border-width:0px;
  2894. word-wrap:break-word;
  2895. text-transform:none;
  2896. }
  2897. #u20721_div {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:73px;
  2903. height:30px;
  2904. background:inherit;
  2905. background-color:rgba(255, 255, 255, 0);
  2906. border:none;
  2907. border-radius:0px;
  2908. -moz-box-shadow:none;
  2909. -webkit-box-shadow:none;
  2910. box-shadow:none;
  2911. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2912. font-weight:500;
  2913. font-style:normal;
  2914. font-size:18px;
  2915. line-height:30px;
  2916. }
  2917. #u20721 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:259px;
  2921. top:688px;
  2922. width:73px;
  2923. height:30px;
  2924. display:flex;
  2925. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2926. font-weight:500;
  2927. font-style:normal;
  2928. font-size:18px;
  2929. line-height:30px;
  2930. }
  2931. #u20721 .text {
  2932. position:absolute;
  2933. align-self:flex-start;
  2934. padding:0px 0px 0px 0px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u20721_text {
  2939. border-width:0px;
  2940. white-space:nowrap;
  2941. text-transform:none;
  2942. }
  2943. #u20722 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:259px;
  2947. top:728px;
  2948. width:1243px;
  2949. height:158px;
  2950. }
  2951. #u20723_img {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:249px;
  2957. height:40px;
  2958. }
  2959. #u20723 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:249px;
  2965. height:40px;
  2966. display:flex;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:14px;
  2971. color:#FFFFFF;
  2972. }
  2973. #u20723 .text {
  2974. position:absolute;
  2975. align-self:center;
  2976. padding:2px 2px 2px 2px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u20723_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. }
  2985. #u20724_img {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:249px;
  2991. height:40px;
  2992. }
  2993. #u20724 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:249px;
  2997. top:0px;
  2998. width:249px;
  2999. height:40px;
  3000. display:flex;
  3001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:14px;
  3005. color:#FFFFFF;
  3006. }
  3007. #u20724 .text {
  3008. position:absolute;
  3009. align-self:center;
  3010. padding:2px 2px 2px 2px;
  3011. box-sizing:border-box;
  3012. width:100%;
  3013. }
  3014. #u20724_text {
  3015. border-width:0px;
  3016. word-wrap:break-word;
  3017. text-transform:none;
  3018. }
  3019. #u20725_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:249px;
  3025. height:40px;
  3026. }
  3027. #u20725 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:498px;
  3031. top:0px;
  3032. width:249px;
  3033. height:40px;
  3034. display:flex;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:14px;
  3039. color:#FFFFFF;
  3040. }
  3041. #u20725 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 2px 2px 2px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u20725_text {
  3049. border-width:0px;
  3050. word-wrap:break-word;
  3051. text-transform:none;
  3052. }
  3053. #u20726_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:249px;
  3059. height:40px;
  3060. }
  3061. #u20726 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:747px;
  3065. top:0px;
  3066. width:249px;
  3067. height:40px;
  3068. display:flex;
  3069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:14px;
  3073. color:#FFFFFF;
  3074. }
  3075. #u20726 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:2px 2px 2px 2px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u20726_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. }
  3087. #u20727_img {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:247px;
  3093. height:40px;
  3094. }
  3095. #u20727 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:996px;
  3099. top:0px;
  3100. width:247px;
  3101. height:40px;
  3102. display:flex;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:14px;
  3107. color:#FFFFFF;
  3108. }
  3109. #u20727 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u20727_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. }
  3121. #u20728_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:249px;
  3127. height:40px;
  3128. }
  3129. #u20728 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:40px;
  3134. width:249px;
  3135. height:40px;
  3136. display:flex;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:14px;
  3141. }
  3142. #u20728 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 2px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u20728_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. }
  3154. #u20729_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:249px;
  3160. height:40px;
  3161. }
  3162. #u20729 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:249px;
  3166. top:40px;
  3167. width:249px;
  3168. height:40px;
  3169. display:flex;
  3170. font-size:14px;
  3171. }
  3172. #u20729 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 2px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u20729_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. }
  3184. #u20730_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:249px;
  3190. height:40px;
  3191. }
  3192. #u20730 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:498px;
  3196. top:40px;
  3197. width:249px;
  3198. height:40px;
  3199. display:flex;
  3200. font-size:14px;
  3201. }
  3202. #u20730 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:2px 2px 2px 2px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u20730_text {
  3210. border-width:0px;
  3211. word-wrap:break-word;
  3212. text-transform:none;
  3213. }
  3214. #u20731_img {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:249px;
  3220. height:40px;
  3221. }
  3222. #u20731 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:747px;
  3226. top:40px;
  3227. width:249px;
  3228. height:40px;
  3229. display:flex;
  3230. font-size:14px;
  3231. }
  3232. #u20731 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 2px 2px 2px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u20731_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. }
  3244. #u20732_img {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:247px;
  3250. height:40px;
  3251. }
  3252. #u20732 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:996px;
  3256. top:40px;
  3257. width:247px;
  3258. height:40px;
  3259. display:flex;
  3260. font-size:14px;
  3261. }
  3262. #u20732 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 2px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u20732_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. }
  3274. #u20733_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:249px;
  3280. height:40px;
  3281. }
  3282. #u20733 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:80px;
  3287. width:249px;
  3288. height:40px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:14px;
  3294. }
  3295. #u20733 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u20733_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. }
  3307. #u20734_img {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:249px;
  3313. height:40px;
  3314. }
  3315. #u20734 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:249px;
  3319. top:80px;
  3320. width:249px;
  3321. height:40px;
  3322. display:flex;
  3323. font-size:14px;
  3324. }
  3325. #u20734 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 2px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u20734_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. }
  3337. #u20735_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:249px;
  3343. height:40px;
  3344. }
  3345. #u20735 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:498px;
  3349. top:80px;
  3350. width:249px;
  3351. height:40px;
  3352. display:flex;
  3353. font-size:14px;
  3354. }
  3355. #u20735 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u20735_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. }
  3367. #u20736_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:249px;
  3373. height:40px;
  3374. }
  3375. #u20736 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:747px;
  3379. top:80px;
  3380. width:249px;
  3381. height:40px;
  3382. display:flex;
  3383. font-size:14px;
  3384. }
  3385. #u20736 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 2px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u20736_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. }
  3397. #u20737_img {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:247px;
  3403. height:40px;
  3404. }
  3405. #u20737 {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:996px;
  3409. top:80px;
  3410. width:247px;
  3411. height:40px;
  3412. display:flex;
  3413. font-size:14px;
  3414. }
  3415. #u20737 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 2px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u20737_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. }
  3427. #u20738_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:249px;
  3433. height:38px;
  3434. }
  3435. #u20738 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:120px;
  3440. width:249px;
  3441. height:38px;
  3442. display:flex;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:14px;
  3447. color:#0099FF;
  3448. }
  3449. #u20738 .text {
  3450. position:absolute;
  3451. align-self:center;
  3452. padding:2px 2px 2px 2px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u20738_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. visibility:hidden;
  3461. }
  3462. #u20739_img {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:249px;
  3468. height:38px;
  3469. }
  3470. #u20739 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:249px;
  3474. top:120px;
  3475. width:249px;
  3476. height:38px;
  3477. display:flex;
  3478. font-size:14px;
  3479. color:#0099FF;
  3480. }
  3481. #u20739 .text {
  3482. position:absolute;
  3483. align-self:center;
  3484. padding:2px 2px 2px 2px;
  3485. box-sizing:border-box;
  3486. width:100%;
  3487. }
  3488. #u20739_text {
  3489. border-width:0px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. visibility:hidden;
  3493. }
  3494. #u20740_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:249px;
  3500. height:38px;
  3501. }
  3502. #u20740 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:498px;
  3506. top:120px;
  3507. width:249px;
  3508. height:38px;
  3509. display:flex;
  3510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:14px;
  3514. color:#0099FF;
  3515. }
  3516. #u20740 .text {
  3517. position:absolute;
  3518. align-self:center;
  3519. padding:2px 2px 2px 2px;
  3520. box-sizing:border-box;
  3521. width:100%;
  3522. }
  3523. #u20740_text {
  3524. border-width:0px;
  3525. word-wrap:break-word;
  3526. text-transform:none;
  3527. visibility:hidden;
  3528. }
  3529. #u20741_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:249px;
  3535. height:38px;
  3536. }
  3537. #u20741 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:747px;
  3541. top:120px;
  3542. width:249px;
  3543. height:38px;
  3544. display:flex;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:14px;
  3549. color:#0099FF;
  3550. }
  3551. #u20741 .text {
  3552. position:absolute;
  3553. align-self:center;
  3554. padding:2px 2px 2px 2px;
  3555. box-sizing:border-box;
  3556. width:100%;
  3557. }
  3558. #u20741_text {
  3559. border-width:0px;
  3560. word-wrap:break-word;
  3561. text-transform:none;
  3562. visibility:hidden;
  3563. }
  3564. #u20742_img {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:247px;
  3570. height:38px;
  3571. }
  3572. #u20742 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:996px;
  3576. top:120px;
  3577. width:247px;
  3578. height:38px;
  3579. display:flex;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:14px;
  3584. color:#0099FF;
  3585. }
  3586. #u20742 .text {
  3587. position:absolute;
  3588. align-self:center;
  3589. padding:2px 2px 2px 2px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u20742_text {
  3594. border-width:0px;
  3595. word-wrap:break-word;
  3596. text-transform:none;
  3597. }
  3598. #u20743_div {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:280px;
  3604. height:30px;
  3605. background:inherit;
  3606. background-color:rgba(255, 255, 255, 0);
  3607. border:none;
  3608. border-radius:0px;
  3609. -moz-box-shadow:none;
  3610. -webkit-box-shadow:none;
  3611. box-shadow:none;
  3612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3613. font-weight:400;
  3614. font-style:normal;
  3615. line-height:30px;
  3616. }
  3617. #u20743 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:259px;
  3621. top:1209px;
  3622. width:280px;
  3623. height:30px;
  3624. display:flex;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. line-height:30px;
  3629. }
  3630. #u20743 .text {
  3631. position:absolute;
  3632. align-self:flex-start;
  3633. padding:0px 0px 0px 0px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u20743_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. }
  3642. #u20744 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:259px;
  3646. top:946px;
  3647. width:1243px;
  3648. height:154px;
  3649. }
  3650. #u20745_img {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:829px;
  3656. height:50px;
  3657. }
  3658. #u20745 {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:829px;
  3664. height:50px;
  3665. display:flex;
  3666. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3667. font-weight:500;
  3668. font-style:normal;
  3669. font-size:14px;
  3670. text-align:left;
  3671. }
  3672. #u20745 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:2px 2px 2px 20px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u20745_text {
  3680. border-width:0px;
  3681. word-wrap:break-word;
  3682. text-transform:none;
  3683. }
  3684. #u20746_img {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:414px;
  3690. height:50px;
  3691. }
  3692. #u20746 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:829px;
  3696. top:0px;
  3697. width:414px;
  3698. height:50px;
  3699. display:flex;
  3700. font-size:14px;
  3701. text-align:right;
  3702. }
  3703. #u20746 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 20px 2px 20px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u20746_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. }
  3715. #u20747_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:829px;
  3721. height:50px;
  3722. }
  3723. #u20747 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:50px;
  3728. width:829px;
  3729. height:50px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:12px;
  3735. text-align:left;
  3736. }
  3737. #u20747 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 20px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u20747_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. }
  3749. #u20748_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:414px;
  3755. height:50px;
  3756. }
  3757. #u20748 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:829px;
  3761. top:50px;
  3762. width:414px;
  3763. height:50px;
  3764. display:flex;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:14px;
  3769. text-align:right;
  3770. }
  3771. #u20748 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 20px 2px 20px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u20748_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. }
  3783. #u20749_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:829px;
  3789. height:54px;
  3790. }
  3791. #u20749 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:100px;
  3796. width:829px;
  3797. height:54px;
  3798. display:flex;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:18px;
  3803. color:#0099FF;
  3804. text-align:left;
  3805. }
  3806. #u20749 .text {
  3807. position:absolute;
  3808. align-self:center;
  3809. padding:2px 2px 2px 20px;
  3810. box-sizing:border-box;
  3811. width:100%;
  3812. }
  3813. #u20749_text {
  3814. border-width:0px;
  3815. word-wrap:break-word;
  3816. text-transform:none;
  3817. visibility:hidden;
  3818. }
  3819. #u20750_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:414px;
  3825. height:54px;
  3826. }
  3827. #u20750 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:829px;
  3831. top:100px;
  3832. width:414px;
  3833. height:54px;
  3834. display:flex;
  3835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3836. font-weight:500;
  3837. font-style:normal;
  3838. font-size:18px;
  3839. color:#0099FF;
  3840. text-align:right;
  3841. }
  3842. #u20750 .text {
  3843. position:absolute;
  3844. align-self:center;
  3845. padding:2px 20px 2px 20px;
  3846. box-sizing:border-box;
  3847. width:100%;
  3848. }
  3849. #u20750_text {
  3850. border-width:0px;
  3851. word-wrap:break-word;
  3852. text-transform:none;
  3853. }
  3854. #u20751_div {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:280px;
  3860. height:25px;
  3861. background:inherit;
  3862. background-color:rgba(255, 255, 255, 0);
  3863. box-sizing:border-box;
  3864. border-width:2px;
  3865. border-style:solid;
  3866. border-color:rgba(0, 0, 0, 1);
  3867. border-top:0px;
  3868. border-right:0px;
  3869. border-bottom:0px;
  3870. border-radius:0px;
  3871. border-top-left-radius:0px;
  3872. border-bottom-left-radius:0px;
  3873. -moz-box-shadow:none;
  3874. -webkit-box-shadow:none;
  3875. box-shadow:none;
  3876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3877. font-weight:500;
  3878. font-style:normal;
  3879. font-size:18px;
  3880. color:#000000;
  3881. }
  3882. #u20751 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:259px;
  3886. top:921px;
  3887. width:280px;
  3888. height:25px;
  3889. display:flex;
  3890. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3891. font-weight:500;
  3892. font-style:normal;
  3893. font-size:18px;
  3894. color:#000000;
  3895. }
  3896. #u20751 .text {
  3897. position:absolute;
  3898. align-self:flex-start;
  3899. padding:0px 0px 0px 10px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u20751_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. }
  3908. #u20752 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:0px;
  3914. height:0px;
  3915. }
  3916. #u20753_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:1381px;
  3922. height:1148px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 1);
  3925. box-sizing:border-box;
  3926. border-width:1px;
  3927. border-style:solid;
  3928. border-color:rgba(242, 242, 242, 1);
  3929. border-radius:0px;
  3930. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3931. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3932. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  3933. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  3934. font-weight:700;
  3935. font-style:normal;
  3936. }
  3937. #u20753 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:1864px;
  3941. top:83px;
  3942. width:1381px;
  3943. height:1148px;
  3944. display:flex;
  3945. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  3946. font-weight:700;
  3947. font-style:normal;
  3948. }
  3949. #u20753 .text {
  3950. position:absolute;
  3951. align-self:center;
  3952. padding:2px 2px 2px 2px;
  3953. box-sizing:border-box;
  3954. width:100%;
  3955. }
  3956. #u20753_text {
  3957. border-width:0px;
  3958. word-wrap:break-word;
  3959. text-transform:none;
  3960. visibility:hidden;
  3961. }
  3962. #u20754_img {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:1380px;
  3968. height:2px;
  3969. }
  3970. #u20754 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:1864px;
  3974. top:146px;
  3975. width:1379px;
  3976. height:1px;
  3977. display:flex;
  3978. }
  3979. #u20754 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 2px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u20754_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u20755_div {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:73px;
  3998. height:25px;
  3999. background:inherit;
  4000. background-color:rgba(255, 255, 255, 0);
  4001. border:none;
  4002. border-radius:0px;
  4003. -moz-box-shadow:none;
  4004. -webkit-box-shadow:none;
  4005. box-shadow:none;
  4006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:18px;
  4010. }
  4011. #u20755 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:1915px;
  4015. top:99px;
  4016. width:73px;
  4017. height:25px;
  4018. display:flex;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:18px;
  4023. }
  4024. #u20755 .text {
  4025. position:absolute;
  4026. align-self:flex-start;
  4027. padding:0px 0px 0px 0px;
  4028. box-sizing:border-box;
  4029. width:100%;
  4030. }
  4031. #u20755_text {
  4032. border-width:0px;
  4033. white-space:nowrap;
  4034. text-transform:none;
  4035. }
  4036. #u20756_img {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:0px;
  4041. width:8px;
  4042. height:14px;
  4043. }
  4044. #u20756 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:1885px;
  4048. top:104px;
  4049. width:8px;
  4050. height:14px;
  4051. display:flex;
  4052. }
  4053. #u20756 .text {
  4054. position:absolute;
  4055. align-self:center;
  4056. padding:2px 2px 2px 2px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u20756_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u20757_div {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:280px;
  4072. height:30px;
  4073. background:inherit;
  4074. background-color:rgba(255, 255, 255, 0);
  4075. border:none;
  4076. border-radius:0px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. line-height:30px;
  4084. }
  4085. #u20757 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:1915px;
  4089. top:221px;
  4090. width:280px;
  4091. height:30px;
  4092. display:flex;
  4093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. line-height:30px;
  4097. }
  4098. #u20757 .text {
  4099. position:absolute;
  4100. align-self:flex-start;
  4101. padding:0px 0px 0px 0px;
  4102. box-sizing:border-box;
  4103. width:100%;
  4104. }
  4105. #u20757_text {
  4106. border-width:0px;
  4107. word-wrap:break-word;
  4108. text-transform:none;
  4109. }
  4110. #u20758_div {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:280px;
  4116. height:30px;
  4117. background:inherit;
  4118. background-color:rgba(255, 255, 255, 0);
  4119. border:none;
  4120. border-radius:0px;
  4121. -moz-box-shadow:none;
  4122. -webkit-box-shadow:none;
  4123. box-shadow:none;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. line-height:30px;
  4128. }
  4129. #u20758 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:2570px;
  4133. top:221px;
  4134. width:280px;
  4135. height:30px;
  4136. display:flex;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. line-height:30px;
  4141. }
  4142. #u20758 .text {
  4143. position:absolute;
  4144. align-self:flex-start;
  4145. padding:0px 0px 0px 0px;
  4146. box-sizing:border-box;
  4147. width:100%;
  4148. }
  4149. #u20758_text {
  4150. border-width:0px;
  4151. word-wrap:break-word;
  4152. text-transform:none;
  4153. }
  4154. #u20759_div {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:280px;
  4160. height:30px;
  4161. background:inherit;
  4162. background-color:rgba(255, 255, 255, 0);
  4163. border:none;
  4164. border-radius:0px;
  4165. -moz-box-shadow:none;
  4166. -webkit-box-shadow:none;
  4167. box-shadow:none;
  4168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4169. font-weight:400;
  4170. font-style:normal;
  4171. line-height:30px;
  4172. }
  4173. #u20759 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:2242px;
  4177. top:221px;
  4178. width:280px;
  4179. height:30px;
  4180. display:flex;
  4181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. line-height:30px;
  4185. }
  4186. #u20759 .text {
  4187. position:absolute;
  4188. align-self:flex-start;
  4189. padding:0px 0px 0px 0px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u20759_text {
  4194. border-width:0px;
  4195. word-wrap:break-word;
  4196. text-transform:none;
  4197. }
  4198. #u20760_div {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:280px;
  4204. height:30px;
  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. line-height:30px;
  4216. }
  4217. #u20760 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:2897px;
  4221. top:221px;
  4222. width:280px;
  4223. height:30px;
  4224. display:flex;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. line-height:30px;
  4229. }
  4230. #u20760 .text {
  4231. position:absolute;
  4232. align-self:flex-start;
  4233. padding:0px 0px 0px 0px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u20760_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. }
  4242. #u20761_div {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:280px;
  4248. height:25px;
  4249. background:inherit;
  4250. background-color:rgba(255, 255, 255, 0);
  4251. box-sizing:border-box;
  4252. border-width:2px;
  4253. border-style:solid;
  4254. border-color:rgba(0, 0, 0, 1);
  4255. border-top:0px;
  4256. border-right:0px;
  4257. border-bottom:0px;
  4258. border-radius:0px;
  4259. border-top-left-radius:0px;
  4260. border-bottom-left-radius:0px;
  4261. -moz-box-shadow:none;
  4262. -webkit-box-shadow:none;
  4263. box-shadow:none;
  4264. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4265. font-weight:500;
  4266. font-style:normal;
  4267. font-size:18px;
  4268. color:#000000;
  4269. }
  4270. #u20761 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:1915px;
  4274. top:171px;
  4275. width:280px;
  4276. height:25px;
  4277. display:flex;
  4278. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4279. font-weight:500;
  4280. font-style:normal;
  4281. font-size:18px;
  4282. color:#000000;
  4283. }
  4284. #u20761 .text {
  4285. position:absolute;
  4286. align-self:flex-start;
  4287. padding:0px 0px 0px 10px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u20761_text {
  4292. border-width:0px;
  4293. word-wrap:break-word;
  4294. text-transform:none;
  4295. }
  4296. #u20762_div {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:280px;
  4302. height:30px;
  4303. background:inherit;
  4304. background-color:rgba(255, 255, 255, 0);
  4305. border:none;
  4306. border-radius:0px;
  4307. -moz-box-shadow:none;
  4308. -webkit-box-shadow:none;
  4309. box-shadow:none;
  4310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. line-height:30px;
  4314. }
  4315. #u20762 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:1915px;
  4319. top:261px;
  4320. width:280px;
  4321. height:30px;
  4322. display:flex;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. line-height:30px;
  4327. }
  4328. #u20762 .text {
  4329. position:absolute;
  4330. align-self:flex-start;
  4331. padding:0px 0px 0px 0px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u20762_text {
  4336. border-width:0px;
  4337. word-wrap:break-word;
  4338. text-transform:none;
  4339. }
  4340. #u20763_div {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:280px;
  4346. height:30px;
  4347. background:inherit;
  4348. background-color:rgba(255, 255, 255, 0);
  4349. border:none;
  4350. border-radius:0px;
  4351. -moz-box-shadow:none;
  4352. -webkit-box-shadow:none;
  4353. box-shadow:none;
  4354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4355. font-weight:400;
  4356. font-style:normal;
  4357. line-height:30px;
  4358. }
  4359. #u20763 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:2242px;
  4363. top:261px;
  4364. width:280px;
  4365. height:30px;
  4366. display:flex;
  4367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. line-height:30px;
  4371. }
  4372. #u20763 .text {
  4373. position:absolute;
  4374. align-self:flex-start;
  4375. padding:0px 0px 0px 0px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u20763_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. }
  4384. #u20764_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:57px;
  4390. height:30px;
  4391. background:inherit;
  4392. background-color:rgba(255, 255, 255, 0);
  4393. border:none;
  4394. border-radius:0px;
  4395. -moz-box-shadow:none;
  4396. -webkit-box-shadow:none;
  4397. box-shadow:none;
  4398. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4399. font-weight:500;
  4400. font-style:normal;
  4401. color:#000000;
  4402. line-height:30px;
  4403. }
  4404. #u20764 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:1915px;
  4408. top:366px;
  4409. width:57px;
  4410. height:30px;
  4411. display:flex;
  4412. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4413. font-weight:500;
  4414. font-style:normal;
  4415. color:#000000;
  4416. line-height:30px;
  4417. }
  4418. #u20764 .text {
  4419. position:absolute;
  4420. align-self:flex-start;
  4421. padding:0px 0px 0px 0px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u20764_text {
  4426. border-width:0px;
  4427. white-space:nowrap;
  4428. text-transform:none;
  4429. }
  4430. #u20765 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:0px;
  4436. height:0px;
  4437. }
  4438. #u20766_img {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:1244px;
  4444. height:2px;
  4445. }
  4446. #u20766 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:1915px;
  4450. top:455px;
  4451. width:1243px;
  4452. height:1px;
  4453. display:flex;
  4454. }
  4455. #u20766 .text {
  4456. position:absolute;
  4457. align-self:center;
  4458. padding:2px 2px 2px 2px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u20766_text {
  4463. border-width:0px;
  4464. word-wrap:break-word;
  4465. text-transform:none;
  4466. visibility:hidden;
  4467. }
  4468. #u20767 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:0px;
  4474. height:0px;
  4475. }
  4476. #u20768_img {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:10px;
  4482. height:10px;
  4483. }
  4484. #u20768 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:1982px;
  4488. top:451px;
  4489. width:10px;
  4490. height:10px;
  4491. display:flex;
  4492. font-size:12px;
  4493. }
  4494. #u20768 .text {
  4495. position:absolute;
  4496. align-self:center;
  4497. padding:2px 2px 2px 2px;
  4498. box-sizing:border-box;
  4499. width:100%;
  4500. }
  4501. #u20768_text {
  4502. border-width:0px;
  4503. word-wrap:break-word;
  4504. text-transform:none;
  4505. visibility:hidden;
  4506. }
  4507. #u20769_div {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:49px;
  4513. height:30px;
  4514. background:inherit;
  4515. background-color:rgba(255, 255, 255, 0);
  4516. border:none;
  4517. border-radius:0px;
  4518. -moz-box-shadow:none;
  4519. -webkit-box-shadow:none;
  4520. box-shadow:none;
  4521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:12px;
  4525. line-height:30px;
  4526. }
  4527. #u20769 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:1963px;
  4531. top:412px;
  4532. width:49px;
  4533. height:30px;
  4534. display:flex;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. line-height:30px;
  4540. }
  4541. #u20769 .text {
  4542. position:absolute;
  4543. align-self:flex-start;
  4544. padding:0px 0px 0px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u20769_text {
  4549. border-width:0px;
  4550. white-space:nowrap;
  4551. text-transform:none;
  4552. }
  4553. #u20770_div {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:104px;
  4559. height:17px;
  4560. background:inherit;
  4561. background-color:rgba(255, 255, 255, 0);
  4562. border:none;
  4563. border-radius:0px;
  4564. -moz-box-shadow:none;
  4565. -webkit-box-shadow:none;
  4566. box-shadow:none;
  4567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:12px;
  4571. text-align:center;
  4572. }
  4573. #u20770 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:1935px;
  4577. top:471px;
  4578. width:104px;
  4579. height:17px;
  4580. display:flex;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:12px;
  4585. text-align:center;
  4586. }
  4587. #u20770 .text {
  4588. position:absolute;
  4589. align-self:flex-start;
  4590. padding:0px 0px 0px 0px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u20770_text {
  4595. border-width:0px;
  4596. white-space:nowrap;
  4597. text-transform:none;
  4598. }
  4599. #u20771 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:0px;
  4605. height:0px;
  4606. }
  4607. #u20772_img {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:10px;
  4613. height:10px;
  4614. }
  4615. #u20772 {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:3062px;
  4619. top:451px;
  4620. width:10px;
  4621. height:10px;
  4622. display:flex;
  4623. font-size:12px;
  4624. }
  4625. #u20772 .text {
  4626. position:absolute;
  4627. align-self:center;
  4628. padding:2px 2px 2px 2px;
  4629. box-sizing:border-box;
  4630. width:100%;
  4631. }
  4632. #u20772_text {
  4633. border-width:0px;
  4634. word-wrap:break-word;
  4635. text-transform:none;
  4636. visibility:hidden;
  4637. }
  4638. #u20773_div {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:49px;
  4644. height:30px;
  4645. background:inherit;
  4646. background-color:rgba(255, 255, 255, 0);
  4647. border:none;
  4648. border-radius:0px;
  4649. -moz-box-shadow:none;
  4650. -webkit-box-shadow:none;
  4651. box-shadow:none;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:12px;
  4656. line-height:30px;
  4657. }
  4658. #u20773 {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:3043px;
  4662. top:417px;
  4663. width:49px;
  4664. height:30px;
  4665. display:flex;
  4666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4667. font-weight:400;
  4668. font-style:normal;
  4669. font-size:12px;
  4670. line-height:30px;
  4671. }
  4672. #u20773 .text {
  4673. position:absolute;
  4674. align-self:flex-start;
  4675. padding:0px 0px 0px 0px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u20773_text {
  4680. border-width:0px;
  4681. white-space:nowrap;
  4682. text-transform:none;
  4683. }
  4684. #u20774_div {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:102px;
  4690. height:17px;
  4691. background:inherit;
  4692. background-color:rgba(255, 255, 255, 0);
  4693. border:none;
  4694. border-radius:0px;
  4695. -moz-box-shadow:none;
  4696. -webkit-box-shadow:none;
  4697. box-shadow:none;
  4698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:12px;
  4702. text-align:center;
  4703. }
  4704. #u20774 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:3016px;
  4708. top:466px;
  4709. width:102px;
  4710. height:17px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:12px;
  4716. text-align:center;
  4717. }
  4718. #u20774 .text {
  4719. position:absolute;
  4720. align-self:flex-start;
  4721. padding:0px 0px 0px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u20774_text {
  4726. border-width:0px;
  4727. white-space:nowrap;
  4728. text-transform:none;
  4729. }
  4730. #u20775 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:0px;
  4736. height:0px;
  4737. }
  4738. #u20776_img {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:10px;
  4744. height:10px;
  4745. }
  4746. #u20776 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:2879px;
  4750. top:451px;
  4751. width:10px;
  4752. height:10px;
  4753. display:flex;
  4754. font-size:12px;
  4755. }
  4756. #u20776 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:2px 2px 2px 2px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u20776_text {
  4764. border-width:0px;
  4765. word-wrap:break-word;
  4766. text-transform:none;
  4767. visibility:hidden;
  4768. }
  4769. #u20777_div {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:49px;
  4775. height:30px;
  4776. background:inherit;
  4777. background-color:rgba(255, 255, 255, 0);
  4778. border:none;
  4779. border-radius:0px;
  4780. -moz-box-shadow:none;
  4781. -webkit-box-shadow:none;
  4782. box-shadow:none;
  4783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4784. font-weight:400;
  4785. font-style:normal;
  4786. font-size:12px;
  4787. line-height:30px;
  4788. }
  4789. #u20777 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:2860px;
  4793. top:417px;
  4794. width:49px;
  4795. height:30px;
  4796. display:flex;
  4797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. font-size:12px;
  4801. line-height:30px;
  4802. }
  4803. #u20777 .text {
  4804. position:absolute;
  4805. align-self:flex-start;
  4806. padding:0px 0px 0px 0px;
  4807. box-sizing:border-box;
  4808. width:100%;
  4809. }
  4810. #u20777_text {
  4811. border-width:0px;
  4812. white-space:nowrap;
  4813. text-transform:none;
  4814. }
  4815. #u20778_div {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:102px;
  4821. height:17px;
  4822. background:inherit;
  4823. background-color:rgba(255, 255, 255, 0);
  4824. border:none;
  4825. border-radius:0px;
  4826. -moz-box-shadow:none;
  4827. -webkit-box-shadow:none;
  4828. box-shadow:none;
  4829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4830. font-weight:400;
  4831. font-style:normal;
  4832. font-size:12px;
  4833. text-align:center;
  4834. }
  4835. #u20778 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:2833px;
  4839. top:471px;
  4840. width:102px;
  4841. height:17px;
  4842. display:flex;
  4843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:12px;
  4847. text-align:center;
  4848. }
  4849. #u20778 .text {
  4850. position:absolute;
  4851. align-self:flex-start;
  4852. padding:0px 0px 0px 0px;
  4853. box-sizing:border-box;
  4854. width:100%;
  4855. }
  4856. #u20778_text {
  4857. border-width:0px;
  4858. white-space:nowrap;
  4859. text-transform:none;
  4860. }
  4861. #u20779_div {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:117px;
  4867. height:30px;
  4868. background:inherit;
  4869. background-color:rgba(255, 255, 255, 0);
  4870. border:none;
  4871. border-radius:0px;
  4872. -moz-box-shadow:none;
  4873. -webkit-box-shadow:none;
  4874. box-shadow:none;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#0089FE;
  4880. text-align:center;
  4881. line-height:30px;
  4882. }
  4883. #u20779 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:1929px;
  4887. top:488px;
  4888. width:117px;
  4889. height:30px;
  4890. display:flex;
  4891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. font-size:12px;
  4895. color:#0089FE;
  4896. text-align:center;
  4897. line-height:30px;
  4898. }
  4899. #u20779 .text {
  4900. position:absolute;
  4901. align-self:flex-start;
  4902. padding:0px 0px 0px 0px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u20779_text {
  4907. border-width:0px;
  4908. white-space:nowrap;
  4909. text-transform:none;
  4910. }
  4911. #u20780_div {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:0px;
  4915. top:0px;
  4916. width:49px;
  4917. height:30px;
  4918. background:inherit;
  4919. background-color:rgba(255, 255, 255, 0);
  4920. border:none;
  4921. border-radius:0px;
  4922. -moz-box-shadow:none;
  4923. -webkit-box-shadow:none;
  4924. box-shadow:none;
  4925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:12px;
  4929. color:#0089FE;
  4930. text-align:center;
  4931. line-height:30px;
  4932. }
  4933. #u20780 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:2856px;
  4937. top:488px;
  4938. width:49px;
  4939. height:30px;
  4940. display:flex;
  4941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4942. font-weight:400;
  4943. font-style:normal;
  4944. font-size:12px;
  4945. color:#0089FE;
  4946. text-align:center;
  4947. line-height:30px;
  4948. }
  4949. #u20780 .text {
  4950. position:absolute;
  4951. align-self:flex-start;
  4952. padding:0px 0px 0px 0px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u20780_text {
  4957. border-width:0px;
  4958. white-space:nowrap;
  4959. text-transform:none;
  4960. }
  4961. #u20781_div {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:117px;
  4967. height:30px;
  4968. background:inherit;
  4969. background-color:rgba(255, 255, 255, 0);
  4970. border:none;
  4971. border-radius:0px;
  4972. -moz-box-shadow:none;
  4973. -webkit-box-shadow:none;
  4974. box-shadow:none;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:12px;
  4979. color:#0089FE;
  4980. text-align:center;
  4981. line-height:30px;
  4982. }
  4983. #u20781 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:3009px;
  4987. top:487px;
  4988. width:117px;
  4989. height:30px;
  4990. display:flex;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:12px;
  4995. color:#0089FE;
  4996. text-align:center;
  4997. line-height:30px;
  4998. }
  4999. #u20781 .text {
  5000. position:absolute;
  5001. align-self:flex-start;
  5002. padding:0px 0px 0px 0px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u20781_text {
  5007. border-width:0px;
  5008. white-space:nowrap;
  5009. text-transform:none;
  5010. }
  5011. #u20782 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:0px;
  5017. height:0px;
  5018. }
  5019. #u20783_img {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:10px;
  5025. height:10px;
  5026. }
  5027. #u20783 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:2162px;
  5031. top:451px;
  5032. width:10px;
  5033. height:10px;
  5034. display:flex;
  5035. font-size:12px;
  5036. }
  5037. #u20783 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 2px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u20783_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u20784_div {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:49px;
  5056. height:30px;
  5057. background:inherit;
  5058. background-color:rgba(255, 255, 255, 0);
  5059. border:none;
  5060. border-radius:0px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:12px;
  5068. line-height:30px;
  5069. }
  5070. #u20784 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:2143px;
  5074. top:412px;
  5075. width:49px;
  5076. height:30px;
  5077. display:flex;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:12px;
  5082. line-height:30px;
  5083. }
  5084. #u20784 .text {
  5085. position:absolute;
  5086. align-self:flex-start;
  5087. padding:0px 0px 0px 0px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u20784_text {
  5092. border-width:0px;
  5093. white-space:nowrap;
  5094. text-transform:none;
  5095. }
  5096. #u20785_div {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:104px;
  5102. height:17px;
  5103. background:inherit;
  5104. background-color:rgba(255, 255, 255, 0);
  5105. border:none;
  5106. border-radius:0px;
  5107. -moz-box-shadow:none;
  5108. -webkit-box-shadow:none;
  5109. box-shadow:none;
  5110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5111. font-weight:400;
  5112. font-style:normal;
  5113. font-size:12px;
  5114. text-align:center;
  5115. }
  5116. #u20785 {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:2115px;
  5120. top:471px;
  5121. width:104px;
  5122. height:17px;
  5123. display:flex;
  5124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5125. font-weight:400;
  5126. font-style:normal;
  5127. font-size:12px;
  5128. text-align:center;
  5129. }
  5130. #u20785 .text {
  5131. position:absolute;
  5132. align-self:flex-start;
  5133. padding:0px 0px 0px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u20785_text {
  5138. border-width:0px;
  5139. white-space:nowrap;
  5140. text-transform:none;
  5141. }
  5142. #u20786_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:144px;
  5148. height:30px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 0);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:12px;
  5160. color:#0089FE;
  5161. text-align:center;
  5162. line-height:30px;
  5163. }
  5164. #u20786 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:2095px;
  5168. top:488px;
  5169. width:144px;
  5170. height:30px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:12px;
  5176. color:#0089FE;
  5177. text-align:center;
  5178. line-height:30px;
  5179. }
  5180. #u20786 .text {
  5181. position:absolute;
  5182. align-self:flex-start;
  5183. padding:0px 0px 0px 0px;
  5184. box-sizing:border-box;
  5185. width:100%;
  5186. }
  5187. #u20786_text {
  5188. border-width:0px;
  5189. white-space:nowrap;
  5190. text-transform:none;
  5191. }
  5192. #u20787 {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:0px;
  5198. height:0px;
  5199. }
  5200. #u20788_img {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:10px;
  5206. height:10px;
  5207. }
  5208. #u20788 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:2342px;
  5212. top:451px;
  5213. width:10px;
  5214. height:10px;
  5215. display:flex;
  5216. font-size:12px;
  5217. }
  5218. #u20788 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:2px 2px 2px 2px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u20788_text {
  5226. border-width:0px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. visibility:hidden;
  5230. }
  5231. #u20789_div {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:73px;
  5237. height:30px;
  5238. background:inherit;
  5239. background-color:rgba(255, 255, 255, 0);
  5240. border:none;
  5241. border-radius:0px;
  5242. -moz-box-shadow:none;
  5243. -webkit-box-shadow:none;
  5244. box-shadow:none;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:12px;
  5249. line-height:30px;
  5250. }
  5251. #u20789 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:2311px;
  5255. top:412px;
  5256. width:73px;
  5257. height:30px;
  5258. display:flex;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:12px;
  5263. line-height:30px;
  5264. }
  5265. #u20789 .text {
  5266. position:absolute;
  5267. align-self:flex-start;
  5268. padding:0px 0px 0px 0px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u20789_text {
  5273. border-width:0px;
  5274. white-space:nowrap;
  5275. text-transform:none;
  5276. }
  5277. #u20790_div {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:107px;
  5283. height:17px;
  5284. background:inherit;
  5285. background-color:rgba(255, 255, 255, 0);
  5286. border:none;
  5287. border-radius:0px;
  5288. -moz-box-shadow:none;
  5289. -webkit-box-shadow:none;
  5290. box-shadow:none;
  5291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5292. font-weight:400;
  5293. font-style:normal;
  5294. font-size:12px;
  5295. text-align:center;
  5296. }
  5297. #u20790 {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:2294px;
  5301. top:471px;
  5302. width:107px;
  5303. height:17px;
  5304. display:flex;
  5305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5306. font-weight:400;
  5307. font-style:normal;
  5308. font-size:12px;
  5309. text-align:center;
  5310. }
  5311. #u20790 .text {
  5312. position:absolute;
  5313. align-self:flex-start;
  5314. padding:0px 0px 0px 0px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u20790_text {
  5319. border-width:0px;
  5320. white-space:nowrap;
  5321. text-transform:none;
  5322. }
  5323. #u20791_div {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:80px;
  5329. height:30px;
  5330. background:inherit;
  5331. background-color:rgba(255, 255, 255, 0);
  5332. border:none;
  5333. border-radius:0px;
  5334. -moz-box-shadow:none;
  5335. -webkit-box-shadow:none;
  5336. box-shadow:none;
  5337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:12px;
  5341. color:#0089FE;
  5342. text-align:center;
  5343. line-height:30px;
  5344. }
  5345. #u20791 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:2311px;
  5349. top:488px;
  5350. width:80px;
  5351. height:30px;
  5352. display:flex;
  5353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5354. font-weight:400;
  5355. font-style:normal;
  5356. font-size:12px;
  5357. color:#0089FE;
  5358. text-align:center;
  5359. line-height:30px;
  5360. }
  5361. #u20791 .text {
  5362. position:absolute;
  5363. align-self:flex-start;
  5364. padding:0px 0px 0px 0px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u20791_text {
  5369. border-width:0px;
  5370. white-space:nowrap;
  5371. text-transform:none;
  5372. }
  5373. #u20792 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:0px;
  5379. height:0px;
  5380. }
  5381. #u20793_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:10px;
  5387. height:10px;
  5388. }
  5389. #u20793 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:2522px;
  5393. top:451px;
  5394. width:10px;
  5395. height:10px;
  5396. display:flex;
  5397. font-size:12px;
  5398. }
  5399. #u20793 .text {
  5400. position:absolute;
  5401. align-self:center;
  5402. padding:2px 2px 2px 2px;
  5403. box-sizing:border-box;
  5404. width:100%;
  5405. }
  5406. #u20793_text {
  5407. border-width:0px;
  5408. word-wrap:break-word;
  5409. text-transform:none;
  5410. visibility:hidden;
  5411. }
  5412. #u20794_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:73px;
  5418. height:30px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 0);
  5421. border:none;
  5422. border-radius:0px;
  5423. -moz-box-shadow:none;
  5424. -webkit-box-shadow:none;
  5425. box-shadow:none;
  5426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:12px;
  5430. line-height:30px;
  5431. }
  5432. #u20794 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:2491px;
  5436. top:412px;
  5437. width:73px;
  5438. height:30px;
  5439. display:flex;
  5440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:12px;
  5444. line-height:30px;
  5445. }
  5446. #u20794 .text {
  5447. position:absolute;
  5448. align-self:flex-start;
  5449. padding:0px 0px 0px 0px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u20794_text {
  5454. border-width:0px;
  5455. white-space:nowrap;
  5456. text-transform:none;
  5457. }
  5458. #u20795_div {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:99px;
  5464. height:17px;
  5465. background:inherit;
  5466. background-color:rgba(255, 255, 255, 0);
  5467. border:none;
  5468. border-radius:0px;
  5469. -moz-box-shadow:none;
  5470. -webkit-box-shadow:none;
  5471. box-shadow:none;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:12px;
  5476. text-align:center;
  5477. }
  5478. #u20795 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:2478px;
  5482. top:471px;
  5483. width:99px;
  5484. height:17px;
  5485. display:flex;
  5486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:12px;
  5490. text-align:center;
  5491. }
  5492. #u20795 .text {
  5493. position:absolute;
  5494. align-self:flex-start;
  5495. padding:0px 0px 0px 0px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u20795_text {
  5500. border-width:0px;
  5501. white-space:nowrap;
  5502. text-transform:none;
  5503. }
  5504. #u20796_div {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:0px;
  5508. top:0px;
  5509. width:80px;
  5510. height:30px;
  5511. background:inherit;
  5512. background-color:rgba(255, 255, 255, 0);
  5513. border:none;
  5514. border-radius:0px;
  5515. -moz-box-shadow:none;
  5516. -webkit-box-shadow:none;
  5517. box-shadow:none;
  5518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:12px;
  5522. color:#0089FE;
  5523. text-align:center;
  5524. line-height:30px;
  5525. }
  5526. #u20796 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:2487px;
  5530. top:488px;
  5531. width:80px;
  5532. height:30px;
  5533. display:flex;
  5534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5535. font-weight:400;
  5536. font-style:normal;
  5537. font-size:12px;
  5538. color:#0089FE;
  5539. text-align:center;
  5540. line-height:30px;
  5541. }
  5542. #u20796 .text {
  5543. position:absolute;
  5544. align-self:flex-start;
  5545. padding:0px 0px 0px 0px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u20796_text {
  5550. border-width:0px;
  5551. white-space:nowrap;
  5552. text-transform:none;
  5553. }
  5554. #u20797 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:0px;
  5560. height:0px;
  5561. }
  5562. #u20798_img {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:10px;
  5568. height:10px;
  5569. }
  5570. #u20798 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:2688px;
  5574. top:451px;
  5575. width:10px;
  5576. height:10px;
  5577. display:flex;
  5578. font-size:12px;
  5579. }
  5580. #u20798 .text {
  5581. position:absolute;
  5582. align-self:center;
  5583. padding:2px 2px 2px 2px;
  5584. box-sizing:border-box;
  5585. width:100%;
  5586. }
  5587. #u20798_text {
  5588. border-width:0px;
  5589. word-wrap:break-word;
  5590. text-transform:none;
  5591. visibility:hidden;
  5592. }
  5593. #u20799_div {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:49px;
  5599. height:30px;
  5600. background:inherit;
  5601. background-color:rgba(255, 255, 255, 0);
  5602. border:none;
  5603. border-radius:0px;
  5604. -moz-box-shadow:none;
  5605. -webkit-box-shadow:none;
  5606. box-shadow:none;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. font-size:12px;
  5611. line-height:30px;
  5612. }
  5613. #u20799 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:2669px;
  5617. top:417px;
  5618. width:49px;
  5619. height:30px;
  5620. display:flex;
  5621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:12px;
  5625. line-height:30px;
  5626. }
  5627. #u20799 .text {
  5628. position:absolute;
  5629. align-self:flex-start;
  5630. padding:0px 0px 0px 0px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u20799_text {
  5635. border-width:0px;
  5636. white-space:nowrap;
  5637. text-transform:none;
  5638. }
  5639. #u20800_div {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:102px;
  5645. height:17px;
  5646. background:inherit;
  5647. background-color:rgba(255, 255, 255, 0);
  5648. border:none;
  5649. border-radius:0px;
  5650. -moz-box-shadow:none;
  5651. -webkit-box-shadow:none;
  5652. box-shadow:none;
  5653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5654. font-weight:400;
  5655. font-style:normal;
  5656. font-size:12px;
  5657. text-align:center;
  5658. }
  5659. #u20800 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:2642px;
  5663. top:466px;
  5664. width:102px;
  5665. height:17px;
  5666. display:flex;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:12px;
  5671. text-align:center;
  5672. }
  5673. #u20800 .text {
  5674. position:absolute;
  5675. align-self:flex-start;
  5676. padding:0px 0px 0px 0px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u20800_text {
  5681. border-width:0px;
  5682. white-space:nowrap;
  5683. text-transform:none;
  5684. }
  5685. #u20801_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:144px;
  5691. height:30px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 0);
  5694. border:none;
  5695. border-radius:0px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:12px;
  5703. color:#0089FE;
  5704. text-align:center;
  5705. line-height:30px;
  5706. }
  5707. #u20801 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:2621px;
  5711. top:487px;
  5712. width:144px;
  5713. height:30px;
  5714. display:flex;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:12px;
  5719. color:#0089FE;
  5720. text-align:center;
  5721. line-height:30px;
  5722. }
  5723. #u20801 .text {
  5724. position:absolute;
  5725. align-self:flex-start;
  5726. padding:0px 0px 0px 0px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u20801_text {
  5731. border-width:0px;
  5732. white-space:nowrap;
  5733. text-transform:none;
  5734. }
  5735. #u20802_div {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:0px;
  5739. top:0px;
  5740. width:280px;
  5741. height:25px;
  5742. background:inherit;
  5743. background-color:rgba(255, 255, 255, 0);
  5744. box-sizing:border-box;
  5745. border-width:2px;
  5746. border-style:solid;
  5747. border-color:rgba(0, 0, 0, 1);
  5748. border-top:0px;
  5749. border-right:0px;
  5750. border-bottom:0px;
  5751. border-radius:0px;
  5752. border-top-left-radius:0px;
  5753. border-bottom-left-radius:0px;
  5754. -moz-box-shadow:none;
  5755. -webkit-box-shadow:none;
  5756. box-shadow:none;
  5757. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5758. font-weight:500;
  5759. font-style:normal;
  5760. font-size:18px;
  5761. color:#000000;
  5762. }
  5763. #u20802 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:1915px;
  5767. top:321px;
  5768. width:280px;
  5769. height:25px;
  5770. display:flex;
  5771. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5772. font-weight:500;
  5773. font-style:normal;
  5774. font-size:18px;
  5775. color:#000000;
  5776. }
  5777. #u20802 .text {
  5778. position:absolute;
  5779. align-self:flex-start;
  5780. padding:0px 0px 0px 10px;
  5781. box-sizing:border-box;
  5782. width:100%;
  5783. }
  5784. #u20802_text {
  5785. border-width:0px;
  5786. word-wrap:break-word;
  5787. text-transform:none;
  5788. }
  5789. #u20803 {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:0px;
  5795. height:0px;
  5796. }
  5797. #u20804_div {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:1243px;
  5803. height:140px;
  5804. background:inherit;
  5805. background-color:rgba(242, 242, 242, 0.450980392156863);
  5806. border:none;
  5807. border-radius:0px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. }
  5812. #u20804 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:1915px;
  5816. top:528px;
  5817. width:1243px;
  5818. height:140px;
  5819. display:flex;
  5820. }
  5821. #u20804 .text {
  5822. position:absolute;
  5823. align-self:center;
  5824. padding:2px 2px 2px 2px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u20804_text {
  5829. border-width:0px;
  5830. word-wrap:break-word;
  5831. text-transform:none;
  5832. visibility:hidden;
  5833. }
  5834. #u20805_div {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:57px;
  5840. height:30px;
  5841. background:inherit;
  5842. background-color:rgba(255, 255, 255, 0);
  5843. border:none;
  5844. border-radius:0px;
  5845. -moz-box-shadow:none;
  5846. -webkit-box-shadow:none;
  5847. box-shadow:none;
  5848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5849. font-weight:500;
  5850. font-style:normal;
  5851. line-height:30px;
  5852. }
  5853. #u20805 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:1929px;
  5857. top:543px;
  5858. width:57px;
  5859. height:30px;
  5860. display:flex;
  5861. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5862. font-weight:500;
  5863. font-style:normal;
  5864. line-height:30px;
  5865. }
  5866. #u20805 .text {
  5867. position:absolute;
  5868. align-self:flex-start;
  5869. padding:0px 0px 0px 0px;
  5870. box-sizing:border-box;
  5871. width:100%;
  5872. }
  5873. #u20805_text {
  5874. border-width:0px;
  5875. white-space:nowrap;
  5876. text-transform:none;
  5877. }
  5878. #u20806_div {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:0px;
  5882. top:0px;
  5883. width:280px;
  5884. height:30px;
  5885. background:inherit;
  5886. background-color:rgba(255, 255, 255, 0);
  5887. border:none;
  5888. border-radius:0px;
  5889. -moz-box-shadow:none;
  5890. -webkit-box-shadow:none;
  5891. box-shadow:none;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. line-height:30px;
  5896. }
  5897. #u20806 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:2878px;
  5901. top:578px;
  5902. width:280px;
  5903. height:30px;
  5904. display:flex;
  5905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. line-height:30px;
  5909. }
  5910. #u20806 .text {
  5911. position:absolute;
  5912. align-self:flex-start;
  5913. padding:0px 0px 0px 0px;
  5914. box-sizing:border-box;
  5915. width:100%;
  5916. }
  5917. #u20806_text {
  5918. border-width:0px;
  5919. word-wrap:break-word;
  5920. text-transform:none;
  5921. }
  5922. #u20807_div {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:280px;
  5928. height:30px;
  5929. background:inherit;
  5930. background-color:rgba(255, 255, 255, 0);
  5931. border:none;
  5932. border-radius:0px;
  5933. -moz-box-shadow:none;
  5934. -webkit-box-shadow:none;
  5935. box-shadow:none;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. line-height:30px;
  5940. }
  5941. #u20807 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:1935px;
  5945. top:618px;
  5946. width:280px;
  5947. height:30px;
  5948. display:flex;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. line-height:30px;
  5953. }
  5954. #u20807 .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. #u20807_text {
  5962. border-width:0px;
  5963. word-wrap:break-word;
  5964. text-transform:none;
  5965. }
  5966. #u20808_div {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:280px;
  5972. height:30px;
  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. line-height:30px;
  5984. }
  5985. #u20808 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:2249px;
  5989. top:618px;
  5990. width:280px;
  5991. height:30px;
  5992. display:flex;
  5993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. line-height:30px;
  5997. }
  5998. #u20808 .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. #u20808_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. }
  6010. #u20809_div {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:280px;
  6016. height:30px;
  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. line-height:30px;
  6028. }
  6029. #u20809 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:2564px;
  6033. top:618px;
  6034. width:280px;
  6035. height:30px;
  6036. display:flex;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. line-height:30px;
  6041. }
  6042. #u20809 .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. #u20809_text {
  6050. border-width:0px;
  6051. word-wrap:break-word;
  6052. text-transform:none;
  6053. }
  6054. #u20810_div {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:0px;
  6058. top:0px;
  6059. width:280px;
  6060. height:30px;
  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-style:normal;
  6070. line-height:30px;
  6071. }
  6072. #u20810 {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:2878px;
  6076. top:618px;
  6077. width:280px;
  6078. height:30px;
  6079. display:flex;
  6080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6081. font-style:normal;
  6082. line-height:30px;
  6083. }
  6084. #u20810 .text {
  6085. position:absolute;
  6086. align-self:flex-start;
  6087. padding:0px 0px 0px 0px;
  6088. box-sizing:border-box;
  6089. width:100%;
  6090. }
  6091. #u20810_text {
  6092. border-width:0px;
  6093. word-wrap:break-word;
  6094. text-transform:none;
  6095. }
  6096. #u20811_div {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:280px;
  6102. height:30px;
  6103. background:inherit;
  6104. background-color:rgba(255, 255, 255, 0);
  6105. border:none;
  6106. border-radius:0px;
  6107. -moz-box-shadow:none;
  6108. -webkit-box-shadow:none;
  6109. box-shadow:none;
  6110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. line-height:30px;
  6114. }
  6115. #u20811 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:1935px;
  6119. top:578px;
  6120. width:280px;
  6121. height:30px;
  6122. display:flex;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. line-height:30px;
  6127. }
  6128. #u20811 .text {
  6129. position:absolute;
  6130. align-self:flex-start;
  6131. padding:0px 0px 0px 0px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u20811_text {
  6136. border-width:0px;
  6137. word-wrap:break-word;
  6138. text-transform:none;
  6139. }
  6140. #u20812_div {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:280px;
  6146. height:30px;
  6147. background:inherit;
  6148. background-color:rgba(255, 255, 255, 0);
  6149. border:none;
  6150. border-radius:0px;
  6151. -moz-box-shadow:none;
  6152. -webkit-box-shadow:none;
  6153. box-shadow:none;
  6154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6155. font-weight:400;
  6156. font-style:normal;
  6157. line-height:30px;
  6158. }
  6159. #u20812 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:2564px;
  6163. top:578px;
  6164. width:280px;
  6165. height:30px;
  6166. display:flex;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. line-height:30px;
  6171. }
  6172. #u20812 .text {
  6173. position:absolute;
  6174. align-self:flex-start;
  6175. padding:0px 0px 0px 0px;
  6176. box-sizing:border-box;
  6177. width:100%;
  6178. }
  6179. #u20812_text {
  6180. border-width:0px;
  6181. word-wrap:break-word;
  6182. text-transform:none;
  6183. }
  6184. #u20813_div {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:280px;
  6190. height:30px;
  6191. background:inherit;
  6192. background-color:rgba(255, 255, 255, 0);
  6193. border:none;
  6194. border-radius:0px;
  6195. -moz-box-shadow:none;
  6196. -webkit-box-shadow:none;
  6197. box-shadow:none;
  6198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6199. font-weight:400;
  6200. font-style:normal;
  6201. line-height:30px;
  6202. }
  6203. #u20813 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:2249px;
  6207. top:578px;
  6208. width:280px;
  6209. height:30px;
  6210. display:flex;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. line-height:30px;
  6215. }
  6216. #u20813 .text {
  6217. position:absolute;
  6218. align-self:flex-start;
  6219. padding:0px 0px 0px 0px;
  6220. box-sizing:border-box;
  6221. width:100%;
  6222. }
  6223. #u20813_text {
  6224. border-width:0px;
  6225. word-wrap:break-word;
  6226. text-transform:none;
  6227. }
  6228. #u20814_div {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:73px;
  6234. height:30px;
  6235. background:inherit;
  6236. background-color:rgba(255, 255, 255, 0);
  6237. border:none;
  6238. border-radius:0px;
  6239. -moz-box-shadow:none;
  6240. -webkit-box-shadow:none;
  6241. box-shadow:none;
  6242. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6243. font-weight:500;
  6244. font-style:normal;
  6245. font-size:18px;
  6246. line-height:30px;
  6247. }
  6248. #u20814 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:1915px;
  6252. top:688px;
  6253. width:73px;
  6254. height:30px;
  6255. display:flex;
  6256. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6257. font-weight:500;
  6258. font-style:normal;
  6259. font-size:18px;
  6260. line-height:30px;
  6261. }
  6262. #u20814 .text {
  6263. position:absolute;
  6264. align-self:flex-start;
  6265. padding:0px 0px 0px 0px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u20814_text {
  6270. border-width:0px;
  6271. white-space:nowrap;
  6272. text-transform:none;
  6273. }
  6274. #u20815 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:1915px;
  6278. top:728px;
  6279. width:1243px;
  6280. height:118px;
  6281. }
  6282. #u20816_img {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:249px;
  6288. height:40px;
  6289. }
  6290. #u20816 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:249px;
  6296. height:40px;
  6297. display:flex;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:14px;
  6302. color:#FFFFFF;
  6303. }
  6304. #u20816 .text {
  6305. position:absolute;
  6306. align-self:center;
  6307. padding:2px 2px 2px 2px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u20816_text {
  6312. border-width:0px;
  6313. word-wrap:break-word;
  6314. text-transform:none;
  6315. }
  6316. #u20817_img {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:249px;
  6322. height:40px;
  6323. }
  6324. #u20817 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:249px;
  6328. top:0px;
  6329. width:249px;
  6330. height:40px;
  6331. display:flex;
  6332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:14px;
  6336. color:#FFFFFF;
  6337. }
  6338. #u20817 .text {
  6339. position:absolute;
  6340. align-self:center;
  6341. padding:2px 2px 2px 2px;
  6342. box-sizing:border-box;
  6343. width:100%;
  6344. }
  6345. #u20817_text {
  6346. border-width:0px;
  6347. word-wrap:break-word;
  6348. text-transform:none;
  6349. }
  6350. #u20818_img {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:0px;
  6354. top:0px;
  6355. width:249px;
  6356. height:40px;
  6357. }
  6358. #u20818 {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:498px;
  6362. top:0px;
  6363. width:249px;
  6364. height:40px;
  6365. display:flex;
  6366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6367. font-weight:400;
  6368. font-style:normal;
  6369. font-size:14px;
  6370. color:#FFFFFF;
  6371. }
  6372. #u20818 .text {
  6373. position:absolute;
  6374. align-self:center;
  6375. padding:2px 2px 2px 2px;
  6376. box-sizing:border-box;
  6377. width:100%;
  6378. }
  6379. #u20818_text {
  6380. border-width:0px;
  6381. word-wrap:break-word;
  6382. text-transform:none;
  6383. }
  6384. #u20819_img {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:249px;
  6390. height:40px;
  6391. }
  6392. #u20819 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:747px;
  6396. top:0px;
  6397. width:249px;
  6398. height:40px;
  6399. display:flex;
  6400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6401. font-weight:400;
  6402. font-style:normal;
  6403. font-size:14px;
  6404. color:#FFFFFF;
  6405. }
  6406. #u20819 .text {
  6407. position:absolute;
  6408. align-self:center;
  6409. padding:2px 2px 2px 2px;
  6410. box-sizing:border-box;
  6411. width:100%;
  6412. }
  6413. #u20819_text {
  6414. border-width:0px;
  6415. word-wrap:break-word;
  6416. text-transform:none;
  6417. }
  6418. #u20820_img {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:247px;
  6424. height:40px;
  6425. }
  6426. #u20820 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:996px;
  6430. top:0px;
  6431. width:247px;
  6432. height:40px;
  6433. display:flex;
  6434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:14px;
  6438. color:#FFFFFF;
  6439. }
  6440. #u20820 .text {
  6441. position:absolute;
  6442. align-self:center;
  6443. padding:2px 2px 2px 2px;
  6444. box-sizing:border-box;
  6445. width:100%;
  6446. }
  6447. #u20820_text {
  6448. border-width:0px;
  6449. word-wrap:break-word;
  6450. text-transform:none;
  6451. }
  6452. #u20821_img {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:249px;
  6458. height:40px;
  6459. }
  6460. #u20821 {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:40px;
  6465. width:249px;
  6466. height:40px;
  6467. display:flex;
  6468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6469. font-weight:400;
  6470. font-style:normal;
  6471. font-size:14px;
  6472. }
  6473. #u20821 .text {
  6474. position:absolute;
  6475. align-self:center;
  6476. padding:2px 2px 2px 2px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u20821_text {
  6481. border-width:0px;
  6482. word-wrap:break-word;
  6483. text-transform:none;
  6484. }
  6485. #u20822_img {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:0px;
  6489. top:0px;
  6490. width:249px;
  6491. height:40px;
  6492. }
  6493. #u20822 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:249px;
  6497. top:40px;
  6498. width:249px;
  6499. height:40px;
  6500. display:flex;
  6501. font-size:14px;
  6502. }
  6503. #u20822 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 2px 2px 2px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u20822_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. }
  6515. #u20823_img {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:0px;
  6519. top:0px;
  6520. width:249px;
  6521. height:40px;
  6522. }
  6523. #u20823 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:498px;
  6527. top:40px;
  6528. width:249px;
  6529. height:40px;
  6530. display:flex;
  6531. font-size:14px;
  6532. }
  6533. #u20823 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u20823_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. }
  6545. #u20824_img {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:249px;
  6551. height:40px;
  6552. }
  6553. #u20824 {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:747px;
  6557. top:40px;
  6558. width:249px;
  6559. height:40px;
  6560. display:flex;
  6561. font-size:14px;
  6562. }
  6563. #u20824 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:2px 2px 2px 2px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u20824_text {
  6571. border-width:0px;
  6572. word-wrap:break-word;
  6573. text-transform:none;
  6574. }
  6575. #u20825_img {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:247px;
  6581. height:40px;
  6582. }
  6583. #u20825 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:996px;
  6587. top:40px;
  6588. width:247px;
  6589. height:40px;
  6590. display:flex;
  6591. font-size:14px;
  6592. }
  6593. #u20825 .text {
  6594. position:absolute;
  6595. align-self:center;
  6596. padding:2px 2px 2px 2px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u20825_text {
  6601. border-width:0px;
  6602. word-wrap:break-word;
  6603. text-transform:none;
  6604. }
  6605. #u20826_img {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:249px;
  6611. height:38px;
  6612. }
  6613. #u20826 {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:80px;
  6618. width:249px;
  6619. height:38px;
  6620. display:flex;
  6621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6622. font-weight:400;
  6623. font-style:normal;
  6624. font-size:14px;
  6625. color:#0099FF;
  6626. }
  6627. #u20826 .text {
  6628. position:absolute;
  6629. align-self:center;
  6630. padding:2px 2px 2px 2px;
  6631. box-sizing:border-box;
  6632. width:100%;
  6633. }
  6634. #u20826_text {
  6635. border-width:0px;
  6636. word-wrap:break-word;
  6637. text-transform:none;
  6638. visibility:hidden;
  6639. }
  6640. #u20827_img {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:0px;
  6644. top:0px;
  6645. width:249px;
  6646. height:38px;
  6647. }
  6648. #u20827 {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:249px;
  6652. top:80px;
  6653. width:249px;
  6654. height:38px;
  6655. display:flex;
  6656. font-size:14px;
  6657. color:#0099FF;
  6658. }
  6659. #u20827 .text {
  6660. position:absolute;
  6661. align-self:center;
  6662. padding:2px 2px 2px 2px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u20827_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. visibility:hidden;
  6671. }
  6672. #u20828_img {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:249px;
  6678. height:38px;
  6679. }
  6680. #u20828 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:498px;
  6684. top:80px;
  6685. width:249px;
  6686. height:38px;
  6687. display:flex;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:14px;
  6692. color:#0099FF;
  6693. }
  6694. #u20828 .text {
  6695. position:absolute;
  6696. align-self:center;
  6697. padding:2px 2px 2px 2px;
  6698. box-sizing:border-box;
  6699. width:100%;
  6700. }
  6701. #u20828_text {
  6702. border-width:0px;
  6703. word-wrap:break-word;
  6704. text-transform:none;
  6705. visibility:hidden;
  6706. }
  6707. #u20829_img {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:0px;
  6711. top:0px;
  6712. width:249px;
  6713. height:38px;
  6714. }
  6715. #u20829 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:747px;
  6719. top:80px;
  6720. width:249px;
  6721. height:38px;
  6722. display:flex;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:14px;
  6727. color:#0099FF;
  6728. }
  6729. #u20829 .text {
  6730. position:absolute;
  6731. align-self:center;
  6732. padding:2px 2px 2px 2px;
  6733. box-sizing:border-box;
  6734. width:100%;
  6735. }
  6736. #u20829_text {
  6737. border-width:0px;
  6738. word-wrap:break-word;
  6739. text-transform:none;
  6740. visibility:hidden;
  6741. }
  6742. #u20830_img {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:247px;
  6748. height:38px;
  6749. }
  6750. #u20830 {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:996px;
  6754. top:80px;
  6755. width:247px;
  6756. height:38px;
  6757. display:flex;
  6758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6759. font-weight:400;
  6760. font-style:normal;
  6761. font-size:14px;
  6762. color:#0099FF;
  6763. }
  6764. #u20830 .text {
  6765. position:absolute;
  6766. align-self:center;
  6767. padding:2px 2px 2px 2px;
  6768. box-sizing:border-box;
  6769. width:100%;
  6770. }
  6771. #u20830_text {
  6772. border-width:0px;
  6773. word-wrap:break-word;
  6774. text-transform:none;
  6775. }