@charset "UTF-8";

/*初始化样式*/
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

@font-face {
    font-family: "SiYuanHeiTi-Regular";
    src: url(../font/SourceHanSansSC-Regular.otf) format('opentype');
}

html,
body,
ul,
li,
p,
input,
main,
span,
div,
h1,
h2,
h3,
h4,
h5,
footer,
figure {
    margin: 0;
    padding: 0;
}

.fl {
    float: left
}

.fr {
    float: right
}

.clearFix:before,
.clearFix:after {
    content: "";
    display: table;
}

.clearFix:after {
    clear: both;
}

a {
    text-decoration: none;
    cursor: pointer
}

ul,
li {
    list-style: none;
}

body {
    background-color: #fff;
    font-family: "SiYuanHeiTi-Regular", sans-serif;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    user-select: none;
}