body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    color: #333;
    font-size: 14px;
    font-family: "Source Han Sans CN", "微软雅黑", 'Arial Regular', Verdana, Helvetica, sans-serif;
}

td,
th,
caption {
    font-size: 14px;
}

a {
    color: #333;
    text-decoration: none;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
}

a:hover {
    text-decoration: none;
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -o-transition: .3s all;
}

img {
    border: none;
}

ol,
ul,
li {
    list-style: none;
}

input,
textarea,
select,
button {
    font: 14px "Source Han Sans CN", "微软雅黑", 'Arial Regular', Verdana, Helvetica, Arial, sans-serif;
}

table {
    border-collapse: collapse;
}

html {
    overflow-y: scroll;
}

a,
button {
    cursor: pointer;
}

input,
textarea,
button {
    outline: none;
}

textarea {
    resize: none;
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.toast {
    position: fixed;
    bottom: 5%;
    left: 50%;
    z-index: 9;
    width: auto;
    white-space: nowrap;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    display: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}