123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="shortcut icon" href="/static/favicon.ico">
- <title>养老供需市场</title>
- <style>
- html,body{
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- }
- #app{
- width: 100%;
- height: 100%;
- }
- .logo{
- width: auto;
- height: 60px;
- display: flex;
- overflow: hidden;
- background-color: #1fb494;
- }
- .logo img{
- width: 32px;
- height: 32px;
- margin: 14px 10px 0 15px;
- }
- .logo .title{
- font-size: 16px;
- text-overflow: ellipsis;
- color: white;
- line-height: 61px;
- }
- .top-box{
- height: 60px;
- display: flex;
- background-color: #1fb494;
- }
- .top-box-i{
- width: 32px;
- height: 32px;
- font-size: 24px;
- margin: 16px 10px 0 15px;
- color: #FFFFFF;
- }
- .my-home {
- /*background-color: #303133;*/
- background-color: rgba(33, 172, 199, 1.0);
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .my-home__main {
- user-select: none;
- width: 100%;
- flex-grow: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .my-home__footer {
- width: 100%;
- flex-grow: 0;
- text-align: center;
- padding: 1em 0;
- }
- .my-home__footer>a {
- font-size: 12px;
- color: #ABABAB;
- text-decoration: none;
- }
- .my-home__loading {
- height: 32px;
- width: 32px;
- margin-bottom: 20px;
- }
- .my-home__title {
- color: #FFF;
- font-size: 14px;
- margin-bottom: 10px;
- }
- .my-home__sub-title {
- color: #FFFFFF;
- font-size: 12px;
- }
- ::-webkit-scrollbar{
- width: 7px;
- height: 7px;
- background-color: transparent;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 5px;
- background-color: rgba(144,147,153,.3);
- }
- ::-webkit-scrollbar-track-piece {
- background-color: transparent;
- }
- a{
- color: #FFFFFF;
- text-decoration: none;
- }
- </style>
- </head>
- <body>
- <div id="app">
- <div class="my-home">
- <div class="my-home__main">
- <img class="my-home__loading" src="/static/loading-spin.svg" alt="loading">
- <div class="my-home__title">
- 资源加载中...
- </div>
- <div class="my-home__sub-title d">
- 初次加载资源可能需要较多时间 请耐心等待
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
|