index.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <div class="app-container home">
  3. </div>
  4. </template>
  5. <script>
  6. export default {
  7. name: "Index",
  8. data() {
  9. return {
  10. // 版本号
  11. version: "3.8.6"
  12. };
  13. },
  14. methods: {
  15. goTarget(href) {
  16. window.open(href, "_blank");
  17. }
  18. }
  19. };
  20. </script>
  21. <style scoped lang="scss">
  22. .app-container{
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. min-height: calc(100vh - 84px);
  27. background-size: 100% 100%;
  28. background-image: url("../assets/images/login-prod.jpg") !important;
  29. }
  30. .home {
  31. blockquote {
  32. padding: 10px 20px;
  33. margin: 0 0 20px;
  34. font-size: 17.5px;
  35. border-left: 5px solid #eee;
  36. }
  37. hr {
  38. margin-top: 20px;
  39. margin-bottom: 20px;
  40. border: 0;
  41. border-top: 1px solid #eee;
  42. }
  43. .col-item {
  44. margin-bottom: 20px;
  45. }
  46. ul {
  47. padding: 0;
  48. margin: 0;
  49. }
  50. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  51. font-size: 13px;
  52. color: #676a6c;
  53. overflow-x: hidden;
  54. ul {
  55. list-style-type: none;
  56. }
  57. h4 {
  58. margin-top: 0px;
  59. }
  60. h2 {
  61. margin-top: 10px;
  62. font-size: 26px;
  63. font-weight: 100;
  64. }
  65. p {
  66. margin-top: 10px;
  67. b {
  68. font-weight: 700;
  69. }
  70. }
  71. .update-log {
  72. ol {
  73. display: block;
  74. list-style-type: decimal;
  75. margin-block-start: 1em;
  76. margin-block-end: 1em;
  77. margin-inline-start: 0;
  78. margin-inline-end: 0;
  79. padding-inline-start: 40px;
  80. }
  81. }
  82. }
  83. </style>