app.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <!-- <div class="kefu1">
  25. <img src="./static//images/weixin 1.png" alt="">
  26. </div> -->
  27. </NuxtLayout>
  28. <!-- <div class="zhinengwenda">
  29. <Zhinengqwnda></Zhinengqwnda>
  30. </div> -->
  31. </div>
  32. </template>
  33. <script setup>
  34. </script>
  35. <style lang="less" scoped>
  36. .kefu {
  37. width: 100px;
  38. height: 445px;
  39. position: fixed;
  40. bottom: 80px;
  41. right: 129px;
  42. >li {
  43. width: 100px;
  44. height: 100px;
  45. margin-bottom: 15px;
  46. text-align: center;
  47. >img {
  48. width: 60px;
  49. height: 60px;
  50. margin-top: 10px;
  51. }
  52. >p {
  53. font-family: PingFang SC, PingFang SC;
  54. font-weight: 500;
  55. font-size: 14px;
  56. color: #666666;
  57. line-height: 16px;
  58. }
  59. }
  60. }
  61. .kefu1 {
  62. width: 70px;
  63. height: 70px;
  64. position: fixed;
  65. bottom: 0px;
  66. right: 220px;
  67. }
  68. .zhinengwenda {
  69. width: 360px;
  70. height: 562px;
  71. position: fixed;
  72. bottom: 85px;
  73. right: 220px;
  74. // border: 1px solid #CCCCCC;
  75. box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  76. border-radius: 10px;
  77. background-color: #fff;
  78. z-index: 1000;
  79. }
  80. </style>