@charset "utf-8";

html {
    font-size: 62.5%;
}

body {
    margin: 0px;
    font-size: 12px;
    color: #91989f;
    font-family: Arial, Helvetica, sans-serif, Microsoft YaHei;
    cursor: default;
}

* {
    padding: 0px;
    margin: 0px;
}

/*网页滚动条*/
::-webkit-scrollbar {
    width: 10px;
    -webkit-overflow-scrolling: touch;
    background-color: #e6e6e6;
}

::-webkit-scrollbar-track {
    background-color: #555;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    border: 1px solid #555;
    background-color: #0c74c9;
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 10px;
    background-color: #2593ee;
}

::-webkit-scrollbar-button {
    height: 0px;
    background-color: #e6e6e6;
}

body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
i,
b,
em,
span,
form,
fieldset,
legend,
input,
textarea,
select,
button,
th,
td {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif, Microsoft YaHei;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    list-style: none;
    font-weight: normal;
    color: #555;
}

input,
select,
button {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif, Microsoft YaHei;
    border: 0;
    background: none;
    outline: none;
    vertical-align: middle;
}

button {
    overflow: visible
}

img {
    border: none;
}

li {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

a:hover {
    color: #005caf;
}

.clear {
    overflow: hidden;
    clear: both;
    height: 0px;
}

.fl {
    float: left;
}

.fr {
    float: right;
}