body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
legend,
button form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    padding: 0;
    margin: 0;
}

/* 酌情修改 */
html,body{
    margin: 0;
    padding: 0;
}

/* 短引用的内容可取值：''或"" */
q:before,
q:after {
    content: ”;
}

/* 缩写，图片等无边框 */
fieldset,
img,
abbr,
acronym {
    border: 0 none;
}

abbr,
acronym {
    font-variant: normal;
}

legend {
    color: #000;
}

/* 清除特殊标记的字体和字号 */
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

/* 上下标 */
sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 表格标题及内容居左显示 */
caption,
th {
    text-align: left;
}



/* 清除列表样式 */
ol,
ul {
    list-style: none;
}

/* 输入控件字体 */
input,
button,
textarea,
select,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

/* 标题元素样式清除 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
}

/* 链接样式，颜色可酌情修改 */
del,
ins,
a {
    text-decoration: none!important;
}

a:link {
    color: #009;
}

a:visited {
    color: #800080;
}

a:hover,
a:active,
a:focus {
    color: #c00;
    text-decoration: underline;
}
a:hover{
    color:#409EFF;
}

/* 重置所有按钮的基本样式 */
button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
  }

/* WebKit 浏览器（如 Chrome 和 Safari） */
*::-webkit-scrollbar {
    width: 12px; /* 垂直滚动条的宽度 */
    height: 12px; /* 水平滚动条的高度 */
}

*::-webkit-scrollbar-thumb {
    background-color: #dee1e3; /* 滑块的背景色 */
    border-radius: 10px; /* 滑块的圆角 */
    border: 3px solid #fff; /* 滑块的边框 */
}

*::-webkit-scrollbar-track {
    background: #fff; /* 轨道的背景色 */
    border-radius: 10px; /* 轨道的圆角 */
}

*::-webkit-scrollbar-thumb:hover {
    background: #6077ef; /* 滑块的背景色 */
}

/* Firefox 浏览器 */
@-moz-document url-prefix() {
    * {
        scrollbar-width: thin; /* 设置滚动条的宽度 */
        scrollbar-color: #dee1e3 #fff; /* 设置滑块和轨道的颜色 */
    }

    *::-moz-scrollbar {
        width: 12px; /* 垂直滚动条的宽度 */
        height: 12px; /* 水平滚动条的高度 */
    }

    *::-moz-scrollbar-thumb {
        background-color: #dee1e3; /* 滑块的背景色 */
        border-radius: 10px; /* 滑块的圆角 */
        border: 3px solid #fff; /* 滑块的边框 */
    }

    *::-moz-scrollbar-track {
        background: #fff; /* 轨道的背景色 */
        border-radius: 10px; /* 轨道的圆角 */
    }

    *::-moz-scrollbar-thumb:hover {
        background: #6077ef; /* 滑块的背景色 */
    }
}


/* 鼠标样式 */
input[type="submit"] {
    cursor: pointer;
}

button {
    border:none;
    cursor: pointer;
}

input::-moz-focus {
    border: 0;
    padding: 0;
}

.clearfix::after {
    content: "";
    display: block;
    height: 0;
    clear:both;
    visibility: hidden;
    zoom: 1;
}
.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fl{
    float: left;
}
.fr{
    float: right;
}
input{
    outline: none;
    border:none;
    background-color: transparent;
}
.inner{
    width: 1200px;
    margin: 0 auto;
}
.default-transition{
    transition: all .3s linear;
}
