app.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <div class="sannong">
  3. <NuxtLayout>
  4. <NuxtPage></NuxtPage>
  5. <!-- <img src="./static/images/weixin 1.png" alt=""> -->
  6. <!-- <ul class="kefu">
  7. <li>
  8. <img src="./static//images/weixin 1.png" alt="">
  9. <p>微信客服</p>
  10. </li>
  11. <li>
  12. <img src="./static//images/qq 1.png" alt="">
  13. <p>QQ客服</p>
  14. </li>
  15. <li>
  16. <img src="./static//images/dianhua 1.png" alt="">
  17. <p>电话客服</p>
  18. </li>
  19. <li>
  20. <img src="./static//images/guanbi 1.png" alt="">
  21. <p>关闭</p>
  22. </li>
  23. </ul> -->
  24. </NuxtLayout>
  25. </div>
  26. </template>
  27. <script setup>
  28. </script>
  29. <style lang="less" scoped>
  30. .kefu {
  31. width: 100px;
  32. height: 445px;
  33. position: fixed;
  34. bottom: 80px;
  35. right: 129px;
  36. >li {
  37. width: 100px;
  38. height: 100px;
  39. margin-bottom: 15px;
  40. text-align: center;
  41. >img {
  42. width: 60px;
  43. height: 60px;
  44. margin-top: 10px;
  45. }
  46. >p {
  47. font-family: PingFang SC, PingFang SC;
  48. font-weight: 500;
  49. font-size: 14px;
  50. color: #666666;
  51. line-height: 16px;
  52. }
  53. }
  54. }
  55. </style>