123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!--
- * @Description:
- * @Author:
- * @LastEditors: Napier
- * @LastEditTime: 2021-09-15 23:34:49
- -->
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1,minimum-scale=1,user-scalable=0,shrink-to-fit=no">
- <meta name='apple-mobile-web-app-capable' content='yes'>
- <meta name='apple-mobile-web-app-status-bar-style' content='black'>
- <meta name='format-detection' content='telephone=no'>
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <link rel="icon" href="static/img/logo.svg">
- <!-- 思源字体 -->
- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Noto+Sans+SC:100,300,400,500,700,900">
- <title>成理青年</title>
- </head>
- <body>
- <div class="scroll">
- <div id="app"></div>
- </div>
- <!-- built files will be auto injected -->
- </body>
- <style>
- body,html{
- width:100%;
- height:100%;
- margin: 0px;
- padding: 0px;
- touch-action: none
- }
- body {
- overflow: hidden;
- background: rgba(222,226,230,0.5);
- }
- .scroll{
- width:100%;
- height:100%;
- }
- </style>
- </html>
|