index.html 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  6. <link rel="shortcut icon" href="/static/favicon.ico">
  7. <title>养老供需市场</title>
  8. <style>
  9. html,body{
  10. margin: 0;
  11. padding: 0;
  12. width: 100%;
  13. height: 100%;
  14. }
  15. #app{
  16. width: 100%;
  17. height: 100%;
  18. }
  19. .logo{
  20. width: auto;
  21. height: 60px;
  22. display: flex;
  23. overflow: hidden;
  24. background-color: #1fb494;
  25. }
  26. .logo img{
  27. width: 32px;
  28. height: 32px;
  29. margin: 14px 10px 0 15px;
  30. }
  31. .logo .title{
  32. font-size: 16px;
  33. text-overflow: ellipsis;
  34. color: white;
  35. line-height: 61px;
  36. }
  37. .top-box{
  38. height: 60px;
  39. display: flex;
  40. background-color: #1fb494;
  41. }
  42. .top-box-i{
  43. width: 32px;
  44. height: 32px;
  45. font-size: 24px;
  46. margin: 16px 10px 0 15px;
  47. color: #FFFFFF;
  48. }
  49. .my-home {
  50. /*background-color: #303133;*/
  51. background-color: rgba(33, 172, 199, 1.0);
  52. height: 100%;
  53. display: flex;
  54. flex-direction: column;
  55. }
  56. .my-home__main {
  57. user-select: none;
  58. width: 100%;
  59. flex-grow: 1;
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. flex-direction: column;
  64. }
  65. .my-home__footer {
  66. width: 100%;
  67. flex-grow: 0;
  68. text-align: center;
  69. padding: 1em 0;
  70. }
  71. .my-home__footer>a {
  72. font-size: 12px;
  73. color: #ABABAB;
  74. text-decoration: none;
  75. }
  76. .my-home__loading {
  77. height: 32px;
  78. width: 32px;
  79. margin-bottom: 20px;
  80. }
  81. .my-home__title {
  82. color: #FFF;
  83. font-size: 14px;
  84. margin-bottom: 10px;
  85. }
  86. .my-home__sub-title {
  87. color: #FFFFFF;
  88. font-size: 12px;
  89. }
  90. ::-webkit-scrollbar{
  91. width: 7px;
  92. height: 7px;
  93. background-color: transparent;
  94. }
  95. ::-webkit-scrollbar-thumb {
  96. border-radius: 5px;
  97. background-color: rgba(144,147,153,.3);
  98. }
  99. ::-webkit-scrollbar-track-piece {
  100. background-color: transparent;
  101. }
  102. a{
  103. color: #FFFFFF;
  104. text-decoration: none;
  105. }
  106. </style>
  107. </head>
  108. <body>
  109. <div id="app">
  110. <div class="my-home">
  111. <div class="my-home__main">
  112. <img class="my-home__loading" src="/static/loading-spin.svg" alt="loading">
  113. <div class="my-home__title">
  114. 资源加载中...
  115. </div>
  116. <div class="my-home__sub-title d">
  117. 初次加载资源可能需要较多时间 请耐心等待
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. </body>
  123. </html>