service.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <template>
  2. <view class="container">
  3. <view class="titleLeft">
  4. <em class="iconfont icon--fuwu"></em>
  5. 高频服务
  6. </view>
  7. <view class="gpfwNav">
  8. <ul>
  9. <li>
  10. <view class="lvxd"><em class="iconfont icon-jurassic_nav"></em></view>
  11. <span>旅游向导</span>
  12. </li>
  13. <li>
  14. <view class="xlzx"><em class="iconfont icon-xinlizixun"></em></view>
  15. <span>心里咨询</span>
  16. </li>
  17. <li>
  18. <view class="xswz"><em class="iconfont icon-wenzhen"></em></view>
  19. <span>线上问诊</span>
  20. </li>
  21. <li>
  22. <view class="gxs" @tap="goCooperative"><em class="iconfont icon-gongxiaoshelogo"></em></view>
  23. <span @tap="goLoveAtVillage">供</span>
  24. <span @tap="goLegalService">销</span>
  25. <span @tap="goFinancialInfrastructure">社</span>
  26. </li>
  27. <li>
  28. <view class="xlzx"><em class="iconfont icon-linshijiuzhu"></em></view>
  29. <span>帮扶救助</span>
  30. </li>
  31. <li>
  32. <view class="xswz"><em class="iconfont icon-zhishi1"></em></view>
  33. <span>知识库</span>
  34. </li>
  35. <li>
  36. <view class="lvxd"><em class="iconfont icon-zhibo"></em></view>
  37. <span>直播带货</span>
  38. </li>
  39. <li>
  40. <view class="more"><em class="iconfont life-pic"></em></view>
  41. <span>生活服务</span>
  42. </li>
  43. </ul>
  44. </view>
  45. <view class="titleLeft titleLeftSecond" style="margin-left: 13%;">
  46. <em class="iconfont"></em>
  47. 特色服务
  48. </view>
  49. <view class="gpfwNav specialService">
  50. <ul>
  51. <li>
  52. <view class="xchl"><em class="iconfont marriage-pic"></em></view>
  53. <span>乡村婚恋</span>
  54. </li>
  55. <li>
  56. <view class="flfw"><em class="iconfont legal-pic"></em></view>
  57. <span>法律服务</span>
  58. </li>
  59. <li>
  60. <view class="jrjj"><em class="iconfont system-pic"></em></view>
  61. <span>金融基建</span>
  62. </li>
  63. </ul>
  64. </view>
  65. </view>
  66. </template>
  67. <script>
  68. </script>
  69. <style>
  70. @import './service.css';
  71. .marriage-pic{
  72. background: url('../../static/images/more/marriage.png') 0 0 no-repeat;
  73. background-size: 100% 100%;
  74. }
  75. .legal-pic{
  76. background: url('../../static/images/more/legal.png') 0 0 no-repeat;
  77. background-size: 100% 100%;
  78. }
  79. .system-pic{
  80. background: url('../../static/images/more/system.png') 0 0 no-repeat;
  81. background-size: 100% 100%;
  82. }
  83. .specialService-pic{
  84. background: url('../../static/images/more/specialService.png') 0 0 no-repeat;
  85. background-size: 100% 100%;
  86. }
  87. .life-pic{
  88. background: url('../../static/images/more/lifeHelp.png') 0 0 no-repeat;
  89. background-size: 80% 80%;
  90. margin: 10% !important;
  91. }
  92. .titleLeftSecond::after{
  93. content:'';
  94. left: -121px;
  95. width: 12vw;
  96. background: url('../../static/images/more/specialService.png') 0 0 no-repeat;
  97. background-size: 93% 93%;
  98. position: relative;
  99. }
  100. .gpfwNav ul li view.xchl{
  101. background: none;
  102. }
  103. .gpfwNav ul li view.flfw{
  104. background: none;
  105. }
  106. .gpfwNav ul li view.jrjj{
  107. background: none;
  108. }
  109. .specialService{
  110. width: 100% !important;
  111. }
  112. .specialService li{
  113. width: 20vh;
  114. }
  115. .specialService li view{
  116. width: 100%;
  117. }
  118. </style>