@charset "utf-8";/*初始化样式*/
html{width:100%;height: 100%;font-size:100px; }
body{ padding:0; height: 100%; margin:0 auto; zoom:1;font-size:14px;line-height:1.4em;font-family:"Arial","sans-serif","微软雅黑","宋体";color:#333;/*设置宽度*/width:100%; background-color:#fff; }
ul,li,form, dl,dt,dd, div{ padding: 0; margin: 0; }
.ul,.ul li{ list-style:none; }
.h1,.h2,.h3,.h4,.h5,.h6,.p{ padding:0; margin:0;}
p{ margin:0; }
b,strong{ font-weight: bold; }
select,input,textarea{ border-radius:0; -webkit-border-radius:0; color:#414446; font-family:"Arial","sans-serif","微软雅黑","宋体"; }
input:focus { outline: none;}
/*强制去除表单自带的样式*/
input,button,select,textarea{outline:none;/*-webkit-appearance:none;*/ }
/*强制去除textarea自带的样式*/
textarea{resize:none;/*-webkit-appearance:none;*/}
textarea,input,select { background:none; border:none; margin:0; padding:0;}

/*html5设置*/
article,aside,footer,header,hgroup,nav,section,figure,figcaption{ display: block;}
figure,figcaption{ margin:0; padding:0;}
audio,canvas,progress,video { display: inline-block; vertical-align: baseline;}
img{ border:none; border:0; vertical-align:top; max-width: 100%; }
span{ outline: none; }
strong{ font-weight: bold; }
a{ color:#333333; text-decoration:none; -webkit-tap-highlight-color:rgba(0,0,0,0); outline: none; }
a:link,a:visited,a:focus{outline:none;text-decoration: none; -moz-outline:none;}
a:hover{ text-decoration:none; color:#072770; }

/**输入框placeholder**/
::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color:#999; }
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color:#999; }
::-moz-placeholder { /* Mozilla Firefox 19+ */ color:#999; }
:-ms-input-placeholder { /* Internet Explorer 10-11 */ color:#999; }

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.scrollbar::-webkit-scrollbar{ width:.03rem; background-color: #dddddd; }
/*定义滚动条轨道 内阴影+圆角*/
.scrollbar::-webkit-scrollbar-track{ border-radius:.03rem; background-color: #dddddd; }
/*定义滑块 内阴影+圆角*/
.scrollbar::-webkit-scrollbar-thumb{ border-radius:.03rem; background-color: #3866ff; }
/*滑块效果*/
.scrollbar::-webkit-scrollbar-thumb:hover{ border-radius:.03rem; background-color: #3866ff; }

