@charset "utf-8";
html{
    background:#fff;
    overflow-x:hidden;
    width: 100%;
    height: 100%;
}
body{
    width:100%;
    height: 100%;
    font:12px/18px "Microsoft Yahei";
    color:#515151;
    -webkit-font-smoothing: antialiased;
    position: relative;
}
a{
    /*color:inherit;*/
    /*text-decoration:none;*/
    cursor:pointer;
    outline: 0 none;
}
.menu_ul a:hover{
    /*text-decoration:none;*/
    color:#ff4f20;
}
a:focus{
    -moz-outline-style:none;
    border:0px;
    blr:expression(this.onFocus=this.blur());
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,p,blockquote,th,td{
    margin:0;
    padding:0;
}
header,main,footer,article,aside,section,nav,menu,hgroup,details,dialog,figure,figcaption{
    display:block;
}
ol,li,ul,dl,dt,dd{
    list-style:none;
}
td{
    border-style: solid;
}
fieldset,img {
    border:0
}
button,submit,input,select {
    vertical-align:middle;
}
button,submit {
    cursor:pointer;
}
h1,h2,h3,h4,h5,h6{
    font-size:inherit;
    font-weight:lighter;
}
table{
    border-collapse:collapse;
    border-spacing:0;
}
sup{
    vertical-align:text-top;
}
sub{
    vertical-align:text-bottom;
}
select,button{
    font-family:inherit;
    font-size:inherit;
    font-weight:inherit;
    outline-style:none;
    outline-width:0pt;
    padding: 0;
    margin: 0;}
b,em,i{
    display:inline-block;
    font-weight:normal;
    font-style:normal;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
scrollbar{
    width: 10px;
    height: 0px;
    background-color: #F5F5F5;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
section div::-webkit-scrollbar{
    width: 10px;
    height: 0px;
    background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
section div::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}
/*定义滑块 内阴影+圆角*/
section div::-webkit-scrollbar-thumb{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #ccc;
}
scrollbar[orient="vertical"] {
    width: 0px !important;
}