123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <style lang="scss">
- * {
- margin: 0;
- padding: 0;
- }
- html,
- body {
- overflow: hidden;
- width: 100%;
- height: 100%;
- font-weight: 400;
- font-size: 14px;
- color: #bfcbd9;
- }
- body {
- font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
- Helvetica, Segoe UI, Arial, Roboto, "PingFang SC", "miui",
- "Hiragino Sans GB", "Microsoft Yahei", sans-serif;
- overflow-y: scroll;
- font-weight: 400;
- color: #2c3e50;
- }
- .local_table {
- width: 100%;
- border-top: 1px solid #eee;
- border-bottom: 1px solid #eee;
- }
- td {
- padding: 5px;
- }
- .title {
- padding-left: 13px;
- height: 3em;
- line-height: 3em;
- position: relative;
- }
- .title::before {
- position: absolute;
- left: 5px;
- top: 1em;
- display: block;
- content: " ";
- width: 2px;
- height: 1em;
- background-color: #bfcbd9;
- }
- </style>
|