@charset "UTF-8";
html,body{
    float: left;
    width: 100%;
    height: 100%;
}
* {
    margin: 0;
    padding: 0;
    font-family: "siyuan3", Verdana, Arial, Helvetica, sans-serif;
}

@font-face {
    font-family: siyuan1; /*这里是说明调用来的字体名字*/
    src: url("../font/siyuan.otf"); /*这里是字体文件路径*/
}

@font-face {
    font-family: siyuan2; /*这里是说明调用来的字体名字*/
    src: url("../font/SourceHanSansCN-Medium.ttf"); /*这里是字体文件路径*/
}

@font-face {
    font-family: siyuan3; /*这里是说明调用来的字体名字*/
    src: url("../font/SourceHanSansCN-Regular.ttf"); /*这里是字体文件路径*/
}

.box {
    float: left;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.box:after {
    clear: both;
    content: '.';
    display: block;
    width: 0;
    height: 0;
    visibility: hidden;
}

i {
    font-style: normal
}

input {
    outline-style: none;
}

ul {
    list-style: none;
}