index.vue 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972
  1. <template>
  2. <div class="app-container home index">
  3. <div>
  4. <el-row :gutter="20">
  5. <el-col :span="16">
  6. <el-col :span="24" style="padding-left: 0;padding-right: 0; border-radius: 10px;" >
  7. <div class="block_4 flex-col">
  8. <div class="group_2 flex-row justify-between">
  9. <img
  10. class="thumbnail_5"
  11. referrerpolicy="no-referrer"
  12. src="https://lanhu-oss-2537-2.lanhuapp.com/pszcoe3n1ol6darv33oo7yk46dkwxg567200e550-246c-41b3-9049-dfa3474dbd43"
  13. />
  14. <span class="text_3">告警内容统计</span>
  15. </div>
  16. <div class="group_3 flex-row">
  17. <div class="text-wrapper_1 flex-col justify-between">
  18. <span class="text_4">本月告警总数</span>
  19. <span class="text_5">17</span>
  20. <div style="display: flex; margin-top:20px;">
  21. <span class="text_14">较上月</span>
  22. <img
  23. class="thumbnail_6"
  24. referrerpolicy="no-referrer"
  25. src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
  26. />
  27. <span class="text_15">28%</span>
  28. </div>
  29. </div>
  30. <!-- <img
  31. class="image_2"
  32. referrerpolicy="no-referrer"
  33. src="https://lanhu-oss-2537-2.lanhuapp.com/ps7mxkzc5neit681xsy8xznba7hm35r4ttv08926882-7cd0-4694-a312-ebee13b874e7"
  34. /> -->
  35. <div class="text-wrapper_2 flex-col justify-between">
  36. <span class="text_6">越线告警</span>
  37. <span class="text_7">08</span>
  38. <div style="display: flex; margin-top:20px;">
  39. <span class="text_14">较上月</span>
  40. <img
  41. class="thumbnail_6"
  42. referrerpolicy="no-referrer"
  43. src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
  44. />
  45. <span class="text_15">28%</span>
  46. </div>
  47. </div>
  48. <div class="text-wrapper_3 flex-col justify-between">
  49. <span class="text_8">徘徊告警</span>
  50. <span class="text_9">06</span>
  51. <div style="display: flex; margin-top:20px;">
  52. <span class="text_14">较上月</span>
  53. <img
  54. class="thumbnail_6"
  55. referrerpolicy="no-referrer"
  56. src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
  57. />
  58. <span class="text_15">28%</span>
  59. </div>
  60. </div>
  61. <div class="text-wrapper_4 flex-col justify-between">
  62. <span class="text_10">陌生人告警</span>
  63. <span class="text_11">02</span>
  64. <div style="display: flex; margin-top:20px;">
  65. <span class="text_14">较上月</span>
  66. <img
  67. class="thumbnail_6"
  68. referrerpolicy="no-referrer"
  69. src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
  70. />
  71. <span class="text_15">28%</span>
  72. </div>
  73. </div>
  74. <div class="text-wrapper_5 flex-col justify-between">
  75. <span class="text_12">火焰/烟雾告警</span>
  76. <span class="text_13">01</span>
  77. <div style="display: flex; margin-top:20px;">
  78. <span class="text_14">较上月</span>
  79. <img
  80. class="thumbnail_6"
  81. referrerpolicy="no-referrer"
  82. src="https://lanhu-oss-2537-2.lanhuapp.com/pszkc6daufldtde73fdjkalphsh76mlo57ed58e47ba-0deb-4ffd-9e4e-86592762cdf6"
  83. />
  84. <span class="text_15">28%</span>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. </el-col>
  90. <el-col :span="24" style="padding-left: 0;padding-right: 0; border-radius: 10px;" >
  91. <div class="group_5 flex-col">
  92. <div class="group_6 flex-row" style="justify-content: space-between;">
  93. <div class="flex-row">
  94. <img
  95. class="thumbnail_19"
  96. referrerpolicy="no-referrer"
  97. src="https://lanhu-oss-2537-2.lanhuapp.com/psu3p9pm6jypghx3f47jgjfy30ja3ykbq35346262-3398-4814-a521-bc9ac3e30ac7"
  98. />
  99. <span class="text_30">年度告警统计</span>
  100. <div class="section_1 flex-row">
  101. <span class="text_31">越线告警</span>
  102. <img
  103. class="thumbnail_20"
  104. referrerpolicy="no-referrer"
  105. src="https://lanhu-oss-2537-2.lanhuapp.com/psfm47lo8z2nwf9tptn20pziqjiho31pmd4090dc3-6956-408d-97cc-9432a673c69d"
  106. />
  107. </div>
  108. </div>
  109. <span class="text_32">查看更多&nbsp;→</span>
  110. </div>
  111. <div class="group_7 flex-row" style="justify-content: space-between;">
  112. <span class="text_33">2025年</span>
  113. <div class="flex-row">
  114. <div class="flex-row">
  115. <div class="box_5 flex-col"></div>
  116. <span class="text_34">告警总数</span>
  117. </div>
  118. <div class="flex-row">
  119. <div class="box_6 flex-col"></div>
  120. <span class="text_35">越线告警</span>
  121. </div>
  122. </div>
  123. <span class="text_36">告警数/件</span>
  124. </div>
  125. <div class="group_8 flex-row justify-between">
  126. <line-chart :chart-data="lineChartData" />
  127. </div>
  128. </div>
  129. </el-col>
  130. <el-col :span="12" style="padding-left: 0; border-radius: 10px; margin-top: 20px;" >
  131. <div class="box_7 flex-col">
  132. <div class="group_10 flex-row justify-between">
  133. <div class="image-text_1 flex-row justify-between">
  134. <img
  135. class="thumbnail_21"
  136. referrerpolicy="no-referrer"
  137. src="https://lanhu-oss-2537-2.lanhuapp.com/psz7ip3r1lx39ddipa4t9asue3nlgizcr2m69352d25-9d7b-4b5f-a116-a8b1a9c63bad"
  138. />
  139. <span class="text-group_1">告警内容分析</span>
  140. </div>
  141. <div class="group_11 flex-row">
  142. <div class="image-text_2 flex-row justify-between">
  143. <span class="text-group_2">2025</span>
  144. <img
  145. class="thumbnail_22"
  146. referrerpolicy="no-referrer"
  147. src="https://lanhu-oss-2537-2.lanhuapp.com/psddvdglysnl66rxvp2pzsrayivek3mvize28b1d838-4c12-4a87-b210-a41016d39338"
  148. />
  149. </div>
  150. </div>
  151. </div>
  152. <span class="text_51">烟雾告警</span>
  153. <div class="group_12 flex-row justify-between">
  154. <span class="text_52">越线告警</span>
  155. <img
  156. class="image_5"
  157. referrerpolicy="no-referrer"
  158. src="https://lanhu-oss-2537-2.lanhuapp.com/psl74u17tgk7nsrsy5bqoqo2tyzv1i3ws31f72a3a-f58e-48ac-878f-ee9ce9a87c15"
  159. />
  160. <span class="text_53">火焰告警</span>
  161. </div>
  162. <div class="text-wrapper_8 flex-row justify-between">
  163. <span class="text_54">徘徊告警</span>
  164. <span class="text_55">陌生人告警</span>
  165. </div>
  166. </div>
  167. </el-col>
  168. <el-col :span="12" style=" border-radius: 10px; padding-right: 0;margin-top: 20px;" >
  169. <div class="box_8 flex-col">
  170. <div class="block_7 flex-row justify-between">
  171. <div class="image-text_3 flex-row justify-between">
  172. <img
  173. class="thumbnail_23"
  174. referrerpolicy="no-referrer"
  175. src="https://lanhu-oss-2537-2.lanhuapp.com/psum99tr1vffjvtyeb4grcmlm3dnnjsksbd421be4-6aa6-46d8-b175-bb40b20e8992"
  176. />
  177. <span class="text-group_3">告警严重程度分析</span>
  178. </div>
  179. <div class="section_2 flex-row">
  180. <div class="image-text_4 flex-row justify-between">
  181. <span class="text-group_4">2025</span>
  182. <img
  183. class="thumbnail_24"
  184. referrerpolicy="no-referrer"
  185. src="https://lanhu-oss-2537-2.lanhuapp.com/psqt7s72rvrjlc6nlybwqk5bmvku09vdcp7090335a-a4a0-4522-953e-fb79361a0e68"
  186. />
  187. </div>
  188. </div>
  189. </div>
  190. <div class="block_8 flex-row" style="padding-right: 10px;">
  191. <div style="width: 50%;" >
  192. <pie-chart />
  193. <!-- <div style="position: relative;top:-173px;">
  194. <span class="text_56">总告警数</span>
  195. <div class="text-wrapper_9">
  196. <span class="text_57">146</span>
  197. <span class="text_58"></span>
  198. <span class="text_59">/次</span>
  199. </div>
  200. </div> -->
  201. </div>
  202. <div style="width: 50%;justify-content: flex-end;" class=" flex-row">
  203. <div class="block_10 flex-col">
  204. <div class="section_3 flex-col"></div>
  205. <div class="section_4 flex-col"></div>
  206. <div class="section_5 flex-col"></div>
  207. </div>
  208. <div class="text-wrapper_10 flex-col">
  209. <span class="text_60">徘徊告警</span>
  210. <span class="text_61">陌生人告警</span>
  211. <span class="text_62">越线告警</span>
  212. <span class="text_63">火焰告警</span>
  213. <span class="text_64">烟雾告警</span>
  214. </div>
  215. <div class="text-wrapper_11 flex-col">
  216. <span class="text_65">44</span>
  217. <span class="text_66">42</span>
  218. <span class="text_67">26</span>
  219. <span class="text_68">13</span>
  220. <span class="text_69">21</span>
  221. </div>
  222. </div>
  223. </div>
  224. <div class="block_11 flex-row">
  225. <div class="section_6 flex-col"></div>
  226. <span class="text_70">低等级</span>
  227. <div class="section_7 flex-col"></div>
  228. <span class="text_71">中等级</span>
  229. <div class="section_8 flex-col"></div>
  230. <span class="text_72">高等级</span>
  231. </div>
  232. </div>
  233. </el-col>
  234. </el-col>
  235. <el-col :span="8">
  236. <div class="block_5 flex-col" style="background-color: #fff;">
  237. <div class="box_3 flex-row justify-between">
  238. <img
  239. class="thumbnail_11"
  240. referrerpolicy="no-referrer"
  241. src="https://lanhu-oss-2537-2.lanhuapp.com/psrdw890zdgxp85irjoai1mlys955fw0rcqa9b3d048-b776-48a3-a084-07acc200736d"
  242. />
  243. <span class="text_24">快捷功能</span>
  244. </div>
  245. <div class="image-wrapper_1 flex-row justify-between">
  246. <div style="text-align: center;">
  247. <img
  248. class="label_2"
  249. referrerpolicy="no-referrer"
  250. src="https://lanhu-oss-2537-2.lanhuapp.com/psn6jwvwy8l2j1h16w1of82ohsn7v4wwn7gk8ab5d7b4-4138-4e15-af1d-4dd41b3f94b6"
  251. />
  252. <div style="margin-top: 10px;">
  253. <span class="text_25">人员管理</span>
  254. </div>
  255. </div>
  256. <div style="text-align: center;">
  257. <img
  258. class="label_3"
  259. referrerpolicy="no-referrer"
  260. src="https://lanhu-oss-2537-2.lanhuapp.com/psdx8guqu2pc7qy9dec86q1p34cx76366gv94657d09-f3df-4daf-a8ab-772805d40279"
  261. />
  262. <div style="margin-top: 10px;">
  263. <span class="text_26">设备管理</span>
  264. </div>
  265. </div>
  266. <div style="text-align: center;">
  267. <img
  268. class="label_4"
  269. referrerpolicy="no-referrer"
  270. src="https://lanhu-oss-2537-2.lanhuapp.com/psbjpsfb3zmw6ts129i4b98d6kilysry37729c90a-1889-4617-9e11-55dfad50bd7b"
  271. />
  272. <div style="margin-top: 10px;">
  273. <span class="text_27">监控回放</span>
  274. </div>
  275. </div>
  276. <div style="text-align: center;">
  277. <img
  278. class="label_5"
  279. referrerpolicy="no-referrer"
  280. src="https://lanhu-oss-2537-2.lanhuapp.com/psp4wnnq3t9dmfg1ee9r3p87z6jj37w2ju668ffd6f-fea0-49b4-b6f5-2fe2807078c1"
  281. />
  282. <div style="margin-top: 10px;">
  283. <span class="text_28">一键布控</span>
  284. </div>
  285. </div>
  286. <div style="text-align: center;">
  287. <img
  288. class="label_6"
  289. referrerpolicy="no-referrer"
  290. src="https://lanhu-oss-2537-2.lanhuapp.com/pswcql79skat8m2hadqe0c2hrl664tdlk191dee3e56-41ea-47f3-9118-48384c61cbe0"
  291. />
  292. <div style="margin-top: 10px;">
  293. <span class="text_29">一键撤防</span>
  294. </div>
  295. </div>
  296. </div>
  297. </div>
  298. <!-- 日历 -->
  299. <div style=" height: 431px; background-color: #fff; border-radius: 10px;padding: 20px;margin-top: 20px;">
  300. <div class="box_11 flex-row">
  301. <div class="box_12 flex-col justify-between">
  302. <div class="text-wrapper_12 flex-row justify-between">
  303. <span class="text_73">2025(年)</span>
  304. <span class="text_74">Apr</span>
  305. </div>
  306. <div class="text-wrapper_13">
  307. <span class="text_75">0</span>
  308. <span class="text_76">4/</span>
  309. <span class="text_77">23</span>
  310. </div>
  311. </div>
  312. <div class="flex-row">
  313. <div class="text-wrapper_14 flex-col justify-between">
  314. <span class="text_78">潜山</span>
  315. <span class="text_79">27℃</span>
  316. </div>
  317. <img
  318. class="label_7"
  319. referrerpolicy="no-referrer"
  320. src="https://lanhu-oss-2537-2.lanhuapp.com/ps2dkvgja0bj82ye5za7m6rjholjn017m3w2ea76a7a-9421-4be5-8b86-66181f103334"
  321. />
  322. </div>
  323. </div>
  324. <!-- 日历-->
  325. <div class="timeall">
  326. <i class="el-icon-arrow-left lastbt" @click="lastclick"></i>
  327. <div class="table_header">
  328. <div class="weekday" v-for="(item,index) in weekAll" :key="index">
  329. <span>{{item}}</span>
  330. </div>
  331. </div>
  332. <div class="table_header">
  333. <div class="weekday test" v-for="(item,index) in weekDayArr" :key="index">
  334. <span :class="item.adate==todayDate?'finish':''" @click="getAdate(item)">{{item.adate.slice(8,10)}}</span>
  335. </div>
  336. </div>
  337. <i class="el-icon-arrow-right nextbt" @click="nextclick"></i>
  338. </div>
  339. <!-- 内容 -->
  340. <div>
  341. <div v-for="(item,index) in 2" :key="index" class="box_14 flex-row" style="justify-content: space-between;padding: 0 20px;">
  342. <div class="text-wrapper_17 flex-col justify-between">
  343. <span class="text_94">25/04/23&nbsp;&nbsp;10:31:46</span>
  344. <span class="text_95">通道001</span>
  345. </div>
  346. <div class="text-wrapper_18 ">
  347. <div class="text_96">越线告警</div>
  348. <div><img
  349. class="thumbnail_27"
  350. referrerpolicy="no-referrer"
  351. src="https://lanhu-oss-2537-2.lanhuapp.com/psdns8niqehwnqonehba3fupf1jks9bkmeba9dfa9d-80e7-483e-9ef6-abb696ae65f0"
  352. />
  353. </div></div>
  354. </div>
  355. </div>
  356. </div>
  357. <!-- 开关 -->
  358. <div>
  359. <div class="box_16 flex-col">
  360. <div class="section_9 flex-row justify-between">
  361. <div class="image-text_5 flex-row justify-between">
  362. <img
  363. class="thumbnail_29"
  364. referrerpolicy="no-referrer"
  365. src="https://lanhu-oss-2537-2.lanhuapp.com/psa27evgswubenvym1lop1v9fdundzbrw19c1850b51-939b-4d99-b5af-8745a5f6f954"
  366. />
  367. <span class="text-group_5">设备运行状态</span>
  368. </div>
  369. <span class="text_100">查看更多&nbsp;→</span>
  370. </div>
  371. <div class="section_10 flex-row">
  372. <div class="image-text_6 flex-col justify-between">
  373. <img
  374. class="image_6"
  375. referrerpolicy="no-referrer"
  376. src="https://lanhu-oss-2537-2.lanhuapp.com/ps88exyzo1tdikk9srdibcimyfl7toswujt8f98ae4d-a44c-42c8-b411-03a577d649f4"
  377. />
  378. <span class="text-group_6">设备01</span>
  379. </div>
  380. <div class="image-text_7 flex-col justify-between">
  381. <img
  382. class="image_7"
  383. referrerpolicy="no-referrer"
  384. src="https://lanhu-oss-2537-2.lanhuapp.com/psj4k7tsxe0dh0sc95kc1lnzf1frpd738z69de4a80a3-dcc1-4bd1-af71-cefbfe3cb6a9"
  385. />
  386. <span class="text-group_7">设备02</span>
  387. </div>
  388. <div class="box_17 flex-col justify-between">
  389. <div class="group_13 flex-col">
  390. <div class="section_11 flex-col"></div>
  391. </div>
  392. <span class="text_101">设备03</span>
  393. </div>
  394. <div class="box_18 flex-col justify-between">
  395. <div class="box_19 flex-col">
  396. <div class="block_12 flex-col"></div>
  397. </div>
  398. <span class="text_102">设备04</span>
  399. </div>
  400. <div class="box_20 flex-col justify-between">
  401. <div class="group_14 flex-col">
  402. <div class="group_15 flex-col"></div>
  403. </div>
  404. <span class="text_103">设备05</span>
  405. </div>
  406. </div>
  407. </div>
  408. </div>
  409. </el-col>
  410. </el-row>
  411. </div>
  412. <!-- 添加或修改投诉建议对话框 -->
  413. <el-dialog title="回复建议" :visible.sync="open" width="800px" append-to-body>
  414. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  415. <el-row>
  416. <el-col :span="24">
  417. <el-form-item label="回复内容" prop="replyContent">
  418. <!-- <editor v-model="form.replyContent" :min-height="192"/> -->
  419. <el-input v-model="form.replyContent" type="textarea" placeholder="请输入内容" />
  420. </el-form-item>
  421. </el-col>
  422. <el-col :span="24">
  423. <el-form-item label="上传附件">
  424. <fileUploadh :limit="20" v-model="form.suggestionFjList" />
  425. </el-form-item>
  426. </el-col>
  427. </el-row>
  428. </el-form>
  429. <div slot="footer" class="dialog-footer">
  430. <el-button type="primary" @click="submitForm">确 定</el-button>
  431. <el-button @click="cancel">取 消</el-button>
  432. </div>
  433. </el-dialog>
  434. <el-dialog title="指派" :visible.sync="openz" width="640px" append-to-body>
  435. <el-form ref="formz" :model="formz" :rules="rulesz" label-width="80px">
  436. <el-row>
  437. <el-col :span="24">
  438. <el-form-item label="选择人员" prop="staffName">
  439. <el-select style="width: 100%;" v-model="formz.staffName" placeholder="请选择维修人员">
  440. <el-option @click.native="xuanse(dict)" v-for="dict in staffManageList" :key="dict.staffId"
  441. :label="dict.staffName + '('+ (dict.status == null?'' : dict.status == 1?'空闲中' : '指派中') + ')'"
  442. :value="dict.staffId"></el-option>
  443. </el-select>
  444. </el-form-item>
  445. </el-col>
  446. </el-row>
  447. </el-form>
  448. <div slot="footer" class="dialog-footer">
  449. <el-button type="primary" @click="submitFormz">确 定</el-button>
  450. <el-button @click="cancel">取 消</el-button>
  451. </div>
  452. </el-dialog>
  453. <el-dialog title="完善信息" :visible.sync="openg" width="640px" append-to-body>
  454. <el-form ref="formg" :model="formg" :rules="rulesg" label-width="80px">
  455. <el-row>
  456. <el-col :span="24" class="ngeshimg" >
  457. <el-form-item label="身份证号" prop="idCard" style="position: relative;">
  458. <el-input v-model="formg.idCard" placeholder="请输入身份证号码" />
  459. <!-- <image-upload :limit="1" v-model="form.idCardBack"/> -->
  460. <image-uploadshib @uploadedSuccessfully="uploadedSuccessfully" :typeg = "1" :limit="1" v-model="formg.idCardBack"/>
  461. </el-form-item>
  462. </el-col>
  463. <el-col :span="24">
  464. <el-form-item label="选择小区" prop="tenantId">
  465. <el-select
  466. style="width:100%;"
  467. v-model="formg.tenantId"
  468. clearable
  469. filterable
  470. reserve-keyword
  471. placeholder="选择物业"
  472. >
  473. <!-- @click.native="chahue(item)" -->
  474. <el-option v-for="item in tenantList" :key="item.tenantId" :label="item.companyName" :value="item.tenantId" > </el-option>
  475. <template ><svg-icon icon-class="company" class="el-input__icon input-icon" /></template>
  476. </el-select>
  477. </el-form-item>
  478. </el-col>
  479. <el-col :span="12">
  480. <el-form-item label="人员性别" prop="gender">
  481. <el-select v-model="formg.gender" placeholder="请选择员工性别">
  482. <el-option
  483. v-for="dict in dict.type.gender"
  484. :key="dict.value"
  485. :label="dict.label"
  486. :value="dict.value"
  487. ></el-option>
  488. </el-select>
  489. </el-form-item>
  490. </el-col>
  491. <el-col :span="12">
  492. <el-form-item label="员工类别" prop="staffCategory">
  493. <el-select v-model="formg.staffCategory" placeholder="请选择员工类别">
  494. <el-option
  495. v-for="dict in dict.type.yaungong"
  496. :key="dict.value"
  497. :label="dict.label"
  498. :value="dict.value"
  499. ></el-option>
  500. </el-select>
  501. </el-form-item>
  502. </el-col>
  503. <el-col :span="12">
  504. <el-form-item label="维修分类" prop="maintenanceCategory">
  505. <el-select clearable v-model="formg.maintenanceCategory" placeholder="请选择维修分类">
  506. <el-option
  507. v-for="dict in dict.type.weixiutype"
  508. :key="dict.value"
  509. :label="dict.label"
  510. :value="dict.value"
  511. ></el-option>
  512. </el-select>
  513. </el-form-item>
  514. </el-col>
  515. <el-col :span="12">
  516. <el-form-item label="手机号码" prop="phoneNumber">
  517. <el-input v-model="formg.phoneNumber" placeholder="请输入手机号码" />
  518. </el-form-item>
  519. </el-col>
  520. <el-col :span="15">
  521. <el-form-item label="员工姓名" prop="staffName">
  522. <el-input v-model="formg.staffName" placeholder="请输入员工姓名" />
  523. </el-form-item>
  524. </el-col>
  525. <el-col :span="12" class="shefnze" >
  526. <el-form-item label="头像" prop="avatarPhoto">
  527. <image-upload :limit="1" v-model="formg.avatarPhoto"/>
  528. </el-form-item>
  529. </el-col>
  530. <el-col :span="12" class="shefnze">
  531. <el-form-item label="身份证国徽面" prop="idCardFront">
  532. <image-upload :limit="1" v-model="formg.idCardFront"/>
  533. </el-form-item>
  534. </el-col>
  535. <el-col :span="24" >
  536. <el-form-item label="相关证件" prop="certificate">
  537. <file-upload v-model="formg.certificate"/>
  538. </el-form-item>
  539. </el-col>
  540. </el-row>
  541. </el-form>
  542. <div slot="footer" class="dialog-footer">
  543. <el-button type="primary" @click="submitFormg">确 定</el-button>
  544. </div>
  545. </el-dialog>
  546. <!-- <el-dialog title="完善信息" :visible.sync="openg" width="640px" append-to-body>
  547. </el-dialog> -->
  548. </div>
  549. </template>
  550. <script>
  551. import PanelGroup from './dashboard/PanelGroup'
  552. import LineChart from './dashboard/LineChart'
  553. import RaddarChart from './dashboard/RaddarChart'
  554. import PieChart from './dashboard/PieChart'
  555. import BarChart from './dashboard/BarChart'
  556. const lineChartData = {
  557. newVisitis: {
  558. expectedData: [100, 120, 161, 134, 105, 160, 165],
  559. actualData: [120, 82, 91, 154, 162, 140, 145]
  560. },
  561. messages: {
  562. expectedData: [200, 192, 120, 144, 160, 130, 140],
  563. actualData: [180, 160, 151, 106, 145, 150, 130]
  564. },
  565. purchases: {
  566. expectedData: [80, 100, 121, 104, 105, 90, 100],
  567. actualData: [120, 90, 100, 138, 142, 130, 130]
  568. },
  569. shoppings: {
  570. expectedData: [130, 140, 141, 142, 145, 150, 160],
  571. actualData: [120, 82, 91, 154, 162, 140, 130]
  572. }
  573. }
  574. import { getTenantList} from "@/api/login";
  575. import {listNoPage} from "@/api/system/role";
  576. export default {
  577. name: "Index",
  578. dicts: ['baoxiutype', 'repair_status', 'patrol_type','yaungong', 'gender', 'weixiutype'],
  579. components: {
  580. PanelGroup,
  581. LineChart,
  582. RaddarChart,
  583. PieChart,
  584. BarChart,
  585. },
  586. data() {
  587. return {
  588. // 版本号
  589. version: "3.8.9",
  590. customColor: '#FFCB62',
  591. lineChartData: lineChartData.newVisitis,
  592. getyer: '',
  593. getmor: '',
  594. getday: '',
  595. getshifL: '',
  596. getweek: '',
  597. open: false,
  598. openz: false,
  599. openg:false,
  600. shouzu:false,
  601. // 投诉建议表格数据
  602. suggestionList: [],
  603. repairList: [],
  604. // 巡检点记录表格数据
  605. checkPointRecordList: [],
  606. // 表单参数
  607. form: {},
  608. formz: {},
  609. formg: {
  610. name:null,
  611. card:null,
  612. phonenumber:null,
  613. boundary:null,
  614. unit:null,
  615. partyAffiliation:null,
  616. },
  617. // 表单校验
  618. rules: {
  619. replyContent: [{
  620. required: true,
  621. message: "不能为空",
  622. trigger: "blur"
  623. }],
  624. },
  625. rulesz: {
  626. staffName: [{
  627. required: true,
  628. message: "不能为空",
  629. trigger: "blur"
  630. }],
  631. },
  632. rulesg:{
  633. tenantId: [
  634. { required: true, message: "不能为空", trigger: "blur" }
  635. ],
  636. staffName: [
  637. { required: true, message: "姓名不能为空", trigger: "blur" }
  638. ],
  639. // staffCategory: [
  640. // { required: true, message: "员工类别", trigger: "change" }
  641. // ],
  642. phoneNumber: [
  643. { required: true, message: "手机号码不能为空", trigger: "blur" }
  644. ],
  645. },
  646. staffManageList: [],
  647. xunjiantj: {},
  648. tatse: 0,
  649. yifhufe: 0,
  650. isxug: false,
  651. bafe: 0,
  652. timer: null,
  653. zhexian: {},
  654. userid: 0,
  655. chelisngguan: {},
  656. isacr: 0,
  657. carNume:{},
  658. tenantList:[],
  659. ishsoe:false,
  660. forewg:{},
  661. tesrtw:'',
  662. // 角色表格数据
  663. roleList: [],
  664. // 日历
  665. currentFirstDate:"",
  666. clen:7,
  667. todayDate:"",
  668. weekDayArr:[],
  669. weekAll: [
  670. '星期一','星期二','星期三','星期四','星期五','星期六','星期日',
  671. ]
  672. };
  673. },
  674. created() {
  675. // 移交 日历
  676. this.todayDate=this.formatDate(new Date())
  677. this.setDate(new Date())
  678. // 旧的
  679. this.userid = this.$store.getters.userId
  680. if(this.$store.getters.authenticationUser =='1' || this.$store.getters.authenticationUser =='2'){
  681. // 认证未通过或者未认证
  682. this.shouzu = false
  683. // this.getxinaqren()
  684. // this.getrou(this.$store.getters.tenantId)
  685. }else{
  686. // if(){
  687. // }
  688. this.shouzu = true
  689. // this.getcharnae()
  690. // this.setTimer()
  691. // this.gettime()
  692. // this.getListtion()
  693. // this.getListpair()
  694. // this.getstaffManageList()
  695. // this.getListRecord()
  696. // this.getListRecordcun()
  697. // this.baozhe()
  698. // this.getche()
  699. }
  700. clearInterval(this.timer)
  701. this.timer = null
  702. this.getnhgwzuhue()
  703. console.log(this.shouzu)
  704. },
  705. methods: {
  706. // 日历
  707. // 日期格式处理
  708. formatDate(date){
  709. var year = date.getFullYear() + '-'
  710. var month = (date.getMonth()+1) ;
  711. if(month<10){
  712. month = '0' + month
  713. }
  714. month = month + '-'
  715. var day = date.getDate();
  716. if(day<10){
  717. day = '0' + day
  718. }
  719. console.log(year+month+day)
  720. return year+month+day;
  721. },
  722. //
  723. addDate(date,n){
  724. date.setDate(date.getDate()+n);
  725. console.log(date,5)
  726. return date;
  727. },
  728. //
  729. setDate(date){
  730. var week = date.getDay()-1;
  731. date = this.addDate(date,week*-1);
  732. this.currentFirstDate = new Date(date);
  733. for(var i = 0;i<this.clen; i++){
  734. this.weekDayArr.push({"adate":this.formatDate(i==0 ? date : this.addDate(date,1))})
  735. }
  736. console.log(this.weekDayArr)
  737. },
  738. //上一周
  739. lastclick(){
  740. this.weekDayArr=[]
  741. this.setDate(this.addDate(this.currentFirstDate,-7));
  742. },
  743. //下一周
  744. nextclick(){
  745. this.weekDayArr=[]
  746. this.setDate(this.addDate(this.currentFirstDate,7));
  747. },
  748. getAdate (item) {
  749. this.todayDate = item.adate
  750. console.log(item)
  751. },
  752. // 日历结束
  753. // 小区切换
  754. chahue(row){
  755. this.getrou(row.tenantId)
  756. },
  757. // 查询角色信息
  758. getrou(row){
  759. let pade={'tenantId':row}
  760. listNoPage(pade).then(response => {
  761. this.roleList = response.rows;
  762. this.roleList.filter(rou=>{
  763. rou.dictValue=rou.roleKey
  764. rou.dictLabel=rou.roleName
  765. })
  766. if(response.rows.length !=0){
  767. this.formg.staffCategory = response.rows[0].roleKey
  768. }
  769. }
  770. );
  771. },
  772. getxinaqren(){
  773. staffManagexq(this.$store.getters.userId).then(response => {
  774. if(response.data == null){
  775. this.ishsoe = true
  776. }else{
  777. this.ishsoe = false
  778. this.forewg = response.data
  779. this.tesrtw = response.data.tenantId
  780. }
  781. // this.tenantEnabled = response.data.tenantEnabled
  782. // this.tenantList = response.data.voList;
  783. // this.loading = false;
  784. });
  785. },
  786. getnhgwzuhue(){
  787. // this.loading = true;
  788. getTenantList().then(response => {
  789. // this.tenantEnabled = response.data.tenantEnabled
  790. this.tenantList = response.data.voList;
  791. // this.loading = false;
  792. });
  793. },
  794. zhuhuet(){
  795. this.reset()
  796. this.formg.phoneNumber = this.$store.getters.phonenumber
  797. this.formg.userId = this.userid
  798. if(this.tenantList.length !=0){
  799. this.formg.tenantId = this.tenantList[0].tenantId
  800. // this.getrou(this.$store.getters.tenantId)
  801. this.openg = true
  802. }else{
  803. this.openg = true
  804. }
  805. console.log(this.formg)
  806. // console.log(this.formg.userId)
  807. // console.log(this.formg.phoneNumber,this.$store.getters.user.phonenumber)
  808. },
  809. // 车辆进入\
  810. getcharnae(){
  811. car().then(response => {
  812. this.carNume = response.data;
  813. });
  814. },
  815. // 车辆管控
  816. getche() {
  817. vehicleControl().then(response => {
  818. this.chelisngguan = response.data;
  819. });
  820. },
  821. // 车辆管控点击
  822. iszhe(val){
  823. this.isacr = val
  824. },
  825. // 报修折线
  826. baozhe() {
  827. qx().then(response => {
  828. this.zhexian = response.data;
  829. });
  830. },
  831. // 巡更记录
  832. getListRecord() {
  833. let sgmse = {
  834. 'pageNum': 1,
  835. 'pageSize': 2,
  836. 'params':{
  837. 'createTime':this.getyer + '-' + this.getmor + '-' + this.getday,
  838. },
  839. // params:{'checkTime': this.getyer + '-' + this.getmor + '-' + this.getday},
  840. // 'createTime': this.getyer + '-' + this.getmor + '-' + this.getday,
  841. 'checkStatus': 2,
  842. 'userId': this.userid
  843. }
  844. this.isxug = false
  845. listCheckPointRecord(sgmse).then(response => {
  846. this.checkPointRecordList = response.rows;
  847. // this.checkPointRecordList .filter(rou=>{
  848. // rou.imges = []
  849. // if(rou.checkResultPhoto != null && rou.checkResultPhoto != ''){
  850. // rou.imges = rou.checkResultPhoto.split(',')
  851. // }
  852. // })
  853. if (this.checkPointRecordList.length == 0) {
  854. let gh = {
  855. 'checkTime': '暂无数据',
  856. 'checkAddress': '暂无数据',
  857. 'checkUserName': '暂无数据',
  858. 'checkResult': '暂无数据',
  859. 'checkType': '暂无数据'
  860. }
  861. this.checkPointRecordList.push(gh)
  862. this.checkPointRecordList.push(gh)
  863. }
  864. if (this.checkPointRecordList.length == 1) {
  865. let gh = {
  866. 'checkTime': '暂无数据',
  867. 'checkAddress': '暂无数据',
  868. 'checkUserName': '暂无数据',
  869. 'checkResult': '暂无数据',
  870. 'checkType': '暂无数据'
  871. }
  872. this.checkPointRecordList.push(gh)
  873. }
  874. this.isxug = true
  875. });
  876. },
  877. getListRecordcun() {
  878. count().then(response => {
  879. this.xunjiantj = response.data
  880. });
  881. },
  882. // 报修列表
  883. getListpair() {
  884. let sgmse = {
  885. 'pageNum': 1,
  886. 'pageSize': 2,
  887. 'userId': this.userid
  888. }
  889. listRepair(sgmse).then(response => {
  890. this.repairList = response.rows;
  891. if (this.repairList.length == 0) {
  892. let gnsh = {
  893. 'repairTitle': '暂无数据',
  894. 'phoneNumber': '暂无数据',
  895. 'houseAddress': '暂无数据',
  896. 'repairTime': '暂无数据',
  897. 'repairStatus': null
  898. }
  899. this.repairList.push(gnsh)
  900. this.repairList.push(gnsh)
  901. }
  902. if (this.repairList.length == 1) {
  903. let gnsh = {
  904. 'repairTitle': '暂无数据',
  905. 'phoneNumber': '暂无数据',
  906. 'houseAddress': '暂无数据',
  907. 'repairTime': '暂无数据',
  908. 'repairStatus': null
  909. }
  910. this.repairList.push(gnsh)
  911. }
  912. });
  913. },
  914. // 待分配
  915. daifeng(row) {
  916. if (row.repairStatus == 1) {
  917. // 待分配
  918. // this.formz.maintenanceCategory = row.maintenanceCategory
  919. this.openz = true
  920. this.formz.repairId = row.repairId
  921. }
  922. },
  923. // 待分配提交
  924. submitFormz() {
  925. this.$refs["formz"].validate(valid => {
  926. if (valid) {
  927. assign(this.formz).then(response => {
  928. this.$modal.msgSuccess("操作成功");
  929. this.openz = false;
  930. this.getList();
  931. });
  932. }
  933. })
  934. },
  935. xuanse(val) {
  936. console.log(val)
  937. this.formz.staffName = val.staffName
  938. this.formz.staffId = val.staffId
  939. this.formz.staffPhone = val.phoneNumber
  940. },
  941. getstaffManageList(row) {
  942. let bsdf = {
  943. 'staffCategory': 2
  944. }
  945. listStaffManageNoPage(bsdf).then(response => {
  946. this.staffManageList = response.rows;
  947. // this.staffManageList.filrter(rout=>{
  948. // rout.lable = rout.staffName + '<p>'
  949. // })
  950. });
  951. },
  952. /** 查询投诉建议列表 */
  953. getListtion() {
  954. let sgmse = {
  955. 'pageNum': 1,
  956. 'pageSize': 10,
  957. 'isPublic':'Y',
  958. 'userId': this.userid
  959. }
  960. listSuggestion(sgmse).then(response => {
  961. if(response.rows.length !=0){
  962. if(response.rows.length > 2){
  963. this.suggestionList = response.rows.slice(0, 2);
  964. }else{
  965. this.suggestionList = response.rows;
  966. }
  967. }else{
  968. this.suggestionList = response.rows;
  969. }
  970. if (this.suggestionList.length == 0) {
  971. let gnsh = {
  972. 'title': '暂无数据',
  973. 'content': '暂无数据',
  974. 'createTime': '暂无数据',
  975. }
  976. this.suggestionList.push(gnsh)
  977. this.suggestionList.push(gnsh)
  978. }
  979. if (this.suggestionList.length == 1) {
  980. let gnsh = {
  981. 'title': '暂无数据',
  982. 'content': '暂无数据',
  983. 'createTime': '暂无数据',
  984. }
  985. this.suggestionList.push(gnsh)
  986. }
  987. this.getListtionesTOTL()
  988. });
  989. },
  990. getListtiones() {
  991. let sgmse = {
  992. 'pageNum': 1,
  993. 'pageSize': 2,
  994. 'status': 2,
  995. }
  996. listSuggestion(sgmse).then(response => {
  997. this.yifhufe = response.total
  998. this.bafe = this.percentage() - 0
  999. });
  1000. },
  1001. getListtionesTOTL() {
  1002. let sgmse = {
  1003. 'pageNum': 1,
  1004. 'pageSize': 10,
  1005. }
  1006. listSuggestion(sgmse).then(response => {
  1007. this.tatse = response.total
  1008. this.getListtiones()
  1009. });
  1010. },
  1011. // 投诉隐藏
  1012. yinange(row,index){
  1013. row.isPublic = 'N'
  1014. updateSuggestion(row).then(response => {
  1015. this.$modal.msgSuccess("操作成功");
  1016. // this.open = false;
  1017. // this.getList();
  1018. });
  1019. },
  1020. percentage() {
  1021. return (this.yifhufe / this.tatse * 100).toFixed(0);
  1022. },
  1023. tousuhuif(row) {
  1024. // this.form.suggestionId = row.suggestionId
  1025. this.form = {
  1026. 'replyContent': null,
  1027. 'suggestionFjList': null,
  1028. 'suggestionId': row.suggestionId,
  1029. 'status': 2
  1030. }
  1031. // this.$set('replyContent',this.form,null)
  1032. // this.form.replyContent = null
  1033. // this.form.suggestionFjList = null
  1034. this.open = true
  1035. },
  1036. cancel() {
  1037. this.open = false
  1038. this.openz = false
  1039. },
  1040. /** 提交按钮 */
  1041. submitForm() {
  1042. this.$refs["form"].validate(valid => {
  1043. if (valid) {
  1044. // console.log(this.form)
  1045. if (this.form.suggestionFjList != null) {
  1046. this.form.suggestionFjList.filter(rou => {
  1047. rou.suggestionId = this.form.suggestionId
  1048. })
  1049. }
  1050. updateSuggestion(this.form).then(response => {
  1051. this.$modal.msgSuccess("修改成功");
  1052. this.open = false;
  1053. this.getListtion();
  1054. });
  1055. }
  1056. });
  1057. },
  1058. /** 注册认证提交按钮 */
  1059. submitFormg: function() {
  1060. this.$refs["formg"].validate(valid => {
  1061. if (valid) {
  1062. if(this.ishsoe == false){
  1063. if(this.tesrtw == this.formg.tenantId){
  1064. updateStaffManage(this.formg).then(response => {
  1065. this.$modal.msgSuccess("修改成功,等待管理员审核");
  1066. this.openg = false;
  1067. });
  1068. }else{
  1069. addStaffManage(this.formg).then(response => {
  1070. this.$modal.msgSuccess("操作成功,等待管理员审核");
  1071. this.openg = false;
  1072. // this.getList();
  1073. });
  1074. }
  1075. }else{
  1076. addStaffManage(this.formg).then(response => {
  1077. this.$modal.msgSuccess("操作成功,等待管理员审核");
  1078. this.openg = false;
  1079. // this.getList();
  1080. });
  1081. }
  1082. }
  1083. });
  1084. },
  1085. handleSetLineChartData(type) {
  1086. this.lineChartData = lineChartData[type]
  1087. },
  1088. goTarget(href) {
  1089. window.open(href, "_blank");
  1090. },
  1091. format(percentage) {
  1092. return percentage === 100 ? '${percentage}' : `${percentage}`;
  1093. },
  1094. gettime() {
  1095. var _this = this;
  1096. let wk = new Date().getDay()
  1097. let yy = new Date().getFullYear();
  1098. let mm = new Date().getMonth() + 1;
  1099. if(mm < 10){
  1100. mm = '0'+mm
  1101. }
  1102. let dd = new Date().getDate();
  1103. if(dd < 10){
  1104. dd = '0'+dd
  1105. }
  1106. let hh = new Date().getHours() < 10 ? '0' + new Date().getHours() : new Date().getHours();
  1107. let mf = new Date().getMinutes() < 10 ? '0' + new Date().getMinutes() : new Date().getMinutes();
  1108. let ss = new Date().getSeconds() < 10 ? '0' + new Date().getSeconds() : new Date().getSeconds();
  1109. let weeks = ['星期日', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']
  1110. let week = weeks[wk]
  1111. _this.getyer = yy;
  1112. _this.getmor = mm;
  1113. _this.getday = dd;
  1114. _this.getshifL = hh + ':' + mf;
  1115. _this.getweek = week;
  1116. // console.log(this.gettime)
  1117. },
  1118. setTimer() {
  1119. if (this.timer == null) {
  1120. this.timer = setInterval(() => {
  1121. this.gettime()
  1122. }, 30000)
  1123. }
  1124. },
  1125. tiahe(row) {
  1126. if (row == 1) {
  1127. // 房屋管理
  1128. this.$router.push({
  1129. path: '/housesassets/fagnwuguanli',
  1130. })
  1131. } else if (row == 2) {
  1132. // 居住人员管理
  1133. this.$router.push({
  1134. path: '/renyuanxiangguan/renyuan',
  1135. })
  1136. } else if (row == 3) {
  1137. // 车辆管控
  1138. this.$router.push({
  1139. path: '/communityservicesfacilities/cheliangguank',
  1140. })
  1141. } else if (row == 4) {
  1142. // 违停管理
  1143. this.$router.push({
  1144. path: '/communitysecurityorder/weitingchel',
  1145. })
  1146. } else if (row == 5) {
  1147. // 来访管理
  1148. this.$router.push({
  1149. path: '/communicationmanagement/visitorManage',
  1150. })
  1151. } else if (row == 6) {
  1152. // 物业报修
  1153. this.$router.push({
  1154. path: '/communityservicesfacilities/baoxiuguanli/index',
  1155. })
  1156. } else if (row == 7) {
  1157. // 投诉建议
  1158. this.$router.push({
  1159. path: '/communityservicesfacilities/suggestion',
  1160. })
  1161. } else if (row == 8) {
  1162. // 今日巡更
  1163. this.$router.push({
  1164. path: '/communitysecurityorder/xungengxinx',
  1165. })
  1166. }
  1167. },
  1168. uploadedSuccessfully(row){
  1169. // console.log('上传重构员工',row)
  1170. if(row.length !=0){
  1171. row.filter(ru=>{
  1172. this.formg.staffName = ru.realName
  1173. this.formg.idCard = ru.idCard
  1174. let sge = this.getInfo( this.formg.idCard)
  1175. // this.form.yearsOld = sge.age
  1176. this.formg.gender = sge.sex + ''
  1177. // this.form.residentBirthday = sge.birth
  1178. })
  1179. }
  1180. },
  1181. getInfo(idCard) {
  1182. let sex = null;
  1183. let birth = null;
  1184. let myDate = new Date();
  1185. let month = myDate.getMonth() + 1;
  1186. let day = myDate.getDate();
  1187. let age = 0;
  1188. if (idCard.length === 18) {
  1189. age = myDate.getFullYear() - idCard.substring(6, 10) - 1;
  1190. sex = idCard.substring(16, 17);
  1191. birth = idCard.substring(6, 10) + "-" + idCard.substring(10, 12) + "-" + idCard.substring(12, 14);
  1192. if (idCard.substring(10, 12) < month || idCard.substring(10, 12) === month && idCard.substring(12, 14) <= day)
  1193. age++;
  1194. }
  1195. if (idCard.length === 15) {
  1196. age = myDate.getFullYear() - idCard.substring(6, 8) - 1901;
  1197. sex = idCard.substring(13, 14);
  1198. birth = "19" + idCard.substring(6, 8) + "-" + idCard.substring(8, 10) + "-" + idCard.substring(10, 12);
  1199. if (idCard.substring(8, 10) < month || idCard.substring(8, 10) === month && idCard.substring(10, 12) <= day)
  1200. age++;
  1201. }
  1202. if (sex % 2 === 0)
  1203. sex = 2; // 性别代码 1代表男,0代表女,暂时不涉及其他类型性别
  1204. else
  1205. sex = 1;
  1206. return {
  1207. age,
  1208. sex,
  1209. birth
  1210. }
  1211. },
  1212. // 表单重置
  1213. reset() {
  1214. this.formg = {
  1215. staffId: null,
  1216. staffName: null,
  1217. gender: null,
  1218. staffCategory: null,
  1219. maintenanceCategory: null,
  1220. phoneNumber: null,
  1221. avatarPhoto: null,
  1222. idCard: null,
  1223. idCardFront: null,
  1224. idCardBack: null,
  1225. certificate: null,
  1226. status: null,
  1227. createBy: null,
  1228. createTime: null,
  1229. updateBy: null,
  1230. updateTime: null,
  1231. remark: null,
  1232. tenantId:null,
  1233. userId:this.userid,
  1234. userType:'pc_user'
  1235. };
  1236. this.resetForm("formg");
  1237. },
  1238. }
  1239. };
  1240. </script>
  1241. <style lang="scss">
  1242. .quce{
  1243. .el-form-item__content{
  1244. margin-left: 0 !important;
  1245. }
  1246. .el-upload--picture-card{
  1247. margin-left:50%;
  1248. transform:translateX(-50%);
  1249. }
  1250. }
  1251. .shefnze{
  1252. .el-upload--picture-card{
  1253. width: 80px;
  1254. height: 80px;
  1255. line-height: 80px;
  1256. }
  1257. .el-upload-list--picture-card .el-upload-list__item{
  1258. width: 80px;
  1259. height: 80px;
  1260. }
  1261. .el-upload__tip{
  1262. overflow: hidden;
  1263. text-overflow: ellipsis;
  1264. white-space: nowrap;
  1265. }
  1266. }
  1267. .ngeshimg{
  1268. .el-upload--picture-card{
  1269. width: 36px;
  1270. height: 36px;
  1271. line-height: 36px;
  1272. position: absolute;
  1273. top:0;
  1274. right: 0;
  1275. }
  1276. .component-upload-image{
  1277. position: absolute;
  1278. top:0;
  1279. right: 0;
  1280. }
  1281. .el-upload--picture-card i{
  1282. font-size: 20px;
  1283. }
  1284. .el-upload-list--picture-card .el-upload-list__item{
  1285. width: 58px;
  1286. height: 36px;
  1287. position: absolute;
  1288. top:0;
  1289. right: -10px;
  1290. }
  1291. }
  1292. .unimg{
  1293. .el-upload--picture-card{
  1294. width:102px;
  1295. height: 102px;
  1296. line-height: 102px;
  1297. }
  1298. .el-upload-list--picture-card .el-upload-list__item{
  1299. width:102px;
  1300. height: 102px;
  1301. line-height: 102px;
  1302. }
  1303. }
  1304. </style>
  1305. <style scoped lang="scss">
  1306. .index {
  1307. // padding-right: 10px !important;
  1308. }
  1309. .home {
  1310. blockquote {
  1311. padding: 10px 20px;
  1312. margin: 0 0 20px;
  1313. font-size: 17.5px;
  1314. border-left: 5px solid #eee;
  1315. }
  1316. hr {
  1317. margin-top: 20px;
  1318. margin-bottom: 20px;
  1319. border: 0;
  1320. border-top: 1px solid #eee;
  1321. }
  1322. .col-item {
  1323. margin-bottom: 20px;
  1324. }
  1325. ul {
  1326. padding: 0;
  1327. margin: 0;
  1328. }
  1329. font-family: "open sans",
  1330. "Helvetica Neue",
  1331. Helvetica,
  1332. Arial,
  1333. sans-serif;
  1334. font-size: 13px;
  1335. color: #676a6c;
  1336. overflow-x: hidden;
  1337. ul {
  1338. list-style-type: none;
  1339. }
  1340. h4 {
  1341. margin-top: 0px;
  1342. }
  1343. h2 {
  1344. margin-top: 10px;
  1345. font-size: 26px;
  1346. font-weight: 100;
  1347. }
  1348. p {
  1349. margin-top: 10px;
  1350. b {
  1351. font-weight: 700;
  1352. }
  1353. }
  1354. .update-log {
  1355. ol {
  1356. display: block;
  1357. list-style-type: decimal;
  1358. margin-block-start: 1em;
  1359. margin-block-end: 1em;
  1360. margin-inline-start: 0;
  1361. margin-inline-end: 0;
  1362. padding-inline-start: 40px;
  1363. }
  1364. }
  1365. }
  1366. </style>
  1367. <style lang="scss">
  1368. // 蓝湖样式粘贴
  1369. body {
  1370. font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
  1371. Arial, PingFang SC-Light, Microsoft YaHei;
  1372. }
  1373. input {
  1374. background-color: transparent;
  1375. border: 0;
  1376. }
  1377. button {
  1378. margin: 0;
  1379. padding: 0;
  1380. border: 1px solid transparent;
  1381. outline: none;
  1382. background-color: transparent;
  1383. }
  1384. button:active {
  1385. opacity: 0.6;
  1386. }
  1387. .van-nav-bar__left:active,
  1388. .van-nav-bar__right:active {
  1389. opacity: 1;
  1390. }
  1391. [class*='van-']::after {
  1392. border-bottom: 0;
  1393. }
  1394. .flex-col {
  1395. display: flex;
  1396. flex-direction: column;
  1397. }
  1398. .flex-row {
  1399. display: flex;
  1400. flex-direction: row;
  1401. }
  1402. .justify-start {
  1403. display: flex;
  1404. justify-content: flex-start;
  1405. }
  1406. .justify-center {
  1407. display: flex;
  1408. justify-content: center;
  1409. }
  1410. .justify-end {
  1411. display: flex;
  1412. justify-content: flex-end;
  1413. }
  1414. .justify-evenly {
  1415. display: flex;
  1416. justify-content: space-evenly;
  1417. }
  1418. .justify-around {
  1419. display: flex;
  1420. justify-content: space-around;
  1421. }
  1422. .justify-between {
  1423. display: flex;
  1424. justify-content: space-between;
  1425. }
  1426. .align-start {
  1427. display: flex;
  1428. align-items: flex-start;
  1429. }
  1430. .align-center {
  1431. display: flex;
  1432. align-items: center;
  1433. }
  1434. .align-end {
  1435. display: flex;
  1436. align-items: flex-end;
  1437. }
  1438. .page {
  1439. position: relative;
  1440. width: 1440px;
  1441. height: 934px;
  1442. overflow: hidden;
  1443. }
  1444. .box_1 {
  1445. height: 934px;
  1446. background: url(https://lanhu-oss-2537-2.lanhuapp.com/psupnp53zjsb6uumou8biiluuj3eul374afd762c56-ebbd-4c13-a938-1c346119c9ed)
  1447. 100% no-repeat;
  1448. background-size: 100% 100%;
  1449. width: 1440px;
  1450. position: relative;
  1451. }
  1452. .block_1 {
  1453. width: 1400px;
  1454. height: 30px;
  1455. margin: 25px 0 0 20px;
  1456. }
  1457. .image_1 {
  1458. width: 231px;
  1459. height: 30px;
  1460. }
  1461. .label_1 {
  1462. width: 26px;
  1463. height: 26px;
  1464. margin: 2px 0 0 1003px;
  1465. }
  1466. .text_1 {
  1467. width: 46px;
  1468. height: 12px;
  1469. overflow-wrap: break-word;
  1470. color: rgba(75, 90, 109, 1);
  1471. font-size: 16px;
  1472. font-family: PingFang-SC-Bold;
  1473. font-weight: 700;
  1474. text-align: left;
  1475. white-space: nowrap;
  1476. line-height: 24px;
  1477. margin: 8px 0 0 7px;
  1478. }
  1479. .thumbnail_1 {
  1480. width: 8px;
  1481. height: 4px;
  1482. margin: 13px 0 0 11px;
  1483. }
  1484. .thumbnail_2 {
  1485. width: 1px;
  1486. height: 16px;
  1487. margin: 7px 0 0 18px;
  1488. }
  1489. .text_2 {
  1490. width: 31px;
  1491. height: 16px;
  1492. overflow-wrap: break-word;
  1493. color: rgba(75, 90, 109, 1);
  1494. font-size: 16px;
  1495. font-family: PingFang-SC-Bold;
  1496. font-weight: 700;
  1497. text-align: left;
  1498. white-space: nowrap;
  1499. line-height: 24px;
  1500. margin: 6px 0 0 18px;
  1501. }
  1502. .block_2 {
  1503. width: 1399px;
  1504. height: 167px;
  1505. margin: 24px 0 0 20px;
  1506. }
  1507. .block_3 {
  1508. width: 180px;
  1509. height: 145px;
  1510. margin-top: 22px;
  1511. }
  1512. .group_1 {
  1513. background-color: rgba(221, 235, 231, 1);
  1514. border-radius: 4px;
  1515. height: 36px;
  1516. width: 180px;
  1517. }
  1518. .box_2 {
  1519. width: 14px;
  1520. height: 16px;
  1521. background: url(https://lanhu-oss-2537-2.lanhuapp.com/pssr9va0oenskc5702erondk4k6soy2sg3fcb86e5-1f9d-40ef-9503-d5785a4bf2be)
  1522. 100% no-repeat;
  1523. background-size: 100% 100%;
  1524. margin: 10px 0 0 22px;
  1525. }
  1526. .thumbnail_3 {
  1527. width: 16px;
  1528. height: 15px;
  1529. margin: 35px 0 0 20px;
  1530. }
  1531. .thumbnail_4 {
  1532. width: 16px;
  1533. height: 16px;
  1534. margin: 43px 0 0 21px;
  1535. }
  1536. .block_4 {
  1537. background-color: rgba(255, 255, 255, 1);
  1538. border-radius: 10px;
  1539. height: 158px;
  1540. width: 100%;
  1541. // margin: 1px 0 0 19px;
  1542. }
  1543. .group_2 {
  1544. width: 118px;
  1545. height: 18px;
  1546. margin: 17px 0 0 13px;
  1547. }
  1548. .thumbnail_5 {
  1549. width: 16px;
  1550. height: 18px;
  1551. }
  1552. .text_3 {
  1553. width: 95px;
  1554. height: 16px;
  1555. overflow-wrap: break-word;
  1556. color: rgba(51, 51, 51, 1);
  1557. font-size: 16px;
  1558. font-family: PingFang-SC-Heavy;
  1559. font-weight: 900;
  1560. text-align: left;
  1561. white-space: nowrap;
  1562. line-height: 16px;
  1563. margin-top: 1px;
  1564. }
  1565. .group_3 {
  1566. width: 100%;
  1567. height: 59px;
  1568. margin: 26px 0 0 0;
  1569. justify-content: space-around;
  1570. }
  1571. .text-wrapper_1 {
  1572. width: 84px;
  1573. height: 44px;
  1574. }
  1575. .text_4 {
  1576. width: 84px;
  1577. height: 14px;
  1578. overflow-wrap: break-word;
  1579. color: rgba(102, 102, 102, 1);
  1580. font-size: 14px;
  1581. font-family: PingFang-SC-Medium;
  1582. font-weight: 500;
  1583. text-align: left;
  1584. white-space: nowrap;
  1585. line-height: 24px;
  1586. }
  1587. .text_5 {
  1588. width: 23px;
  1589. height: 16px;
  1590. overflow-wrap: break-word;
  1591. color: rgba(51, 51, 51, 1);
  1592. font-size: 22px;
  1593. font-family: Alibaba-PuHuiTi-B;
  1594. font-weight: 700;
  1595. text-align: left;
  1596. white-space: nowrap;
  1597. line-height: 24px;
  1598. margin-top: 14px;
  1599. }
  1600. .image_2 {
  1601. width: 1px;
  1602. height: 46px;
  1603. margin: 13px 0 0 42px;
  1604. }
  1605. .text-wrapper_2 {
  1606. width: 56px;
  1607. height: 45px;
  1608. // margin-left: 42px;
  1609. }
  1610. .text_6 {
  1611. width: 55px;
  1612. height: 14px;
  1613. overflow-wrap: break-word;
  1614. color: rgba(102, 102, 102, 1);
  1615. font-size: 14px;
  1616. font-family: PingFang-SC-Medium;
  1617. font-weight: 500;
  1618. text-align: left;
  1619. white-space: nowrap;
  1620. line-height: 24px;
  1621. margin-left: 1px;
  1622. }
  1623. .text_7 {
  1624. width: 25px;
  1625. height: 17px;
  1626. overflow-wrap: break-word;
  1627. color: rgba(51, 51, 51, 1);
  1628. font-size: 22px;
  1629. font-family: Alibaba-PuHuiTi-B;
  1630. font-weight: 700;
  1631. text-align: left;
  1632. white-space: nowrap;
  1633. line-height: 24px;
  1634. margin-top: 14px;
  1635. }
  1636. .text-wrapper_3 {
  1637. width: 56px;
  1638. height: 45px;
  1639. // margin-left: 73px;
  1640. }
  1641. .text_8 {
  1642. width: 55px;
  1643. height: 14px;
  1644. overflow-wrap: break-word;
  1645. color: rgba(102, 102, 102, 1);
  1646. font-size: 14px;
  1647. font-family: PingFang-SC-Medium;
  1648. font-weight: 500;
  1649. text-align: left;
  1650. white-space: nowrap;
  1651. line-height: 24px;
  1652. margin-left: 1px;
  1653. }
  1654. .text_9 {
  1655. width: 25px;
  1656. height: 17px;
  1657. overflow-wrap: break-word;
  1658. color: rgba(51, 51, 51, 1);
  1659. font-size: 22px;
  1660. font-family: Alibaba-PuHuiTi-B;
  1661. font-weight: 700;
  1662. text-align: left;
  1663. white-space: nowrap;
  1664. line-height: 24px;
  1665. margin-top: 14px;
  1666. }
  1667. .text-wrapper_4 {
  1668. width: 70px;
  1669. height: 45px;
  1670. // margin-left: 80px;
  1671. }
  1672. .text_10 {
  1673. width: 68px;
  1674. height: 14px;
  1675. overflow-wrap: break-word;
  1676. color: rgba(102, 102, 102, 1);
  1677. font-size: 14px;
  1678. font-family: PingFang-SC-Medium;
  1679. font-weight: 500;
  1680. text-align: left;
  1681. white-space: nowrap;
  1682. line-height: 24px;
  1683. margin-left: 2px;
  1684. }
  1685. .text_11 {
  1686. width: 24px;
  1687. height: 17px;
  1688. overflow-wrap: break-word;
  1689. color: rgba(51, 51, 51, 1);
  1690. font-size: 22px;
  1691. font-family: Alibaba-PuHuiTi-B;
  1692. font-weight: 700;
  1693. text-align: left;
  1694. white-space: nowrap;
  1695. line-height: 24px;
  1696. margin-top: 14px;
  1697. }
  1698. .text-wrapper_5 {
  1699. width: 91px;
  1700. height: 45px;
  1701. // margin-left: 56px;
  1702. }
  1703. .text_12 {
  1704. width: 90px;
  1705. height: 14px;
  1706. overflow-wrap: break-word;
  1707. color: rgba(102, 102, 102, 1);
  1708. font-size: 14px;
  1709. font-family: PingFang-SC-Medium;
  1710. font-weight: 500;
  1711. text-align: left;
  1712. white-space: nowrap;
  1713. line-height: 24px;
  1714. margin-left: 1px;
  1715. }
  1716. .text_13 {
  1717. width: 22px;
  1718. height: 17px;
  1719. overflow-wrap: break-word;
  1720. color: rgba(51, 51, 51, 1);
  1721. font-size: 22px;
  1722. font-family: Alibaba-PuHuiTi-B;
  1723. font-weight: 700;
  1724. text-align: left;
  1725. white-space: nowrap;
  1726. line-height: 24px;
  1727. margin-top: 14px;
  1728. }
  1729. .group_4 {
  1730. width: 100%;
  1731. height: 12px;
  1732. margin: 1px 0 25px 0;
  1733. }
  1734. .text_14 {
  1735. width: 34px;
  1736. height: 12px;
  1737. overflow-wrap: break-word;
  1738. color: rgba(102, 102, 102, 1);
  1739. font-size: 12px;
  1740. font-family: PingFang-SC-Medium;
  1741. font-weight: 500;
  1742. text-align: left;
  1743. white-space: nowrap;
  1744. line-height: 12px;
  1745. }
  1746. .thumbnail_6 {
  1747. width: 14px;
  1748. height: 10px;
  1749. margin: 1px 0 0 4px;
  1750. }
  1751. .text_15 {
  1752. width: 26px;
  1753. height: 10px;
  1754. overflow-wrap: break-word;
  1755. color: rgba(254, 167, 27, 1);
  1756. font-size: 12px;
  1757. font-family: PingFang-SC-Bold;
  1758. font-weight: 700;
  1759. text-align: left;
  1760. white-space: nowrap;
  1761. line-height: 12px;
  1762. margin: 1px 0 0 5px;
  1763. }
  1764. .text_16 {
  1765. width: 34px;
  1766. height: 12px;
  1767. overflow-wrap: break-word;
  1768. color: rgba(102, 102, 102, 1);
  1769. font-size: 12px;
  1770. font-family: PingFang-SC-Medium;
  1771. font-weight: 500;
  1772. text-align: left;
  1773. white-space: nowrap;
  1774. line-height: 24px;
  1775. margin-left: 87px;
  1776. }
  1777. .thumbnail_7 {
  1778. width: 14px;
  1779. height: 10px;
  1780. margin: 1px 0 0 4px;
  1781. }
  1782. .text_17 {
  1783. width: 29px;
  1784. height: 10px;
  1785. overflow-wrap: break-word;
  1786. color: rgba(254, 167, 27, 1);
  1787. font-size: 12px;
  1788. font-family: PingFang-SC-Bold;
  1789. font-weight: 700;
  1790. text-align: left;
  1791. white-space: nowrap;
  1792. line-height: 24px;
  1793. margin: 1px 0 0 5px;
  1794. }
  1795. .text_18 {
  1796. width: 34px;
  1797. height: 12px;
  1798. overflow-wrap: break-word;
  1799. color: rgba(102, 102, 102, 1);
  1800. font-size: 12px;
  1801. font-family: PingFang-SC-Medium;
  1802. font-weight: 500;
  1803. text-align: left;
  1804. white-space: nowrap;
  1805. line-height: 24px;
  1806. margin-left: 43px;
  1807. }
  1808. .thumbnail_8 {
  1809. width: 14px;
  1810. height: 10px;
  1811. margin: 1px 0 0 5px;
  1812. }
  1813. .text_19 {
  1814. width: 36px;
  1815. height: 10px;
  1816. overflow-wrap: break-word;
  1817. color: rgba(3, 191, 138, 1);
  1818. font-size: 12px;
  1819. font-family: PingFang-SC-Bold;
  1820. font-weight: 700;
  1821. text-align: left;
  1822. white-space: nowrap;
  1823. line-height: 24px;
  1824. margin: 1px 0 0 4px;
  1825. }
  1826. .text_20 {
  1827. width: 34px;
  1828. height: 12px;
  1829. overflow-wrap: break-word;
  1830. color: rgba(102, 102, 102, 1);
  1831. font-size: 12px;
  1832. font-family: PingFang-SC-Medium;
  1833. font-weight: 500;
  1834. text-align: left;
  1835. white-space: nowrap;
  1836. line-height: 24px;
  1837. margin-left: 43px;
  1838. }
  1839. .thumbnail_9 {
  1840. width: 14px;
  1841. height: 10px;
  1842. margin: 1px 0 0 5px;
  1843. }
  1844. .text_21 {
  1845. width: 26px;
  1846. height: 10px;
  1847. overflow-wrap: break-word;
  1848. color: rgba(3, 191, 138, 1);
  1849. font-size: 12px;
  1850. font-family: PingFang-SC-Bold;
  1851. font-weight: 700;
  1852. text-align: left;
  1853. white-space: nowrap;
  1854. line-height: 24px;
  1855. margin: 1px 0 0 4px;
  1856. }
  1857. .text_22 {
  1858. width: 34px;
  1859. height: 12px;
  1860. overflow-wrap: break-word;
  1861. color: rgba(102, 102, 102, 1);
  1862. font-size: 12px;
  1863. font-family: PingFang-SC-Medium;
  1864. font-weight: 500;
  1865. text-align: left;
  1866. white-space: nowrap;
  1867. line-height: 24px;
  1868. margin-left: 43px;
  1869. }
  1870. .thumbnail_10 {
  1871. width: 14px;
  1872. height: 10px;
  1873. margin: 1px 0 0 4px;
  1874. }
  1875. .text_23 {
  1876. width: 32px;
  1877. height: 10px;
  1878. overflow-wrap: break-word;
  1879. color: rgba(254, 167, 27, 1);
  1880. font-size: 12px;
  1881. font-family: PingFang-SC-Bold;
  1882. font-weight: 700;
  1883. text-align: left;
  1884. white-space: nowrap;
  1885. line-height: 24px;
  1886. margin: 1px 0 0 6px;
  1887. }
  1888. .block_5 {
  1889. background-color: rgba(255, 255, 255, 1);
  1890. border-radius: 10px;
  1891. height: 159px;
  1892. // margin-left: 12px;
  1893. width: 100%;
  1894. }
  1895. .box_3 {
  1896. width: 86px;
  1897. height: 16px;
  1898. margin: 18px 0 0 13px;
  1899. }
  1900. .thumbnail_11 {
  1901. width: 18px;
  1902. height: 16px;
  1903. }
  1904. .text_24 {
  1905. width: 64px;
  1906. height: 16px;
  1907. overflow-wrap: break-word;
  1908. color: rgba(51, 51, 51, 1);
  1909. font-size: 16px;
  1910. font-family: PingFang-SC-Heavy;
  1911. font-weight: 900;
  1912. text-align: left;
  1913. white-space: nowrap;
  1914. line-height: 16px;
  1915. margin-left: 10px;
  1916. }
  1917. .image-wrapper_1 {
  1918. width: 100%;
  1919. // height: 48px;
  1920. margin: 21px 0 0 0;
  1921. justify-content: space-around;
  1922. }
  1923. .label_2 {
  1924. width: 48px;
  1925. height: 48px;
  1926. }
  1927. .label_3 {
  1928. width: 48px;
  1929. height: 48px;
  1930. // margin-left: 34px;
  1931. }
  1932. .label_4 {
  1933. width: 48px;
  1934. height: 48px;
  1935. // margin-left: 34px;
  1936. }
  1937. .label_5 {
  1938. width: 48px;
  1939. height: 48px;
  1940. // margin-left: 35px;
  1941. }
  1942. .label_6 {
  1943. width: 48px;
  1944. height: 48px;
  1945. // margin-left: 34px;
  1946. }
  1947. .text-wrapper_6 {
  1948. width: 392px;
  1949. height: 16px;
  1950. margin: 20px 0 20px 31px;
  1951. }
  1952. .text_25 {
  1953. width: 63px;
  1954. height: 16px;
  1955. overflow-wrap: break-word;
  1956. color: rgba(51, 51, 51, 1);
  1957. font-size: 16px;
  1958. font-family: PingFang-SC-Medium;
  1959. font-weight: 500;
  1960. text-align: center;
  1961. white-space: nowrap;
  1962. line-height: 30px;
  1963. }
  1964. .text_26 {
  1965. width: 63px;
  1966. height: 16px;
  1967. overflow-wrap: break-word;
  1968. color: rgba(51, 51, 51, 1);
  1969. font-size: 16px;
  1970. font-family: PingFang-SC-Medium;
  1971. font-weight: 500;
  1972. text-align: center;
  1973. white-space: nowrap;
  1974. line-height: 30px;
  1975. // margin-left: 19px;
  1976. }
  1977. .text_27 {
  1978. width: 64px;
  1979. height: 15px;
  1980. overflow-wrap: break-word;
  1981. color: rgba(51, 51, 51, 1);
  1982. font-size: 16px;
  1983. font-family: PingFang-SC-Medium;
  1984. font-weight: 500;
  1985. text-align: center;
  1986. white-space: nowrap;
  1987. line-height: 30px;
  1988. // margin-left: 19px;
  1989. }
  1990. .text_28 {
  1991. width: 63px;
  1992. height: 15px;
  1993. overflow-wrap: break-word;
  1994. color: rgba(51, 51, 51, 1);
  1995. font-size: 16px;
  1996. font-family: PingFang-SC-Medium;
  1997. font-weight: 500;
  1998. text-align: center;
  1999. white-space: nowrap;
  2000. line-height: 30px;
  2001. // margin-left: 19px;
  2002. }
  2003. .text_29 {
  2004. width: 63px;
  2005. height: 16px;
  2006. overflow-wrap: break-word;
  2007. color: rgba(51, 51, 51, 1);
  2008. font-size: 16px;
  2009. font-family: PingFang-SC-Medium;
  2010. font-weight: 500;
  2011. text-align: center;
  2012. white-space: nowrap;
  2013. line-height: 30px;
  2014. // margin-left: 19px;
  2015. }
  2016. .block_6 {
  2017. width: 1380px;
  2018. height: 668px;
  2019. margin: 4px 0 16px 39px;
  2020. }
  2021. .image-wrapper_2 {
  2022. width: 18px;
  2023. height: 376px;
  2024. margin-top: 41px;
  2025. }
  2026. .thumbnail_12 {
  2027. width: 16px;
  2028. height: 15px;
  2029. margin-left: 1px;
  2030. }
  2031. .thumbnail_13 {
  2032. width: 16px;
  2033. height: 14px;
  2034. margin: 44px 0 0 1px;
  2035. }
  2036. .thumbnail_14 {
  2037. width: 16px;
  2038. height: 16px;
  2039. margin: 45px 0 0 1px;
  2040. }
  2041. .thumbnail_15 {
  2042. width: 15px;
  2043. height: 16px;
  2044. margin: 44px 0 0 2px;
  2045. }
  2046. .thumbnail_16 {
  2047. width: 18px;
  2048. height: 16px;
  2049. margin-top: 45px;
  2050. }
  2051. .thumbnail_17 {
  2052. width: 16px;
  2053. height: 16px;
  2054. margin: 44px 0 0 1px;
  2055. }
  2056. .thumbnail_18 {
  2057. width: 15px;
  2058. height: 15px;
  2059. margin: 46px 0 0 2px;
  2060. }
  2061. .box_4 {
  2062. width: 734px;
  2063. height: 668px;
  2064. margin-left: 162px;
  2065. }
  2066. .group_5 {
  2067. background-color: rgba(255, 255, 255, 1);
  2068. border-radius: 10px;
  2069. position: relative;
  2070. width: 100%;
  2071. height: 372px;
  2072. margin-top: 20px;
  2073. }
  2074. .group_6 {
  2075. width: 100%;
  2076. height: 24px;
  2077. padding: 14px 12px 0 12px;
  2078. }
  2079. .thumbnail_19 {
  2080. width: 17px;
  2081. height: 15px;
  2082. margin-top: 4px;
  2083. }
  2084. .text_30 {
  2085. width: 95px;
  2086. height: 16px;
  2087. overflow-wrap: break-word;
  2088. color: rgba(51, 51, 51, 1);
  2089. font-size: 16px;
  2090. font-family: PingFang-SC-Heavy;
  2091. font-weight: 900;
  2092. text-align: left;
  2093. white-space: nowrap;
  2094. line-height: 16px;
  2095. margin: 3px 0 0 6px;
  2096. }
  2097. .section_1 {
  2098. background-color: rgba(238, 248, 245, 1);
  2099. border-radius: 11px;
  2100. width: 102px;
  2101. height: 24px;
  2102. margin-left: 12px;
  2103. }
  2104. .text_31 {
  2105. width: 55px;
  2106. height: 14px;
  2107. overflow-wrap: break-word;
  2108. color: rgba(51, 51, 51, 1);
  2109. font-size: 14px;
  2110. font-family: PingFang-SC-Medium;
  2111. font-weight: 500;
  2112. text-align: left;
  2113. white-space: nowrap;
  2114. line-height: 14px;
  2115. margin: 5px 0 0 13px;
  2116. }
  2117. .thumbnail_20 {
  2118. width: 9px;
  2119. height: 6px;
  2120. margin: 9px 14px 0 11px;
  2121. }
  2122. .text_32 {
  2123. width: 75px;
  2124. height: 14px;
  2125. overflow-wrap: break-word;
  2126. color: rgba(170, 170, 170, 1);
  2127. font-size: 14px;
  2128. font-family: PingFang-SC-Medium;
  2129. font-weight: 500;
  2130. text-align: left;
  2131. white-space: nowrap;
  2132. line-height: 14px;
  2133. // margin: 3px 0 0 402px;
  2134. }
  2135. .group_7 {
  2136. width: 100%;
  2137. // height: 13px;
  2138. padding: 23px 12px 0 12px;
  2139. }
  2140. .text_33 {
  2141. width: 40px;
  2142. height: 12px;
  2143. overflow-wrap: break-word;
  2144. color: rgba(51, 51, 51, 1);
  2145. font-size: 12px;
  2146. font-family: PingFang-SC-Medium;
  2147. font-weight: 500;
  2148. text-align: left;
  2149. white-space: nowrap;
  2150. line-height: 18px;
  2151. }
  2152. .box_5 {
  2153. background-color: rgba(255, 171, 43, 1);
  2154. width: 10px;
  2155. height: 10px;
  2156. margin: 2px 0 0 0;
  2157. }
  2158. .text_34 {
  2159. width: 47px;
  2160. height: 12px;
  2161. overflow-wrap: break-word;
  2162. color: rgba(51, 51, 51, 1);
  2163. font-size: 12px;
  2164. font-family: PingFang-SC-Medium;
  2165. font-weight: 500;
  2166. text-align: left;
  2167. white-space: nowrap;
  2168. line-height: 12px;
  2169. margin: 1px 0 0 10px;
  2170. }
  2171. .box_6 {
  2172. background-color: rgba(3, 191, 138, 1);
  2173. width: 10px;
  2174. height: 10px;
  2175. margin: 2px 0 0 21px;
  2176. }
  2177. .text_35 {
  2178. width: 47px;
  2179. height: 12px;
  2180. overflow-wrap: break-word;
  2181. color: rgba(51, 51, 51, 1);
  2182. font-size: 12px;
  2183. font-family: PingFang-SC-Medium;
  2184. font-weight: 500;
  2185. text-align: left;
  2186. white-space: nowrap;
  2187. line-height: 12px;
  2188. margin: 1px 0 0 10px;
  2189. }
  2190. .text_36 {
  2191. width: 54px;
  2192. height: 12px;
  2193. overflow-wrap: break-word;
  2194. color: rgba(51, 51, 51, 1);
  2195. font-size: 12px;
  2196. font-family: PingFang-SC-Medium;
  2197. font-weight: 500;
  2198. text-align: left;
  2199. white-space: nowrap;
  2200. line-height: 18px;
  2201. margin-left: 0;
  2202. }
  2203. .group_8 {
  2204. width: 100%;
  2205. height: 234px;
  2206. padding: 23px 12px 0 19px;
  2207. }
  2208. .paragraph_1 {
  2209. width: 14px;
  2210. height: 234px;
  2211. overflow-wrap: break-word;
  2212. color: rgba(102, 102, 102, 1);
  2213. font-size: 12px;
  2214. font-family: PingFang-SC-Medium;
  2215. font-weight: 500;
  2216. text-align: right;
  2217. line-height: 45px;
  2218. }
  2219. .image_3 {
  2220. width: 671px;
  2221. height: 210px;
  2222. margin-top: 17px;
  2223. }
  2224. .text-wrapper_7 {
  2225. width: 655px;
  2226. height: 10px;
  2227. margin: 10px 0 21px 50px;
  2228. }
  2229. .text_37 {
  2230. width: 24px;
  2231. height: 10px;
  2232. overflow-wrap: break-word;
  2233. color: rgba(102, 102, 102, 1);
  2234. font-size: 12px;
  2235. font-family: PingFang-SC-Medium;
  2236. font-weight: 500;
  2237. text-align: left;
  2238. white-space: nowrap;
  2239. line-height: 18px;
  2240. }
  2241. .text_38 {
  2242. width: 17px;
  2243. height: 10px;
  2244. overflow-wrap: break-word;
  2245. color: rgba(102, 102, 102, 1);
  2246. font-size: 12px;
  2247. font-family: PingFang-SC-Medium;
  2248. font-weight: 500;
  2249. text-align: left;
  2250. white-space: nowrap;
  2251. line-height: 18px;
  2252. margin-left: 26px;
  2253. }
  2254. .text_39 {
  2255. width: 16px;
  2256. height: 10px;
  2257. overflow-wrap: break-word;
  2258. color: rgba(102, 102, 102, 1);
  2259. font-size: 12px;
  2260. font-family: PingFang-SC-Medium;
  2261. font-weight: 500;
  2262. text-align: left;
  2263. white-space: nowrap;
  2264. line-height: 18px;
  2265. margin-left: 27px;
  2266. }
  2267. .text_40 {
  2268. width: 24px;
  2269. height: 10px;
  2270. overflow-wrap: break-word;
  2271. color: rgba(102, 102, 102, 1);
  2272. font-size: 12px;
  2273. font-family: PingFang-SC-Medium;
  2274. font-weight: 500;
  2275. text-align: left;
  2276. white-space: nowrap;
  2277. line-height: 18px;
  2278. margin-left: 27px;
  2279. }
  2280. .text_41 {
  2281. width: 24px;
  2282. height: 10px;
  2283. overflow-wrap: break-word;
  2284. color: rgba(102, 102, 102, 1);
  2285. font-size: 12px;
  2286. font-family: PingFang-SC-Medium;
  2287. font-weight: 500;
  2288. text-align: left;
  2289. white-space: nowrap;
  2290. line-height: 18px;
  2291. margin-left: 26px;
  2292. }
  2293. .text_42 {
  2294. width: 21px;
  2295. height: 10px;
  2296. overflow-wrap: break-word;
  2297. color: rgba(102, 102, 102, 1);
  2298. font-size: 12px;
  2299. font-family: PingFang-SC-Medium;
  2300. font-weight: 500;
  2301. text-align: left;
  2302. white-space: nowrap;
  2303. line-height: 18px;
  2304. margin-left: 27px;
  2305. }
  2306. .text_43 {
  2307. width: 24px;
  2308. height: 10px;
  2309. overflow-wrap: break-word;
  2310. color: rgba(102, 102, 102, 1);
  2311. font-size: 12px;
  2312. font-family: PingFang-SC-Medium;
  2313. font-weight: 500;
  2314. text-align: left;
  2315. white-space: nowrap;
  2316. line-height: 18px;
  2317. margin-left: 27px;
  2318. }
  2319. .text_44 {
  2320. width: 17px;
  2321. height: 10px;
  2322. overflow-wrap: break-word;
  2323. color: rgba(102, 102, 102, 1);
  2324. font-size: 12px;
  2325. font-family: PingFang-SC-Medium;
  2326. font-weight: 500;
  2327. text-align: left;
  2328. white-space: nowrap;
  2329. line-height: 18px;
  2330. margin-left: 25px;
  2331. }
  2332. .text_45 {
  2333. width: 25px;
  2334. height: 10px;
  2335. overflow-wrap: break-word;
  2336. color: rgba(102, 102, 102, 1);
  2337. font-size: 12px;
  2338. font-family: PingFang-SC-Medium;
  2339. font-weight: 500;
  2340. text-align: left;
  2341. white-space: nowrap;
  2342. line-height: 18px;
  2343. margin-left: 26px;
  2344. }
  2345. .text_46 {
  2346. width: 25px;
  2347. height: 10px;
  2348. overflow-wrap: break-word;
  2349. color: rgba(102, 102, 102, 1);
  2350. font-size: 12px;
  2351. font-family: PingFang-SC-Medium;
  2352. font-weight: 500;
  2353. text-align: left;
  2354. white-space: nowrap;
  2355. line-height: 18px;
  2356. margin-left: 26px;
  2357. }
  2358. .text_47 {
  2359. width: 25px;
  2360. height: 10px;
  2361. overflow-wrap: break-word;
  2362. color: rgba(102, 102, 102, 1);
  2363. font-size: 12px;
  2364. font-family: PingFang-SC-Medium;
  2365. font-weight: 500;
  2366. text-align: left;
  2367. white-space: nowrap;
  2368. line-height: 18px;
  2369. margin-left: 26px;
  2370. }
  2371. .text_48 {
  2372. width: 22px;
  2373. height: 9px;
  2374. overflow-wrap: break-word;
  2375. color: rgba(102, 102, 102, 1);
  2376. font-size: 12px;
  2377. font-family: PingFang-SC-Medium;
  2378. font-weight: 500;
  2379. text-align: left;
  2380. white-space: nowrap;
  2381. line-height: 18px;
  2382. margin: 1px 0 0 25px;
  2383. }
  2384. .text_49 {
  2385. width: 25px;
  2386. height: 10px;
  2387. overflow-wrap: break-word;
  2388. color: rgba(102, 102, 102, 1);
  2389. font-size: 12px;
  2390. font-family: PingFang-SC-Medium;
  2391. font-weight: 500;
  2392. text-align: left;
  2393. white-space: nowrap;
  2394. line-height: 18px;
  2395. margin-left: 27px;
  2396. }
  2397. .text_50 {
  2398. width: 25px;
  2399. height: 10px;
  2400. overflow-wrap: break-word;
  2401. color: rgba(102, 102, 102, 1);
  2402. font-size: 12px;
  2403. font-family: PingFang-SC-Medium;
  2404. font-weight: 500;
  2405. text-align: left;
  2406. white-space: nowrap;
  2407. line-height: 18px;
  2408. margin-left: 26px;
  2409. }
  2410. .image_4 {
  2411. position: absolute;
  2412. left: 43px;
  2413. top: 102px;
  2414. width: 669px;
  2415. height: 226px;
  2416. }
  2417. .group_9 {
  2418. width: 734px;
  2419. height: 284px;
  2420. margin-top: 12px;
  2421. }
  2422. .box_7 {
  2423. background-color: rgba(255, 255, 255, 1);
  2424. border-radius: 10px;
  2425. width: 100%;
  2426. height: 284px;
  2427. }
  2428. .group_10 {
  2429. width: 100%;
  2430. height: 24px;
  2431. padding: 12px 12px 0 12px;
  2432. }
  2433. .image-text_1 {
  2434. width: 118px;
  2435. height: 16px;
  2436. margin-top: 4px;
  2437. }
  2438. .thumbnail_21 {
  2439. width: 17px;
  2440. height: 16px;
  2441. }
  2442. .text-group_1 {
  2443. width: 95px;
  2444. height: 16px;
  2445. overflow-wrap: break-word;
  2446. color: rgba(51, 51, 51, 1);
  2447. font-size: 16px;
  2448. font-family: PingFang-SC-Heavy;
  2449. font-weight: 900;
  2450. text-align: left;
  2451. white-space: nowrap;
  2452. line-height: 16px;
  2453. }
  2454. .group_11 {
  2455. background-color: rgba(238, 248, 245, 1);
  2456. border-radius: 11px;
  2457. width: 84px;
  2458. height: 24px;
  2459. }
  2460. .image-text_2 {
  2461. width: 55px;
  2462. height: 11px;
  2463. margin: 6px 0 0 15px;
  2464. }
  2465. .text-group_2 {
  2466. width: 33px;
  2467. height: 11px;
  2468. overflow-wrap: break-word;
  2469. color: rgba(51, 51, 51, 1);
  2470. font-size: 14px;
  2471. font-family: PingFang-SC-Medium;
  2472. font-weight: 500;
  2473. text-align: left;
  2474. white-space: nowrap;
  2475. line-height: 11px;
  2476. }
  2477. .thumbnail_22 {
  2478. width: 9px;
  2479. height: 6px;
  2480. margin-top: 3px;
  2481. }
  2482. .text_51 {
  2483. width: 58px;
  2484. height: 13px;
  2485. overflow-wrap: break-word;
  2486. color: rgba(51, 51, 51, 1);
  2487. font-size: 14px;
  2488. font-family: PingFang-SC-Medium;
  2489. font-weight: 500;
  2490. text-align: left;
  2491. white-space: nowrap;
  2492. line-height: 14px;
  2493. margin: 23px 0 0 141px;
  2494. }
  2495. .group_12 {
  2496. width: 100%;
  2497. height: 161px;
  2498. padding: 6px 10px 0 10px;
  2499. }
  2500. .text_52 {
  2501. width: 58px;
  2502. height: 13px;
  2503. overflow-wrap: break-word;
  2504. color: rgba(51, 51, 51, 1);
  2505. font-size: 14px;
  2506. font-family: PingFang-SC-Medium;
  2507. font-weight: 500;
  2508. text-align: left;
  2509. white-space: nowrap;
  2510. line-height: 14px;
  2511. margin-top: 54px;
  2512. }
  2513. .image_5 {
  2514. width: 177px;
  2515. height: 161px;
  2516. margin-left: 5px;
  2517. }
  2518. .text_53 {
  2519. width: 58px;
  2520. height: 13px;
  2521. overflow-wrap: break-word;
  2522. color: rgba(51, 51, 51, 1);
  2523. font-size: 14px;
  2524. font-family: PingFang-SC-Medium;
  2525. font-weight: 500;
  2526. text-align: left;
  2527. white-space: nowrap;
  2528. line-height: 14px;
  2529. margin: 54px 0 0 5px;
  2530. }
  2531. .text-wrapper_8 {
  2532. width: 184px;
  2533. height: 14px;
  2534. margin: 4px 0 27px 82px;
  2535. }
  2536. .text_54 {
  2537. width: 58px;
  2538. height: 14px;
  2539. overflow-wrap: break-word;
  2540. color: rgba(51, 51, 51, 1);
  2541. font-size: 14px;
  2542. font-family: PingFang-SC-Medium;
  2543. font-weight: 500;
  2544. text-align: left;
  2545. white-space: nowrap;
  2546. line-height: 14px;
  2547. }
  2548. .text_55 {
  2549. width: 72px;
  2550. height: 14px;
  2551. overflow-wrap: break-word;
  2552. color: rgba(51, 51, 51, 1);
  2553. font-size: 14px;
  2554. font-family: PingFang-SC-Medium;
  2555. font-weight: 500;
  2556. text-align: left;
  2557. white-space: nowrap;
  2558. line-height: 14px;
  2559. }
  2560. .box_8 {
  2561. background-color: rgba(255, 255, 255, 1);
  2562. border-radius: 10px;
  2563. height: 284px;
  2564. width: 100%;
  2565. position: relative;
  2566. }
  2567. .block_7 {
  2568. width: 100%;
  2569. height: 24px;
  2570. padding: 12px 11px 0 11px;
  2571. }
  2572. .image-text_3 {
  2573. width: 151px;
  2574. height: 16px;
  2575. margin-top: 4px;
  2576. }
  2577. .thumbnail_23 {
  2578. width: 16px;
  2579. height: 16px;
  2580. }
  2581. .text-group_3 {
  2582. width: 127px;
  2583. height: 16px;
  2584. overflow-wrap: break-word;
  2585. color: rgba(51, 51, 51, 1);
  2586. font-size: 16px;
  2587. font-family: PingFang-SC-Heavy;
  2588. font-weight: 900;
  2589. text-align: left;
  2590. white-space: nowrap;
  2591. line-height: 16px;
  2592. }
  2593. .section_2 {
  2594. background-color: rgba(238, 248, 245, 1);
  2595. border-radius: 11px;
  2596. width: 84px;
  2597. height: 24px;
  2598. }
  2599. .image-text_4 {
  2600. width: 55px;
  2601. height: 11px;
  2602. margin: 6px 0 0 15px;
  2603. }
  2604. .text-group_4 {
  2605. width: 33px;
  2606. height: 11px;
  2607. overflow-wrap: break-word;
  2608. color: rgba(51, 51, 51, 1);
  2609. font-size: 14px;
  2610. font-family: PingFang-SC-Medium;
  2611. font-weight: 500;
  2612. text-align: left;
  2613. white-space: nowrap;
  2614. line-height: 11px;
  2615. }
  2616. .thumbnail_24 {
  2617. width: 9px;
  2618. height: 6px;
  2619. margin-top: 3px;
  2620. }
  2621. .block_8 {
  2622. width: 100%;
  2623. // height: 179px;
  2624. padding: 0 10px 0 10px;
  2625. position: relative;
  2626. top:32px;
  2627. }
  2628. .block_9 {
  2629. width: 167px;
  2630. height: 167px;
  2631. background: url(https://lanhu-oss-2537-2.lanhuapp.com/ps7hfzqonyh34q6htsu17cobje5wipuw9706925fc9-9116-494b-a413-4e48b0c75c37) -21px -14px
  2632. no-repeat;
  2633. background-size: 224px 195px;
  2634. }
  2635. .text_56 {
  2636. width: 64px;
  2637. height: 16px;
  2638. overflow-wrap: break-word;
  2639. color: rgba(102, 102, 102, 1);
  2640. font-size: 16px;
  2641. font-family: PingFang-SC-Medium;
  2642. font-weight: 500;
  2643. text-align: left;
  2644. white-space: nowrap;
  2645. line-height: 24px;
  2646. margin: 59px 0 0 50px;
  2647. }
  2648. .text-wrapper_9 {
  2649. width: 68px;
  2650. height: 18px;
  2651. overflow-wrap: break-word;
  2652. font-size: 0;
  2653. font-family: Alibaba-PuHuiTi-B;
  2654. font-weight: 700;
  2655. text-align: left;
  2656. white-space: nowrap;
  2657. line-height: 24px;
  2658. margin: 13px 0 61px 50px;
  2659. }
  2660. .text_57 {
  2661. width: 68px;
  2662. height: 18px;
  2663. overflow-wrap: break-word;
  2664. color: rgba(51, 51, 51, 1);
  2665. font-size: 22px;
  2666. font-family: Alibaba-PuHuiTi-B;
  2667. font-weight: 700;
  2668. text-align: left;
  2669. white-space: nowrap;
  2670. line-height: 24px;
  2671. }
  2672. .text_58 {
  2673. width: 68px;
  2674. height: 18px;
  2675. overflow-wrap: break-word;
  2676. color: rgba(51, 51, 51, 1);
  2677. font-size: 24px;
  2678. font-family: Alibaba-PuHuiTi-M;
  2679. font-weight: 500;
  2680. text-align: left;
  2681. white-space: nowrap;
  2682. line-height: 24px;
  2683. }
  2684. .text_59 {
  2685. width: 68px;
  2686. height: 18px;
  2687. overflow-wrap: break-word;
  2688. color: rgba(51, 51, 51, 1);
  2689. font-size: 16px;
  2690. font-family: PingFang-SC-Medium;
  2691. font-weight: 500;
  2692. text-align: left;
  2693. white-space: nowrap;
  2694. line-height: 24px;
  2695. }
  2696. .block_10 {
  2697. width: 10px;
  2698. height: 126px;
  2699. margin: 19px 0 0 26px;
  2700. }
  2701. .section_3 {
  2702. background-color: rgba(89, 212, 171, 1);
  2703. border-radius: 50%;
  2704. width: 10px;
  2705. height: 10px;
  2706. }
  2707. .section_4 {
  2708. background-color: rgba(115, 197, 235, 1);
  2709. border-radius: 50%;
  2710. width: 10px;
  2711. height: 10px;
  2712. margin-top: 33px;
  2713. }
  2714. .section_5 {
  2715. background-color: rgba(252, 166, 96, 1);
  2716. border-radius: 50%;
  2717. width: 10px;
  2718. height: 10px;
  2719. margin-top: 63px;
  2720. }
  2721. .text-wrapper_10 {
  2722. width: 80px;
  2723. height: 163px;
  2724. margin: 16px 0 0 14px;
  2725. }
  2726. .text_60 {
  2727. width: 63px;
  2728. height: 16px;
  2729. overflow-wrap: break-word;
  2730. color: rgba(51, 51, 51, 1);
  2731. font-size: 16px;
  2732. font-family: PingFang-SC-Medium;
  2733. font-weight: 500;
  2734. text-align: left;
  2735. white-space: nowrap;
  2736. line-height: 16px;
  2737. margin-left: 1px;
  2738. }
  2739. .text_61 {
  2740. width: 79px;
  2741. height: 16px;
  2742. overflow-wrap: break-word;
  2743. color: rgba(51, 51, 51, 1);
  2744. font-size: 16px;
  2745. font-family: PingFang-SC-Medium;
  2746. font-weight: 500;
  2747. text-align: left;
  2748. white-space: nowrap;
  2749. line-height: 16px;
  2750. margin: 27px 0 0 1px;
  2751. }
  2752. .text_62 {
  2753. width: 64px;
  2754. height: 16px;
  2755. overflow-wrap: break-word;
  2756. color: rgba(51, 51, 51, 1);
  2757. font-size: 16px;
  2758. font-family: PingFang-SC-Medium;
  2759. font-weight: 500;
  2760. text-align: left;
  2761. white-space: nowrap;
  2762. line-height: 16px;
  2763. margin-top: 15px;
  2764. }
  2765. .text_63 {
  2766. width: 63px;
  2767. height: 16px;
  2768. overflow-wrap: break-word;
  2769. color: rgba(51, 51, 51, 1);
  2770. font-size: 16px;
  2771. font-family: PingFang-SC-Medium;
  2772. font-weight: 500;
  2773. text-align: left;
  2774. white-space: nowrap;
  2775. line-height: 16px;
  2776. margin: 26px 0 0 1px;
  2777. }
  2778. .text_64 {
  2779. width: 63px;
  2780. height: 16px;
  2781. overflow-wrap: break-word;
  2782. color: rgba(51, 51, 51, 1);
  2783. font-size: 16px;
  2784. font-family: PingFang-SC-Medium;
  2785. font-weight: 500;
  2786. text-align: left;
  2787. white-space: nowrap;
  2788. line-height: 16px;
  2789. margin: 15px 0 0 1px;
  2790. }
  2791. .text-wrapper_11 {
  2792. width: 19px;
  2793. height: 158px;
  2794. margin: 19px 0 0 20px;
  2795. }
  2796. .text_65 {
  2797. width: 19px;
  2798. height: 11px;
  2799. overflow-wrap: break-word;
  2800. color: rgba(51, 51, 51, 1);
  2801. font-size: 16px;
  2802. font-family: Alibaba-PuHuiTi-B;
  2803. font-weight: 700;
  2804. text-align: left;
  2805. white-space: nowrap;
  2806. line-height: 11px;
  2807. }
  2808. .text_66 {
  2809. width: 19px;
  2810. height: 12px;
  2811. overflow-wrap: break-word;
  2812. color: rgba(51, 51, 51, 1);
  2813. font-size: 16px;
  2814. font-family: Alibaba-PuHuiTi-B;
  2815. font-weight: 700;
  2816. text-align: left;
  2817. white-space: nowrap;
  2818. line-height: 12px;
  2819. margin-top: 31px;
  2820. }
  2821. .text_67 {
  2822. width: 18px;
  2823. height: 13px;
  2824. overflow-wrap: break-word;
  2825. color: rgba(51, 51, 51, 1);
  2826. font-size: 16px;
  2827. font-family: Alibaba-PuHuiTi-B;
  2828. font-weight: 700;
  2829. text-align: left;
  2830. white-space: nowrap;
  2831. line-height: 13px;
  2832. margin: 19px 0 0 1px;
  2833. }
  2834. .text_68 {
  2835. width: 17px;
  2836. height: 13px;
  2837. overflow-wrap: break-word;
  2838. color: rgba(51, 51, 51, 1);
  2839. font-size: 16px;
  2840. font-family: Alibaba-PuHuiTi-B;
  2841. font-weight: 700;
  2842. text-align: left;
  2843. white-space: nowrap;
  2844. line-height: 13px;
  2845. margin: 29px 0 0 1px;
  2846. }
  2847. .text_69 {
  2848. width: 16px;
  2849. height: 12px;
  2850. overflow-wrap: break-word;
  2851. color: rgba(51, 51, 51, 1);
  2852. font-size: 16px;
  2853. font-family: Alibaba-PuHuiTi-B;
  2854. font-weight: 700;
  2855. text-align: left;
  2856. white-space: nowrap;
  2857. line-height: 12px;
  2858. margin: 18px 0 0 1px;
  2859. }
  2860. .block_11 {
  2861. width: 208px;
  2862. height: 13px;
  2863. margin: 20px 0 27px 14px;
  2864. position: absolute;
  2865. bottom: 0;
  2866. }
  2867. .section_6 {
  2868. background-color: rgba(89, 212, 171, 1);
  2869. width: 10px;
  2870. height: 10px;
  2871. margin-top: 1px;
  2872. }
  2873. .text_70 {
  2874. width: 42px;
  2875. height: 13px;
  2876. overflow-wrap: break-word;
  2877. color: rgba(51, 51, 51, 1);
  2878. font-size: 14px;
  2879. font-family: PingFang-SC-Medium;
  2880. font-weight: 500;
  2881. text-align: left;
  2882. white-space: nowrap;
  2883. line-height: 13px;
  2884. margin-left: 7px;
  2885. }
  2886. .section_7 {
  2887. background-color: rgba(115, 197, 235, 1);
  2888. width: 10px;
  2889. height: 10px;
  2890. margin: 1px 0 0 15px;
  2891. }
  2892. .text_71 {
  2893. width: 41px;
  2894. height: 13px;
  2895. overflow-wrap: break-word;
  2896. color: rgba(51, 51, 51, 1);
  2897. font-size: 14px;
  2898. font-family: PingFang-SC-Medium;
  2899. font-weight: 500;
  2900. text-align: left;
  2901. white-space: nowrap;
  2902. line-height: 13px;
  2903. margin-left: 8px;
  2904. }
  2905. .section_8 {
  2906. background-color: rgba(252, 166, 96, 1);
  2907. width: 10px;
  2908. height: 10px;
  2909. margin: 1px 0 0 16px;
  2910. }
  2911. .text_72 {
  2912. width: 42px;
  2913. height: 13px;
  2914. overflow-wrap: break-word;
  2915. color: rgba(51, 51, 51, 1);
  2916. font-size: 14px;
  2917. font-family: PingFang-SC-Medium;
  2918. font-weight: 500;
  2919. text-align: left;
  2920. white-space: nowrap;
  2921. line-height: 13px;
  2922. margin-left: 7px;
  2923. }
  2924. .box_9 {
  2925. width: 454px;
  2926. height: 668px;
  2927. margin-left: 12px;
  2928. }
  2929. .box_10 {
  2930. background-color: rgba(255, 255, 255, 1);
  2931. border-radius: 10px;
  2932. width: 454px;
  2933. height: 416px;
  2934. }
  2935. .box_11 {
  2936. width: 100%;
  2937. height: 59px;
  2938. justify-content: space-between;
  2939. // margin: 21px 0 0 25px;
  2940. }
  2941. .box_12 {
  2942. width: 123px;
  2943. height: 59px;
  2944. }
  2945. .text-wrapper_12 {
  2946. width: 123px;
  2947. height: 17px;
  2948. }
  2949. .text_73 {
  2950. width: 65px;
  2951. height: 16px;
  2952. overflow-wrap: break-word;
  2953. color: rgba(51, 51, 51, 1);
  2954. font-size: 16px;
  2955. font-family: PingFang-SC-Bold;
  2956. font-weight: 700;
  2957. text-align: center;
  2958. white-space: nowrap;
  2959. line-height: 26px;
  2960. }
  2961. .text_74 {
  2962. width: 30px;
  2963. height: 17px;
  2964. overflow-wrap: break-word;
  2965. color: rgba(51, 51, 51, 1);
  2966. font-size: 18px;
  2967. font-family: PingFang-SC-Bold;
  2968. font-weight: 700;
  2969. text-align: center;
  2970. white-space: nowrap;
  2971. line-height: 26px;
  2972. }
  2973. .text-wrapper_13 {
  2974. width: 122px;
  2975. height: 31px;
  2976. overflow-wrap: break-word;
  2977. font-size: 0;
  2978. font-family: Alibaba-PuHuiTi-B;
  2979. font-weight: 700;
  2980. text-align: center;
  2981. white-space: nowrap;
  2982. line-height: 26px;
  2983. margin: 11px 0 0 1px;
  2984. }
  2985. .text_75 {
  2986. width: 122px;
  2987. height: 31px;
  2988. overflow-wrap: break-word;
  2989. color: rgba(51, 51, 51, 1);
  2990. font-size: 40px;
  2991. font-family: Alibaba-PuHuiTi-B;
  2992. font-weight: 700;
  2993. text-align: left;
  2994. white-space: nowrap;
  2995. line-height: 26px;
  2996. }
  2997. .text_76 {
  2998. width: 122px;
  2999. height: 31px;
  3000. overflow-wrap: break-word;
  3001. color: rgba(51, 51, 51, 1);
  3002. font-size: 40px;
  3003. font-family: Alibaba-PuHuiTi-B;
  3004. font-weight: 700;
  3005. text-align: left;
  3006. white-space: nowrap;
  3007. line-height: 26px;
  3008. }
  3009. .text_77 {
  3010. width: 122px;
  3011. height: 31px;
  3012. overflow-wrap: break-word;
  3013. color: rgba(51, 51, 51, 1);
  3014. font-size: 40px;
  3015. font-family: Alibaba-PuHuiTi-B;
  3016. font-weight: 700;
  3017. text-align: left;
  3018. white-space: nowrap;
  3019. line-height: 26px;
  3020. }
  3021. .text-wrapper_14 {
  3022. width: 30px;
  3023. height: 38px;
  3024. margin-top: 13px;
  3025. // margin: 13px 0 0 184px;
  3026. }
  3027. .text_78 {
  3028. width: 26px;
  3029. height: 13px;
  3030. overflow-wrap: break-word;
  3031. color: rgba(51, 51, 51, 1);
  3032. font-size: 14px;
  3033. font-family: PingFang-SC-Medium;
  3034. font-weight: 500;
  3035. text-align: left;
  3036. white-space: nowrap;
  3037. line-height: 26px;
  3038. }
  3039. .text_79 {
  3040. width: 29px;
  3041. height: 13px;
  3042. overflow-wrap: break-word;
  3043. color: rgba(51, 51, 51, 1);
  3044. font-size: 14px;
  3045. font-family: PingFang-SC-Medium;
  3046. font-weight: 500;
  3047. text-align: left;
  3048. white-space: nowrap;
  3049. line-height: 26px;
  3050. margin: 12px 0 0 1px;
  3051. }
  3052. .label_7 {
  3053. width: 36px;
  3054. height: 38px;
  3055. margin: 13px 0 0 12px;
  3056. }
  3057. .text-wrapper_15 {
  3058. width: 391px;
  3059. height: 14px;
  3060. margin: 29px 0 0 32px;
  3061. }
  3062. .text_80 {
  3063. width: 41px;
  3064. height: 14px;
  3065. overflow-wrap: break-word;
  3066. color: rgba(170, 170, 170, 1);
  3067. font-size: 14px;
  3068. font-family: PingFang-SC-Medium;
  3069. font-weight: 500;
  3070. text-align: center;
  3071. white-space: nowrap;
  3072. line-height: 26px;
  3073. }
  3074. .text_81 {
  3075. width: 41px;
  3076. height: 14px;
  3077. overflow-wrap: break-word;
  3078. color: rgba(170, 170, 170, 1);
  3079. font-size: 14px;
  3080. font-family: PingFang-SC-Medium;
  3081. font-weight: 500;
  3082. text-align: center;
  3083. white-space: nowrap;
  3084. line-height: 26px;
  3085. margin-left: 18px;
  3086. }
  3087. .text_82 {
  3088. width: 41px;
  3089. height: 14px;
  3090. overflow-wrap: break-word;
  3091. color: rgba(170, 170, 170, 1);
  3092. font-size: 14px;
  3093. font-family: PingFang-SC-Medium;
  3094. font-weight: 500;
  3095. text-align: center;
  3096. white-space: nowrap;
  3097. line-height: 26px;
  3098. margin-left: 18px;
  3099. }
  3100. .text_83 {
  3101. width: 40px;
  3102. height: 14px;
  3103. overflow-wrap: break-word;
  3104. color: rgba(170, 170, 170, 1);
  3105. font-size: 14px;
  3106. font-family: PingFang-SC-Medium;
  3107. font-weight: 500;
  3108. text-align: center;
  3109. white-space: nowrap;
  3110. line-height: 26px;
  3111. margin-left: 17px;
  3112. }
  3113. .text_84 {
  3114. width: 41px;
  3115. height: 14px;
  3116. overflow-wrap: break-word;
  3117. color: rgba(170, 170, 170, 1);
  3118. font-size: 14px;
  3119. font-family: PingFang-SC-Medium;
  3120. font-weight: 500;
  3121. text-align: center;
  3122. white-space: nowrap;
  3123. line-height: 26px;
  3124. margin-left: 19px;
  3125. }
  3126. .text_85 {
  3127. width: 41px;
  3128. height: 14px;
  3129. overflow-wrap: break-word;
  3130. color: rgba(170, 170, 170, 1);
  3131. font-size: 14px;
  3132. font-family: PingFang-SC-Medium;
  3133. font-weight: 500;
  3134. text-align: center;
  3135. white-space: nowrap;
  3136. line-height: 26px;
  3137. margin-left: 17px;
  3138. }
  3139. .text_86 {
  3140. width: 39px;
  3141. height: 14px;
  3142. overflow-wrap: break-word;
  3143. color: rgba(170, 170, 170, 1);
  3144. font-size: 14px;
  3145. font-family: PingFang-SC-Medium;
  3146. font-weight: 500;
  3147. text-align: center;
  3148. white-space: nowrap;
  3149. line-height: 26px;
  3150. margin-left: 18px;
  3151. }
  3152. .box_13 {
  3153. width: 431px;
  3154. height: 31px;
  3155. margin: 20px 0 0 12px;
  3156. }
  3157. .thumbnail_25 {
  3158. width: 8px;
  3159. height: 12px;
  3160. margin-top: 10px;
  3161. }
  3162. .text_87 {
  3163. width: 13px;
  3164. height: 11px;
  3165. overflow-wrap: break-word;
  3166. color: rgba(51, 51, 51, 1);
  3167. font-size: 14px;
  3168. font-family: PingFang-SC-Medium;
  3169. font-weight: 500;
  3170. text-align: center;
  3171. white-space: nowrap;
  3172. line-height: 26px;
  3173. margin: 10px 0 0 23px;
  3174. }
  3175. .text_88 {
  3176. width: 15px;
  3177. height: 11px;
  3178. overflow-wrap: break-word;
  3179. color: rgba(51, 51, 51, 1);
  3180. font-size: 14px;
  3181. font-family: PingFang-SC-Medium;
  3182. font-weight: 500;
  3183. text-align: center;
  3184. white-space: nowrap;
  3185. line-height: 26px;
  3186. margin: 10px 0 0 46px;
  3187. }
  3188. .text-wrapper_16 {
  3189. height: 31px;
  3190. background: url(https://lanhu-oss-2537-2.lanhuapp.com/psj51mwd60ogrxhjjk6nh3da9ncnt0yrycq9e12ee7e-4335-48e6-b7b7-6fe63c92e06b)
  3191. 100% no-repeat;
  3192. background-size: 100% 100%;
  3193. margin-left: 36px;
  3194. width: 31px;
  3195. }
  3196. .text_89 {
  3197. width: 16px;
  3198. height: 12px;
  3199. overflow-wrap: break-word;
  3200. color: rgba(255, 255, 255, 1);
  3201. font-size: 14px;
  3202. font-family: PingFang-SC-Heavy;
  3203. font-weight: 900;
  3204. text-align: center;
  3205. white-space: nowrap;
  3206. line-height: 26px;
  3207. margin: 10px 0 0 8px;
  3208. }
  3209. .text_90 {
  3210. width: 16px;
  3211. height: 11px;
  3212. overflow-wrap: break-word;
  3213. color: rgba(51, 51, 51, 1);
  3214. font-size: 14px;
  3215. font-family: PingFang-SC-Medium;
  3216. font-weight: 500;
  3217. text-align: center;
  3218. white-space: nowrap;
  3219. line-height: 26px;
  3220. margin: 10px 0 0 38px;
  3221. }
  3222. .text_91 {
  3223. width: 16px;
  3224. height: 12px;
  3225. overflow-wrap: break-word;
  3226. color: rgba(51, 51, 51, 1);
  3227. font-size: 14px;
  3228. font-family: PingFang-SC-Medium;
  3229. font-weight: 500;
  3230. text-align: center;
  3231. white-space: nowrap;
  3232. line-height: 26px;
  3233. margin: 10px 0 0 41px;
  3234. }
  3235. .text_92 {
  3236. width: 16px;
  3237. height: 12px;
  3238. overflow-wrap: break-word;
  3239. color: rgba(51, 51, 51, 1);
  3240. font-size: 14px;
  3241. font-family: PingFang-SC-Medium;
  3242. font-weight: 500;
  3243. text-align: center;
  3244. white-space: nowrap;
  3245. line-height: 26px;
  3246. margin: 10px 0 0 42px;
  3247. }
  3248. .text_93 {
  3249. width: 15px;
  3250. height: 11px;
  3251. overflow-wrap: break-word;
  3252. color: rgba(51, 51, 51, 1);
  3253. font-size: 14px;
  3254. font-family: PingFang-SC-Medium;
  3255. font-weight: 500;
  3256. text-align: center;
  3257. white-space: nowrap;
  3258. line-height: 26px;
  3259. margin: 10px 0 0 42px;
  3260. }
  3261. .thumbnail_26 {
  3262. width: 8px;
  3263. height: 12px;
  3264. margin: 10px 0 0 25px;
  3265. }
  3266. .box_14 {
  3267. background-color: rgba(255, 255, 255, 1);
  3268. border-radius: 5px 0px 0px 0px;
  3269. width: 100%;
  3270. height: 88px;
  3271. border: 2px solid rgba(238, 238, 238, 1);
  3272. margin: 30px 0 0 0;
  3273. }
  3274. .text-wrapper_17 {
  3275. width: 150px;
  3276. height: 44px;
  3277. margin: 22px 0 0 0;
  3278. }
  3279. .text_94 {
  3280. width: 150px;
  3281. height: 15px;
  3282. overflow-wrap: break-word;
  3283. color: rgba(170, 170, 170, 1);
  3284. font-size: 16px;
  3285. font-family: PingFang-SC-Medium;
  3286. font-weight: 500;
  3287. text-align: center;
  3288. white-space: nowrap;
  3289. line-height: 15px;
  3290. }
  3291. .text_95 {
  3292. width: 59px;
  3293. height: 16px;
  3294. overflow-wrap: break-word;
  3295. color: rgba(51, 51, 51, 1);
  3296. font-size: 16px;
  3297. font-family: PingFang-SC-Heavy;
  3298. font-weight: 900;
  3299. text-align: left;
  3300. white-space: nowrap;
  3301. line-height: 16px;
  3302. margin: 13px 0 0 1px;
  3303. }
  3304. .text-wrapper_18 {
  3305. // width: 84px;
  3306. // margin: 31px 0 0 121px;
  3307. display: flex;
  3308. align-items: center;
  3309. }
  3310. .text_96 {
  3311. // width: 56px;
  3312. // height: 14px;
  3313. background-color: rgba(255, 242, 233, 1);
  3314. border-radius: 4px;
  3315. // height: 26px;
  3316. border: 1px solid rgba(255, 102, 0, 1);
  3317. overflow-wrap: break-word;
  3318. color: rgba(255, 102, 0, 1);
  3319. font-size: 14px;
  3320. font-family: PingFang-SC-Medium;
  3321. font-weight: 500;
  3322. text-align: left;
  3323. white-space: nowrap;
  3324. line-height: 14px;
  3325. padding: 5px;
  3326. margin-right: 10px;
  3327. // margin: 6px 0 0 14px;
  3328. }
  3329. .thumbnail_27 {
  3330. width: 18px;
  3331. height: 14px;
  3332. // margin: 37px 20px 0 18px;
  3333. }
  3334. .box_15 {
  3335. box-shadow: 0px 2px 20px 0px rgba(187, 187, 187, 0.1);
  3336. background-color: rgba(255, 255, 255, 1);
  3337. border-radius: 5px 0px 0px 0px;
  3338. width: 430px;
  3339. height: 88px;
  3340. border: 2px solid rgba(238, 238, 238, 1);
  3341. margin: 14px 0 22px 12px;
  3342. }
  3343. .text-wrapper_19 {
  3344. width: 150px;
  3345. height: 44px;
  3346. margin: 22px 0 0 19px;
  3347. }
  3348. .text_97 {
  3349. width: 150px;
  3350. height: 15px;
  3351. overflow-wrap: break-word;
  3352. color: rgba(170, 170, 170, 1);
  3353. font-size: 16px;
  3354. font-family: PingFang-SC-Medium;
  3355. font-weight: 500;
  3356. text-align: center;
  3357. white-space: nowrap;
  3358. line-height: 26px;
  3359. }
  3360. .text_98 {
  3361. width: 59px;
  3362. height: 16px;
  3363. overflow-wrap: break-word;
  3364. color: rgba(51, 51, 51, 1);
  3365. font-size: 16px;
  3366. font-family: PingFang-SC-Heavy;
  3367. font-weight: 900;
  3368. text-align: left;
  3369. white-space: nowrap;
  3370. line-height: 26px;
  3371. margin: 13px 0 0 1px;
  3372. }
  3373. .text-wrapper_20 {
  3374. background-color: rgba(225, 242, 250, 1);
  3375. border-radius: 4px;
  3376. height: 26px;
  3377. border: 1px solid rgba(0, 159, 232, 1);
  3378. width: 84px;
  3379. margin: 31px 0 0 121px;
  3380. }
  3381. .text_99 {
  3382. width: 55px;
  3383. height: 14px;
  3384. overflow-wrap: break-word;
  3385. color: rgba(0, 159, 232, 1);
  3386. font-size: 14px;
  3387. font-family: PingFang-SC-Medium;
  3388. font-weight: 500;
  3389. text-align: left;
  3390. white-space: nowrap;
  3391. line-height: 26px;
  3392. margin: 6px 0 0 15px;
  3393. }
  3394. .thumbnail_28 {
  3395. width: 18px;
  3396. height: 14px;
  3397. margin: 37px 20px 0 18px;
  3398. }
  3399. .box_16 {
  3400. background-color: rgba(255, 255, 255, 1);
  3401. border-radius: 10px;
  3402. height: 232px;
  3403. margin-top: 12px;
  3404. width: 100%;
  3405. }
  3406. .section_9 {
  3407. // width: 429px;
  3408. height: 16px;
  3409. padding: 18px 13px 0 13px;
  3410. }
  3411. .image-text_5 {
  3412. width: 118px;
  3413. height: 16px;
  3414. }
  3415. .thumbnail_29 {
  3416. width: 18px;
  3417. height: 16px;
  3418. }
  3419. .text-group_5 {
  3420. width: 96px;
  3421. height: 16px;
  3422. overflow-wrap: break-word;
  3423. color: rgba(51, 51, 51, 1);
  3424. font-size: 16px;
  3425. font-family: PingFang-SC-Heavy;
  3426. font-weight: 900;
  3427. text-align: left;
  3428. white-space: nowrap;
  3429. line-height: 16px;
  3430. margin-left: 10px;
  3431. }
  3432. .text_100 {
  3433. width: 75px;
  3434. height: 14px;
  3435. overflow-wrap: break-word;
  3436. color: rgba(170, 170, 170, 1);
  3437. font-size: 14px;
  3438. font-family: PingFang-SC-Medium;
  3439. font-weight: 500;
  3440. text-align: left;
  3441. white-space: nowrap;
  3442. line-height: 14px;
  3443. margin-top: 2px;
  3444. }
  3445. .section_10 {
  3446. width: 100%;
  3447. height: 149px;
  3448. padding: 30px 0 37px 20px;
  3449. }
  3450. .image-text_6 {
  3451. width: 58px;
  3452. height: 149px;
  3453. }
  3454. .image_6 {
  3455. width: 58px;
  3456. height: 127px;
  3457. }
  3458. .text-group_6 {
  3459. width: 48px;
  3460. height: 15px;
  3461. overflow-wrap: break-word;
  3462. color: rgba(51, 51, 51, 1);
  3463. font-size: 16px;
  3464. font-family: PingFang-SC-Medium;
  3465. font-weight: 500;
  3466. text-align: left;
  3467. white-space: nowrap;
  3468. line-height: 15px;
  3469. margin: 7px 0 0 5px;
  3470. }
  3471. .image-text_7 {
  3472. width: 59px;
  3473. height: 149px;
  3474. margin-left: 28px;
  3475. }
  3476. .image_7 {
  3477. width: 59px;
  3478. height: 127px;
  3479. }
  3480. .text-group_7 {
  3481. width: 50px;
  3482. height: 15px;
  3483. overflow-wrap: break-word;
  3484. color: rgba(51, 51, 51, 1);
  3485. font-size: 16px;
  3486. font-family: PingFang-SC-Medium;
  3487. font-weight: 500;
  3488. text-align: left;
  3489. white-space: nowrap;
  3490. line-height: 15px;
  3491. margin: 7px 0 0 5px;
  3492. }
  3493. .box_17 {
  3494. width: 51px;
  3495. height: 143px;
  3496. margin: 6px 0 0 35px;
  3497. }
  3498. .group_13 {
  3499. box-shadow: 0px 0px 8px 0px rgba(50, 74, 67, 0.68);
  3500. background-color: rgba(133, 225, 194, 1);
  3501. border-radius: 24px;
  3502. height: 116px;
  3503. margin-left: 2px;
  3504. width: 48px;
  3505. }
  3506. .section_11 {
  3507. box-shadow: 0px 0px 10px 0px rgba(167, 167, 167, 0.78);
  3508. background-color: rgba(255, 255, 255, 1);
  3509. border-radius: 50%;
  3510. width: 36px;
  3511. height: 36px;
  3512. margin: 73px 0 0 6px;
  3513. }
  3514. .text_101 {
  3515. width: 51px;
  3516. height: 15px;
  3517. overflow-wrap: break-word;
  3518. color: rgba(51, 51, 51, 1);
  3519. font-size: 16px;
  3520. font-family: PingFang-SC-Medium;
  3521. font-weight: 500;
  3522. text-align: left;
  3523. white-space: nowrap;
  3524. line-height: 15px;
  3525. margin-top: 12px;
  3526. }
  3527. .box_18 {
  3528. width: 51px;
  3529. height: 143px;
  3530. margin: 6px 0 0 38px;
  3531. }
  3532. .box_19 {
  3533. box-shadow: 0px 0px 8px 0px rgba(50, 74, 67, 0.21);
  3534. background-color: rgba(238, 248, 245, 1);
  3535. border-radius: 24px;
  3536. height: 116px;
  3537. margin-left: 2px;
  3538. width: 48px;
  3539. }
  3540. .block_12 {
  3541. box-shadow: 0px 0px 10px 0px rgba(167, 167, 167, 0.78);
  3542. background-color: rgba(255, 255, 255, 1);
  3543. border-radius: 50%;
  3544. width: 36px;
  3545. height: 36px;
  3546. margin: 7px 0 0 6px;
  3547. }
  3548. .text_102 {
  3549. width: 51px;
  3550. height: 15px;
  3551. overflow-wrap: break-word;
  3552. color: rgba(51, 51, 51, 1);
  3553. font-size: 16px;
  3554. font-family: PingFang-SC-Medium;
  3555. font-weight: 500;
  3556. text-align: left;
  3557. white-space: nowrap;
  3558. line-height: 15px;
  3559. margin-top: 12px;
  3560. }
  3561. .box_20 {
  3562. width: 51px;
  3563. height: 143px;
  3564. margin: 6px 0 0 38px;
  3565. }
  3566. .group_14 {
  3567. box-shadow: 0px 0px 8px 0px rgba(50, 74, 67, 0.68);
  3568. background-color: rgba(133, 225, 194, 1);
  3569. border-radius: 24px;
  3570. height: 116px;
  3571. margin-left: 2px;
  3572. width: 48px;
  3573. }
  3574. .group_15 {
  3575. box-shadow: 0px 0px 10px 0px rgba(167, 167, 167, 0.78);
  3576. background-color: rgba(255, 255, 255, 1);
  3577. border-radius: 50%;
  3578. width: 36px;
  3579. height: 36px;
  3580. margin: 73px 0 0 6px;
  3581. }
  3582. .text_103 {
  3583. width: 51px;
  3584. height: 15px;
  3585. overflow-wrap: break-word;
  3586. color: rgba(51, 51, 51, 1);
  3587. font-size: 16px;
  3588. font-family: PingFang-SC-Medium;
  3589. font-weight: 500;
  3590. text-align: left;
  3591. white-space: nowrap;
  3592. line-height: 15px;
  3593. margin-top: 12px;
  3594. }
  3595. .text-wrapper_21 {
  3596. position: absolute;
  3597. left: 68px;
  3598. top: 111px;
  3599. width: 63px;
  3600. height: 555px;
  3601. overflow-wrap: break-word;
  3602. font-size: 0;
  3603. font-family: PingFang-SC-Heavy;
  3604. font-weight: 900;
  3605. text-align: left;
  3606. line-height: 60px;
  3607. }
  3608. .paragraph_2 {
  3609. width: 63px;
  3610. height: 555px;
  3611. overflow-wrap: break-word;
  3612. color: rgba(3, 191, 138, 1);
  3613. font-size: 16px;
  3614. font-family: PingFang-SC-Heavy;
  3615. font-weight: 900;
  3616. text-align: left;
  3617. line-height: 80px;
  3618. }
  3619. .paragraph_3 {
  3620. width: 63px;
  3621. height: 555px;
  3622. overflow-wrap: break-word;
  3623. color: rgba(75, 90, 109, 1);
  3624. font-size: 16px;
  3625. font-family: PingFang-SC-Medium;
  3626. font-weight: 500;
  3627. text-align: left;
  3628. line-height: 80px;
  3629. }
  3630. .timeall{
  3631. position: relative;
  3632. width: 100%;
  3633. margin-top: 40px;
  3634. }
  3635. .lastbt,.nextbt{
  3636. position: absolute;
  3637. top:18px;
  3638. }
  3639. .lastbt{
  3640. left: -7px;
  3641. }
  3642. .nextbt{
  3643. right: -7px;
  3644. }
  3645. .table_header{ display:flex; justify-content: center; color:#8e8e8e;}
  3646. .week_one{ text-align: center; line-height: 50px; border-bottom:1px solid #f5f4f7; border-left:1px solid #f5f4f7; background: #e9f0fe; width:200px; }
  3647. .weekday{ flex:1; text-align: center; line-height: 25px; }
  3648. .finish {
  3649. // background:#8ACBAD;
  3650. background: linear-gradient(135deg, #04E399, #00A36A);
  3651. padding: 5px;
  3652. border-radius: 50%;
  3653. color:#fff !important;
  3654. }
  3655. </style>