<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
export default {
  name: "App"
};
</script>

<style>
@import "//at.alicdn.com/t/font_1769104_qg9btfnng5.css";
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
*{
  margin:0;
  padding:0;
}
#app {
  height: 100%;
}
/*滚动条样式*/
::-webkit-scrollbar {/*滚动条整体样式*/
    height: 5px;
    width: 4px;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius:5px!important;
    background: #b5b5b5!important;
}
::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0.2)!important;
    border-radius: 20px!important;
    background: transparent!important;
}
</style>