styles.css 109 KB

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