@charset "UTF-8";
/*base.css*/
html{
    font-size:12px;
    height: 100%;
}
html,body{
    width:100%;
    margin:0;
   /* overflow-x:hidden; */
    font-family: 'Arial';
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-tap-highlight-color:transparent;
    -webkit-text-size-adjust:none;
    -webkit-touch-callout:behavior;
    background:#fff;
    font-weight: 100;
    color: #333;
    font-size: 14px;
}
body{
    position: relative;
    min-height: 100%;
    padding-bottom: 60px;
    box-sizing: border-box;
}
h1,h2,h2,h3,h4,h5,h6{
    margin:0;
    font-size:100%;
}
p,dl,dd,form,figure{
    margin:0;
}
td,th{
    padding:0;
}
a,a:hover,time{
    text-decoration:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-tap-highlight-color:transparent;
}
ol,ul{
	padding:0;
    margin:0;
    list-style:none;
}
li{
    list-style-type:none;
}
table{
    border-collapse:collapse;
}
img{
    border:none;
    vertical-align:middle;
}
em,i{
    font-style:normal;
}
textarea,input{
    padding:0;
    margin:0;
    resize:none;
    outline:none;
    font-family:'Microsoft YaHei', 'Arial';
    vertical-align:middle;
    -webkit-appearance:none;
}

/*点击链接时周围的虚线框*/
input::-ms-clear{
    display:none;
}
/*chrome记住密码 input输入框会有黄色*/
input:-webkit-autofill { 
    -webkit-box-shadow: 0 0 0px 100px #f9f9f9 inset;
}
/*html5 reset*/
header,nav,article,section,aside,footer,figure,figcaption{
    display:block;
}
/*滚动条*/
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: rgba(0,0,0,0.6);
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
}