App.vue 414 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style>
  12. .textSpan{
  13. position: relative;
  14. top: 0;
  15. font-size: 14px;
  16. font-weight: 600;
  17. color:rgb(87, 86, 86)
  18. }
  19. /* ¶Card 卡片 */
  20. .clearfix{
  21. line-height: 20px;
  22. font-size: 18px;
  23. font-weight: 600;
  24. }
  25. .topClass{
  26. color:rgb(97, 174, 247)
  27. }
  28. </style>