/*公共样式*/
html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
}
/* *{box-sizing: border-box;} */

body {
    font-family: "Microsoft YaHei";
    font-size:14px;
    color:#333;
    background: #f6f6f6;
}
html, body {
    position: relative;
    height: 100%;
}
h1, h2, h3, h4, h5, h6{font-weight:normal;}
ul,ol, li {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #232323;
}

.clear {
    zoom: 1;
}

.clear:after {
    content: ".";
    width: 0;
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    overflow:hidden;
}

.fl {
    float: left
}

.fr {
    float: right
}
em{
    font-style:normal
}

.tl {
    text-align: left;
}

.tc {
    text-align: center
}

.tr {
    text-align: right;
}

.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.inline{
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.wd-1200{
    width: 1200px;
    margin: 0 auto;
}

::-webkit-scrollbar {
    width: 8px; /*对垂直流动条有效*/
    height: 8px; /*对水平流动条有效*/
}

/*定义滚动条的轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #ffffff;
    border-radius: 3px;
}


/*定义滑块颜色、内阴影及圆角*/
::-webkit-scrollbar-thumb{
    border-radius: 7px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #b9b9b9;
}

/*定义两端按钮的样式*/
::-webkit-scrollbar-button {
    background-color:#b7b7b7;
}

/*定义右下角汇合处的样式*/
::-webkit-scrollbar-corner {
    background:#a8a8a4;
}
