You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
988 B

  1. <script setup>
  2. </script>
  3. <template>
  4. <div class="club-nav">
  5. <div class="container">
  6. <RouterLink to="/bogu" class="nav-item">博股俱乐部</RouterLink>
  7. <RouterLink to="/mumin" class="nav-item">牧民俱乐部</RouterLink>
  8. <RouterLink to="/shenqiang" class="nav-item">神枪手俱乐部</RouterLink>
  9. </div>
  10. </div>
  11. </template>
  12. <style scoped>
  13. .club-nav {
  14. height: 100vh;
  15. width: 15%;
  16. position: fixed;
  17. left: 30px;
  18. top: 30px;
  19. background-color: #fffffd;
  20. overflow-x: hidden;
  21. padding-top: 20px;
  22. transition: 0.5s;
  23. }
  24. .container {
  25. padding: 0;
  26. margin: 0;
  27. list-style-type: none;
  28. }
  29. .nav-item {
  30. padding: 10px 15px;
  31. text-decoration: none;
  32. font-size: 18px;
  33. color: rgb(19, 18, 18);
  34. display: block;
  35. transition: 0.3s;
  36. }
  37. .nav-item:hover {
  38. background-color: #407fdf;
  39. color: #f1f1f1;
  40. }
  41. .nav-item.router-link-active {
  42. background-color: #407fdf;
  43. color: white;
  44. border-radius: 5%;
  45. }
  46. </style>