@charset "utf-8";
/* CSS Document*/
html {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


body {
     font-family: 'SimHei';
    color: #333;
    font-size: 14px;
    line-height: 14px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #fff;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
}

fieldset, img, button {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color:inherit;
}

    a:hover {
        cursor: pointer;
    }

p {
    font-size: inherit;
    line-height: inherit;
}

ol, ul {
    list-style: none;
}

em {
    font-style: normal;
}

input, button, select, textarea {
    outline: none;
}

caption, th, li, dt, dd, p {
   
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;

}

q:before, q:after {
    content: '';
}

abbr, acronym {
    border: 0;
}

.clear {
    height: 0px;
    width: 0px;
    line-height: 0px;
    font-size: 0px;
    margin: 0px;
    padding: 0px;
    clear: both;
}

.clearfix:after {
    content: "\20";
    display: block;
    height: 0;
    clear: both;
}

.clearfix {
    *zoom: 1;
}


img {
    /*max-width: 100%;
    max-height: 100%;*/
    height: auto;
    width: auto;
    border: 0;
    vertical-align: middle;
}


::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0.25rem rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 0 0.25rem rgba(0,0,0,0.2);
    box-shadow: inset 0 0 0.25rem rgba(0,0,0,0.2);
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: rgba(0,0,0,0.05);
}

::-webkit-scrollbar {
    width: 4px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    -moz-border-radius: 10px;
    -webkit-border-radius:  10px;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 0.25rem rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 0 0.25rem rgba(0,0,0,0.2);
    box-shadow: inset 0 0 0.25rem rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.05);
}
.overellipsis {
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space:nowrap;
}