index.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <div class="app-container home"></div>
  3. </template>
  4. <!-- <script setup name="Index">
  5. const version = ref("3.3.0");
  6. function goTarget(url) {
  7. window.open(url, "__blank");
  8. }
  9. </script> -->
  10. <style scoped lang="scss">
  11. .home {
  12. background-image: url("../assets/backimg/login_back.jpeg");
  13. background-size: 100% 100%;
  14. position: absolute;
  15. width: 100%;
  16. height: 100%;
  17. // blockquote {
  18. // padding: 10px 20px;
  19. // margin: 0 0 20px;
  20. // font-size: 17.5px;
  21. // border-left: 5px solid #eee;
  22. // }
  23. // hr {
  24. // margin-top: 20px;
  25. // margin-bottom: 20px;
  26. // border: 0;
  27. // border-top: 1px solid #eee;
  28. // }
  29. // .col-item {
  30. // margin-bottom: 20px;
  31. // }
  32. // ul {
  33. // padding: 0;
  34. // margin: 0;
  35. // }
  36. // font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  37. // font-size: 13px;
  38. // color: #676a6c;
  39. // overflow-x: hidden;
  40. // ul {
  41. // list-style-type: none;
  42. // }
  43. // h4 {
  44. // margin-top: 0px;
  45. // }
  46. // h2 {
  47. // margin-top: 10px;
  48. // font-size: 26px;
  49. // font-weight: 100;
  50. // }
  51. // p {
  52. // margin-top: 10px;
  53. // b {
  54. // font-weight: 700;
  55. // }
  56. // }
  57. // .update-log {
  58. // ol {
  59. // display: block;
  60. // list-style-type: decimal;
  61. // margin-block-start: 1em;
  62. // margin-block-end: 1em;
  63. // margin-inline-start: 0;
  64. // margin-inline-end: 0;
  65. // padding-inline-start: 40px;
  66. // }
  67. // }
  68. }
  69. </style>