styles.css 102 KB

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