/*清除内外边框*/
html,body{ width:100%; height: 100%; }
body,h1,h2,h3,h4,h5,h6,hr,p,
blockquote,/*结构元素*/
dl,dt,dd,ul,ol,li,/*list elements 列表元素*/
pre,/*文本格式元素*/
form,button,input,textarea,/*form elements 表单元素*/
th,td,/*表格元素*/
img/*img elements 图片元素*/{
	border:none;
	padding:0; 
	margin:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
select {
  /*将默认的select选择框样式清除*/
  /*appearance:none;
  -moz-appearance:none;
  -webkit-appearance:nofpopupboxne;*/
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { border: none; }
[v-cloak] { display: none }



/*设置默认字体*/
body,
button,
input,
select,
textarea {
    font: 14px/1.5 Microsoft Yahei, tahoma, Srial, helvetica, sans-serif;text-rendering: optimizeLegibility;text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
body{ background-color: #fff }
h1,h2,h3,h4,h5,h6{ font-weight: normal; }
button:focus,input:focus,textarea:focus,select:focus{outline:none;}
/*清除斜体*/
em,i,var{font-style: normal;}
/*清除列表元素*/
ul,li,ol{list-style: none;}
/*重置超链接元素*/
a{
	color: #333;
	text-decoration:none;
	outline: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}

/*滚动条 start*/  
::-webkit-scrollbar {  
width: 4px;  
height: 4px;  
background-color: #fff;  
}  
/*定义滚动条轨道 内阴影+圆角*/  
::-webkit-scrollbar-track {  
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);  
background: #fff ;  
}  
/*定义滑块 内阴影+圆角*/  
::-webkit-scrollbar-thumb {  
border-radius: 3px;  
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);  
background-color:#999;  
}  
::-webkit-scrollbar-thumb:hover {  
border-radius: 3px;  
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);  
background-color:#666;  
}  

