1234567891011121314151617181920212223242526272829 |
- <template>
- <div id="app">
- <router-view/>
- </div>
- </template>
- <style>
- #app{
- height: 100%;
- width: 100%;
- }
- /* 账户列表标题样式 */
- .title_examine{
- width: 100%;
- height: 75px;
- background-color: #fff;
- border-radius: 8px;
- padding: 10px 20px;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- }
- .pub_title{
- font-size: 24px;
- font-weight: 400;
- }
- </style>
|