1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div id="app" >
- <router-view/>
- </div>
- </template>
- <style>
- *{
- margin:0;
- padding: 0;;
- }
- img{
- vertical-align: middle;
- }
- html {
- }
- body{ font-family: "PingFang SC", "Helvetica Neue", "Hiragino Sans GB", "Segoe UI", "Microsoft YaHei", 微软雅黑, sans-serif;font-weight: 400;min-width: 1200px;}
- #nav a {
- font-weight: bold;
- color: #2c3e50;
- }
- .container{
- margin: 10px;
- padding: 10px;
- background: #fff;
- }
- #nav a.router-link-exact-active {
- color: #42b983;
- }
- .color-info{
- /* font-size: 12px; */
- color: #606c80;
- line-height: 1.5;
- }
- .text-small{
- font-size: 12px;
- }
- </style>
|